blob: 3b823ad9b6c74184eb2e04e8c331c62c36a72e71 [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 Lattnerc76d4412007-05-16 06:37:59 +000021#include "llvm/ADT/SmallPtrSet.h"
22#include "llvm/ADT/Statistic.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000023#include "llvm/Analysis/AliasAnalysis.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineFunction.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000026#include "llvm/IR/DataLayout.h"
27#include "llvm/IR/DerivedTypes.h"
28#include "llvm/IR/Function.h"
29#include "llvm/IR/LLVMContext.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000030#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000031#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000032#include "llvm/Support/ErrorHandling.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000033#include "llvm/Support/MathExtras.h"
Chris Lattnerbbbfa992009-08-23 06:35:02 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000035#include "llvm/Target/TargetLowering.h"
36#include "llvm/Target/TargetMachine.h"
37#include "llvm/Target/TargetOptions.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000038#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000039using namespace llvm;
40
Chris Lattnercd3245a2006-12-19 22:41:21 +000041STATISTIC(NodesCombined , "Number of dag nodes combined");
42STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
43STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
Evan Cheng8b944d32009-05-28 00:35:15 +000044STATISTIC(OpsNarrowed , "Number of load/op/store narrowed");
Evan Cheng31959b12011-02-02 01:06:55 +000045STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int");
Chris Lattnercd3245a2006-12-19 22:41:21 +000046
Nate Begeman1d4d4142005-09-01 00:19:25 +000047namespace {
Jim Laskey71382342006-10-07 23:37:56 +000048 static cl::opt<bool>
Owen Anderson0dcc8142010-09-19 21:01:26 +000049 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000050 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000051
Jim Laskey07a27092006-10-18 19:08:31 +000052 static cl::opt<bool>
53 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
54 cl::desc("Include global information in alias analysis"));
55
Jim Laskeybc588b82006-10-05 15:07:25 +000056//------------------------------ DAGCombiner ---------------------------------//
57
Nick Lewycky6726b6d2009-10-25 06:33:48 +000058 class DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000059 SelectionDAG &DAG;
Dan Gohman79ce2762009-01-15 19:20:50 +000060 const TargetLowering &TLI;
Duncan Sands25cf2272008-11-24 14:53:14 +000061 CombineLevel Level;
Bill Wendling98a366d2009-04-29 23:29:43 +000062 CodeGenOpt::Level OptLevel;
Duncan Sands25cf2272008-11-24 14:53:14 +000063 bool LegalOperations;
64 bool LegalTypes;
Nate Begeman1d4d4142005-09-01 00:19:25 +000065
66 // Worklist of all of the nodes that need to be simplified.
James Molloy6660c052012-02-16 09:17:04 +000067 //
68 // This has the semantics that when adding to the worklist,
69 // the item added must be next to be processed. It should
70 // also only appear once. The naive approach to this takes
71 // linear time.
72 //
73 // To reduce the insert/remove time to logarithmic, we use
74 // a set and a vector to maintain our worklist.
75 //
76 // The set contains the items on the worklist, but does not
77 // maintain the order they should be visited.
78 //
79 // The vector maintains the order nodes should be visited, but may
80 // contain duplicate or removed nodes. When choosing a node to
81 // visit, we pop off the order stack until we find an item that is
82 // also in the contents set. All operations are O(log N).
83 SmallPtrSet<SDNode*, 64> WorkListContents;
Benjamin Kramerd5f76902012-03-10 00:23:58 +000084 SmallVector<SDNode*, 64> WorkListOrder;
Nate Begeman1d4d4142005-09-01 00:19:25 +000085
Jim Laskeyc7c3f112006-10-16 20:52:31 +000086 // AA - Used for DAG load/store alias analysis.
87 AliasAnalysis &AA;
88
Nate Begeman1d4d4142005-09-01 00:19:25 +000089 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 /// the instruction to the work lists because they might get more simplified
91 /// now.
92 ///
93 void AddUsersToWorkList(SDNode *N) {
94 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000095 UI != UE; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +000096 AddToWorkList(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000097 }
98
Dan Gohman389079b2007-10-08 17:57:15 +000099 /// visit - call the node-specific routine that knows how to fold each
100 /// particular type of node.
Dan Gohman475871a2008-07-27 21:46:04 +0000101 SDValue visit(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000102
Chris Lattner24664722006-03-01 04:53:38 +0000103 public:
James Molloy6afa3f72012-02-16 09:48:07 +0000104 /// AddToWorkList - Add to the work list making sure its instance is at the
James Molloy6660c052012-02-16 09:17:04 +0000105 /// back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +0000106 void AddToWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000107 WorkListContents.insert(N);
108 WorkListOrder.push_back(N);
Chris Lattner5750df92006-03-01 04:03:14 +0000109 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000110
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000111 /// removeFromWorkList - remove all instances of N from the worklist.
112 ///
113 void removeFromWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000114 WorkListContents.erase(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000115 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000116
Dan Gohman475871a2008-07-27 21:46:04 +0000117 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000118 bool AddTo = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000119
Dan Gohman475871a2008-07-27 21:46:04 +0000120 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) {
Jim Laskey274062c2006-10-13 23:32:28 +0000121 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000122 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000123
Dan Gohman475871a2008-07-27 21:46:04 +0000124 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000125 bool AddTo = true) {
Dan Gohman475871a2008-07-27 21:46:04 +0000126 SDValue To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000127 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000128 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000129
130 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
Scott Michelfdc40a02009-02-17 22:15:04 +0000131
132 private:
133
Chris Lattner012f2412006-02-17 21:58:01 +0000134 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000135 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000136 /// propagation. If so, return true.
Dan Gohman475871a2008-07-27 21:46:04 +0000137 bool SimplifyDemandedBits(SDValue Op) {
Dan Gohman87862e72009-12-11 21:31:27 +0000138 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
139 APInt Demanded = APInt::getAllOnesValue(BitWidth);
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000140 return SimplifyDemandedBits(Op, Demanded);
141 }
142
Dan Gohman475871a2008-07-27 21:46:04 +0000143 bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded);
Chris Lattner87514ca2005-10-10 22:31:19 +0000144
Chris Lattner448f2192006-11-11 00:39:41 +0000145 bool CombineToPreIndexedLoadStore(SDNode *N);
146 bool CombineToPostIndexedLoadStore(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000147
Evan Cheng95c57ea2010-04-24 04:43:44 +0000148 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad);
149 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
150 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
151 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000152 SDValue PromoteIntBinOp(SDValue Op);
Evan Cheng07c4e102010-04-22 20:19:46 +0000153 SDValue PromoteIntShiftOp(SDValue Op);
Evan Cheng4c26e932010-04-19 19:29:22 +0000154 SDValue PromoteExtend(SDValue Op);
155 bool PromoteLoad(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000156
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +0000157 void ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
158 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
159 ISD::NodeType ExtType);
160
Dan Gohman389079b2007-10-08 17:57:15 +0000161 /// combine - call the node-specific routine that knows how to fold each
162 /// particular type of node. If that doesn't do anything, try the
163 /// target-specific DAG combines.
Dan Gohman475871a2008-07-27 21:46:04 +0000164 SDValue combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000165
166 // Visitation implementation - Implement dag node combining for different
167 // node types. The semantics are as follows:
168 // Return Value:
Evan Cheng17a568b2008-08-29 22:21:44 +0000169 // SDValue.getNode() == 0 - No change was made
170 // SDValue.getNode() == N - N was replaced, is dead and has been handled.
171 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000172 //
Dan Gohman475871a2008-07-27 21:46:04 +0000173 SDValue visitTokenFactor(SDNode *N);
174 SDValue visitMERGE_VALUES(SDNode *N);
175 SDValue visitADD(SDNode *N);
176 SDValue visitSUB(SDNode *N);
177 SDValue visitADDC(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000178 SDValue visitSUBC(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000179 SDValue visitADDE(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000180 SDValue visitSUBE(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000181 SDValue visitMUL(SDNode *N);
182 SDValue visitSDIV(SDNode *N);
183 SDValue visitUDIV(SDNode *N);
184 SDValue visitSREM(SDNode *N);
185 SDValue visitUREM(SDNode *N);
186 SDValue visitMULHU(SDNode *N);
187 SDValue visitMULHS(SDNode *N);
188 SDValue visitSMUL_LOHI(SDNode *N);
189 SDValue visitUMUL_LOHI(SDNode *N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +0000190 SDValue visitSMULO(SDNode *N);
191 SDValue visitUMULO(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000192 SDValue visitSDIVREM(SDNode *N);
193 SDValue visitUDIVREM(SDNode *N);
194 SDValue visitAND(SDNode *N);
195 SDValue visitOR(SDNode *N);
196 SDValue visitXOR(SDNode *N);
197 SDValue SimplifyVBinOp(SDNode *N);
Craig Topperdd201ff2012-09-11 01:45:21 +0000198 SDValue SimplifyVUnaryOp(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000199 SDValue visitSHL(SDNode *N);
200 SDValue visitSRA(SDNode *N);
201 SDValue visitSRL(SDNode *N);
202 SDValue visitCTLZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000203 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000204 SDValue visitCTTZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000205 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000206 SDValue visitCTPOP(SDNode *N);
207 SDValue visitSELECT(SDNode *N);
208 SDValue visitSELECT_CC(SDNode *N);
209 SDValue visitSETCC(SDNode *N);
210 SDValue visitSIGN_EXTEND(SDNode *N);
211 SDValue visitZERO_EXTEND(SDNode *N);
212 SDValue visitANY_EXTEND(SDNode *N);
213 SDValue visitSIGN_EXTEND_INREG(SDNode *N);
214 SDValue visitTRUNCATE(SDNode *N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000215 SDValue visitBITCAST(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000216 SDValue visitBUILD_PAIR(SDNode *N);
217 SDValue visitFADD(SDNode *N);
218 SDValue visitFSUB(SDNode *N);
219 SDValue visitFMUL(SDNode *N);
Owen Anderson062c0a52012-05-02 22:17:40 +0000220 SDValue visitFMA(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000221 SDValue visitFDIV(SDNode *N);
222 SDValue visitFREM(SDNode *N);
223 SDValue visitFCOPYSIGN(SDNode *N);
224 SDValue visitSINT_TO_FP(SDNode *N);
225 SDValue visitUINT_TO_FP(SDNode *N);
226 SDValue visitFP_TO_SINT(SDNode *N);
227 SDValue visitFP_TO_UINT(SDNode *N);
228 SDValue visitFP_ROUND(SDNode *N);
229 SDValue visitFP_ROUND_INREG(SDNode *N);
230 SDValue visitFP_EXTEND(SDNode *N);
231 SDValue visitFNEG(SDNode *N);
232 SDValue visitFABS(SDNode *N);
Owen Anderson7c626d32012-08-13 23:32:49 +0000233 SDValue visitFCEIL(SDNode *N);
234 SDValue visitFTRUNC(SDNode *N);
235 SDValue visitFFLOOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000236 SDValue visitBRCOND(SDNode *N);
237 SDValue visitBR_CC(SDNode *N);
238 SDValue visitLOAD(SDNode *N);
239 SDValue visitSTORE(SDNode *N);
240 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
241 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
242 SDValue visitBUILD_VECTOR(SDNode *N);
243 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +0000244 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000245 SDValue visitVECTOR_SHUFFLE(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);
Michael Liaofac14ab2012-10-23 23:06:52 +0000273 SDValue reduceBuildVecExtToExtBuildVec(SDNode *N);
Michael Liao1a5cc712012-10-24 04:14:18 +0000274 SDValue reduceBuildVecConvertToConvertBuildVec(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000275
Dan Gohman475871a2008-07-27 21:46:04 +0000276 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000277
Jim Laskey6ff23e52006-10-04 16:53:27 +0000278 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
279 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000280 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
281 SmallVector<SDValue, 8> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000282
Jim Laskey096c22e2006-10-18 12:29:57 +0000283 /// isAlias - Return true if there is any possibility that the two addresses
284 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000285 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000286 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000287 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000288 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000289 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000290 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000291 unsigned SrcValueAlign2,
292 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000293
Nadav Rotem90e11dc2012-11-29 00:00:08 +0000294 /// isAlias - Return true if there is any possibility that the two addresses
295 /// overlap.
296 bool isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1);
297
Jim Laskey7ca56af2006-10-11 13:47:09 +0000298 /// FindAliasInfo - Extracts the relevant alias information from the memory
299 /// node. Returns true if the operand was a load.
300 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000301 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000302 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000303 unsigned &SrcValueAlignment,
304 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000305
Jim Laskey279f0532006-09-25 16:29:54 +0000306 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000307 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000308 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000309
Nadav Rotemc653de62012-10-03 16:11:15 +0000310 /// Merge consecutive store operations into a wide store.
311 /// This optimization uses wide integers or vectors when possible.
312 /// \return True if some memory operations were changed.
313 bool MergeConsecutiveStores(StoreSDNode *N);
314
Chris Lattner2392ae72010-04-15 04:48:01 +0000315 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000316 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000317 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000318 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000319
Nate Begeman1d4d4142005-09-01 00:19:25 +0000320 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000321 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000322
Chris Lattner2392ae72010-04-15 04:48:01 +0000323 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000324
Chris Lattner2392ae72010-04-15 04:48:01 +0000325 /// getShiftAmountTy - Returns a type large enough to hold any valid
326 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000327 EVT getShiftAmountTy(EVT LHSTy) {
328 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000329 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000330
Chris Lattner2392ae72010-04-15 04:48:01 +0000331 /// isTypeLegal - This method returns true if we are running before type
332 /// legalization or if the specified VT is legal.
333 bool isTypeLegal(const EVT &VT) {
334 if (!LegalTypes) return true;
335 return TLI.isTypeLegal(VT);
336 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000337 };
338}
339
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000340
341namespace {
342/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
343/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000344class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000345 DAGCombiner &DC;
346public:
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000347 explicit WorkListRemover(DAGCombiner &dc)
348 : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000349
Duncan Sandsedfcf592008-06-11 11:42:12 +0000350 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000351 DC.removeFromWorkList(N);
352 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000353};
354}
355
Chris Lattner24664722006-03-01 04:53:38 +0000356//===----------------------------------------------------------------------===//
357// TargetLowering::DAGCombinerInfo implementation
358//===----------------------------------------------------------------------===//
359
360void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
361 ((DAGCombiner*)DC)->AddToWorkList(N);
362}
363
Cameron Zwariched3caf92011-04-02 02:40:26 +0000364void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
365 ((DAGCombiner*)DC)->removeFromWorkList(N);
366}
367
Dan Gohman475871a2008-07-27 21:46:04 +0000368SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000369CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
370 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000371}
372
Dan Gohman475871a2008-07-27 21:46:04 +0000373SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000374CombineTo(SDNode *N, SDValue Res, bool AddTo) {
375 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000376}
377
378
Dan Gohman475871a2008-07-27 21:46:04 +0000379SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000380CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
381 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000382}
383
Dan Gohmane5af2d32009-01-29 01:59:02 +0000384void TargetLowering::DAGCombinerInfo::
385CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
386 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
387}
Chris Lattner24664722006-03-01 04:53:38 +0000388
Chris Lattner24664722006-03-01 04:53:38 +0000389//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000390// Helper Functions
391//===----------------------------------------------------------------------===//
392
393/// isNegatibleForFree - Return 1 if we can compute the negated form of the
394/// specified expression for the same cost as the expression itself, or 2 if we
395/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000396static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000397 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000398 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000399 unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000400 // fneg is removable even if it has multiple uses.
401 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000402
Chris Lattner29446522007-05-14 22:04:50 +0000403 // Don't allow anything with multiple uses.
404 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000405
Chris Lattner3adf9512007-05-25 02:19:06 +0000406 // Don't recurse exponentially.
407 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000408
Chris Lattner29446522007-05-14 22:04:50 +0000409 switch (Op.getOpcode()) {
410 default: return false;
411 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000412 // Don't invert constant FP values after legalize. The negated constant
413 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000414 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000415 case ISD::FADD:
416 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000417 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000418
Owen Andersonafd3d562012-03-06 00:29:31 +0000419 // After operation legalization, it might not be legal to create new FSUBs.
420 if (LegalOperations &&
421 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
422 return 0;
423
Craig Topper956342b2012-09-09 22:58:45 +0000424 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000425 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
426 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000427 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000428 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000429 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000430 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000431 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000432 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000433 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000434
Bill Wendlingd34470c2009-01-30 23:10:18 +0000435 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000436 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000437
Chris Lattner29446522007-05-14 22:04:50 +0000438 case ISD::FMUL:
439 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000440 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000441
Bill Wendlingd34470c2009-01-30 23:10:18 +0000442 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000443 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
444 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000445 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000446
Owen Andersonafd3d562012-03-06 00:29:31 +0000447 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000448 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000449
Chris Lattner29446522007-05-14 22:04:50 +0000450 case ISD::FP_EXTEND:
451 case ISD::FP_ROUND:
452 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000453 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000454 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000455 }
456}
457
458/// GetNegatedExpression - If isNegatibleForFree returns true, this function
459/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000460static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000461 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000462 // fneg is removable even if it has multiple uses.
463 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000464
Chris Lattner29446522007-05-14 22:04:50 +0000465 // Don't allow anything with multiple uses.
466 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000467
Chris Lattner3adf9512007-05-25 02:19:06 +0000468 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000469 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000470 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000471 case ISD::ConstantFP: {
472 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
473 V.changeSign();
474 return DAG.getConstantFP(V, Op.getValueType());
475 }
Chris Lattner29446522007-05-14 22:04:50 +0000476 case ISD::FADD:
477 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000478 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000479
Bill Wendlingd34470c2009-01-30 23:10:18 +0000480 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000481 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000482 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000483 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000484 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000485 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000486 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000487 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000488 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000489 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000490 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000491 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000492 Op.getOperand(0));
493 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000494 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000495 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000496
Bill Wendlingd34470c2009-01-30 23:10:18 +0000497 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000498 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000499 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000500 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000501
Bill Wendlingd34470c2009-01-30 23:10:18 +0000502 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000503 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
504 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000505
Chris Lattner29446522007-05-14 22:04:50 +0000506 case ISD::FMUL:
507 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000508 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000509
Bill Wendlingd34470c2009-01-30 23:10:18 +0000510 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000511 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000512 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000513 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000514 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000515 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000516 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000517 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000518
Bill Wendlingd34470c2009-01-30 23:10:18 +0000519 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000520 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000521 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000522 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000523 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000524
Chris Lattner29446522007-05-14 22:04:50 +0000525 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000526 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000527 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000528 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000529 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000530 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000531 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000532 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000533 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000534 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000535 }
536}
Chris Lattner24664722006-03-01 04:53:38 +0000537
538
Nate Begeman4ebd8052005-09-01 23:24:04 +0000539// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
540// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000541// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000542// nodes based on the type of node we are checking. This simplifies life a
543// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000544static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
545 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000546 if (N.getOpcode() == ISD::SETCC) {
547 LHS = N.getOperand(0);
548 RHS = N.getOperand(1);
549 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000550 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000551 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000552 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000553 N.getOperand(2).getOpcode() == ISD::Constant &&
554 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000555 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000556 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
557 LHS = N.getOperand(0);
558 RHS = N.getOperand(1);
559 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000560 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000561 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000562 return false;
563}
564
Nate Begeman99801192005-09-07 23:25:52 +0000565// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
566// one use. If this is true, it allows the users to invert the operation for
567// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000568static bool isOneUseSetCC(SDValue N) {
569 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000570 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000571 return true;
572 return false;
573}
574
Bill Wendling35247c32009-01-30 00:45:56 +0000575SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
576 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000577 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000578 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
579 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000580 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000581 SDValue OpNode =
582 DAG.FoldConstantArithmetic(Opc, VT,
583 cast<ConstantSDNode>(N0.getOperand(1)),
584 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000585 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000586 }
587 if (N0.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000588 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendling35247c32009-01-30 00:45:56 +0000589 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
590 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000591 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000592 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000593 }
594 }
Bill Wendling35247c32009-01-30 00:45:56 +0000595
Nate Begemancd4d58c2006-02-03 06:46:56 +0000596 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
597 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000598 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000599 SDValue OpNode =
600 DAG.FoldConstantArithmetic(Opc, VT,
601 cast<ConstantSDNode>(N1.getOperand(1)),
602 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000603 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000604 }
605 if (N1.hasOneUse()) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +0000606 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000607 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000608 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000609 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000610 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000611 }
612 }
Bill Wendling35247c32009-01-30 00:45:56 +0000613
Dan Gohman475871a2008-07-27 21:46:04 +0000614 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000615}
616
Dan Gohman475871a2008-07-27 21:46:04 +0000617SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
618 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000619 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
620 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000621 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000622 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000623 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000624 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000625 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000626 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000627 assert((!To[i].getNode() ||
628 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000629 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000630 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000631 DAG.ReplaceAllUsesWith(N, To);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000632 if (AddTo) {
633 // Push the new nodes and any users onto the worklist
634 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000635 if (To[i].getNode()) {
636 AddToWorkList(To[i].getNode());
637 AddUsersToWorkList(To[i].getNode());
638 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000639 }
640 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000641
Dan Gohmandbe664a2009-01-19 21:44:21 +0000642 // Finally, if the node is now dead, remove it from the graph. The node
643 // may not be dead if the replacement process recursively simplified to
644 // something else needing this node.
645 if (N->use_empty()) {
646 // Nodes can be reintroduced into the worklist. Make sure we do not
647 // process a node that has been replaced.
648 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000649
Dan Gohmandbe664a2009-01-19 21:44:21 +0000650 // Finally, since the node is now dead, remove it from the graph.
651 DAG.DeleteNode(N);
652 }
Dan Gohman475871a2008-07-27 21:46:04 +0000653 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000654}
655
Evan Chenge5b51ac2010-04-17 06:13:15 +0000656void DAGCombiner::
657CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000658 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000659 // are deleted, make sure to remove them from our worklist.
660 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000661 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000662
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000663 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000664 AddToWorkList(TLO.New.getNode());
665 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000666
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000667 // Finally, if the node is now dead, remove it from the graph. The node
668 // may not be dead if the replacement process recursively simplified to
669 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000670 if (TLO.Old.getNode()->use_empty()) {
671 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000672
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000673 // If the operands of this node are only used by the node, they will now
674 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000675 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
676 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
677 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000678
Gabor Greifba36cb52008-08-28 21:40:38 +0000679 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000680 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000681}
682
683/// SimplifyDemandedBits - Check the specified integer node value to see if
684/// it can be simplified or if things it uses can be simplified by bit
685/// propagation. If so, return true.
686bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000687 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000688 APInt KnownZero, KnownOne;
689 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
690 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000691
Dan Gohmane5af2d32009-01-29 01:59:02 +0000692 // Revisit the node.
693 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000694
Dan Gohmane5af2d32009-01-29 01:59:02 +0000695 // Replace the old value with the new one.
696 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000697 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000698 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000699 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000700 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000701 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000702
Dan Gohmane5af2d32009-01-29 01:59:02 +0000703 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000704 return true;
705}
706
Evan Cheng95c57ea2010-04-24 04:43:44 +0000707void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
708 DebugLoc dl = Load->getDebugLoc();
709 EVT VT = Load->getValueType(0);
710 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000711
Evan Cheng95c57ea2010-04-24 04:43:44 +0000712 DEBUG(dbgs() << "\nReplacing.9 ";
713 Load->dump(&DAG);
714 dbgs() << "\nWith: ";
715 Trunc.getNode()->dump(&DAG);
716 dbgs() << '\n');
717 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000718 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
719 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
Evan Cheng95c57ea2010-04-24 04:43:44 +0000720 removeFromWorkList(Load);
721 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000722 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000723}
724
725SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
726 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000727 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000728 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000729 EVT MemVT = LD->getMemoryVT();
730 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000731 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000732 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000733 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000734 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000735 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000736 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000737 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000738 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000739 LD->isNonTemporal(), LD->getAlignment());
740 }
741
Evan Cheng4c26e932010-04-19 19:29:22 +0000742 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000743 switch (Opc) {
744 default: break;
745 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000746 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000747 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000748 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000749 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000750 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000751 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000752 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000753 case ISD::Constant: {
754 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000755 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000756 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000757 }
Evan Chengcaf77402010-04-23 19:10:30 +0000758 }
759
760 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000761 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000762 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000763}
764
Evan Cheng95c57ea2010-04-24 04:43:44 +0000765SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000766 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
767 return SDValue();
768 EVT OldVT = Op.getValueType();
769 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000770 bool Replace = false;
771 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
772 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000773 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000774 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000775
776 if (Replace)
777 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
778 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000779 DAG.getValueType(OldVT));
780}
781
Evan Cheng95c57ea2010-04-24 04:43:44 +0000782SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000783 EVT OldVT = Op.getValueType();
784 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000785 bool Replace = false;
786 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
787 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000788 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000789 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000790
791 if (Replace)
792 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
793 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000794}
795
Evan Cheng64b7bf72010-04-16 06:14:10 +0000796/// PromoteIntBinOp - Promote the specified integer binary operation if the
797/// target indicates it is beneficial. e.g. On x86, it's usually better to
798/// promote i16 operations to i32 since i16 instructions are longer.
799SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
800 if (!LegalOperations)
801 return SDValue();
802
803 EVT VT = Op.getValueType();
804 if (VT.isVector() || !VT.isInteger())
805 return SDValue();
806
Evan Chenge5b51ac2010-04-17 06:13:15 +0000807 // If operation type is 'undesirable', e.g. i16 on x86, consider
808 // promoting it.
809 unsigned Opc = Op.getOpcode();
810 if (TLI.isTypeDesirableForOp(Opc, VT))
811 return SDValue();
812
Evan Cheng64b7bf72010-04-16 06:14:10 +0000813 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000814 // Consult target whether it is a good idea to promote this operation and
815 // what's the right type to promote it to.
816 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000817 assert(PVT != VT && "Don't know what type to promote to!");
818
Evan Cheng95c57ea2010-04-24 04:43:44 +0000819 bool Replace0 = false;
820 SDValue N0 = Op.getOperand(0);
821 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
822 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000823 return SDValue();
824
Evan Cheng95c57ea2010-04-24 04:43:44 +0000825 bool Replace1 = false;
826 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000827 SDValue NN1;
828 if (N0 == N1)
829 NN1 = NN0;
830 else {
831 NN1 = PromoteOperand(N1, PVT, Replace1);
832 if (NN1.getNode() == 0)
833 return SDValue();
834 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000835
Evan Cheng95c57ea2010-04-24 04:43:44 +0000836 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000837 if (NN1.getNode())
838 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000839
840 if (Replace0)
841 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
842 if (Replace1)
843 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000844
Evan Chengac7eae52010-04-27 19:48:13 +0000845 DEBUG(dbgs() << "\nPromoting ";
846 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000847 DebugLoc dl = Op.getDebugLoc();
848 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000849 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000850 }
851 return SDValue();
852}
853
854/// PromoteIntShiftOp - Promote the specified integer shift operation if the
855/// target indicates it is beneficial. e.g. On x86, it's usually better to
856/// promote i16 operations to i32 since i16 instructions are longer.
857SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
858 if (!LegalOperations)
859 return SDValue();
860
861 EVT VT = Op.getValueType();
862 if (VT.isVector() || !VT.isInteger())
863 return SDValue();
864
865 // If operation type is 'undesirable', e.g. i16 on x86, consider
866 // promoting it.
867 unsigned Opc = Op.getOpcode();
868 if (TLI.isTypeDesirableForOp(Opc, VT))
869 return SDValue();
870
871 EVT PVT = VT;
872 // Consult target whether it is a good idea to promote this operation and
873 // what's the right type to promote it to.
874 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
875 assert(PVT != VT && "Don't know what type to promote to!");
876
Evan Cheng95c57ea2010-04-24 04:43:44 +0000877 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000878 SDValue N0 = Op.getOperand(0);
879 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000880 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000881 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000882 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000883 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000884 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000885 if (N0.getNode() == 0)
886 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000887
Evan Chenge5b51ac2010-04-17 06:13:15 +0000888 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000889 if (Replace)
890 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000891
Evan Chengac7eae52010-04-27 19:48:13 +0000892 DEBUG(dbgs() << "\nPromoting ";
893 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000894 DebugLoc dl = Op.getDebugLoc();
895 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000896 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000897 }
898 return SDValue();
899}
900
Evan Cheng4c26e932010-04-19 19:29:22 +0000901SDValue DAGCombiner::PromoteExtend(SDValue Op) {
902 if (!LegalOperations)
903 return SDValue();
904
905 EVT VT = Op.getValueType();
906 if (VT.isVector() || !VT.isInteger())
907 return SDValue();
908
909 // If operation type is 'undesirable', e.g. i16 on x86, consider
910 // promoting it.
911 unsigned Opc = Op.getOpcode();
912 if (TLI.isTypeDesirableForOp(Opc, VT))
913 return SDValue();
914
915 EVT PVT = VT;
916 // Consult target whether it is a good idea to promote this operation and
917 // what's the right type to promote it to.
918 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
919 assert(PVT != VT && "Don't know what type to promote to!");
920 // fold (aext (aext x)) -> (aext x)
921 // fold (aext (zext x)) -> (zext x)
922 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000923 DEBUG(dbgs() << "\nPromoting ";
924 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000925 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
926 }
927 return SDValue();
928}
929
930bool DAGCombiner::PromoteLoad(SDValue Op) {
931 if (!LegalOperations)
932 return false;
933
934 EVT VT = Op.getValueType();
935 if (VT.isVector() || !VT.isInteger())
936 return false;
937
938 // If operation type is 'undesirable', e.g. i16 on x86, consider
939 // promoting it.
940 unsigned Opc = Op.getOpcode();
941 if (TLI.isTypeDesirableForOp(Opc, VT))
942 return false;
943
944 EVT PVT = VT;
945 // Consult target whether it is a good idea to promote this operation and
946 // what's the right type to promote it to.
947 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
948 assert(PVT != VT && "Don't know what type to promote to!");
949
950 DebugLoc dl = Op.getDebugLoc();
951 SDNode *N = Op.getNode();
952 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000953 EVT MemVT = LD->getMemoryVT();
954 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000955 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000956 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000957 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000958 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000959 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000960 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000961 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000962 LD->isNonTemporal(), LD->getAlignment());
963 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
964
Evan Cheng95c57ea2010-04-24 04:43:44 +0000965 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000966 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000967 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000968 Result.getNode()->dump(&DAG);
969 dbgs() << '\n');
970 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000971 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
972 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
Evan Cheng4c26e932010-04-19 19:29:22 +0000973 removeFromWorkList(N);
974 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000975 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000976 return true;
977 }
978 return false;
979}
980
Evan Chenge5b51ac2010-04-17 06:13:15 +0000981
Chris Lattner29446522007-05-14 22:04:50 +0000982//===----------------------------------------------------------------------===//
983// Main DAG Combiner implementation
984//===----------------------------------------------------------------------===//
985
Duncan Sands25cf2272008-11-24 14:53:14 +0000986void DAGCombiner::Run(CombineLevel AtLevel) {
987 // set the instance variables, so that the various visit routines may use it.
988 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000989 LegalOperations = Level >= AfterLegalizeVectorOps;
990 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000991
Evan Cheng17a568b2008-08-29 22:21:44 +0000992 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000993 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
994 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000995 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000996
Evan Cheng17a568b2008-08-29 22:21:44 +0000997 // Create a dummy node (which is not added to allnodes), that adds a reference
998 // to the root node, preventing it from being deleted, and tracking any
999 // changes of the root.
1000 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +00001001
Jim Laskey26f7fa72006-10-17 19:33:52 +00001002 // The root of the dag may dangle to deleted nodes until the dag combiner is
1003 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +00001004 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00001005
James Molloy6660c052012-02-16 09:17:04 +00001006 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +00001007 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +00001008 while (!WorkListContents.empty()) {
1009 SDNode *N;
1010 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1011 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1012 // worklist *should* contain, and check the node we want to visit is should
1013 // actually be visited.
1014 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001015 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001016 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001017
Evan Cheng17a568b2008-08-29 22:21:44 +00001018 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1019 // N is deleted from the DAG, since they too may now be dead or may have a
1020 // reduced number of uses, allowing other xforms.
1021 if (N->use_empty() && N != &Dummy) {
1022 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1023 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001024
Evan Cheng17a568b2008-08-29 22:21:44 +00001025 DAG.DeleteNode(N);
1026 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001027 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
Evan Cheng17a568b2008-08-29 22:21:44 +00001029 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001030
Evan Cheng17a568b2008-08-29 22:21:44 +00001031 if (RV.getNode() == 0)
1032 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001033
Evan Cheng17a568b2008-08-29 22:21:44 +00001034 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001035
Evan Cheng17a568b2008-08-29 22:21:44 +00001036 // If we get back the same node we passed in, rather than a new node or
1037 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001038 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001039 // mechanics for us, we have no work to do in this case.
1040 if (RV.getNode() == N)
1041 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001042
Evan Cheng17a568b2008-08-29 22:21:44 +00001043 assert(N->getOpcode() != ISD::DELETED_NODE &&
1044 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1045 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001046
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001047 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001048 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001049 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001050 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001051 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001052
Devang Patel9728ea22011-05-23 22:04:42 +00001053 // Transfer debug value.
1054 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001055 WorkListRemover DeadNodes(*this);
1056 if (N->getNumValues() == RV.getNode()->getNumValues())
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001057 DAG.ReplaceAllUsesWith(N, RV.getNode());
Evan Cheng17a568b2008-08-29 22:21:44 +00001058 else {
1059 assert(N->getValueType(0) == RV.getValueType() &&
1060 N->getNumValues() == 1 && "Type mismatch");
1061 SDValue OpV = RV;
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001062 DAG.ReplaceAllUsesWith(N, &OpV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001063 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001064
Evan Cheng17a568b2008-08-29 22:21:44 +00001065 // Push the new node and any users onto the worklist
1066 AddToWorkList(RV.getNode());
1067 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001068
Evan Cheng17a568b2008-08-29 22:21:44 +00001069 // Add any uses of the old node to the worklist in case this node is the
1070 // last one that uses them. They may become dead after this node is
1071 // deleted.
1072 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1073 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001074
Dan Gohmandbe664a2009-01-19 21:44:21 +00001075 // Finally, if the node is now dead, remove it from the graph. The node
1076 // may not be dead if the replacement process recursively simplified to
1077 // something else needing this node.
1078 if (N->use_empty()) {
1079 // Nodes can be reintroduced into the worklist. Make sure we do not
1080 // process a node that has been replaced.
1081 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001082
Dan Gohmandbe664a2009-01-19 21:44:21 +00001083 // Finally, since the node is now dead, remove it from the graph.
1084 DAG.DeleteNode(N);
1085 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001086 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001087
Chris Lattner95038592005-10-05 06:35:28 +00001088 // If the root changed (e.g. it was a dead load, update the root).
1089 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001090 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001091}
1092
Dan Gohman475871a2008-07-27 21:46:04 +00001093SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001094 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001095 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001096 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001097 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001098 case ISD::ADD: return visitADD(N);
1099 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001100 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001101 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001102 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001103 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001104 case ISD::MUL: return visitMUL(N);
1105 case ISD::SDIV: return visitSDIV(N);
1106 case ISD::UDIV: return visitUDIV(N);
1107 case ISD::SREM: return visitSREM(N);
1108 case ISD::UREM: return visitUREM(N);
1109 case ISD::MULHU: return visitMULHU(N);
1110 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001111 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1112 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001113 case ISD::SMULO: return visitSMULO(N);
1114 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001115 case ISD::SDIVREM: return visitSDIVREM(N);
1116 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001117 case ISD::AND: return visitAND(N);
1118 case ISD::OR: return visitOR(N);
1119 case ISD::XOR: return visitXOR(N);
1120 case ISD::SHL: return visitSHL(N);
1121 case ISD::SRA: return visitSRA(N);
1122 case ISD::SRL: return visitSRL(N);
1123 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001124 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001125 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001126 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001127 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001128 case ISD::SELECT: return visitSELECT(N);
1129 case ISD::SELECT_CC: return visitSELECT_CC(N);
1130 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001131 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1132 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001133 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001134 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1135 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001136 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001137 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001138 case ISD::FADD: return visitFADD(N);
1139 case ISD::FSUB: return visitFSUB(N);
1140 case ISD::FMUL: return visitFMUL(N);
Owen Anderson062c0a52012-05-02 22:17:40 +00001141 case ISD::FMA: return visitFMA(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001142 case ISD::FDIV: return visitFDIV(N);
1143 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001144 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001145 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1146 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1147 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1148 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1149 case ISD::FP_ROUND: return visitFP_ROUND(N);
1150 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1151 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1152 case ISD::FNEG: return visitFNEG(N);
1153 case ISD::FABS: return visitFABS(N);
Owen Anderson7c626d32012-08-13 23:32:49 +00001154 case ISD::FFLOOR: return visitFFLOOR(N);
1155 case ISD::FCEIL: return visitFCEIL(N);
1156 case ISD::FTRUNC: return visitFTRUNC(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001157 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001158 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001159 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001160 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001161 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001162 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001163 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1164 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001165 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001166 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001167 }
Dan Gohman475871a2008-07-27 21:46:04 +00001168 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001169}
1170
Dan Gohman475871a2008-07-27 21:46:04 +00001171SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001172 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001173
1174 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001175 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001176 assert(N->getOpcode() != ISD::DELETED_NODE &&
1177 "Node was deleted but visit returned NULL!");
1178
1179 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1180 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1181
1182 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001183 TargetLowering::DAGCombinerInfo
Nadav Rotem444b4bf2012-12-27 06:47:41 +00001184 DagCombineInfo(DAG, Level, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001185
1186 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1187 }
1188 }
1189
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001190 // If nothing happened still, try promoting the operation.
1191 if (RV.getNode() == 0) {
1192 switch (N->getOpcode()) {
1193 default: break;
1194 case ISD::ADD:
1195 case ISD::SUB:
1196 case ISD::MUL:
1197 case ISD::AND:
1198 case ISD::OR:
1199 case ISD::XOR:
1200 RV = PromoteIntBinOp(SDValue(N, 0));
1201 break;
1202 case ISD::SHL:
1203 case ISD::SRA:
1204 case ISD::SRL:
1205 RV = PromoteIntShiftOp(SDValue(N, 0));
1206 break;
1207 case ISD::SIGN_EXTEND:
1208 case ISD::ZERO_EXTEND:
1209 case ISD::ANY_EXTEND:
1210 RV = PromoteExtend(SDValue(N, 0));
1211 break;
1212 case ISD::LOAD:
1213 if (PromoteLoad(SDValue(N, 0)))
1214 RV = SDValue(N, 0);
1215 break;
1216 }
1217 }
1218
Scott Michelfdc40a02009-02-17 22:15:04 +00001219 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001220 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001221 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001222 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1223 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001224 SDValue N0 = N->getOperand(0);
1225 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001226
Evan Cheng08b11732008-03-22 01:55:50 +00001227 // Constant operands are canonicalized to RHS.
1228 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001229 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001230 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1231 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001232 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001233 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001234 }
1235 }
1236
Dan Gohman389079b2007-10-08 17:57:15 +00001237 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001238}
Dan Gohman389079b2007-10-08 17:57:15 +00001239
Chris Lattner6270f682006-10-08 22:57:01 +00001240/// getInputChainForNode - Given a node, return its input chain if it has one,
1241/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001242static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001243 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001244 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001245 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001246 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001247 return N->getOperand(NumOps-1);
1248 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001249 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001250 return N->getOperand(i);
1251 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001252 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001253}
1254
Dan Gohman475871a2008-07-27 21:46:04 +00001255SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001256 // If N has two operands, where one has an input chain equal to the other,
1257 // the 'other' chain is redundant.
1258 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001259 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001260 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001261 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001262 return N->getOperand(1);
1263 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001264
Chris Lattnerc76d4412007-05-16 06:37:59 +00001265 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001266 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001267 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001268 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001269
Jim Laskey6ff23e52006-10-04 16:53:27 +00001270 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001271 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001272
Jim Laskey71382342006-10-07 23:37:56 +00001273 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001274 // encountered.
1275 for (unsigned i = 0; i < TFs.size(); ++i) {
1276 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001277
Jim Laskey6ff23e52006-10-04 16:53:27 +00001278 // Check each of the operands.
1279 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001280 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001281
Jim Laskey6ff23e52006-10-04 16:53:27 +00001282 switch (Op.getOpcode()) {
1283 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001284 // Entry tokens don't need to be added to the list. They are
1285 // rededundant.
1286 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001287 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001288
Jim Laskey6ff23e52006-10-04 16:53:27 +00001289 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001290 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001291 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001292 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001293 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001294 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001295 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001296 Changed = true;
1297 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001298 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001299 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001300
Jim Laskey6ff23e52006-10-04 16:53:27 +00001301 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001302 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001303 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001304 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001305 else
1306 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001307 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001308 }
1309 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001310 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001311
Dan Gohman475871a2008-07-27 21:46:04 +00001312 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001313
1314 // If we've change things around then replace token factor.
1315 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001316 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001317 // The entry token is the only possible outcome.
1318 Result = DAG.getEntryNode();
1319 } else {
1320 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001321 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001322 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001323 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001324
Jim Laskey274062c2006-10-13 23:32:28 +00001325 // Don't add users to work list.
1326 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001327 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001328
Jim Laskey6ff23e52006-10-04 16:53:27 +00001329 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001330}
1331
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001332/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001333SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001334 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001335 // Replacing results may cause a different MERGE_VALUES to suddenly
1336 // be CSE'd with N, and carry its uses with it. Iterate until no
1337 // uses remain, to ensure that the node can be safely deleted.
Pete Cooper3affd9e2012-06-20 19:35:43 +00001338 // First add the users of this node to the work list so that they
1339 // can be tried again once they have new operands.
1340 AddUsersToWorkList(N);
Dan Gohman00edf392009-08-10 23:43:19 +00001341 do {
1342 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001343 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
Dan Gohman00edf392009-08-10 23:43:19 +00001344 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001345 removeFromWorkList(N);
1346 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001347 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001348}
1349
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001350static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001351SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1352 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001353 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001354 SDValue N00 = N0.getOperand(0);
1355 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001356 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001357
Gabor Greifba36cb52008-08-28 21:40:38 +00001358 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001359 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001360 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1361 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1362 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1363 N00.getOperand(0), N01),
1364 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1365 N00.getOperand(1), N01));
1366 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001367 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001368
Dan Gohman475871a2008-07-27 21:46:04 +00001369 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001370}
1371
Dan Gohman475871a2008-07-27 21:46:04 +00001372SDValue DAGCombiner::visitADD(SDNode *N) {
1373 SDValue N0 = N->getOperand(0);
1374 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001375 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1376 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001377 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001378
1379 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001380 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001381 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001382 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper48b509c2012-12-10 08:12:29 +00001383
1384 // fold (add x, 0) -> x, vector edition
1385 if (ISD::isBuildVectorAllZeros(N1.getNode()))
1386 return N0;
1387 if (ISD::isBuildVectorAllZeros(N0.getNode()))
1388 return N1;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001389 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001390
Dan Gohman613e0d82007-07-03 14:03:57 +00001391 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001392 if (N0.getOpcode() == ISD::UNDEF)
1393 return N0;
1394 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001395 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001396 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001397 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001398 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001399 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001400 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001401 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001402 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001403 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001404 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001405 // fold (add Sym, c) -> Sym+c
1406 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001407 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001408 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001409 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001410 GA->getOffset() +
1411 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001412 // fold ((c1-A)+c2) -> (c1+c2)-A
1413 if (N1C && N0.getOpcode() == ISD::SUB)
1414 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001415 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001416 DAG.getConstant(N1C->getAPIntValue()+
1417 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001418 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001419 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001420 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001421 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001422 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001423 // fold ((0-A) + B) -> B-A
1424 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1425 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001426 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001427 // fold (A + (0-B)) -> A-B
1428 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1429 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001430 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001431 // fold (A+(B-A)) -> B
1432 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001433 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001434 // fold ((B-A)+A) -> B
1435 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1436 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001437 // fold (A+(B-(A+C))) to (B-C)
1438 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001439 N0 == N1.getOperand(1).getOperand(0))
1440 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001441 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001442 // fold (A+(B-(C+A))) to (B-C)
1443 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001444 N0 == N1.getOperand(1).getOperand(1))
1445 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001446 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001447 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001448 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1449 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001450 N0 == N1.getOperand(0).getOperand(1))
1451 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1452 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001453
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001454 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1455 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1456 SDValue N00 = N0.getOperand(0);
1457 SDValue N01 = N0.getOperand(1);
1458 SDValue N10 = N1.getOperand(0);
1459 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001460
1461 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1462 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1463 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1464 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001465 }
Chris Lattner947c2892006-03-13 06:51:27 +00001466
Dan Gohman475871a2008-07-27 21:46:04 +00001467 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1468 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001469
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001470 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001471 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001472 APInt LHSZero, LHSOne;
1473 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001474 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001475
Dan Gohman948d8ea2008-02-20 16:33:30 +00001476 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001477 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001478
Chris Lattner947c2892006-03-13 06:51:27 +00001479 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1480 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001481 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001482 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001483 }
1484 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001485
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001486 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001487 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001488 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001489 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001490 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001491 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001492 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001493 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001494 }
1495
Dan Gohmancd9e1552010-01-19 23:30:49 +00001496 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1497 if (N1.getOpcode() == ISD::SHL &&
1498 N1.getOperand(0).getOpcode() == ISD::SUB)
1499 if (ConstantSDNode *C =
1500 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1501 if (C->getAPIntValue() == 0)
1502 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1503 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1504 N1.getOperand(0).getOperand(1),
1505 N1.getOperand(1)));
1506 if (N0.getOpcode() == ISD::SHL &&
1507 N0.getOperand(0).getOpcode() == ISD::SUB)
1508 if (ConstantSDNode *C =
1509 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1510 if (C->getAPIntValue() == 0)
1511 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1512 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1513 N0.getOperand(0).getOperand(1),
1514 N0.getOperand(1)));
1515
Owen Andersonbc146b02010-09-21 20:42:50 +00001516 if (N1.getOpcode() == ISD::AND) {
1517 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001518 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001519 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1520 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001521
Owen Andersonbc146b02010-09-21 20:42:50 +00001522 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1523 // and similar xforms where the inner op is either ~0 or 0.
1524 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1525 DebugLoc DL = N->getDebugLoc();
1526 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1527 }
1528 }
1529
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001530 // add (sext i1), X -> sub X, (zext i1)
1531 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1532 N0.getOperand(0).getValueType() == MVT::i1 &&
1533 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1534 DebugLoc DL = N->getDebugLoc();
1535 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1536 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1537 }
1538
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001539 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001540}
1541
Dan Gohman475871a2008-07-27 21:46:04 +00001542SDValue DAGCombiner::visitADDC(SDNode *N) {
1543 SDValue N0 = N->getOperand(0);
1544 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001545 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1546 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001547 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001548
Chris Lattner91153682007-03-04 20:03:15 +00001549 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001550 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001551 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001552 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001553 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001554
Chris Lattner91153682007-03-04 20:03:15 +00001555 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001556 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001557 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001558
Chris Lattnerb6541762007-03-04 20:40:38 +00001559 // fold (addc x, 0) -> x + no carry out
1560 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001561 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001562 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001563
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001564 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001565 APInt LHSZero, LHSOne;
1566 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001567 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001568
Dan Gohman948d8ea2008-02-20 16:33:30 +00001569 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001570 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001571
Chris Lattnerb6541762007-03-04 20:40:38 +00001572 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1573 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001574 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001575 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001576 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001577 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001578 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001579
Dan Gohman475871a2008-07-27 21:46:04 +00001580 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001581}
1582
Dan Gohman475871a2008-07-27 21:46:04 +00001583SDValue DAGCombiner::visitADDE(SDNode *N) {
1584 SDValue N0 = N->getOperand(0);
1585 SDValue N1 = N->getOperand(1);
1586 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001587 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1588 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001589
Chris Lattner91153682007-03-04 20:03:15 +00001590 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001591 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001592 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1593 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001594
Chris Lattnerb6541762007-03-04 20:40:38 +00001595 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001596 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001597 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001598
Dan Gohman475871a2008-07-27 21:46:04 +00001599 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001600}
1601
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001602// Since it may not be valid to emit a fold to zero for vector initializers
1603// check if we can before folding.
1604static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001605 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001606 if (!VT.isVector()) {
1607 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001608 }
1609 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001610 // Produce a vector of zeros.
1611 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1612 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1613 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1614 &Ops[0], Ops.size());
1615 }
1616 return SDValue();
1617}
1618
Dan Gohman475871a2008-07-27 21:46:04 +00001619SDValue DAGCombiner::visitSUB(SDNode *N) {
1620 SDValue N0 = N->getOperand(0);
1621 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001622 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1623 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001624 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1625 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001626 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001627
Dan Gohman7f321562007-06-25 16:23:39 +00001628 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001629 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001630 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001631 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper48b509c2012-12-10 08:12:29 +00001632
1633 // fold (sub x, 0) -> x, vector edition
1634 if (ISD::isBuildVectorAllZeros(N1.getNode()))
1635 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001636 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001637
Chris Lattner854077d2005-10-17 01:07:11 +00001638 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001639 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001640 if (N0 == N1)
1641 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001642 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001643 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001644 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001645 // fold (sub x, c) -> (add x, -c)
1646 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001647 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001648 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001649 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1650 if (N0C && N0C->isAllOnesValue())
1651 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001652 // fold A-(A-B) -> B
1653 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1654 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001655 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001656 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001657 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001658 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001659 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001660 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001661 // fold C2-(A+C1) -> (C2-C1)-A
1662 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00001663 SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(),
1664 VT);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001665 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
Bill Wendling96cb1122012-07-19 00:04:14 +00001666 N1.getOperand(0));
Eric Christopher7332e6e2011-07-14 01:12:15 +00001667 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001668 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001669 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001670 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1671 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001672 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001673 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1674 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001675 // fold ((A+(C+B))-B) -> A+C
1676 if (N0.getOpcode() == ISD::ADD &&
1677 N0.getOperand(1).getOpcode() == ISD::ADD &&
1678 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001679 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1680 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001681 // fold ((A-(B-C))-C) -> A-B
1682 if (N0.getOpcode() == ISD::SUB &&
1683 N0.getOperand(1).getOpcode() == ISD::SUB &&
1684 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001685 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1686 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001687
Dan Gohman613e0d82007-07-03 14:03:57 +00001688 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001689 if (N0.getOpcode() == ISD::UNDEF)
1690 return N0;
1691 if (N1.getOpcode() == ISD::UNDEF)
1692 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001693
Dan Gohman6520e202008-10-18 02:06:02 +00001694 // If the relocation model supports it, consider symbol offsets.
1695 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001696 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001697 // fold (sub Sym, c) -> Sym-c
1698 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001699 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001700 GA->getOffset() -
1701 (uint64_t)N1C->getSExtValue());
1702 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1703 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1704 if (GA->getGlobal() == GB->getGlobal())
1705 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1706 VT);
1707 }
1708
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001709 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001710}
1711
Craig Toppercc274522012-01-07 09:06:39 +00001712SDValue DAGCombiner::visitSUBC(SDNode *N) {
1713 SDValue N0 = N->getOperand(0);
1714 SDValue N1 = N->getOperand(1);
1715 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1716 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1717 EVT VT = N0.getValueType();
1718
1719 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001720 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001721 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1722 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1723 MVT::Glue));
1724
1725 // fold (subc x, x) -> 0 + no borrow
1726 if (N0 == N1)
1727 return CombineTo(N, DAG.getConstant(0, VT),
1728 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1729 MVT::Glue));
1730
1731 // fold (subc x, 0) -> x + no borrow
1732 if (N1C && N1C->isNullValue())
1733 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1734 MVT::Glue));
1735
1736 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1737 if (N0C && N0C->isAllOnesValue())
1738 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1739 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1740 MVT::Glue));
1741
1742 return SDValue();
1743}
1744
1745SDValue DAGCombiner::visitSUBE(SDNode *N) {
1746 SDValue N0 = N->getOperand(0);
1747 SDValue N1 = N->getOperand(1);
1748 SDValue CarryIn = N->getOperand(2);
1749
1750 // fold (sube x, y, false) -> (subc x, y)
1751 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1752 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1753
1754 return SDValue();
1755}
1756
Dan Gohman475871a2008-07-27 21:46:04 +00001757SDValue DAGCombiner::visitMUL(SDNode *N) {
1758 SDValue N0 = N->getOperand(0);
1759 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001760 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1761 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001762 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001763
Dan Gohman7f321562007-06-25 16:23:39 +00001764 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001765 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001766 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001767 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001768 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001769
Dan Gohman613e0d82007-07-03 14:03:57 +00001770 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001771 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001772 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001773 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001774 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001775 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001776 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001777 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001778 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001779 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001780 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001781 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001782 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001783 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001784 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1785 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001786 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001787 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001788 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001789 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001790 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001791 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001792 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1793 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001794 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001795 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001796 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1797 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001798 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001799 DAG.getConstant(Log2Val,
1800 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001801 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001802 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001803 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001804 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001805 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1806 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001807 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001808 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1809 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001810 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001811
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001812 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1813 // use.
1814 {
Dan Gohman475871a2008-07-27 21:46:04 +00001815 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001816 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1817 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001818 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001819 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001820 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001821 isa<ConstantSDNode>(N1.getOperand(1)) &&
1822 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001823 Sh = N1; Y = N0;
1824 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001825
Gabor Greifba36cb52008-08-28 21:40:38 +00001826 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001827 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1828 Sh.getOperand(0), Y);
1829 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1830 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001831 }
1832 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001833
Chris Lattnera1deca32006-03-04 23:33:26 +00001834 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001835 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001836 isa<ConstantSDNode>(N0.getOperand(1)))
1837 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1838 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1839 N0.getOperand(0), N1),
1840 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1841 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001842
Nate Begemancd4d58c2006-02-03 06:46:56 +00001843 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001844 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001845 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001846 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001847
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001848 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001849}
1850
Dan Gohman475871a2008-07-27 21:46:04 +00001851SDValue DAGCombiner::visitSDIV(SDNode *N) {
1852 SDValue N0 = N->getOperand(0);
1853 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001854 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1855 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001856 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001857
Dan Gohman7f321562007-06-25 16:23:39 +00001858 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001859 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001860 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001861 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001862 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001863
Nate Begeman1d4d4142005-09-01 00:19:25 +00001864 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001865 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001866 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001867 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001868 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001869 return N0;
1870 // fold (sdiv X, -1) -> 0-X
1871 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001872 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1873 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001874 // If we know the sign bits of both operands are zero, strength reduce to a
1875 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001876 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001877 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001878 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1879 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001880 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001881 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001882 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001883 (N1C->getAPIntValue().isPowerOf2() ||
1884 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001885 // If dividing by powers of two is cheap, then don't perform the following
1886 // fold.
1887 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001888 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001889
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001890 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001891
Chris Lattner8f4880b2006-02-16 08:02:36 +00001892 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001893 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1894 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001895 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001896 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001897
Chris Lattner8f4880b2006-02-16 08:02:36 +00001898 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001899 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1900 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001901 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001902 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001903 AddToWorkList(SRL.getNode());
1904 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001905 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001906 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001907
Nate Begeman405e3ec2005-10-21 00:02:42 +00001908 // If we're dividing by a positive value, we're done. Otherwise, we must
1909 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001910 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001911 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001912
Gabor Greifba36cb52008-08-28 21:40:38 +00001913 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001914 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1915 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001916 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001917
Nate Begeman69575232005-10-20 02:15:44 +00001918 // if integer divide is expensive and we satisfy the requirements, emit an
1919 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001920 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001921 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001922 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001923 }
Dan Gohman7f321562007-06-25 16:23:39 +00001924
Dan Gohman613e0d82007-07-03 14:03:57 +00001925 // undef / X -> 0
1926 if (N0.getOpcode() == ISD::UNDEF)
1927 return DAG.getConstant(0, VT);
1928 // X / undef -> undef
1929 if (N1.getOpcode() == ISD::UNDEF)
1930 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001931
Dan Gohman475871a2008-07-27 21:46:04 +00001932 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001933}
1934
Dan Gohman475871a2008-07-27 21:46:04 +00001935SDValue DAGCombiner::visitUDIV(SDNode *N) {
1936 SDValue N0 = N->getOperand(0);
1937 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001938 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1939 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001940 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001941
Dan Gohman7f321562007-06-25 16:23:39 +00001942 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001943 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001944 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001945 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001946 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001947
Nate Begeman1d4d4142005-09-01 00:19:25 +00001948 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001949 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001950 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001951 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001952 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001953 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001954 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001955 getShiftAmountTy(N0.getValueType())));
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001956 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001957 if (N1.getOpcode() == ISD::SHL) {
1958 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001959 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001960 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001961 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1962 N1.getOperand(1),
1963 DAG.getConstant(SHC->getAPIntValue()
1964 .logBase2(),
1965 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001966 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001967 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001968 }
1969 }
1970 }
Nate Begeman69575232005-10-20 02:15:44 +00001971 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001972 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001973 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001974 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001975 }
Dan Gohman7f321562007-06-25 16:23:39 +00001976
Dan Gohman613e0d82007-07-03 14:03:57 +00001977 // undef / X -> 0
1978 if (N0.getOpcode() == ISD::UNDEF)
1979 return DAG.getConstant(0, VT);
1980 // X / undef -> undef
1981 if (N1.getOpcode() == ISD::UNDEF)
1982 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001983
Dan Gohman475871a2008-07-27 21:46:04 +00001984 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001985}
1986
Dan Gohman475871a2008-07-27 21:46:04 +00001987SDValue DAGCombiner::visitSREM(SDNode *N) {
1988 SDValue N0 = N->getOperand(0);
1989 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001990 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1991 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001992 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001993
Nate Begeman1d4d4142005-09-01 00:19:25 +00001994 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001995 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001996 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001997 // If we know the sign bits of both operands are zero, strength reduce to a
1998 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001999 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002000 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002001 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00002002 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002003
Dan Gohman77003042007-11-26 23:46:11 +00002004 // If X/C can be simplified by the division-by-constant logic, lower
2005 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002006 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002007 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002008 AddToWorkList(Div.getNode());
2009 SDValue OptimizedDiv = combine(Div.getNode());
2010 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002011 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2012 OptimizedDiv, N1);
2013 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002014 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002015 return Sub;
2016 }
Chris Lattner26d29902006-10-12 20:58:32 +00002017 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002018
Dan Gohman613e0d82007-07-03 14:03:57 +00002019 // undef % X -> 0
2020 if (N0.getOpcode() == ISD::UNDEF)
2021 return DAG.getConstant(0, VT);
2022 // X % undef -> undef
2023 if (N1.getOpcode() == ISD::UNDEF)
2024 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002025
Dan Gohman475871a2008-07-27 21:46:04 +00002026 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002027}
2028
Dan Gohman475871a2008-07-27 21:46:04 +00002029SDValue DAGCombiner::visitUREM(SDNode *N) {
2030 SDValue N0 = N->getOperand(0);
2031 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002032 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2033 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002034 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002035
Nate Begeman1d4d4142005-09-01 00:19:25 +00002036 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002037 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002038 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002039 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002040 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002041 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002042 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002043 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2044 if (N1.getOpcode() == ISD::SHL) {
2045 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002046 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002047 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002048 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002049 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002050 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002051 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002052 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002053 }
2054 }
2055 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002056
Dan Gohman77003042007-11-26 23:46:11 +00002057 // If X/C can be simplified by the division-by-constant logic, lower
2058 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002059 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002060 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002061 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002062 SDValue OptimizedDiv = combine(Div.getNode());
2063 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002064 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2065 OptimizedDiv, N1);
2066 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002067 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002068 return Sub;
2069 }
Chris Lattner26d29902006-10-12 20:58:32 +00002070 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002071
Dan Gohman613e0d82007-07-03 14:03:57 +00002072 // undef % X -> 0
2073 if (N0.getOpcode() == ISD::UNDEF)
2074 return DAG.getConstant(0, VT);
2075 // X % undef -> undef
2076 if (N1.getOpcode() == ISD::UNDEF)
2077 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002078
Dan Gohman475871a2008-07-27 21:46:04 +00002079 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002080}
2081
Dan Gohman475871a2008-07-27 21:46:04 +00002082SDValue DAGCombiner::visitMULHS(SDNode *N) {
2083 SDValue N0 = N->getOperand(0);
2084 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002085 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002086 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002087 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002088
Nate Begeman1d4d4142005-09-01 00:19:25 +00002089 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002090 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002091 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002092 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002093 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002094 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2095 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002096 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002097 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002098 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002099 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002100
Chris Lattnerde1c3602010-12-13 08:39:01 +00002101 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2102 // plus a shift.
2103 if (VT.isSimple() && !VT.isVector()) {
2104 MVT Simple = VT.getSimpleVT();
2105 unsigned SimpleSize = Simple.getSizeInBits();
2106 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2107 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2108 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2109 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2110 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002111 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002112 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002113 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2114 }
2115 }
Owen Anderson95771af2011-02-25 21:41:48 +00002116
Dan Gohman475871a2008-07-27 21:46:04 +00002117 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002118}
2119
Dan Gohman475871a2008-07-27 21:46:04 +00002120SDValue DAGCombiner::visitMULHU(SDNode *N) {
2121 SDValue N0 = N->getOperand(0);
2122 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002123 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002124 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002125 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002126
Nate Begeman1d4d4142005-09-01 00:19:25 +00002127 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002128 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002129 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002130 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002131 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002132 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002133 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002134 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002135 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002136
Chris Lattnerde1c3602010-12-13 08:39:01 +00002137 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2138 // plus a shift.
2139 if (VT.isSimple() && !VT.isVector()) {
2140 MVT Simple = VT.getSimpleVT();
2141 unsigned SimpleSize = Simple.getSizeInBits();
2142 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2143 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2144 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2145 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2146 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2147 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002148 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002149 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2150 }
2151 }
Owen Anderson95771af2011-02-25 21:41:48 +00002152
Dan Gohman475871a2008-07-27 21:46:04 +00002153 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002154}
2155
Dan Gohman389079b2007-10-08 17:57:15 +00002156/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2157/// compute two values. LoOp and HiOp give the opcodes for the two computations
2158/// that are being performed. Return true if a simplification was made.
2159///
Scott Michelfdc40a02009-02-17 22:15:04 +00002160SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002161 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002162 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002163 bool HiExists = N->hasAnyUseOfValue(1);
2164 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002165 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002166 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002167 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2168 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002169 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002170 }
2171
2172 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002173 bool LoExists = N->hasAnyUseOfValue(0);
2174 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002175 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002176 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002177 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2178 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002179 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002180 }
2181
Evan Cheng44711942007-11-08 09:25:29 +00002182 // If both halves are used, return as it is.
2183 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002184 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002185
2186 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002187 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002188 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2189 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002190 AddToWorkList(Lo.getNode());
2191 SDValue LoOpt = combine(Lo.getNode());
2192 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002193 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002194 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002195 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002196 }
2197
Evan Cheng44711942007-11-08 09:25:29 +00002198 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002199 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002200 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002201 AddToWorkList(Hi.getNode());
2202 SDValue HiOpt = combine(Hi.getNode());
2203 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002204 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002205 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002206 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002207 }
Bill Wendling826d1142009-01-30 03:08:40 +00002208
Dan Gohman475871a2008-07-27 21:46:04 +00002209 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002210}
2211
Dan Gohman475871a2008-07-27 21:46:04 +00002212SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2213 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002214 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002215
Chris Lattner33e77d32010-12-15 06:04:19 +00002216 EVT VT = N->getValueType(0);
2217 DebugLoc DL = N->getDebugLoc();
2218
2219 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2220 // plus a shift.
2221 if (VT.isSimple() && !VT.isVector()) {
2222 MVT Simple = VT.getSimpleVT();
2223 unsigned SimpleSize = Simple.getSizeInBits();
2224 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2225 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2226 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2227 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2228 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2229 // Compute the high part as N1.
2230 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002231 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002232 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2233 // Compute the low part as N0.
2234 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2235 return CombineTo(N, Lo, Hi);
2236 }
2237 }
Owen Anderson95771af2011-02-25 21:41:48 +00002238
Dan Gohman475871a2008-07-27 21:46:04 +00002239 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002240}
2241
Dan Gohman475871a2008-07-27 21:46:04 +00002242SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2243 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002244 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002245
Chris Lattner33e77d32010-12-15 06:04:19 +00002246 EVT VT = N->getValueType(0);
2247 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002248
Chris Lattner33e77d32010-12-15 06:04:19 +00002249 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2250 // plus a shift.
2251 if (VT.isSimple() && !VT.isVector()) {
2252 MVT Simple = VT.getSimpleVT();
2253 unsigned SimpleSize = Simple.getSizeInBits();
2254 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2255 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2256 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2257 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2258 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2259 // Compute the high part as N1.
2260 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002261 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002262 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2263 // Compute the low part as N0.
2264 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2265 return CombineTo(N, Lo, Hi);
2266 }
2267 }
Owen Anderson95771af2011-02-25 21:41:48 +00002268
Dan Gohman475871a2008-07-27 21:46:04 +00002269 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002270}
2271
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002272SDValue DAGCombiner::visitSMULO(SDNode *N) {
2273 // (smulo x, 2) -> (saddo x, x)
2274 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2275 if (C2->getAPIntValue() == 2)
2276 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2277 N->getOperand(0), N->getOperand(0));
2278
2279 return SDValue();
2280}
2281
2282SDValue DAGCombiner::visitUMULO(SDNode *N) {
2283 // (umulo x, 2) -> (uaddo x, x)
2284 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2285 if (C2->getAPIntValue() == 2)
2286 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2287 N->getOperand(0), N->getOperand(0));
2288
2289 return SDValue();
2290}
2291
Dan Gohman475871a2008-07-27 21:46:04 +00002292SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2293 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002294 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002295
Dan Gohman475871a2008-07-27 21:46:04 +00002296 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002297}
2298
Dan Gohman475871a2008-07-27 21:46:04 +00002299SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2300 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002301 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002302
Dan Gohman475871a2008-07-27 21:46:04 +00002303 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002304}
2305
Chris Lattner35e5c142006-05-05 05:51:50 +00002306/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2307/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002308SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2309 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002310 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002311 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002312
Dan Gohmanff00a552010-01-14 03:08:49 +00002313 // Bail early if none of these transforms apply.
2314 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2315
Chris Lattner540121f2006-05-05 06:31:05 +00002316 // For each of OP in AND/OR/XOR:
2317 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2318 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2319 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002320 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002321 //
2322 // do not sink logical op inside of a vector extend, since it may combine
2323 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002324 EVT Op0VT = N0.getOperand(0).getValueType();
2325 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002326 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002327 // Avoid infinite looping with PromoteIntBinOp.
2328 (N0.getOpcode() == ISD::ANY_EXTEND &&
2329 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002330 (N0.getOpcode() == ISD::TRUNCATE &&
2331 (!TLI.isZExtFree(VT, Op0VT) ||
2332 !TLI.isTruncateFree(Op0VT, VT)) &&
2333 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002334 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002335 Op0VT == N1.getOperand(0).getValueType() &&
2336 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002337 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2338 N0.getOperand(0).getValueType(),
2339 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002340 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002341 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002342 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002343
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002344 // For each of OP in SHL/SRL/SRA/AND...
2345 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2346 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2347 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002348 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002349 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002350 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002351 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2352 N0.getOperand(0).getValueType(),
2353 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002354 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002355 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2356 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002357 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002358
Nadav Rotem4ac90812012-04-01 19:31:22 +00002359 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2360 // Only perform this optimization after type legalization and before
2361 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2362 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2363 // we don't want to undo this promotion.
2364 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2365 // on scalars.
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002366 if ((N0.getOpcode() == ISD::BITCAST ||
2367 N0.getOpcode() == ISD::SCALAR_TO_VECTOR) &&
2368 Level == AfterLegalizeTypes) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002369 SDValue In0 = N0.getOperand(0);
2370 SDValue In1 = N1.getOperand(0);
2371 EVT In0Ty = In0.getValueType();
2372 EVT In1Ty = In1.getValueType();
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002373 DebugLoc DL = N->getDebugLoc();
2374 // If both incoming values are integers, and the original types are the
2375 // same.
Nadav Rotem4ac90812012-04-01 19:31:22 +00002376 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
Nadav Rotem6dfabb62012-09-20 08:53:31 +00002377 SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1);
2378 SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002379 AddToWorkList(Op.getNode());
2380 return BC;
2381 }
2382 }
2383
2384 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2385 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2386 // If both shuffles use the same mask, and both shuffle within a single
2387 // vector, then it is worthwhile to move the swizzle after the operation.
2388 // The type-legalizer generates this pattern when loading illegal
2389 // vector types from memory. In many cases this allows additional shuffle
2390 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002391 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2392 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2393 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002394 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2395 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002396
2397 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2398 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002399
2400 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002401
2402 // Check that both shuffles use the same mask. The masks are known to be of
2403 // the same length because the result vector type is the same.
2404 bool SameMask = true;
2405 for (unsigned i = 0; i != NumElts; ++i) {
2406 int Idx0 = SVN0->getMaskElt(i);
2407 int Idx1 = SVN1->getMaskElt(i);
2408 if (Idx0 != Idx1) {
2409 SameMask = false;
2410 break;
2411 }
2412 }
2413
Craig Topperf9204232012-04-09 07:19:09 +00002414 if (SameMask) {
2415 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2416 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002417 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002418 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2419 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002420 }
2421 }
Craig Topperf9204232012-04-09 07:19:09 +00002422
Dan Gohman475871a2008-07-27 21:46:04 +00002423 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002424}
2425
Dan Gohman475871a2008-07-27 21:46:04 +00002426SDValue DAGCombiner::visitAND(SDNode *N) {
2427 SDValue N0 = N->getOperand(0);
2428 SDValue N1 = N->getOperand(1);
2429 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002430 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2431 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002432 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002433 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002434
Dan Gohman7f321562007-06-25 16:23:39 +00002435 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002436 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002437 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002438 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00002439
2440 // fold (and x, 0) -> 0, vector edition
2441 if (ISD::isBuildVectorAllZeros(N0.getNode()))
2442 return N0;
2443 if (ISD::isBuildVectorAllZeros(N1.getNode()))
2444 return N1;
2445
2446 // fold (and x, -1) -> x, vector edition
2447 if (ISD::isBuildVectorAllOnes(N0.getNode()))
2448 return N1;
2449 if (ISD::isBuildVectorAllOnes(N1.getNode()))
2450 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002451 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002452
Dan Gohman613e0d82007-07-03 14:03:57 +00002453 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002454 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002455 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002456 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002457 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002458 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002459 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002460 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002461 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002462 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002463 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002464 return N0;
2465 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002466 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002467 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002468 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002469 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002470 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002471 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002472 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002473 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002474 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002475 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002476 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002477 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002478 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2479 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002480 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002481 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002482 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002483 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002484 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2485 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002486
Chris Lattner1ec05d12006-03-01 21:47:21 +00002487 // Replace uses of the AND with uses of the Zero extend node.
2488 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002489
Chris Lattner3603cd62006-02-02 07:17:31 +00002490 // We actually want to replace all uses of the any_extend with the
2491 // zero_extend, to avoid duplicating things. This will later cause this
2492 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002493 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002494 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002495 }
2496 }
James Molloy6259dcd2012-02-20 12:02:38 +00002497 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2498 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2499 // already be zero by virtue of the width of the base type of the load.
2500 //
2501 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2502 // more cases.
2503 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2504 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2505 N0.getOpcode() == ISD::LOAD) {
2506 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2507 N0 : N0.getOperand(0) );
2508
2509 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2510 // This can be a pure constant or a vector splat, in which case we treat the
2511 // vector as a scalar and use the splat value.
2512 APInt Constant = APInt::getNullValue(1);
2513 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2514 Constant = C->getAPIntValue();
2515 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2516 APInt SplatValue, SplatUndef;
2517 unsigned SplatBitSize;
2518 bool HasAnyUndefs;
2519 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2520 SplatBitSize, HasAnyUndefs);
2521 if (IsSplat) {
2522 // Undef bits can contribute to a possible optimisation if set, so
2523 // set them.
2524 SplatValue |= SplatUndef;
2525
2526 // The splat value may be something like "0x00FFFFFF", which means 0 for
2527 // the first vector value and FF for the rest, repeating. We need a mask
2528 // that will apply equally to all members of the vector, so AND all the
2529 // lanes of the constant together.
2530 EVT VT = Vector->getValueType(0);
2531 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002532
2533 // If the splat value has been compressed to a bitlength lower
2534 // than the size of the vector lane, we need to re-expand it to
2535 // the lane size.
2536 if (BitWidth > SplatBitSize)
2537 for (SplatValue = SplatValue.zextOrTrunc(BitWidth);
2538 SplatBitSize < BitWidth;
2539 SplatBitSize = SplatBitSize * 2)
2540 SplatValue |= SplatValue.shl(SplatBitSize);
2541
James Molloy6259dcd2012-02-20 12:02:38 +00002542 Constant = APInt::getAllOnesValue(BitWidth);
Silviu Baranga3d5e1612012-09-05 08:57:21 +00002543 for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i)
James Molloy6259dcd2012-02-20 12:02:38 +00002544 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2545 }
2546 }
2547
2548 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2549 // actually legal and isn't going to get expanded, else this is a false
2550 // optimisation.
2551 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2552 Load->getMemoryVT());
2553
2554 // Resize the constant to the same size as the original memory access before
2555 // extension. If it is still the AllOnesValue then this AND is completely
2556 // unneeded.
2557 Constant =
2558 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2559
2560 bool B;
2561 switch (Load->getExtensionType()) {
2562 default: B = false; break;
2563 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2564 case ISD::ZEXTLOAD:
2565 case ISD::NON_EXTLOAD: B = true; break;
2566 }
2567
2568 if (B && Constant.isAllOnesValue()) {
2569 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2570 // preserve semantics once we get rid of the AND.
2571 SDValue NewLoad(Load, 0);
2572 if (Load->getExtensionType() == ISD::EXTLOAD) {
2573 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2574 Load->getValueType(0), Load->getDebugLoc(),
2575 Load->getChain(), Load->getBasePtr(),
2576 Load->getOffset(), Load->getMemoryVT(),
2577 Load->getMemOperand());
2578 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
Hal Finkeld65e4632012-06-20 15:42:48 +00002579 if (Load->getNumValues() == 3) {
2580 // PRE/POST_INC loads have 3 values.
2581 SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2582 NewLoad.getValue(2) };
2583 CombineTo(Load, To, 3, true);
2584 } else {
2585 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2586 }
James Molloy6259dcd2012-02-20 12:02:38 +00002587 }
2588
2589 // Fold the AND away, taking care not to fold to the old load node if we
2590 // replaced it.
2591 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2592
2593 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2594 }
2595 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002596 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2597 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2598 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2599 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002600
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002601 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002602 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002603 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002604 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002605 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2606 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002607 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002608 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002609 }
Bill Wendling2627a882009-01-30 20:43:18 +00002610 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002611 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002612 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2613 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002614 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002615 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002616 }
Bill Wendling2627a882009-01-30 20:43:18 +00002617 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002618 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002619 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2620 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002621 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002622 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002623 }
2624 }
2625 // canonicalize equivalent to ll == rl
2626 if (LL == RR && LR == RL) {
2627 Op1 = ISD::getSetCCSwappedOperands(Op1);
2628 std::swap(RL, RR);
2629 }
2630 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002631 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002632 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002633 if (Result != ISD::SETCC_INVALID &&
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00002634 (!LegalOperations ||
Owen Anderson39125d92013-02-14 09:07:33 +00002635 (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) &&
2636 TLI.isOperationLegal(ISD::SETCC,
2637 TLI.getSetCCResultType(N0.getSimpleValueType())))))
Bill Wendling2627a882009-01-30 20:43:18 +00002638 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2639 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002640 }
2641 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002642
Bill Wendling2627a882009-01-30 20:43:18 +00002643 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002644 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002645 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002646 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002647 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002648
Nate Begemande996292006-02-03 22:24:05 +00002649 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2650 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002651 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002652 SimplifyDemandedBits(SDValue(N, 0)))
2653 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002654
Nate Begemanded49632005-10-13 03:11:28 +00002655 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002656 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002657 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002658 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002659 // If we zero all the possible extended bits, then we can turn this into
2660 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002661 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002662 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002663 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002664 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002665 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002666 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002667 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002668 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002669 LN0->isVolatile(), LN0->isNonTemporal(),
2670 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002671 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002672 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002673 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002674 }
2675 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00002676 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002677 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002678 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002679 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002680 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002681 // If we zero all the possible extended bits, then we can turn this into
2682 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002683 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002684 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002685 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002686 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002687 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002688 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002689 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002690 LN0->getBasePtr(), LN0->getPointerInfo(),
2691 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002692 LN0->isVolatile(), LN0->isNonTemporal(),
2693 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002694 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002695 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002696 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002697 }
2698 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002699
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002700 // fold (and (load x), 255) -> (zextload x, i8)
2701 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002702 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2703 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2704 (N0.getOpcode() == ISD::ANY_EXTEND &&
2705 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2706 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2707 LoadSDNode *LN0 = HasAnyExt
2708 ? cast<LoadSDNode>(N0.getOperand(0))
2709 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002710 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002711 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002712 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002713 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2714 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2715 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002716
Evan Chengd40d03e2010-01-06 19:38:29 +00002717 if (ExtVT == LoadedVT &&
2718 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002719 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002720
2721 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002722 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002723 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002724 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002725 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2726 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002727 AddToWorkList(N);
2728 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2729 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2730 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002731
Chris Lattneref7634c2010-01-07 21:53:27 +00002732 // Do not change the width of a volatile load.
2733 // Do not generate loads of non-round integer types since these can
2734 // be expensive (and would be wrong if the type is not byte sized).
2735 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2736 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2737 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002738
Chris Lattneref7634c2010-01-07 21:53:27 +00002739 unsigned Alignment = LN0->getAlignment();
2740 SDValue NewPtr = LN0->getBasePtr();
2741
2742 // For big endian targets, we need to add an offset to the pointer
2743 // to load the correct bytes. For little endian systems, we merely
2744 // need to read fewer bytes from the same pointer.
2745 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002746 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2747 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2748 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002749 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2750 NewPtr, DAG.getConstant(PtrOff, PtrType));
2751 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002752 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002753
2754 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002755
Chris Lattneref7634c2010-01-07 21:53:27 +00002756 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2757 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002758 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002759 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002760 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002761 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2762 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002763 AddToWorkList(N);
2764 CombineTo(LN0, Load, Load.getValue(1));
2765 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002766 }
Evan Cheng466685d2006-10-09 20:57:25 +00002767 }
Chris Lattner15045b62006-02-28 06:35:35 +00002768 }
2769 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002770
Evan Chenga9e13ba2012-07-17 18:54:11 +00002771 if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2772 VT.getSizeInBits() <= 64) {
2773 if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2774 APInt ADDC = ADDI->getAPIntValue();
2775 if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2776 // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2777 // immediate for an add, but it is legal if its top c2 bits are set,
2778 // transform the ADD so the immediate doesn't need to be materialized
2779 // in a register.
2780 if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2781 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2782 SRLI->getZExtValue());
2783 if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2784 ADDC |= Mask;
2785 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2786 SDValue NewAdd =
2787 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
2788 N0.getOperand(0), DAG.getConstant(ADDC, VT));
2789 CombineTo(N0.getNode(), NewAdd);
2790 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2791 }
2792 }
2793 }
2794 }
2795 }
2796 }
Evan Chenga9e13ba2012-07-17 18:54:11 +00002797
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002798 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002799}
2800
Evan Cheng9568e5c2011-06-21 06:01:08 +00002801/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2802///
2803SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2804 bool DemandHighBits) {
2805 if (!LegalOperations)
2806 return SDValue();
2807
2808 EVT VT = N->getValueType(0);
2809 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2810 return SDValue();
2811 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2812 return SDValue();
2813
2814 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2815 bool LookPassAnd0 = false;
2816 bool LookPassAnd1 = false;
2817 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2818 std::swap(N0, N1);
2819 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2820 std::swap(N0, N1);
2821 if (N0.getOpcode() == ISD::AND) {
2822 if (!N0.getNode()->hasOneUse())
2823 return SDValue();
2824 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2825 if (!N01C || N01C->getZExtValue() != 0xFF00)
2826 return SDValue();
2827 N0 = N0.getOperand(0);
2828 LookPassAnd0 = true;
2829 }
2830
2831 if (N1.getOpcode() == ISD::AND) {
2832 if (!N1.getNode()->hasOneUse())
2833 return SDValue();
2834 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2835 if (!N11C || N11C->getZExtValue() != 0xFF)
2836 return SDValue();
2837 N1 = N1.getOperand(0);
2838 LookPassAnd1 = true;
2839 }
2840
2841 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2842 std::swap(N0, N1);
2843 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2844 return SDValue();
2845 if (!N0.getNode()->hasOneUse() ||
2846 !N1.getNode()->hasOneUse())
2847 return SDValue();
2848
2849 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2850 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2851 if (!N01C || !N11C)
2852 return SDValue();
2853 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2854 return SDValue();
2855
2856 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2857 SDValue N00 = N0->getOperand(0);
2858 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2859 if (!N00.getNode()->hasOneUse())
2860 return SDValue();
2861 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2862 if (!N001C || N001C->getZExtValue() != 0xFF)
2863 return SDValue();
2864 N00 = N00.getOperand(0);
2865 LookPassAnd0 = true;
2866 }
2867
2868 SDValue N10 = N1->getOperand(0);
2869 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2870 if (!N10.getNode()->hasOneUse())
2871 return SDValue();
2872 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2873 if (!N101C || N101C->getZExtValue() != 0xFF00)
2874 return SDValue();
2875 N10 = N10.getOperand(0);
2876 LookPassAnd1 = true;
2877 }
2878
2879 if (N00 != N10)
2880 return SDValue();
2881
2882 // Make sure everything beyond the low halfword is zero since the SRL 16
2883 // will clear the top bits.
2884 unsigned OpSizeInBits = VT.getSizeInBits();
2885 if (DemandHighBits && OpSizeInBits > 16 &&
2886 (!LookPassAnd0 || !LookPassAnd1) &&
2887 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2888 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002889
Evan Cheng9568e5c2011-06-21 06:01:08 +00002890 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2891 if (OpSizeInBits > 16)
2892 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2893 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2894 return Res;
2895}
2896
2897/// isBSwapHWordElement - Return true if the specified node is an element
2898/// that makes up a 32-bit packed halfword byteswap. i.e.
2899/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2900static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2901 if (!N.getNode()->hasOneUse())
2902 return false;
2903
2904 unsigned Opc = N.getOpcode();
2905 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2906 return false;
2907
2908 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2909 if (!N1C)
2910 return false;
2911
2912 unsigned Num;
2913 switch (N1C->getZExtValue()) {
2914 default:
2915 return false;
2916 case 0xFF: Num = 0; break;
2917 case 0xFF00: Num = 1; break;
2918 case 0xFF0000: Num = 2; break;
2919 case 0xFF000000: Num = 3; break;
2920 }
2921
2922 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2923 SDValue N0 = N.getOperand(0);
2924 if (Opc == ISD::AND) {
2925 if (Num == 0 || Num == 2) {
2926 // (x >> 8) & 0xff
2927 // (x >> 8) & 0xff0000
2928 if (N0.getOpcode() != ISD::SRL)
2929 return false;
2930 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2931 if (!C || C->getZExtValue() != 8)
2932 return false;
2933 } else {
2934 // (x << 8) & 0xff00
2935 // (x << 8) & 0xff000000
2936 if (N0.getOpcode() != ISD::SHL)
2937 return false;
2938 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2939 if (!C || C->getZExtValue() != 8)
2940 return false;
2941 }
2942 } else if (Opc == ISD::SHL) {
2943 // (x & 0xff) << 8
2944 // (x & 0xff0000) << 8
2945 if (Num != 0 && Num != 2)
2946 return false;
2947 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2948 if (!C || C->getZExtValue() != 8)
2949 return false;
2950 } else { // Opc == ISD::SRL
2951 // (x & 0xff00) >> 8
2952 // (x & 0xff000000) >> 8
2953 if (Num != 1 && Num != 3)
2954 return false;
2955 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2956 if (!C || C->getZExtValue() != 8)
2957 return false;
2958 }
2959
2960 if (Parts[Num])
2961 return false;
2962
2963 Parts[Num] = N0.getOperand(0).getNode();
2964 return true;
2965}
2966
2967/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2968/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2969/// => (rotl (bswap x), 16)
2970SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2971 if (!LegalOperations)
2972 return SDValue();
2973
2974 EVT VT = N->getValueType(0);
2975 if (VT != MVT::i32)
2976 return SDValue();
2977 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2978 return SDValue();
2979
2980 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2981 // Look for either
2982 // (or (or (and), (and)), (or (and), (and)))
2983 // (or (or (or (and), (and)), (and)), (and))
2984 if (N0.getOpcode() != ISD::OR)
2985 return SDValue();
2986 SDValue N00 = N0.getOperand(0);
2987 SDValue N01 = N0.getOperand(1);
2988
Evan Cheng9a65a012012-12-13 01:34:32 +00002989 if (N1.getOpcode() == ISD::OR &&
2990 N00.getNumOperands() == 2 && N01.getNumOperands() == 2) {
Evan Cheng9568e5c2011-06-21 06:01:08 +00002991 // (or (or (and), (and)), (or (and), (and)))
2992 SDValue N000 = N00.getOperand(0);
2993 if (!isBSwapHWordElement(N000, Parts))
2994 return SDValue();
2995
2996 SDValue N001 = N00.getOperand(1);
2997 if (!isBSwapHWordElement(N001, Parts))
2998 return SDValue();
2999 SDValue N010 = N01.getOperand(0);
3000 if (!isBSwapHWordElement(N010, Parts))
3001 return SDValue();
3002 SDValue N011 = N01.getOperand(1);
3003 if (!isBSwapHWordElement(N011, Parts))
3004 return SDValue();
3005 } else {
3006 // (or (or (or (and), (and)), (and)), (and))
3007 if (!isBSwapHWordElement(N1, Parts))
3008 return SDValue();
3009 if (!isBSwapHWordElement(N01, Parts))
3010 return SDValue();
3011 if (N00.getOpcode() != ISD::OR)
3012 return SDValue();
3013 SDValue N000 = N00.getOperand(0);
3014 if (!isBSwapHWordElement(N000, Parts))
3015 return SDValue();
3016 SDValue N001 = N00.getOperand(1);
3017 if (!isBSwapHWordElement(N001, Parts))
3018 return SDValue();
3019 }
3020
3021 // Make sure the parts are all coming from the same node.
3022 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
3023 return SDValue();
3024
3025 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
3026 SDValue(Parts[0],0));
3027
3028 // Result of the bswap should be rotated by 16. If it's not legal, than
3029 // do (x << 16) | (x >> 16).
3030 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
3031 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
3032 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
Craig Topper0eb5dad2012-09-29 07:18:53 +00003033 if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
Evan Cheng9568e5c2011-06-21 06:01:08 +00003034 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
3035 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
3036 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
3037 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
3038}
3039
Dan Gohman475871a2008-07-27 21:46:04 +00003040SDValue DAGCombiner::visitOR(SDNode *N) {
3041 SDValue N0 = N->getOperand(0);
3042 SDValue N1 = N->getOperand(1);
3043 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00003044 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3045 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003046 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003047
Dan Gohman7f321562007-06-25 16:23:39 +00003048 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003049 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003050 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003051 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00003052
3053 // fold (or x, 0) -> x, vector edition
3054 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3055 return N1;
3056 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3057 return N0;
3058
3059 // fold (or x, -1) -> -1, vector edition
3060 if (ISD::isBuildVectorAllOnes(N0.getNode()))
3061 return N0;
3062 if (ISD::isBuildVectorAllOnes(N1.getNode()))
3063 return N1;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003064 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003065
Dan Gohman613e0d82007-07-03 14:03:57 +00003066 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00003067 if (!LegalOperations &&
3068 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00003069 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3070 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3071 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003072 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003073 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003074 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003075 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003076 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00003077 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003078 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003079 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003080 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003081 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003082 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003083 return N1;
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003084 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003085 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003086 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00003087
3088 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3089 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3090 if (BSwap.getNode() != 0)
3091 return BSwap;
3092 BSwap = MatchBSwapHWordLow(N, N0, N1);
3093 if (BSwap.getNode() != 0)
3094 return BSwap;
3095
Nate Begemancd4d58c2006-02-03 06:46:56 +00003096 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00003097 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003098 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003099 return ROR;
3100 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003101 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003102 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003103 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003104 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003105 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003106 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3107 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3108 N0.getOperand(0), N1),
3109 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003110 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003111 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3112 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3113 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3114 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003115
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003116 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003117 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003118 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3119 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003120 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003121 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003122 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3123 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003124 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003125 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003126 }
Bill Wendling09025642009-01-30 20:59:34 +00003127 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3128 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003129 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003130 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003131 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3132 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003133 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003134 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003135 }
3136 }
3137 // canonicalize equivalent to ll == rl
3138 if (LL == RR && LR == RL) {
3139 Op1 = ISD::getSetCCSwappedOperands(Op1);
3140 std::swap(RL, RR);
3141 }
3142 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003143 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003144 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003145 if (Result != ISD::SETCC_INVALID &&
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00003146 (!LegalOperations ||
Owen Anderson39125d92013-02-14 09:07:33 +00003147 (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) &&
3148 TLI.isOperationLegal(ISD::SETCC,
3149 TLI.getSetCCResultType(N0.getValueType())))))
Bill Wendling09025642009-01-30 20:59:34 +00003150 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3151 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003152 }
3153 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003154
Bill Wendling09025642009-01-30 20:59:34 +00003155 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003156 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003157 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003158 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003159 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003160
Bill Wendling09025642009-01-30 20:59:34 +00003161 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003162 if (N0.getOpcode() == ISD::AND &&
3163 N1.getOpcode() == ISD::AND &&
3164 N0.getOperand(1).getOpcode() == ISD::Constant &&
3165 N1.getOperand(1).getOpcode() == ISD::Constant &&
3166 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003167 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003168 // We can only do this xform if we know that bits from X that are set in C2
3169 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003170 const APInt &LHSMask =
3171 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3172 const APInt &RHSMask =
3173 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003174
Dan Gohmanea859be2007-06-22 14:59:07 +00003175 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3176 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003177 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3178 N0.getOperand(0), N1.getOperand(0));
3179 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3180 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003181 }
3182 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003183
Chris Lattner516b9622006-09-14 20:50:57 +00003184 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003185 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003186 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003187
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003188 // Simplify the operands using demanded-bits information.
3189 if (!VT.isVector() &&
3190 SimplifyDemandedBits(SDValue(N, 0)))
3191 return SDValue(N, 0);
3192
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003193 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003194}
3195
Chris Lattner516b9622006-09-14 20:50:57 +00003196/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003197static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003198 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003199 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003200 Mask = Op.getOperand(1);
3201 Op = Op.getOperand(0);
3202 } else {
3203 return false;
3204 }
3205 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003206
Chris Lattner516b9622006-09-14 20:50:57 +00003207 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3208 Shift = Op;
3209 return true;
3210 }
Bill Wendling09025642009-01-30 20:59:34 +00003211
Scott Michelfdc40a02009-02-17 22:15:04 +00003212 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003213}
3214
Chris Lattner516b9622006-09-14 20:50:57 +00003215// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3216// idioms for rotate, and if the target supports rotation instructions, generate
3217// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003218SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003219 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003220 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003221 if (!TLI.isTypeLegal(VT)) return 0;
3222
3223 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003224 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3225 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003226 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003227
Chris Lattner516b9622006-09-14 20:50:57 +00003228 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003229 SDValue LHSShift; // The shift.
3230 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003231 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3232 return 0; // Not part of a rotate.
3233
Dan Gohman475871a2008-07-27 21:46:04 +00003234 SDValue RHSShift; // The shift.
3235 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003236 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3237 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003238
Chris Lattner516b9622006-09-14 20:50:57 +00003239 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3240 return 0; // Not shifting the same value.
3241
3242 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3243 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003244
Chris Lattner516b9622006-09-14 20:50:57 +00003245 // Canonicalize shl to left side in a shl/srl pair.
3246 if (RHSShift.getOpcode() == ISD::SHL) {
3247 std::swap(LHS, RHS);
3248 std::swap(LHSShift, RHSShift);
3249 std::swap(LHSMask , RHSMask );
3250 }
3251
Duncan Sands83ec4b62008-06-06 12:08:01 +00003252 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003253 SDValue LHSShiftArg = LHSShift.getOperand(0);
3254 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3255 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003256
3257 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3258 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003259 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3260 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003261 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3262 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003263 if ((LShVal + RShVal) != OpSizeInBits)
3264 return 0;
3265
Craig Topper32b73432012-09-29 06:54:22 +00003266 SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3267 LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003268
Chris Lattner516b9622006-09-14 20:50:57 +00003269 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003270 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003271 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003272
Gabor Greifba36cb52008-08-28 21:40:38 +00003273 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003274 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3275 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003276 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003277 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003278 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3279 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003280 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003281
Bill Wendling317bd702009-01-30 21:14:50 +00003282 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003283 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003284
Gabor Greifba36cb52008-08-28 21:40:38 +00003285 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003286 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003287
Chris Lattner516b9622006-09-14 20:50:57 +00003288 // If there is a mask here, and we have a variable shift, we can't be sure
3289 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003290 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003291 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003292
Chris Lattner516b9622006-09-14 20:50:57 +00003293 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3294 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003295 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3296 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003297 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003298 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003299 if (SUBC->getAPIntValue() == OpSizeInBits) {
Craig Topper32b73432012-09-29 06:54:22 +00003300 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg,
3301 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003302 }
Chris Lattner516b9622006-09-14 20:50:57 +00003303 }
3304 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003305
Chris Lattner516b9622006-09-14 20:50:57 +00003306 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3307 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003308 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3309 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003310 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003311 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003312 if (SUBC->getAPIntValue() == OpSizeInBits) {
Craig Topper32b73432012-09-29 06:54:22 +00003313 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3314 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003315 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003316 }
3317 }
3318
Dan Gohman74feef22008-10-17 01:23:35 +00003319 // Look for sign/zext/any-extended or truncate cases:
Craig Topper0eb5dad2012-09-29 07:18:53 +00003320 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3321 LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3322 LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3323 LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3324 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3325 RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3326 RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3327 RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003328 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3329 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003330 if (RExtOp0.getOpcode() == ISD::SUB &&
3331 RExtOp0.getOperand(1) == LExtOp0) {
3332 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003333 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003334 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003335 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003336 if (ConstantSDNode *SUBC =
3337 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003338 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003339 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3340 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003341 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003342 }
3343 }
3344 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3345 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003346 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003347 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003348 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003349 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003350 if (ConstantSDNode *SUBC =
3351 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003352 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003353 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3354 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003355 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003356 }
3357 }
Chris Lattner516b9622006-09-14 20:50:57 +00003358 }
3359 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003360
Chris Lattner516b9622006-09-14 20:50:57 +00003361 return 0;
3362}
3363
Dan Gohman475871a2008-07-27 21:46:04 +00003364SDValue DAGCombiner::visitXOR(SDNode *N) {
3365 SDValue N0 = N->getOperand(0);
3366 SDValue N1 = N->getOperand(1);
3367 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003368 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3369 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003370 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003371
Dan Gohman7f321562007-06-25 16:23:39 +00003372 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003373 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003374 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003375 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper9472b4f2012-12-08 22:49:19 +00003376
3377 // fold (xor x, 0) -> x, vector edition
3378 if (ISD::isBuildVectorAllZeros(N0.getNode()))
3379 return N1;
3380 if (ISD::isBuildVectorAllZeros(N1.getNode()))
3381 return N0;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003382 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003383
Evan Cheng26471c42008-03-25 20:08:07 +00003384 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3385 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3386 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003387 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003388 if (N0.getOpcode() == ISD::UNDEF)
3389 return N0;
3390 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003391 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003392 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003393 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003394 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003395 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003396 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003397 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003398 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003399 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003400 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003401 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003402 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003403 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003404 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003405
Nate Begeman1d4d4142005-09-01 00:19:25 +00003406 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003407 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003408 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003409 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3410 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003411
Patrik Hagglundfdbeb052012-12-19 10:19:55 +00003412 if (!LegalOperations ||
3413 TLI.isCondCodeLegal(NotCC, LHS.getSimpleValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003414 switch (N0.getOpcode()) {
3415 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003416 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003417 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003418 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003419 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003420 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003421 N0.getOperand(3), NotCC);
3422 }
3423 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003424 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003425
Chris Lattner61c5ff42007-09-10 21:39:07 +00003426 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003427 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003428 N0.getNode()->hasOneUse() &&
3429 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003430 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003431 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003432 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003433 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003434 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003435 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003436
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003437 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003438 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003439 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003440 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003441 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3442 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003443 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3444 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003445 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003446 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003447 }
3448 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003449 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003450 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003451 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003452 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003453 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3454 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003455 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3456 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003457 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003458 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003459 }
3460 }
Bill Wendling317bd702009-01-30 21:14:50 +00003461 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003462 if (N1C && N0.getOpcode() == ISD::XOR) {
3463 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3464 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3465 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003466 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3467 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003468 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003469 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003470 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3471 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003472 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003473 }
3474 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003475 if (N0 == N1)
3476 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003477
Chris Lattner35e5c142006-05-05 05:51:50 +00003478 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3479 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003480 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003481 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003482 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003483
Chris Lattner3e104b12006-04-08 04:15:24 +00003484 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003485 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003486 SimplifyDemandedBits(SDValue(N, 0)))
3487 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003488
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003489 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003490}
3491
Chris Lattnere70da202007-12-06 07:33:36 +00003492/// visitShiftByConstant - Handle transforms common to the three shifts, when
3493/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003494SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003495 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003496 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003497
Chris Lattnere70da202007-12-06 07:33:36 +00003498 // We want to pull some binops through shifts, so that we have (and (shift))
3499 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3500 // thing happens with address calculations, so it's important to canonicalize
3501 // it.
3502 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003503
Chris Lattnere70da202007-12-06 07:33:36 +00003504 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003505 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003506 case ISD::OR:
3507 case ISD::XOR:
3508 HighBitSet = false; // We can only transform sra if the high bit is clear.
3509 break;
3510 case ISD::AND:
3511 HighBitSet = true; // We can only transform sra if the high bit is set.
3512 break;
3513 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003514 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003515 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003516 HighBitSet = false; // We can only transform sra if the high bit is clear.
3517 break;
3518 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003519
Chris Lattnere70da202007-12-06 07:33:36 +00003520 // We require the RHS of the binop to be a constant as well.
3521 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003522 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003523
3524 // FIXME: disable this unless the input to the binop is a shift by a constant.
3525 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003526 //
Bill Wendling88103372009-01-30 21:37:17 +00003527 // void foo(int *X, int i) { X[i & 1235] = 1; }
3528 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003529 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003530 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003531 BinOpLHSVal->getOpcode() != ISD::SRA &&
3532 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3533 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003534 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003535
Owen Andersone50ed302009-08-10 22:56:29 +00003536 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003537
Bill Wendling88103372009-01-30 21:37:17 +00003538 // If this is a signed shift right, and the high bit is modified by the
3539 // logical operation, do not perform the transformation. The highBitSet
3540 // boolean indicates the value of the high bit of the constant which would
3541 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003542 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003543 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3544 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003545 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003546 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003547
Chris Lattnere70da202007-12-06 07:33:36 +00003548 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003549 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3550 N->getValueType(0),
3551 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003552
3553 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003554 SDValue NewShift = DAG.getNode(N->getOpcode(),
3555 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003556 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003557
3558 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003559 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003560}
3561
Dan Gohman475871a2008-07-27 21:46:04 +00003562SDValue DAGCombiner::visitSHL(SDNode *N) {
3563 SDValue N0 = N->getOperand(0);
3564 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003565 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3566 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003567 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003568 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003569
Nate Begeman1d4d4142005-09-01 00:19:25 +00003570 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003571 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003572 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003573 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003574 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003575 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003576 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003577 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003578 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003579 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003580 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003581 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003582 // fold (shl undef, x) -> 0
3583 if (N0.getOpcode() == ISD::UNDEF)
3584 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003585 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003586 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003587 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003588 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003589 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003590 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003591 N1.getOperand(0).getOpcode() == ISD::AND &&
3592 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003593 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003594 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003595 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003596 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003597 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003598 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003599 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003600 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3601 DAG.getNode(ISD::TRUNCATE,
3602 N->getDebugLoc(),
3603 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003604 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003605 }
3606 }
3607
Dan Gohman475871a2008-07-27 21:46:04 +00003608 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3609 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003610
3611 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003612 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003613 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003614 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3615 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003616 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003617 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003618 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003619 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003620 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003621
3622 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3623 // For this to be valid, the second form must not preserve any of the bits
3624 // that are shifted out by the inner shift in the first form. This means
3625 // the outer shift size must be >= the number of bits added by the ext.
3626 // As a corollary, we don't care what kind of ext it is.
3627 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3628 N0.getOpcode() == ISD::ANY_EXTEND ||
3629 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3630 N0.getOperand(0).getOpcode() == ISD::SHL &&
3631 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003632 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003633 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3634 uint64_t c2 = N1C->getZExtValue();
3635 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3636 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3637 if (c2 >= OpSizeInBits - InnerShiftSize) {
3638 if (c1 + c2 >= OpSizeInBits)
3639 return DAG.getConstant(0, VT);
3640 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3641 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3642 N0.getOperand(0)->getOperand(0)),
3643 DAG.getConstant(c1 + c2, N1.getValueType()));
3644 }
3645 }
3646
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003647 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3648 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003649 // Only fold this if the inner shift has no other uses -- if it does, folding
3650 // this will increase the total number of instructions.
3651 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003652 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003653 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003654 if (c1 < VT.getSizeInBits()) {
3655 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003656 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3657 VT.getSizeInBits() - c1);
3658 SDValue Shift;
3659 if (c2 > c1) {
3660 Mask = Mask.shl(c2-c1);
3661 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3662 DAG.getConstant(c2-c1, N1.getValueType()));
3663 } else {
3664 Mask = Mask.lshr(c1-c2);
3665 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3666 DAG.getConstant(c1-c2, N1.getValueType()));
3667 }
3668 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3669 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003670 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003671 }
Bill Wendling88103372009-01-30 21:37:17 +00003672 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003673 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3674 SDValue HiBitsMask =
3675 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3676 VT.getSizeInBits() -
3677 N1C->getZExtValue()),
3678 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003679 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003680 HiBitsMask);
3681 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003682
Evan Chenge5b51ac2010-04-17 06:13:15 +00003683 if (N1C) {
3684 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3685 if (NewSHL.getNode())
3686 return NewSHL;
3687 }
3688
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003689 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003690}
3691
Dan Gohman475871a2008-07-27 21:46:04 +00003692SDValue DAGCombiner::visitSRA(SDNode *N) {
3693 SDValue N0 = N->getOperand(0);
3694 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003695 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3696 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003697 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003698 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003699
Bill Wendling88103372009-01-30 21:37:17 +00003700 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003701 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003702 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003703 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003704 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003705 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003706 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003707 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003708 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003709 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003710 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003711 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003712 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003713 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003714 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003715 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3716 // sext_inreg.
3717 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003718 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003719 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3720 if (VT.isVector())
3721 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3722 ExtVT, VT.getVectorNumElements());
3723 if ((!LegalOperations ||
3724 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003725 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003726 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003727 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003728
Bill Wendling88103372009-01-30 21:37:17 +00003729 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003730 if (N1C && N0.getOpcode() == ISD::SRA) {
3731 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003732 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003733 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003734 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003735 DAG.getConstant(Sum, N1C->getValueType(0)));
3736 }
3737 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003738
Bill Wendling88103372009-01-30 21:37:17 +00003739 // fold (sra (shl X, m), (sub result_size, n))
3740 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003741 // result_size - n != m.
3742 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003743 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003744 if (N0.getOpcode() == ISD::SHL) {
3745 // Get the two constanst of the shifts, CN0 = m, CN = n.
3746 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3747 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003748 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003749 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003750 EVT::getIntegerVT(*DAG.getContext(),
3751 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003752 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003753 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003754
Scott Michelfdc40a02009-02-17 22:15:04 +00003755 // If the shift is not a no-op (in which case this should be just a sign
3756 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003757 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003758 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003759 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003760 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3761 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003762 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003763
Owen Anderson95771af2011-02-25 21:41:48 +00003764 SDValue Amt = DAG.getConstant(ShiftAmt,
3765 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003766 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3767 N0.getOperand(0), Amt);
3768 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3769 Shift);
3770 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3771 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003772 }
3773 }
3774 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003775
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003776 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003777 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003778 N1.getOperand(0).getOpcode() == ISD::AND &&
3779 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003780 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003781 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003782 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003783 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003784 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003785 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003786 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003787 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003788 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003789 DAG.getNode(ISD::TRUNCATE,
3790 N->getDebugLoc(),
3791 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003792 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003793 }
3794 }
3795
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003796 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3797 // if c1 is equal to the number of bits the trunc removes
3798 if (N0.getOpcode() == ISD::TRUNCATE &&
3799 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3800 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3801 N0.getOperand(0).hasOneUse() &&
3802 N0.getOperand(0).getOperand(1).hasOneUse() &&
3803 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3804 EVT LargeVT = N0.getOperand(0).getValueType();
3805 ConstantSDNode *LargeShiftAmt =
3806 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3807
3808 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3809 LargeShiftAmt->getZExtValue()) {
3810 SDValue Amt =
3811 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003812 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003813 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3814 N0.getOperand(0).getOperand(0), Amt);
3815 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3816 }
3817 }
3818
Scott Michelfdc40a02009-02-17 22:15:04 +00003819 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003820 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3821 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003822
3823
Nate Begeman1d4d4142005-09-01 00:19:25 +00003824 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003825 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003826 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003827
Evan Chenge5b51ac2010-04-17 06:13:15 +00003828 if (N1C) {
3829 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3830 if (NewSRA.getNode())
3831 return NewSRA;
3832 }
3833
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003834 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003835}
3836
Dan Gohman475871a2008-07-27 21:46:04 +00003837SDValue DAGCombiner::visitSRL(SDNode *N) {
3838 SDValue N0 = N->getOperand(0);
3839 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003840 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3841 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003842 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003843 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003844
Nate Begeman1d4d4142005-09-01 00:19:25 +00003845 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003846 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003847 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003848 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003849 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003850 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003851 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003852 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003853 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003854 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003855 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003856 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003857 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003858 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003859 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003860 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003861
Bill Wendling88103372009-01-30 21:37:17 +00003862 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003863 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003864 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003865 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3866 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003867 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003868 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003869 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003870 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003871 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003872
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003873 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003874 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3875 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003876 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003877 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003878 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3879 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003880 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3881 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003882 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003883 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003884 if (c1 + OpSizeInBits == InnerShiftSize) {
3885 if (c1 + c2 >= InnerShiftSize)
3886 return DAG.getConstant(0, VT);
3887 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003888 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003889 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003890 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003891 }
3892 }
3893
Chris Lattnerefcddc32010-04-15 05:28:43 +00003894 // fold (srl (shl x, c), c) -> (and x, cst2)
3895 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3896 N0.getValueSizeInBits() <= 64) {
3897 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3898 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3899 DAG.getConstant(~0ULL >> ShAmt, VT));
3900 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003901
Scott Michelfdc40a02009-02-17 22:15:04 +00003902
Chris Lattner06afe072006-05-05 22:53:17 +00003903 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3904 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3905 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003906 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003907 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003908 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003909
Evan Chenge5b51ac2010-04-17 06:13:15 +00003910 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003911 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003912 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003913 N0.getOperand(0),
3914 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003915 AddToWorkList(SmallShift.getNode());
3916 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3917 }
Chris Lattner06afe072006-05-05 22:53:17 +00003918 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003919
Chris Lattner3657ffe2006-10-12 20:23:19 +00003920 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3921 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003922 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003923 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003924 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003925 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003926
Sylvestre Ledru94c22712012-09-27 10:14:43 +00003927 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003928 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003929 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003930 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003931 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003932
Chris Lattner350bec02006-04-02 06:11:11 +00003933 // If any of the input bits are KnownOne, then the input couldn't be all
3934 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003935 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003936
Chris Lattner350bec02006-04-02 06:11:11 +00003937 // If all of the bits input the to ctlz node are known to be zero, then
3938 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003939 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003940 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003941
Chris Lattner350bec02006-04-02 06:11:11 +00003942 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003943 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003944 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003945 // could be set on input to the CTLZ node. If this bit is set, the SRL
3946 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3947 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003948 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003949 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003950
Chris Lattner350bec02006-04-02 06:11:11 +00003951 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003952 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003953 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003954 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003955 }
Bill Wendling88103372009-01-30 21:37:17 +00003956
3957 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3958 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003959 }
3960 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003961
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003962 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003963 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003964 N1.getOperand(0).getOpcode() == ISD::AND &&
3965 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003966 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003967 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003968 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003969 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003970 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003971 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003972 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003973 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003974 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003975 DAG.getNode(ISD::TRUNCATE,
3976 N->getDebugLoc(),
3977 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003978 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003979 }
3980 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003981
Chris Lattner61a4c072007-04-18 03:06:49 +00003982 // fold operands of srl based on knowledge that the low bits are not
3983 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003984 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3985 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003986
Evan Cheng9ab2b982009-12-18 21:31:31 +00003987 if (N1C) {
3988 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3989 if (NewSRL.getNode())
3990 return NewSRL;
3991 }
3992
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003993 // Attempt to convert a srl of a load into a narrower zero-extending load.
3994 SDValue NarrowLoad = ReduceLoadWidth(N);
3995 if (NarrowLoad.getNode())
3996 return NarrowLoad;
3997
Evan Cheng9ab2b982009-12-18 21:31:31 +00003998 // Here is a common situation. We want to optimize:
3999 //
4000 // %a = ...
4001 // %b = and i32 %a, 2
4002 // %c = srl i32 %b, 1
4003 // brcond i32 %c ...
4004 //
4005 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004006 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00004007 // %a = ...
4008 // %b = and %a, 2
4009 // %c = setcc eq %b, 0
4010 // brcond %c ...
4011 //
4012 // However when after the source operand of SRL is optimized into AND, the SRL
4013 // itself may not be optimized further. Look for it and add the BRCOND into
4014 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00004015 if (N->hasOneUse()) {
4016 SDNode *Use = *N->use_begin();
4017 if (Use->getOpcode() == ISD::BRCOND)
4018 AddToWorkList(Use);
4019 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
4020 // Also look pass the truncate.
4021 Use = *Use->use_begin();
4022 if (Use->getOpcode() == ISD::BRCOND)
4023 AddToWorkList(Use);
4024 }
4025 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00004026
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004027 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00004028}
4029
Dan Gohman475871a2008-07-27 21:46:04 +00004030SDValue DAGCombiner::visitCTLZ(SDNode *N) {
4031 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004032 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004033
4034 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004035 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004036 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004037 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004038}
4039
Chandler Carruth63974b22011-12-13 01:56:10 +00004040SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
4041 SDValue N0 = N->getOperand(0);
4042 EVT VT = N->getValueType(0);
4043
4044 // fold (ctlz_zero_undef c1) -> c2
4045 if (isa<ConstantSDNode>(N0))
4046 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4047 return SDValue();
4048}
4049
Dan Gohman475871a2008-07-27 21:46:04 +00004050SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4051 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004052 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004053
Nate Begeman1d4d4142005-09-01 00:19:25 +00004054 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004055 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004056 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004057 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004058}
4059
Chandler Carruth63974b22011-12-13 01:56:10 +00004060SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4061 SDValue N0 = N->getOperand(0);
4062 EVT VT = N->getValueType(0);
4063
4064 // fold (cttz_zero_undef c1) -> c2
4065 if (isa<ConstantSDNode>(N0))
4066 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
4067 return SDValue();
4068}
4069
Dan Gohman475871a2008-07-27 21:46:04 +00004070SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4071 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004072 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004073
Nate Begeman1d4d4142005-09-01 00:19:25 +00004074 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00004075 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00004076 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00004077 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004078}
4079
Dan Gohman475871a2008-07-27 21:46:04 +00004080SDValue DAGCombiner::visitSELECT(SDNode *N) {
4081 SDValue N0 = N->getOperand(0);
4082 SDValue N1 = N->getOperand(1);
4083 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004084 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4085 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4086 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00004087 EVT VT = N->getValueType(0);
4088 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00004089
Bill Wendling34584e62009-01-30 22:02:18 +00004090 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004091 if (N1 == N2)
4092 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004093 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00004094 if (N0C && !N0C->isNullValue())
4095 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00004096 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00004097 if (N0C && N0C->isNullValue())
4098 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004099 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004100 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004101 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4102 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004103 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004104 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004105 (VT0.isInteger() &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00004106 TLI.getBooleanContents(false) ==
4107 TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004108 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004109 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004110 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004111 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4112 N0, DAG.getConstant(1, VT0));
4113 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4114 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004115 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004116 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004117 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4118 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004119 }
Bill Wendling34584e62009-01-30 22:02:18 +00004120 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004121 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004122 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004123 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004124 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004125 }
Bill Wendling34584e62009-01-30 22:02:18 +00004126 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004127 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004128 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004129 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004130 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004131 }
Bill Wendling34584e62009-01-30 22:02:18 +00004132 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004133 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004134 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4135 // fold (select X, X, Y) -> (or X, Y)
4136 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004137 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004138 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4139 // fold (select X, Y, X) -> (and X, Y)
4140 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004141 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004142 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004143
Chris Lattner40c62d52005-10-18 06:04:22 +00004144 // If we can fold this based on the true/false value, do so.
4145 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004146 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004147
Nate Begeman44728a72005-09-19 22:34:01 +00004148 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004149 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004150 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004151 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004152 // having to say they don't support SELECT_CC on every type the DAG knows
4153 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004154 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004155 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004156 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4157 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004158 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004159 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004160 }
Bill Wendling34584e62009-01-30 22:02:18 +00004161
Dan Gohman475871a2008-07-27 21:46:04 +00004162 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004163}
4164
Dan Gohman475871a2008-07-27 21:46:04 +00004165SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4166 SDValue N0 = N->getOperand(0);
4167 SDValue N1 = N->getOperand(1);
4168 SDValue N2 = N->getOperand(2);
4169 SDValue N3 = N->getOperand(3);
4170 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004171 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004172
Nate Begeman44728a72005-09-19 22:34:01 +00004173 // fold select_cc lhs, rhs, x, x, cc -> x
4174 if (N2 == N3)
4175 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004176
Chris Lattner5f42a242006-09-20 06:19:26 +00004177 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004178 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004179 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004180 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004181
Gabor Greifba36cb52008-08-28 21:40:38 +00004182 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004183 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004184 return N2; // cond always true -> true val
4185 else
4186 return N3; // cond always false -> false val
4187 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004188
Chris Lattner5f42a242006-09-20 06:19:26 +00004189 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004190 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004191 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4192 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004193 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004194
Chris Lattner40c62d52005-10-18 06:04:22 +00004195 // If we can fold this based on the true/false value, do so.
4196 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004197 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004198
Nate Begeman44728a72005-09-19 22:34:01 +00004199 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004200 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004201}
4202
Dan Gohman475871a2008-07-27 21:46:04 +00004203SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004204 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004205 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4206 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004207}
4208
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004209// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004210// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004211// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004212// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004213static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004214 unsigned ExtOpc,
4215 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004216 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004217 bool HasCopyToRegUses = false;
4218 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004219 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4220 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004221 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004222 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004223 if (User == N)
4224 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004225 if (UI.getUse().getResNo() != N0.getResNo())
4226 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004227 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004228 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004229 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4230 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4231 // Sign bits will be lost after a zext.
4232 return false;
4233 bool Add = false;
4234 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004235 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004236 if (UseOp == N0)
4237 continue;
4238 if (!isa<ConstantSDNode>(UseOp))
4239 return false;
4240 Add = true;
4241 }
4242 if (Add)
4243 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004244 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004245 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004246 // If truncates aren't free and there are users we can't
4247 // extend, it isn't worthwhile.
4248 if (!isTruncFree)
4249 return false;
4250 // Remember if this value is live-out.
4251 if (User->getOpcode() == ISD::CopyToReg)
4252 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004253 }
4254
4255 if (HasCopyToRegUses) {
4256 bool BothLiveOut = false;
4257 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4258 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004259 SDUse &Use = UI.getUse();
4260 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4261 BothLiveOut = true;
4262 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004263 }
4264 }
4265 if (BothLiveOut)
4266 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004267 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004268 return ExtendNodes.size();
4269 }
4270 return true;
4271}
4272
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004273void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4274 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4275 ISD::NodeType ExtType) {
4276 // Extend SetCC uses if necessary.
4277 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4278 SDNode *SetCC = SetCCs[i];
4279 SmallVector<SDValue, 4> Ops;
4280
4281 for (unsigned j = 0; j != 2; ++j) {
4282 SDValue SOp = SetCC->getOperand(j);
4283 if (SOp == Trunc)
4284 Ops.push_back(ExtLoad);
4285 else
4286 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4287 }
4288
4289 Ops.push_back(SetCC->getOperand(2));
4290 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4291 &Ops[0], Ops.size()));
4292 }
4293}
4294
Dan Gohman475871a2008-07-27 21:46:04 +00004295SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4296 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004297 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004298
Nate Begeman1d4d4142005-09-01 00:19:25 +00004299 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004300 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004301 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004302
Nadav Rotem0c8607b2013-01-20 08:35:56 +00004303 // fold (sext (sext x)) -> (sext x)
4304 // fold (sext (aext x)) -> (sext x)
4305 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
4306 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4307 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004308
Chris Lattner22558872007-02-26 03:13:59 +00004309 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004310 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4311 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004312 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4313 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004314 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4315 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004316 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004317 // CombineTo deleted the truncate, if needed, but not what's under it.
4318 AddToWorkList(oye);
4319 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004320 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004321 }
Evan Chengc88138f2007-03-22 01:54:19 +00004322
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004323 // See if the value being truncated is already sign extended. If so, just
4324 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004325 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004326 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4327 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4328 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004329 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004330
Chris Lattner22558872007-02-26 03:13:59 +00004331 if (OpBits == DestBits) {
4332 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4333 // bits, it is already ready.
4334 if (NumSignBits > DestBits-MidBits)
4335 return Op;
4336 } else if (OpBits < DestBits) {
4337 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4338 // bits, just sext from i32.
4339 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004340 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004341 } else {
4342 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4343 // bits, just truncate to i32.
4344 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004345 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004346 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004347
Chris Lattner22558872007-02-26 03:13:59 +00004348 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004349 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4350 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004351 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004352 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004353 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004354 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4355 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004356 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004357 }
Chris Lattner6007b842006-09-21 06:00:20 +00004358 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004359
Evan Cheng110dec22005-12-14 02:19:23 +00004360 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004361 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004362 // on vectors in one instruction. We only perform this transformation on
4363 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004364 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004365 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004366 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004367 bool DoXform = true;
4368 SmallVector<SDNode*, 4> SetCCs;
4369 if (!N0.hasOneUse())
4370 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4371 if (DoXform) {
4372 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004373 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004374 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004375 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004376 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004377 LN0->isVolatile(), LN0->isNonTemporal(),
4378 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004379 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004380 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4381 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004382 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004383 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4384 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004385 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004386 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004387 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004388
4389 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4390 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004391 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4392 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004393 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004394 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004395 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004396 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004397 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004398 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004399 LN0->getBasePtr(), LN0->getPointerInfo(),
4400 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004401 LN0->isVolatile(), LN0->isNonTemporal(),
4402 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004403 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004404 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004405 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4406 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004407 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004408 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004409 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004410 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004411
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004412 // fold (sext (and/or/xor (load x), cst)) ->
4413 // (and/or/xor (sextload x), (sext cst))
4414 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4415 N0.getOpcode() == ISD::XOR) &&
4416 isa<LoadSDNode>(N0.getOperand(0)) &&
4417 N0.getOperand(1).getOpcode() == ISD::Constant &&
4418 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4419 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4420 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4421 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4422 bool DoXform = true;
4423 SmallVector<SDNode*, 4> SetCCs;
4424 if (!N0.hasOneUse())
4425 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4426 SetCCs, TLI);
4427 if (DoXform) {
4428 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4429 LN0->getChain(), LN0->getBasePtr(),
4430 LN0->getPointerInfo(),
4431 LN0->getMemoryVT(),
4432 LN0->isVolatile(),
4433 LN0->isNonTemporal(),
4434 LN0->getAlignment());
4435 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4436 Mask = Mask.sext(VT.getSizeInBits());
4437 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4438 ExtLoad, DAG.getConstant(Mask, VT));
4439 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4440 N0.getOperand(0).getDebugLoc(),
4441 N0.getOperand(0).getValueType(), ExtLoad);
4442 CombineTo(N, And);
4443 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4444 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4445 ISD::SIGN_EXTEND);
4446 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4447 }
4448 }
4449 }
4450
Chris Lattner20a35c32007-04-11 05:32:27 +00004451 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004452 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004453 // Only do this before legalize for now.
4454 if (VT.isVector() && !LegalOperations) {
4455 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004456 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4457 // of the same size as the compared operands. Only optimize sext(setcc())
4458 // if this is the case.
4459 EVT SVT = TLI.getSetCCResultType(N0VT);
4460
4461 // We know that the # elements of the results is the same as the
4462 // # elements of the compare (and the # elements of the compare result
4463 // for that matter). Check to see that they are the same size. If so,
4464 // we know that the element size of the sext'd result matches the
4465 // element size of the compare operands.
4466 if (VT.getSizeInBits() == SVT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004467 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004468 N0.getOperand(1),
4469 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004470 // If the desired elements are smaller or larger than the source
4471 // elements we can use a matching integer vector type and then
4472 // truncate/sign extend
Craig Topper0eb5dad2012-09-29 07:18:53 +00004473 EVT MatchingElementType =
4474 EVT::getIntegerVT(*DAG.getContext(),
4475 N0VT.getScalarType().getSizeInBits());
4476 EVT MatchingVectorType =
4477 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4478 N0VT.getVectorNumElements());
Nadav Rotem2e506192012-04-11 08:26:11 +00004479
Craig Topper0eb5dad2012-09-29 07:18:53 +00004480 if (SVT == MatchingVectorType) {
4481 SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType,
4482 N0.getOperand(0), N0.getOperand(1),
4483 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4484 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004485 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004486 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004487
Chris Lattner2b7a2712009-07-08 00:31:33 +00004488 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004489 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004490 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004491 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004492 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004493 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004494 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004495 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004496 if (SCC.getNode()) return SCC;
Richard Relph1a5c0512013-03-12 18:17:18 +00004497 if (!VT.isVector() && (!LegalOperations ||
4498 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT))))
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004499 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4500 DAG.getSetCC(N->getDebugLoc(),
4501 TLI.getSetCCResultType(VT),
4502 N0.getOperand(0), N0.getOperand(1),
4503 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4504 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004505 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004506
Dan Gohman8f0ad582008-04-28 16:58:24 +00004507 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004508 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004509 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004510 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004511
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004512 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004513}
4514
Rafael Espindoladecbc432012-04-09 16:06:03 +00004515// isTruncateOf - If N is a truncate of some other value, return true, record
4516// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4517// This function computes KnownZero to avoid a duplicated call to
4518// ComputeMaskedBits in the caller.
4519static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4520 APInt &KnownZero) {
4521 APInt KnownOne;
4522 if (N->getOpcode() == ISD::TRUNCATE) {
4523 Op = N->getOperand(0);
4524 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4525 return true;
4526 }
4527
4528 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4529 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4530 return false;
4531
4532 SDValue Op0 = N->getOperand(0);
4533 SDValue Op1 = N->getOperand(1);
4534 assert(Op0.getValueType() == Op1.getValueType());
4535
4536 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4537 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004538 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004539 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004540 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004541 Op = Op0;
4542 else
4543 return false;
4544
4545 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4546
4547 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4548 return false;
4549
4550 return true;
4551}
4552
Dan Gohman475871a2008-07-27 21:46:04 +00004553SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4554 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004555 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004556
Nate Begeman1d4d4142005-09-01 00:19:25 +00004557 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004558 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004559 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004560 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004561 // fold (zext (aext x)) -> (zext x)
4562 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004563 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4564 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004565
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004566 // fold (zext (truncate x)) -> (zext x) or
4567 // (zext (truncate x)) -> (truncate x)
4568 // This is valid when the truncated bits of x are already zero.
4569 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004570 SDValue Op;
4571 APInt KnownZero;
4572 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4573 APInt TruncatedBits =
4574 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4575 APInt(Op.getValueSizeInBits(), 0) :
4576 APInt::getBitsSet(Op.getValueSizeInBits(),
4577 N0.getValueSizeInBits(),
4578 std::min(Op.getValueSizeInBits(),
4579 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004580 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004581 if (VT.bitsGT(Op.getValueType()))
4582 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4583 if (VT.bitsLT(Op.getValueType()))
4584 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4585
4586 return Op;
4587 }
4588 }
4589
Evan Chengc88138f2007-03-22 01:54:19 +00004590 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4591 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004592 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004593 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4594 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004595 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4596 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004597 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004598 // CombineTo deleted the truncate, if needed, but not what's under it.
4599 AddToWorkList(oye);
4600 }
Eli Friedmane545d382011-04-16 23:25:34 +00004601 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004602 }
Evan Chengc88138f2007-03-22 01:54:19 +00004603 }
4604
Chris Lattner6007b842006-09-21 06:00:20 +00004605 // fold (zext (truncate x)) -> (and x, mask)
4606 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004607 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004608
4609 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4610 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4611 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4612 if (NarrowLoad.getNode()) {
4613 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4614 if (NarrowLoad.getNode() != N0.getNode()) {
4615 CombineTo(N0.getNode(), NarrowLoad);
4616 // CombineTo deleted the truncate, if needed, but not what's under it.
4617 AddToWorkList(oye);
4618 }
4619 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4620 }
4621
Dan Gohman475871a2008-07-27 21:46:04 +00004622 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004623 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004624 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004625 AddToWorkList(Op.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004626 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004627 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Elena Demikhovsky1da58672012-04-22 09:39:03 +00004628 AddToWorkList(Op.getNode());
Chris Lattner6007b842006-09-21 06:00:20 +00004629 }
Dan Gohman87862e72009-12-11 21:31:27 +00004630 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4631 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004632 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004633
Dan Gohman97121ba2009-04-08 00:15:30 +00004634 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4635 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004636 if (N0.getOpcode() == ISD::AND &&
4637 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004638 N0.getOperand(1).getOpcode() == ISD::Constant &&
4639 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4640 N0.getValueType()) ||
4641 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004642 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004643 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004644 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004645 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004646 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004647 }
Dan Gohman220a8232008-03-03 23:51:38 +00004648 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004649 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004650 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4651 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004652 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004653
Evan Cheng110dec22005-12-14 02:19:23 +00004654 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004655 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004656 // on vectors in one instruction. We only perform this transformation on
4657 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004658 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004659 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004660 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004661 bool DoXform = true;
4662 SmallVector<SDNode*, 4> SetCCs;
4663 if (!N0.hasOneUse())
4664 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4665 if (DoXform) {
4666 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004667 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004668 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004669 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004670 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004671 LN0->isVolatile(), LN0->isNonTemporal(),
4672 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004673 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004674 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4675 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004676 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004677
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004678 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4679 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004680 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004681 }
Evan Cheng110dec22005-12-14 02:19:23 +00004682 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004683
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004684 // fold (zext (and/or/xor (load x), cst)) ->
4685 // (and/or/xor (zextload x), (zext cst))
4686 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4687 N0.getOpcode() == ISD::XOR) &&
4688 isa<LoadSDNode>(N0.getOperand(0)) &&
4689 N0.getOperand(1).getOpcode() == ISD::Constant &&
4690 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4691 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4692 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4693 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4694 bool DoXform = true;
4695 SmallVector<SDNode*, 4> SetCCs;
4696 if (!N0.hasOneUse())
4697 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4698 SetCCs, TLI);
4699 if (DoXform) {
4700 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4701 LN0->getChain(), LN0->getBasePtr(),
4702 LN0->getPointerInfo(),
4703 LN0->getMemoryVT(),
4704 LN0->isVolatile(),
4705 LN0->isNonTemporal(),
4706 LN0->getAlignment());
4707 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4708 Mask = Mask.zext(VT.getSizeInBits());
4709 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4710 ExtLoad, DAG.getConstant(Mask, VT));
4711 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4712 N0.getOperand(0).getDebugLoc(),
4713 N0.getOperand(0).getValueType(), ExtLoad);
4714 CombineTo(N, And);
4715 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4716 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4717 ISD::ZERO_EXTEND);
4718 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4719 }
4720 }
4721 }
4722
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004723 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4724 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004725 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4726 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004727 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004728 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004729 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004730 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004731 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004732 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004733 LN0->getBasePtr(), LN0->getPointerInfo(),
4734 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004735 LN0->isVolatile(), LN0->isNonTemporal(),
4736 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004737 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004738 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004739 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4740 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004741 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004742 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004743 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004744 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004745
Chris Lattner20a35c32007-04-11 05:32:27 +00004746 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004747 if (!LegalOperations && VT.isVector()) {
4748 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4749 // Only do this before legalize for now.
4750 EVT N0VT = N0.getOperand(0).getValueType();
4751 EVT EltVT = VT.getVectorElementType();
4752 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4753 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004754 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004755 // We know that the # elements of the results is the same as the
4756 // # elements of the compare (and the # elements of the compare result
4757 // for that matter). Check to see that they are the same size. If so,
4758 // we know that the element size of the sext'd result matches the
4759 // element size of the compare operands.
4760 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004761 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004762 N0.getOperand(1),
4763 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4764 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4765 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004766
4767 // If the desired elements are smaller or larger than the source
4768 // elements we can use a matching integer vector type and then
4769 // truncate/sign extend
4770 EVT MatchingElementType =
4771 EVT::getIntegerVT(*DAG.getContext(),
4772 N0VT.getScalarType().getSizeInBits());
4773 EVT MatchingVectorType =
4774 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4775 N0VT.getVectorNumElements());
4776 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004777 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004778 N0.getOperand(1),
4779 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4780 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4781 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4782 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4783 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004784 }
4785
4786 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004787 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004788 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004789 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004790 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004791 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004792 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004793
Evan Cheng9818c042009-12-15 03:00:32 +00004794 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004795 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004796 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004797 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4798 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004799 SDValue ShAmt = N0.getOperand(1);
4800 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004801 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004802 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004803 // If the original shl may be shifting out bits, do not perform this
4804 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004805 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4806 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4807 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004808 return SDValue();
4809 }
Chris Lattnere0751182011-02-13 19:09:16 +00004810
4811 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004812
4813 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004814 if (VT.getSizeInBits() >= 256)
4815 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004816
Chris Lattnere0751182011-02-13 19:09:16 +00004817 return DAG.getNode(N0.getOpcode(), DL, VT,
4818 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4819 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004820 }
4821
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004822 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004823}
4824
Dan Gohman475871a2008-07-27 21:46:04 +00004825SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4826 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004827 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004828
Chris Lattner5ffc0662006-05-05 05:58:59 +00004829 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004830 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004831 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004832 // fold (aext (aext x)) -> (aext x)
4833 // fold (aext (zext x)) -> (zext x)
4834 // fold (aext (sext x)) -> (sext x)
4835 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4836 N0.getOpcode() == ISD::ZERO_EXTEND ||
4837 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004838 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004839
Evan Chengc88138f2007-03-22 01:54:19 +00004840 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4841 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4842 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004843 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4844 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004845 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4846 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004847 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004848 // CombineTo deleted the truncate, if needed, but not what's under it.
4849 AddToWorkList(oye);
4850 }
Eli Friedmane545d382011-04-16 23:25:34 +00004851 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004852 }
Evan Chengc88138f2007-03-22 01:54:19 +00004853 }
4854
Chris Lattner84750582006-09-20 06:29:17 +00004855 // fold (aext (truncate x))
4856 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004857 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004858 if (TruncOp.getValueType() == VT)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00004859 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004860 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004861 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4862 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004863 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004864
Dan Gohman97121ba2009-04-08 00:15:30 +00004865 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4866 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004867 if (N0.getOpcode() == ISD::AND &&
4868 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004869 N0.getOperand(1).getOpcode() == ISD::Constant &&
4870 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4871 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004872 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004873 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004874 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004875 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004876 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004877 }
Dan Gohman220a8232008-03-03 23:51:38 +00004878 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004879 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004880 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4881 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004882 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004883
Chris Lattner5ffc0662006-05-05 05:58:59 +00004884 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004885 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004886 // on vectors in one instruction. We only perform this transformation on
4887 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004888 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004889 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004890 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004891 bool DoXform = true;
4892 SmallVector<SDNode*, 4> SetCCs;
4893 if (!N0.hasOneUse())
4894 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4895 if (DoXform) {
4896 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004897 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004898 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004899 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004900 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004901 LN0->isVolatile(), LN0->isNonTemporal(),
4902 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004903 CombineTo(N, ExtLoad);
4904 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4905 N0.getValueType(), ExtLoad);
4906 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004907 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4908 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004909 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4910 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004911 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004912
Chris Lattner5ffc0662006-05-05 05:58:59 +00004913 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4914 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4915 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004916 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004917 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004918 N0.hasOneUse()) {
4919 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004920 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004921 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4922 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004923 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004924 LN0->isVolatile(), LN0->isNonTemporal(),
4925 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004926 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004927 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004928 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4929 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004930 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004931 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004932 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004933
Chris Lattner20a35c32007-04-11 05:32:27 +00004934 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004935 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4936 // Only do this before legalize for now.
4937 if (VT.isVector() && !LegalOperations) {
4938 EVT N0VT = N0.getOperand(0).getValueType();
4939 // We know that the # elements of the results is the same as the
4940 // # elements of the compare (and the # elements of the compare result
4941 // for that matter). Check to see that they are the same size. If so,
4942 // we know that the element size of the sext'd result matches the
4943 // element size of the compare operands.
4944 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004945 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004946 N0.getOperand(1),
4947 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004948 // If the desired elements are smaller or larger than the source
4949 // elements we can use a matching integer vector type and then
4950 // truncate/sign extend
4951 else {
Duncan Sands34727662010-07-12 08:16:59 +00004952 EVT MatchingElementType =
4953 EVT::getIntegerVT(*DAG.getContext(),
4954 N0VT.getScalarType().getSizeInBits());
4955 EVT MatchingVectorType =
4956 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4957 N0VT.getVectorNumElements());
4958 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004959 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004960 N0.getOperand(1),
4961 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4962 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004963 }
4964 }
4965
4966 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004967 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004968 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004969 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004970 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004971 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004972 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004973 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004974
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004975 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004976}
4977
Chris Lattner2b4c2792007-10-13 06:35:54 +00004978/// GetDemandedBits - See if the specified operand can be simplified with the
4979/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004980/// simpler operand, otherwise return a null SDValue.
4981SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004982 switch (V.getOpcode()) {
4983 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004984 case ISD::Constant: {
4985 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4986 assert(CV != 0 && "Const value should be ConstSDNode.");
4987 const APInt &CVal = CV->getAPIntValue();
4988 APInt NewVal = CVal & Mask;
4989 if (NewVal != CVal) {
4990 return DAG.getConstant(NewVal, V.getValueType());
4991 }
4992 break;
4993 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004994 case ISD::OR:
4995 case ISD::XOR:
4996 // If the LHS or RHS don't contribute bits to the or, drop them.
4997 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4998 return V.getOperand(1);
4999 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
5000 return V.getOperand(0);
5001 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00005002 case ISD::SRL:
5003 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005004 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00005005 break;
5006 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
5007 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005008 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00005009
Dan Gohmancc91d632009-01-03 19:22:06 +00005010 // Watch out for shift count overflow though.
5011 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005012 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00005013 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00005014 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00005015 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00005016 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00005017 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00005018 }
Dan Gohman475871a2008-07-27 21:46:04 +00005019 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00005020}
5021
Evan Chengc88138f2007-03-22 01:54:19 +00005022/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
5023/// bits and then truncated to a narrower type and where N is a multiple
5024/// of number of bits of the narrower type, transform it to a narrower load
5025/// from address + N / num of bits of new type. If the result is to be
5026/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00005027SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00005028 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005029
Evan Chengc88138f2007-03-22 01:54:19 +00005030 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00005031 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005032 EVT VT = N->getValueType(0);
5033 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00005034
Dan Gohman7f8613e2008-08-14 20:04:46 +00005035 // This transformation isn't valid for vector loads.
5036 if (VT.isVector())
5037 return SDValue();
5038
Dan Gohmand1996362010-01-09 02:13:55 +00005039 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00005040 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00005041 if (Opc == ISD::SIGN_EXTEND_INREG) {
5042 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00005043 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005044 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00005045 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005046 ExtType = ISD::ZEXTLOAD;
5047 N0 = SDValue(N, 0);
5048 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
5049 if (!N01) return SDValue();
5050 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5051 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00005052 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00005053 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5054 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005055
Owen Andersone50ed302009-08-10 22:56:29 +00005056 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00005057
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005058 // Do not generate loads of non-round integer types since these can
5059 // be expensive (and would be wrong if the type is not byte sized).
5060 if (!ExtVT.isRound())
5061 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005062
Evan Chengc88138f2007-03-22 01:54:19 +00005063 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005064 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00005065 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005066 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005067 // Is the shift amount a multiple of size of VT?
5068 if ((ShAmt & (EVTBits-1)) == 0) {
5069 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00005070 // Is the load width a multiple of size of VT?
5071 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005072 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005073 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005074
Chris Lattnercbf68df2010-12-22 08:02:57 +00005075 // At this point, we must have a load or else we can't do the transform.
5076 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005077
Chandler Carruth1c49fda2012-12-11 00:36:57 +00005078 // Because a SRL must be assumed to *need* to zero-extend the high bits
5079 // (as opposed to anyext the high bits), we can't combine the zextload
5080 // lowering of SRL and an sextload.
5081 if (cast<LoadSDNode>(N0)->getExtensionType() == ISD::SEXTLOAD)
5082 return SDValue();
5083
Chris Lattner2831a192010-10-01 05:36:09 +00005084 // If the shift amount is larger than the input type then we're not
5085 // accessing any of the loaded bytes. If the load was a zextload/extload
5086 // then the result of the shift+trunc is zero/undef (handled elsewhere).
Chris Lattnercbf68df2010-12-22 08:02:57 +00005087 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00005088 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00005089 }
5090 }
5091
Dan Gohman394d6292010-11-03 01:47:46 +00005092 // If the load is shifted left (and the result isn't shifted back right),
5093 // we can fold the truncate through the shift.
5094 unsigned ShLeftAmt = 0;
5095 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00005096 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00005097 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5098 ShLeftAmt = N01->getZExtValue();
5099 N0 = N0.getOperand(0);
5100 }
5101 }
Owen Anderson95771af2011-02-25 21:41:48 +00005102
Chris Lattner4c32bc22010-12-22 07:36:50 +00005103 // If we haven't found a load, we can't narrow it. Don't transform one with
5104 // multiple uses, this would require adding a new load.
Bill Schmidt89e88e32013-01-14 22:04:38 +00005105 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse())
5106 return SDValue();
5107
5108 // Don't change the width of a volatile load.
5109 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5110 if (LN0->isVolatile())
Chris Lattner4c32bc22010-12-22 07:36:50 +00005111 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005112
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005113 // Verify that we are actually reducing a load width here.
Bill Schmidt89e88e32013-01-14 22:04:38 +00005114 if (LN0->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005115 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005116
Bill Schmidt89e88e32013-01-14 22:04:38 +00005117 // For the transform to be legal, the load must produce only two values
5118 // (the value loaded and the chain). Don't transform a pre-increment
5119 // load, for example, which produces an extra value. Otherwise the
5120 // transformation is not equivalent, and the downstream logic to replace
5121 // uses gets things wrong.
5122 if (LN0->getNumValues() > 2)
5123 return SDValue();
5124
Chris Lattner4c32bc22010-12-22 07:36:50 +00005125 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005126
Evan Cheng16436df2012-06-26 01:19:33 +00005127 if (PtrType == MVT::Untyped || PtrType.isExtended())
5128 // It's not possible to generate a constant of extended or untyped type.
5129 return SDValue();
5130
Chris Lattner4c32bc22010-12-22 07:36:50 +00005131 // For big endian targets, we need to adjust the offset to the pointer to
5132 // load the correct bytes.
5133 if (TLI.isBigEndian()) {
5134 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5135 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5136 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005137 }
5138
Chris Lattner4c32bc22010-12-22 07:36:50 +00005139 uint64_t PtrOff = ShAmt / 8;
5140 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5141 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5142 PtrType, LN0->getBasePtr(),
5143 DAG.getConstant(PtrOff, PtrType));
5144 AddToWorkList(NewPtr.getNode());
5145
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005146 SDValue Load;
5147 if (ExtType == ISD::NON_EXTLOAD)
5148 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5149 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005150 LN0->isVolatile(), LN0->isNonTemporal(),
5151 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005152 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005153 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005154 LN0->getPointerInfo().getWithOffset(PtrOff),
5155 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5156 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005157
5158 // Replace the old load's chain with the new load's chain.
5159 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00005160 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005161
5162 // Shift the result left, if we've swallowed a left shift.
5163 SDValue Result = Load;
5164 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005165 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005166 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5167 ShImmTy = VT;
Paul Redmond5c974502013-02-12 15:21:21 +00005168 // If the shift amount is as large as the result size (but, presumably,
5169 // no larger than the source) then the useful bits of the result are
5170 // zero; we can't simply return the shortened shift, because the result
5171 // of that operation is undefined.
5172 if (ShLeftAmt >= VT.getSizeInBits())
5173 Result = DAG.getConstant(0, VT);
5174 else
5175 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5176 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
Chris Lattner4c32bc22010-12-22 07:36:50 +00005177 }
5178
5179 // Return the new loaded value.
5180 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005181}
5182
Dan Gohman475871a2008-07-27 21:46:04 +00005183SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5184 SDValue N0 = N->getOperand(0);
5185 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005186 EVT VT = N->getValueType(0);
5187 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005188 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005189 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005190
Nate Begeman1d4d4142005-09-01 00:19:25 +00005191 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005192 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005193 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005194
Chris Lattner541a24f2006-05-06 22:43:44 +00005195 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005196 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005197 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005198
Nate Begeman646d7e22005-09-02 21:18:40 +00005199 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5200 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005201 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005202 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5203 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005204 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005205
Dan Gohman75dcf082008-07-31 00:50:31 +00005206 // fold (sext_in_reg (sext x)) -> (sext x)
5207 // fold (sext_in_reg (aext x)) -> (sext x)
5208 // if x is small enough.
5209 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5210 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005211 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5212 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005213 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005214 }
5215
Chris Lattner95a5e052007-04-17 19:03:21 +00005216 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005217 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005218 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005219
Chris Lattner95a5e052007-04-17 19:03:21 +00005220 // fold operands of sext_in_reg based on knowledge that the top bits are not
5221 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005222 if (SimplifyDemandedBits(SDValue(N, 0)))
5223 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005224
Evan Chengc88138f2007-03-22 01:54:19 +00005225 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5226 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005227 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005228 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005229 return NarrowLoad;
5230
Bill Wendling8509c902009-01-30 22:33:24 +00005231 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005232 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005233 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5234 if (N0.getOpcode() == ISD::SRL) {
5235 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005236 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005237 // We can turn this into an SRA iff the input to the SRL is already sign
Chris Lattner4b37e872006-05-08 21:18:59 +00005238 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005239 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005240 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005241 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5242 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005243 }
5244 }
Evan Chengc88138f2007-03-22 01:54:19 +00005245
Nate Begemanded49632005-10-13 03:11:28 +00005246 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005247 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005248 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005249 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005250 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005251 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005252 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005253 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005254 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005255 LN0->getBasePtr(), LN0->getPointerInfo(),
5256 EVT,
David Greene1e559442010-02-15 17:00:31 +00005257 LN0->isVolatile(), LN0->isNonTemporal(),
5258 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005259 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005260 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Elena Demikhovsky4b977312012-12-19 07:50:20 +00005261 AddToWorkList(ExtLoad.getNode());
Dan Gohman475871a2008-07-27 21:46:04 +00005262 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005263 }
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005264 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005265 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005266 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005267 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005268 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005269 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005270 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005271 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005272 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005273 LN0->getBasePtr(), LN0->getPointerInfo(),
5274 EVT,
David Greene1e559442010-02-15 17:00:31 +00005275 LN0->isVolatile(), LN0->isNonTemporal(),
5276 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005277 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005278 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005279 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005280 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005281
5282 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5283 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5284 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5285 N0.getOperand(1), false);
5286 if (BSwap.getNode() != 0)
5287 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5288 BSwap, N1);
5289 }
5290
Dan Gohman475871a2008-07-27 21:46:04 +00005291 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005292}
5293
Dan Gohman475871a2008-07-27 21:46:04 +00005294SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5295 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005296 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005297 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005298
5299 // noop truncate
5300 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005301 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005302 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005303 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005304 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005305 // fold (truncate (truncate x)) -> (truncate x)
5306 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005307 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005308 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005309 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5310 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005311 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005312 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005313 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005314 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5315 N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005316 if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005317 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005318 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Craig Topper0eb5dad2012-09-29 07:18:53 +00005319 // if the source and dest are the same type, we can drop both the extend
5320 // and the truncate.
5321 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005322 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005323
Nadav Rotemcc870a82012-02-05 11:39:23 +00005324 // Fold extract-and-trunc into a narrow extract. For example:
5325 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5326 // i32 y = TRUNCATE(i64 x)
5327 // -- becomes --
5328 // v16i8 b = BITCAST (v2i64 val)
5329 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5330 //
5331 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005332 // creates this pattern) and before operation legalization after which
5333 // we need to be more careful about the vector instructions that we generate.
5334 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5335 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5336
5337 EVT VecTy = N0.getOperand(0).getValueType();
5338 EVT ExTy = N0.getValueType();
5339 EVT TrTy = N->getValueType(0);
5340
5341 unsigned NumElem = VecTy.getVectorNumElements();
5342 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5343
5344 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5345 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5346
5347 SDValue EltNo = N0->getOperand(1);
5348 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5349 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005350 EVT IndexTy = N0->getOperand(1).getValueType();
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005351 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5352
5353 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5354 NVT, N0.getOperand(0));
5355
5356 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5357 N->getDebugLoc(), TrTy, V,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00005358 DAG.getConstant(Index, IndexTy));
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005359 }
5360 }
5361
Arnold Schwaighoferc46e2df2013-02-20 21:33:32 +00005362 // Fold a series of buildvector, bitcast, and truncate if possible.
5363 // For example fold
5364 // (2xi32 trunc (bitcast ((4xi32)buildvector x, x, y, y) 2xi64)) to
5365 // (2xi32 (buildvector x, y)).
5366 if (Level == AfterLegalizeVectorOps && VT.isVector() &&
5367 N0.getOpcode() == ISD::BITCAST && N0.hasOneUse() &&
5368 N0.getOperand(0).getOpcode() == ISD::BUILD_VECTOR &&
5369 N0.getOperand(0).hasOneUse()) {
5370
5371 SDValue BuildVect = N0.getOperand(0);
5372 EVT BuildVectEltTy = BuildVect.getValueType().getVectorElementType();
5373 EVT TruncVecEltTy = VT.getVectorElementType();
5374
5375 // Check that the element types match.
5376 if (BuildVectEltTy == TruncVecEltTy) {
5377 // Now we only need to compute the offset of the truncated elements.
5378 unsigned BuildVecNumElts = BuildVect.getNumOperands();
5379 unsigned TruncVecNumElts = VT.getVectorNumElements();
5380 unsigned TruncEltOffset = BuildVecNumElts / TruncVecNumElts;
5381
5382 assert((BuildVecNumElts % TruncVecNumElts) == 0 &&
5383 "Invalid number of elements");
5384
5385 SmallVector<SDValue, 8> Opnds;
5386 for (unsigned i = 0, e = BuildVecNumElts; i != e; i += TruncEltOffset)
5387 Opnds.push_back(BuildVect.getOperand(i));
5388
5389 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT, &Opnds[0],
5390 Opnds.size());
5391 }
5392 }
5393
Chris Lattner2b4c2792007-10-13 06:35:54 +00005394 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005395 // only the low bits are being used.
5396 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005397 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005398 // may have different active low bits.
5399 if (!VT.isVector()) {
5400 SDValue Shorter =
5401 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5402 VT.getSizeInBits()));
5403 if (Shorter.getNode())
5404 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5405 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005406 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005407 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005408 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5409 SDValue Reduced = ReduceLoadWidth(N);
5410 if (Reduced.getNode())
5411 return Reduced;
5412 }
Michael Liao07edaf32012-10-17 23:45:54 +00005413 // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)),
5414 // where ... are all 'undef'.
5415 if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) {
5416 SmallVector<EVT, 8> VTs;
5417 SDValue V;
5418 unsigned Idx = 0;
5419 unsigned NumDefs = 0;
5420
5421 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
5422 SDValue X = N0.getOperand(i);
5423 if (X.getOpcode() != ISD::UNDEF) {
5424 V = X;
5425 Idx = i;
5426 NumDefs++;
5427 }
5428 // Stop if more than one members are non-undef.
5429 if (NumDefs > 1)
5430 break;
5431 VTs.push_back(EVT::getVectorVT(*DAG.getContext(),
5432 VT.getVectorElementType(),
5433 X.getValueType().getVectorNumElements()));
5434 }
5435
5436 if (NumDefs == 0)
5437 return DAG.getUNDEF(VT);
5438
5439 if (NumDefs == 1) {
5440 assert(V.getNode() && "The single defined operand is empty!");
5441 SmallVector<SDValue, 8> Opnds;
5442 for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
5443 if (i != Idx) {
5444 Opnds.push_back(DAG.getUNDEF(VTs[i]));
5445 continue;
5446 }
5447 SDValue NV = DAG.getNode(ISD::TRUNCATE, V.getDebugLoc(), VTs[i], V);
5448 AddToWorkList(NV.getNode());
5449 Opnds.push_back(NV);
5450 }
5451 return DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
5452 &Opnds[0], Opnds.size());
5453 }
5454 }
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005455
5456 // Simplify the operands using demanded-bits information.
5457 if (!VT.isVector() &&
5458 SimplifyDemandedBits(SDValue(N, 0)))
5459 return SDValue(N, 0);
5460
Evan Chenge5b51ac2010-04-17 06:13:15 +00005461 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005462}
5463
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005464static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005465 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005466 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005467 return Elt.getNode();
5468 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005469}
5470
5471/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005472/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005473SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005474 assert(N->getOpcode() == ISD::BUILD_PAIR);
5475
Nate Begemanabc01992009-06-05 21:37:30 +00005476 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5477 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005478 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5479 LD1->getPointerInfo().getAddrSpace() !=
5480 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005481 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005482 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005483
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005484 if (ISD::isNON_EXTLoad(LD2) &&
5485 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005486 // If both are volatile this would reduce the number of volatile loads.
5487 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005488 !LD1->isVolatile() &&
5489 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005490 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005491 unsigned Align = LD1->getAlignment();
Micah Villmow3574eca2012-10-08 16:38:25 +00005492 unsigned NewAlign = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005493 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005494
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005495 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005496 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005497 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005498 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005499 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005500 }
Bill Wendling67a67682009-01-30 22:44:24 +00005501
Dan Gohman475871a2008-07-27 21:46:04 +00005502 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005503}
5504
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005505SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005506 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005507 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005508
Dan Gohman7f321562007-06-25 16:23:39 +00005509 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5510 // Only do this before legalize, since afterward the target may be depending
5511 // on the bitconvert.
5512 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005513 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005514 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005515 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005516 bool isSimple = true;
5517 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5518 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5519 N0.getOperand(i).getOpcode() != ISD::Constant &&
5520 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005521 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005522 break;
5523 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005524
Owen Andersone50ed302009-08-10 22:56:29 +00005525 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005526 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005527 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005528 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005529 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005530 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005531
Dan Gohman3dd168d2008-09-05 01:58:21 +00005532 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005533 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005534 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005535 if (Res.getNode() != N) {
5536 if (!LegalOperations ||
5537 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5538 return Res;
5539
5540 // Folding it resulted in an illegal node, and it's too late to
5541 // do that. Clean up the old node and forego the transformation.
5542 // Ideally this won't happen very often, because instcombine
5543 // and the earlier dagcombine runs (where illegal nodes are
5544 // permitted) should have folded most of them already.
5545 DAG.DeleteNode(Res.getNode());
5546 }
Chris Lattner94683772005-12-23 05:30:37 +00005547 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005548
Bill Wendling67a67682009-01-30 22:44:24 +00005549 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005550 if (N0.getOpcode() == ISD::BITCAST)
5551 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005552 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005553
Chris Lattner57104102005-12-23 05:44:41 +00005554 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005555 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005556 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005557 // Do not change the width of a volatile load.
5558 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005559 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005560 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Micah Villmow3574eca2012-10-08 16:38:25 +00005561 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005562 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005563 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005564
Evan Cheng59d5b682007-05-07 21:27:48 +00005565 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005566 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005567 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005568 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005569 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005570 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005571 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005572 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005573 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005574 Load.getValue(1));
5575 return Load;
5576 }
Chris Lattner57104102005-12-23 05:44:41 +00005577 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005578
Bill Wendling67a67682009-01-30 22:44:24 +00005579 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5580 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005581 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005582 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5583 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Nadav Rotem91a7e012012-09-13 14:54:28 +00005584 N0.getNode()->hasOneUse() && VT.isInteger() &&
5585 !VT.isVector() && !N0.getValueType().isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005586 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005587 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005588 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005589
Duncan Sands83ec4b62008-06-06 12:08:01 +00005590 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005591 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005592 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5593 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005594 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005595 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5596 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005597 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005598
Bill Wendling67a67682009-01-30 22:44:24 +00005599 // fold (bitconvert (fcopysign cst, x)) ->
5600 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5601 // Note that we don't handle (copysign x, cst) because this can always be
5602 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005603 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005604 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005605 VT.isInteger() && !VT.isVector()) {
5606 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005607 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005608 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005609 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005610 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005611 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005612
Duncan Sands25cf2272008-11-24 14:53:14 +00005613 // If X has a different width than the result/lhs, sext it or truncate it.
5614 unsigned VTWidth = VT.getSizeInBits();
5615 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005616 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005617 AddToWorkList(X.getNode());
5618 } else if (OrigXWidth > VTWidth) {
5619 // To get the sign bit in the right place, we have to shift it right
5620 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005621 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005622 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005623 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5624 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005625 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005626 AddToWorkList(X.getNode());
5627 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005628
Duncan Sands25cf2272008-11-24 14:53:14 +00005629 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005630 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005631 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005632 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005633
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005634 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005635 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005636 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005637 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005638 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005639
Bill Wendling67a67682009-01-30 22:44:24 +00005640 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005641 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005642 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005643
Sylvestre Ledru94c22712012-09-27 10:14:43 +00005644 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005645 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005646 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5647 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005648 return CombineLD;
5649 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005650
Dan Gohman475871a2008-07-27 21:46:04 +00005651 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005652}
5653
Dan Gohman475871a2008-07-27 21:46:04 +00005654SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005655 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005656 return CombineConsecutiveLoads(N, VT);
5657}
5658
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005659/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005660/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005661/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005662SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005663ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005664 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005665
Chris Lattner6258fb22006-04-02 02:53:43 +00005666 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005667 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005668
Duncan Sands83ec4b62008-06-06 12:08:01 +00005669 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5670 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005671
Chris Lattner6258fb22006-04-02 02:53:43 +00005672 // If this is a conversion of N elements of one type to N elements of another
5673 // type, convert each element. This handles FP<->INT cases.
5674 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005675 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5676 BV->getValueType(0).getVectorNumElements());
5677
5678 // Due to the FP element handling below calling this routine recursively,
5679 // we can end up with a scalar-to-vector node here.
5680 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005681 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5682 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005683 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005684
Dan Gohman475871a2008-07-27 21:46:04 +00005685 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005686 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005687 SDValue Op = BV->getOperand(i);
5688 // If the vector element type is not legal, the BUILD_VECTOR operands
5689 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005690 if (Op.getValueType() != SrcEltVT)
5691 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005692 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005693 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005694 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005695 }
Evan Chenga87008d2009-02-25 22:49:59 +00005696 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5697 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005698 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005699
Chris Lattner6258fb22006-04-02 02:53:43 +00005700 // Otherwise, we're growing or shrinking the elements. To avoid having to
5701 // handle annoying details of growing/shrinking FP values, we convert them to
5702 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005703 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005704 // Convert the input float vector to a int vector where the elements are the
5705 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005706 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005707 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005708 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005709 SrcEltVT = IntVT;
5710 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005711
Chris Lattner6258fb22006-04-02 02:53:43 +00005712 // Now we know the input is an integer vector. If the output is a FP type,
5713 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005714 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005715 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005716 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005717 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005718
Chris Lattner6258fb22006-04-02 02:53:43 +00005719 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005720 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005721 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005722
Chris Lattner6258fb22006-04-02 02:53:43 +00005723 // Okay, we know the src/dst types are both integers of differing types.
5724 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005725 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005726 if (SrcBitSize < DstBitSize) {
5727 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005728
Dan Gohman475871a2008-07-27 21:46:04 +00005729 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005730 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005731 i += NumInputsPerOutput) {
5732 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005733 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005734 bool EltIsUndef = true;
5735 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5736 // Shift the previously computed bits over.
5737 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005738 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005739 if (Op.getOpcode() == ISD::UNDEF) continue;
5740 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005741
Jay Foad40f8f622010-12-07 08:25:19 +00005742 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005743 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005744 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005745
Chris Lattner6258fb22006-04-02 02:53:43 +00005746 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005747 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005748 else
5749 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5750 }
5751
Owen Anderson23b9b192009-08-12 00:36:31 +00005752 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005753 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5754 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005755 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005756
Chris Lattner6258fb22006-04-02 02:53:43 +00005757 // Finally, this must be the case where we are shrinking elements: each input
5758 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005759 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005760 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005761 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5762 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005763 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005764
Dan Gohman7f321562007-06-25 16:23:39 +00005765 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005766 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5767 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005768 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005769 continue;
5770 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005771
Jay Foad40f8f622010-12-07 08:25:19 +00005772 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5773 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005774
Chris Lattner6258fb22006-04-02 02:53:43 +00005775 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005776 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005777 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005778 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005779 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005780 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5781 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005782 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005783 }
5784
5785 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005786 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005787 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5788 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005789
Evan Chenga87008d2009-02-25 22:49:59 +00005790 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5791 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005792}
5793
Dan Gohman475871a2008-07-27 21:46:04 +00005794SDValue DAGCombiner::visitFADD(SDNode *N) {
5795 SDValue N0 = N->getOperand(0);
5796 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005797 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5798 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005799 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005800
Dan Gohman7f321562007-06-25 16:23:39 +00005801 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005802 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005803 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005804 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005805 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005806
Lang Hames01806942012-06-14 20:37:15 +00005807 // fold (fadd c1, c2) -> c1 + c2
Ulrich Weigande669c932012-10-29 18:35:49 +00005808 if (N0CFP && N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005809 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005810 // canonicalize constant to RHS
5811 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005812 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5813 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005814 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5815 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005816 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005817 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005818 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005819 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005820 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005821 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005822 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005823 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
Nadav Rotem6dfabb62012-09-20 08:53:31 +00005824 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005825 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005826 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005827
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005828 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005829 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5830 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5831 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005832 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005833 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5834 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005835
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005836 // No FP constant should be created after legalization as Instruction
5837 // Selection pass has hard time in dealing with FP constant.
5838 //
5839 // We don't need test this condition for transformation like following, as
5840 // the DAG being transformed implies it is legal to take FP constant as
5841 // operand.
5842 //
5843 // (fadd (fmul c, x), x) -> (fmul c+1, x)
5844 //
5845 bool AllowNewFpConst = (Level < AfterLegalizeDAG);
5846
Owen Anderson607ebde2012-11-01 02:00:53 +00005847 // If allow, fold (fadd (fneg x), x) -> 0.0
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005848 if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
Owen Anderson607ebde2012-11-01 02:00:53 +00005849 N0.getOpcode() == ISD::FNEG && N0.getOperand(0) == N1) {
5850 return DAG.getConstantFP(0.0, VT);
5851 }
5852
5853 // If allow, fold (fadd x, (fneg x)) -> 0.0
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005854 if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
Owen Anderson607ebde2012-11-01 02:00:53 +00005855 N1.getOpcode() == ISD::FNEG && N1.getOperand(0) == N0) {
5856 return DAG.getConstantFP(0.0, VT);
5857 }
5858
Owen Anderson43da6c72012-08-30 23:35:16 +00005859 // In unsafe math mode, we can fold chains of FADD's of the same value
5860 // into multiplications. This transform is not safe in general because
5861 // we are reducing the number of rounding steps.
5862 if (DAG.getTarget().Options.UnsafeFPMath &&
5863 TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
5864 !N0CFP && !N1CFP) {
5865 if (N0.getOpcode() == ISD::FMUL) {
5866 ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
5867 ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
5868
5869 // (fadd (fmul c, x), x) -> (fmul c+1, x)
5870 if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
5871 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5872 SDValue(CFP00, 0),
5873 DAG.getConstantFP(1.0, VT));
5874 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5875 N1, NewCFP);
5876 }
5877
5878 // (fadd (fmul x, c), x) -> (fmul c+1, x)
5879 if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
5880 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5881 SDValue(CFP01, 0),
5882 DAG.getConstantFP(1.0, VT));
5883 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5884 N1, NewCFP);
5885 }
5886
Owen Anderson43da6c72012-08-30 23:35:16 +00005887 // (fadd (fmul c, x), (fadd x, x)) -> (fmul c+2, x)
5888 if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
5889 N1.getOperand(0) == N1.getOperand(1) &&
5890 N0.getOperand(1) == N1.getOperand(0)) {
5891 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5892 SDValue(CFP00, 0),
5893 DAG.getConstantFP(2.0, VT));
5894 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5895 N0.getOperand(1), NewCFP);
5896 }
5897
5898 // (fadd (fmul x, c), (fadd x, x)) -> (fmul c+2, x)
5899 if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
5900 N1.getOperand(0) == N1.getOperand(1) &&
5901 N0.getOperand(0) == N1.getOperand(0)) {
5902 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5903 SDValue(CFP01, 0),
5904 DAG.getConstantFP(2.0, VT));
5905 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5906 N0.getOperand(0), NewCFP);
5907 }
5908 }
5909
5910 if (N1.getOpcode() == ISD::FMUL) {
5911 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
5912 ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
5913
5914 // (fadd x, (fmul c, x)) -> (fmul c+1, x)
5915 if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
5916 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5917 SDValue(CFP10, 0),
5918 DAG.getConstantFP(1.0, VT));
5919 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5920 N0, NewCFP);
5921 }
5922
5923 // (fadd x, (fmul x, c)) -> (fmul c+1, x)
5924 if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
5925 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5926 SDValue(CFP11, 0),
5927 DAG.getConstantFP(1.0, VT));
5928 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5929 N0, NewCFP);
5930 }
5931
Owen Anderson43da6c72012-08-30 23:35:16 +00005932
5933 // (fadd (fadd x, x), (fmul c, x)) -> (fmul c+2, x)
5934 if (CFP10 && !CFP11 && N1.getOpcode() == ISD::FADD &&
5935 N1.getOperand(0) == N1.getOperand(1) &&
5936 N0.getOperand(1) == N1.getOperand(0)) {
5937 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5938 SDValue(CFP10, 0),
5939 DAG.getConstantFP(2.0, VT));
5940 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5941 N0.getOperand(1), NewCFP);
5942 }
5943
5944 // (fadd (fadd x, x), (fmul x, c)) -> (fmul c+2, x)
5945 if (CFP11 && !CFP10 && N1.getOpcode() == ISD::FADD &&
5946 N1.getOperand(0) == N1.getOperand(1) &&
5947 N0.getOperand(0) == N1.getOperand(0)) {
5948 SDValue NewCFP = DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5949 SDValue(CFP11, 0),
5950 DAG.getConstantFP(2.0, VT));
5951 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5952 N0.getOperand(0), NewCFP);
5953 }
5954 }
5955
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005956 if (N0.getOpcode() == ISD::FADD && AllowNewFpConst) {
Shuxin Yang98b93e52013-02-02 00:22:03 +00005957 ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
5958 // (fadd (fadd x, x), x) -> (fmul 3.0, x)
5959 if (!CFP && N0.getOperand(0) == N0.getOperand(1) &&
5960 (N0.getOperand(0) == N1)) {
5961 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5962 N1, DAG.getConstantFP(3.0, VT));
5963 }
5964 }
5965
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005966 if (N1.getOpcode() == ISD::FADD && AllowNewFpConst) {
Shuxin Yang98b93e52013-02-02 00:22:03 +00005967 ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
5968 // (fadd x, (fadd x, x)) -> (fmul 3.0, x)
5969 if (!CFP10 && N1.getOperand(0) == N1.getOperand(1) &&
5970 N1.getOperand(0) == N0) {
5971 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5972 N0, DAG.getConstantFP(3.0, VT));
5973 }
5974 }
5975
Owen Anderson43da6c72012-08-30 23:35:16 +00005976 // (fadd (fadd x, x), (fadd x, x)) -> (fmul 4.0, x)
Shuxin Yang1cd1d022013-03-25 22:52:29 +00005977 if (AllowNewFpConst &&
5978 N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
Owen Anderson43da6c72012-08-30 23:35:16 +00005979 N0.getOperand(0) == N0.getOperand(1) &&
5980 N1.getOperand(0) == N1.getOperand(1) &&
5981 N0.getOperand(0) == N1.getOperand(0)) {
5982 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5983 N0.getOperand(0),
5984 DAG.getConstantFP(4.0, VT));
5985 }
5986 }
5987
Lang Hamesd693caf2012-06-19 22:51:23 +00005988 // FADD -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00005989 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00005990 DAG.getTarget().Options.UnsafeFPMath) &&
5991 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00005992 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00005993
5994 // fold (fadd (fmul x, y), z) -> (fma x, y, z)
5995 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
5996 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
5997 N0.getOperand(0), N0.getOperand(1), N1);
5998 }
Owen Anderson43da6c72012-08-30 23:35:16 +00005999
Michael Liaob79bff52012-09-01 04:09:16 +00006000 // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
Lang Hamesd693caf2012-06-19 22:51:23 +00006001 // Note: Commutes FADD operands.
6002 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
6003 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,
6004 N1.getOperand(0), N1.getOperand(1), N0);
6005 }
6006 }
6007
Dan Gohman475871a2008-07-27 21:46:04 +00006008 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006009}
6010
Dan Gohman475871a2008-07-27 21:46:04 +00006011SDValue DAGCombiner::visitFSUB(SDNode *N) {
6012 SDValue N0 = N->getOperand(0);
6013 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00006014 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6015 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006016 EVT VT = N->getValueType(0);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006017 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00006018
Dan Gohman7f321562007-06-25 16:23:39 +00006019 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006020 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006021 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006022 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006023 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006024
Nate Begemana0e221d2005-10-18 00:28:13 +00006025 // fold (fsub c1, c2) -> c1-c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006026 if (N0CFP && N1CFP)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00006027 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00006028 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006029 if (DAG.getTarget().Options.UnsafeFPMath &&
6030 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00006031 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00006032 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006033 if (DAG.getTarget().Options.UnsafeFPMath &&
6034 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006035 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006036 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00006037 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006038 return DAG.getNode(ISD::FNEG, dl, VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00006039 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00006040 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00006041 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006042 return DAG.getNode(ISD::FADD, dl, VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00006043 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00006044
Bill Wendling5a894342012-03-15 05:12:00 +00006045 // If 'unsafe math' is enabled, fold
Owen Anderson713e9532012-05-07 20:51:25 +00006046 // (fsub x, x) -> 0.0 &
Bill Wendling5a894342012-03-15 05:12:00 +00006047 // (fsub x, (fadd x, y)) -> (fneg y) &
6048 // (fsub x, (fadd y, x)) -> (fneg y)
6049 if (DAG.getTarget().Options.UnsafeFPMath) {
Owen Anderson713e9532012-05-07 20:51:25 +00006050 if (N0 == N1)
6051 return DAG.getConstantFP(0.0f, VT);
6052
Bill Wendling5a894342012-03-15 05:12:00 +00006053 if (N1.getOpcode() == ISD::FADD) {
6054 SDValue N10 = N1->getOperand(0);
6055 SDValue N11 = N1->getOperand(1);
6056
6057 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
6058 &DAG.getTarget().Options))
6059 return GetNegatedExpression(N11, DAG, LegalOperations);
6060 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
6061 &DAG.getTarget().Options))
6062 return GetNegatedExpression(N10, DAG, LegalOperations);
6063 }
6064 }
6065
Lang Hamesd693caf2012-06-19 22:51:23 +00006066 // FSUB -> FMA combines:
Lang Hamese0231412012-06-22 01:09:09 +00006067 if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
Lang Hamesd693caf2012-06-19 22:51:23 +00006068 DAG.getTarget().Options.UnsafeFPMath) &&
6069 DAG.getTarget().getTargetLowering()->isFMAFasterThanMulAndAdd(VT) &&
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006070 TLI.isOperationLegalOrCustom(ISD::FMA, VT)) {
Lang Hamesd693caf2012-06-19 22:51:23 +00006071
6072 // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
6073 if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006074 return DAG.getNode(ISD::FMA, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006075 N0.getOperand(0), N0.getOperand(1),
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006076 DAG.getNode(ISD::FNEG, dl, VT, N1));
Lang Hamesd693caf2012-06-19 22:51:23 +00006077 }
6078
6079 // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
6080 // Note: Commutes FSUB operands.
6081 if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006082 return DAG.getNode(ISD::FMA, dl, VT,
6083 DAG.getNode(ISD::FNEG, dl, VT,
Lang Hamesd693caf2012-06-19 22:51:23 +00006084 N1.getOperand(0)),
6085 N1.getOperand(1), N0);
6086 }
Elena Demikhovsky1503aba2012-08-01 12:06:00 +00006087
6088 // fold (fsub (-(fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
6089 if (N0.getOpcode() == ISD::FNEG &&
6090 N0.getOperand(0).getOpcode() == ISD::FMUL &&
6091 N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
6092 SDValue N00 = N0.getOperand(0).getOperand(0);
6093 SDValue N01 = N0.getOperand(0).getOperand(1);
6094 return DAG.getNode(ISD::FMA, dl, VT,
6095 DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
6096 DAG.getNode(ISD::FNEG, dl, VT, N1));
6097 }
Lang Hamesd693caf2012-06-19 22:51:23 +00006098 }
6099
Dan Gohman475871a2008-07-27 21:46:04 +00006100 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006101}
6102
Dan Gohman475871a2008-07-27 21:46:04 +00006103SDValue DAGCombiner::visitFMUL(SDNode *N) {
6104 SDValue N0 = N->getOperand(0);
6105 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00006106 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6107 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006108 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006109 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006110
Dan Gohman7f321562007-06-25 16:23:39 +00006111 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006112 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006113 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006114 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006115 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006116
Nate Begeman11af4ea2005-10-17 20:40:11 +00006117 // fold (fmul c1, c2) -> c1*c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006118 if (N0CFP && N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006119 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00006120 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00006121 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006122 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
6123 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006124 if (DAG.getTarget().Options.UnsafeFPMath &&
6125 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00006126 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00006127 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006128 if (DAG.getTarget().Options.UnsafeFPMath &&
6129 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00006130 return N1;
Owen Anderson363e4b92012-05-02 21:32:35 +00006131 // fold (fmul A, 1.0) -> A
6132 if (N1CFP && N1CFP->isExactlyValue(1.0))
6133 return N0;
Nate Begeman11af4ea2005-10-17 20:40:11 +00006134 // fold (fmul X, 2.0) -> (fadd X, X)
6135 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006136 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00006137 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00006138 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00006139 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006140 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006141
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006142 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006143 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006144 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006145 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006146 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006147 // Both can be negated for free, check to see if at least one is cheaper
6148 // negated.
6149 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006150 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006151 GetNegatedExpression(N0, DAG, LegalOperations),
6152 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006153 }
6154 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006155
Chris Lattnerddae4bd2007-01-08 23:04:05 +00006156 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006157 if (DAG.getTarget().Options.UnsafeFPMath &&
6158 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006159 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006160 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00006161 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00006162 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006163
Dan Gohman475871a2008-07-27 21:46:04 +00006164 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006165}
6166
Owen Anderson062c0a52012-05-02 22:17:40 +00006167SDValue DAGCombiner::visitFMA(SDNode *N) {
6168 SDValue N0 = N->getOperand(0);
6169 SDValue N1 = N->getOperand(1);
6170 SDValue N2 = N->getOperand(2);
6171 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6172 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6173 EVT VT = N->getValueType(0);
Owen Anderson58d57292012-09-01 06:04:27 +00006174 DebugLoc dl = N->getDebugLoc();
Owen Anderson062c0a52012-05-02 22:17:40 +00006175
Owen Anderson607ebde2012-11-01 02:00:53 +00006176 if (DAG.getTarget().Options.UnsafeFPMath) {
6177 if (N0CFP && N0CFP->isZero())
6178 return N2;
6179 if (N1CFP && N1CFP->isZero())
6180 return N2;
6181 }
Owen Anderson062c0a52012-05-02 22:17:40 +00006182 if (N0CFP && N0CFP->isExactlyValue(1.0))
6183 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N2);
6184 if (N1CFP && N1CFP->isExactlyValue(1.0))
6185 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N2);
6186
Owen Anderson85ef6f42012-05-30 18:50:39 +00006187 // Canonicalize (fma c, x, y) -> (fma x, c, y)
Owen Andersonf917d202012-05-30 18:54:50 +00006188 if (N0CFP && !N1CFP)
Owen Anderson85ef6f42012-05-30 18:50:39 +00006189 return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT, N1, N0, N2);
6190
Owen Anderson58d57292012-09-01 06:04:27 +00006191 // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6192 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6193 N2.getOpcode() == ISD::FMUL &&
6194 N0 == N2.getOperand(0) &&
6195 N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6196 return DAG.getNode(ISD::FMUL, dl, VT, N0,
6197 DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6198 }
6199
6200
6201 // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6202 if (DAG.getTarget().Options.UnsafeFPMath &&
6203 N0.getOpcode() == ISD::FMUL && N1CFP &&
6204 N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6205 return DAG.getNode(ISD::FMA, dl, VT,
6206 N0.getOperand(0),
6207 DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6208 N2);
6209 }
6210
6211 // (fma x, 1, y) -> (fadd x, y)
6212 // (fma x, -1, y) -> (fadd (fneg x), y)
6213 if (N1CFP) {
6214 if (N1CFP->isExactlyValue(1.0))
6215 return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6216
6217 if (N1CFP->isExactlyValue(-1.0) &&
6218 (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6219 SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6220 AddToWorkList(RHSNeg.getNode());
6221 return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6222 }
6223 }
6224
6225 // (fma x, c, x) -> (fmul x, (c+1))
6226 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2) {
6227 return DAG.getNode(ISD::FMUL, dl, VT,
6228 N0,
6229 DAG.getNode(ISD::FADD, dl, VT,
6230 N1, DAG.getConstantFP(1.0, VT)));
6231 }
6232
6233 // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6234 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6235 N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0) {
6236 return DAG.getNode(ISD::FMUL, dl, VT,
6237 N0,
6238 DAG.getNode(ISD::FADD, dl, VT,
6239 N1, DAG.getConstantFP(-1.0, VT)));
6240 }
6241
6242
Owen Anderson062c0a52012-05-02 22:17:40 +00006243 return SDValue();
6244}
6245
Dan Gohman475871a2008-07-27 21:46:04 +00006246SDValue DAGCombiner::visitFDIV(SDNode *N) {
6247 SDValue N0 = N->getOperand(0);
6248 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006249 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6250 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006251 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00006252 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00006253
Dan Gohman7f321562007-06-25 16:23:39 +00006254 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00006255 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006256 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00006257 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00006258 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006259
Nate Begemana148d982006-01-18 22:35:16 +00006260 // fold (fdiv c1, c2) -> c1/c2
Ulrich Weigande669c932012-10-29 18:35:49 +00006261 if (N0CFP && N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006262 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006263
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00006264 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
Ulrich Weigande669c932012-10-29 18:35:49 +00006265 if (N1CFP && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00006266 // Compute the reciprocal 1.0 / c2.
6267 APFloat N1APF = N1CFP->getValueAPF();
6268 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6269 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00006270 // Only do the transform if the reciprocal is a legal fp immediate that
6271 // isn't too nasty (eg NaN, denormal, ...).
6272 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00006273 (!LegalOperations ||
6274 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6275 // backend)... we should handle this gracefully after Legalize.
6276 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6277 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6278 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00006279 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
6280 DAG.getConstantFP(Recip, VT));
6281 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006282
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006283 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00006284 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006285 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00006286 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00006287 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00006288 // Both can be negated for free, check to see if at least one is cheaper
6289 // negated.
6290 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00006291 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00006292 GetNegatedExpression(N0, DAG, LegalOperations),
6293 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00006294 }
6295 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006296
Dan Gohman475871a2008-07-27 21:46:04 +00006297 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006298}
6299
Dan Gohman475871a2008-07-27 21:46:04 +00006300SDValue DAGCombiner::visitFREM(SDNode *N) {
6301 SDValue N0 = N->getOperand(0);
6302 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006303 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6304 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006305 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00006306
Nate Begemana148d982006-01-18 22:35:16 +00006307 // fold (frem c1, c2) -> fmod(c1,c2)
Ulrich Weigande669c932012-10-29 18:35:49 +00006308 if (N0CFP && N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00006309 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00006310
Dan Gohman475871a2008-07-27 21:46:04 +00006311 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00006312}
6313
Dan Gohman475871a2008-07-27 21:46:04 +00006314SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6315 SDValue N0 = N->getOperand(0);
6316 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00006317 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6318 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00006319 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00006320
Ulrich Weigande669c932012-10-29 18:35:49 +00006321 if (N0CFP && N1CFP) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00006322 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006323
Chris Lattner12d83032006-03-05 05:30:57 +00006324 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00006325 const APFloat& V = N1CFP->getValueAPF();
Sylvestre Ledru94c22712012-09-27 10:14:43 +00006326 // copysign(x, c1) -> fabs(x) iff ispos(c1)
6327 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00006328 if (!V.isNegative()) {
6329 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006330 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00006331 } else {
6332 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006333 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00006334 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00006335 }
Chris Lattner12d83032006-03-05 05:30:57 +00006336 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006337
Chris Lattner12d83032006-03-05 05:30:57 +00006338 // copysign(fabs(x), y) -> copysign(x, y)
6339 // copysign(fneg(x), y) -> copysign(x, y)
6340 // copysign(copysign(x,z), y) -> copysign(x, y)
6341 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6342 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006343 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6344 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00006345
6346 // copysign(x, abs(y)) -> abs(x)
6347 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006348 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006349
Chris Lattner12d83032006-03-05 05:30:57 +00006350 // copysign(x, copysign(y,z)) -> copysign(x, z)
6351 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006352 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6353 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006354
Chris Lattner12d83032006-03-05 05:30:57 +00006355 // copysign(x, fp_extend(y)) -> copysign(x, y)
6356 // copysign(x, fp_round(y)) -> copysign(x, y)
6357 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006358 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6359 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006360
Dan Gohman475871a2008-07-27 21:46:04 +00006361 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00006362}
6363
Dan Gohman475871a2008-07-27 21:46:04 +00006364SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6365 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006366 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006367 EVT VT = N->getValueType(0);
6368 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00006369
Nate Begeman1d4d4142005-09-01 00:19:25 +00006370 // fold (sint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006371 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006372 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006373 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006374 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006375 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006376
Chris Lattnercda88752008-06-26 00:16:49 +00006377 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6378 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006379 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6380 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006381 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006382 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006383 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006384 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006385
Nadav Rotemed1a3352012-07-23 07:59:50 +00006386 // The next optimizations are desireable only if SELECT_CC can be lowered.
6387 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6388 // having to say they don't support SELECT_CC on every type the DAG knows
6389 // about, since there is no way to mark an opcode illegal at all value types
6390 // (See also visitSELECT)
6391 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6392 // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6393 if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6394 !VT.isVector() &&
6395 (!LegalOperations ||
6396 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6397 SDValue Ops[] =
6398 { N0.getOperand(0), N0.getOperand(1),
6399 DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6400 N0.getOperand(2) };
6401 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6402 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006403
Nadav Rotemed1a3352012-07-23 07:59:50 +00006404 // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6405 // (select_cc x, y, 1.0, 0.0,, cc)
6406 if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6407 N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6408 (!LegalOperations ||
6409 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6410 SDValue Ops[] =
6411 { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6412 DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6413 N0.getOperand(0).getOperand(2) };
6414 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6415 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006416 }
6417
Dan Gohman475871a2008-07-27 21:46:04 +00006418 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006419}
6420
Dan Gohman475871a2008-07-27 21:46:04 +00006421SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6422 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00006423 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006424 EVT VT = N->getValueType(0);
6425 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00006426
Nate Begeman1d4d4142005-09-01 00:19:25 +00006427 // fold (uint_to_fp c1) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006428 if (N0C &&
Stuart Hastings7e334182011-03-02 19:36:30 +00006429 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00006430 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00006431 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006432 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006433
Chris Lattnercda88752008-06-26 00:16:49 +00006434 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6435 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006436 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6437 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006438 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00006439 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006440 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00006441 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006442
Nadav Rotemed1a3352012-07-23 07:59:50 +00006443 // The next optimizations are desireable only if SELECT_CC can be lowered.
6444 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6445 // having to say they don't support SELECT_CC on every type the DAG knows
6446 // about, since there is no way to mark an opcode illegal at all value types
6447 // (See also visitSELECT)
6448 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6449 // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
Owen Andersond9bf71f2012-07-09 20:31:12 +00006450
Nadav Rotemed1a3352012-07-23 07:59:50 +00006451 if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6452 (!LegalOperations ||
6453 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6454 SDValue Ops[] =
6455 { N0.getOperand(0), N0.getOperand(1),
6456 DAG.getConstantFP(1.0, VT), DAG.getConstantFP(0.0, VT),
6457 N0.getOperand(2) };
6458 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT, Ops, 5);
6459 }
6460 }
Owen Andersond9bf71f2012-07-09 20:31:12 +00006461
Dan Gohman475871a2008-07-27 21:46:04 +00006462 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006463}
6464
Dan Gohman475871a2008-07-27 21:46:04 +00006465SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6466 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006467 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006468 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006469
Nate Begeman1d4d4142005-09-01 00:19:25 +00006470 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00006471 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006472 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
6473
Dan Gohman475871a2008-07-27 21:46:04 +00006474 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006475}
6476
Dan Gohman475871a2008-07-27 21:46:04 +00006477SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6478 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006479 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006480 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006481
Nate Begeman1d4d4142005-09-01 00:19:25 +00006482 // fold (fp_to_uint c1fp) -> c1
Ulrich Weigande669c932012-10-29 18:35:49 +00006483 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006484 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
6485
Dan Gohman475871a2008-07-27 21:46:04 +00006486 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006487}
6488
Dan Gohman475871a2008-07-27 21:46:04 +00006489SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6490 SDValue N0 = N->getOperand(0);
6491 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00006492 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006493 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006494
Nate Begeman1d4d4142005-09-01 00:19:25 +00006495 // fold (fp_round c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006496 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006497 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00006498
Chris Lattner79dbea52006-03-13 06:26:26 +00006499 // fold (fp_round (fp_extend x)) -> x
6500 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6501 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006502
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006503 // fold (fp_round (fp_round x)) -> (fp_round x)
6504 if (N0.getOpcode() == ISD::FP_ROUND) {
6505 // This is a value preserving truncation if both round's are.
6506 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00006507 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00006508 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00006509 DAG.getIntPtrConstant(IsTrunc));
6510 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006511
Chris Lattner79dbea52006-03-13 06:26:26 +00006512 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00006513 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00006514 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
6515 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00006516 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00006517 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
6518 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00006519 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006520
Dan Gohman475871a2008-07-27 21:46:04 +00006521 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006522}
6523
Dan Gohman475871a2008-07-27 21:46:04 +00006524SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6525 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006526 EVT VT = N->getValueType(0);
6527 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00006528 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006529
Nate Begeman1d4d4142005-09-01 00:19:25 +00006530 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00006531 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00006532 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006533 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006534 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00006535
Dan Gohman475871a2008-07-27 21:46:04 +00006536 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006537}
6538
Dan Gohman475871a2008-07-27 21:46:04 +00006539SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6540 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006541 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006542 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006543
Chris Lattner5938bef2007-12-29 06:55:23 +00006544 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006545 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006546 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006547 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006548
Nate Begeman1d4d4142005-09-01 00:19:25 +00006549 // fold (fp_extend c1fp) -> c1fp
Ulrich Weigande669c932012-10-29 18:35:49 +00006550 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006551 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006552
6553 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6554 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006555 if (N0.getOpcode() == ISD::FP_ROUND
6556 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006557 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006558 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006559 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006560 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6561 In, N0.getOperand(1));
6562 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006563 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006564
Chris Lattner0bd48932008-01-17 07:00:52 +00006565 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006566 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006567 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006568 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006569 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006570 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006571 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006572 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006573 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006574 LN0->isVolatile(), LN0->isNonTemporal(),
6575 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006576 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006577 CombineTo(N0.getNode(),
6578 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6579 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006580 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006581 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006582 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006583
Dan Gohman475871a2008-07-27 21:46:04 +00006584 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006585}
6586
Dan Gohman475871a2008-07-27 21:46:04 +00006587SDValue DAGCombiner::visitFNEG(SDNode *N) {
6588 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006589 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006590
Craig Topperdd201ff2012-09-11 01:45:21 +00006591 if (VT.isVector()) {
6592 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6593 if (FoldedVOp.getNode()) return FoldedVOp;
Craig Topper956342b2012-09-09 22:58:45 +00006594 }
6595
Owen Andersonafd3d562012-03-06 00:29:31 +00006596 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6597 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006598 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006599
Chris Lattner3bd39d42008-01-27 17:42:27 +00006600 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6601 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006602 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006603 !VT.isVector() &&
6604 N0.getNode()->hasOneUse() &&
6605 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006606 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006607 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006608 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006609 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6610 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006611 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006612 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006613 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006614 }
6615 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006616
Owen Anderson58d57292012-09-01 06:04:27 +00006617 // (fneg (fmul c, x)) -> (fmul -c, x)
6618 if (N0.getOpcode() == ISD::FMUL) {
6619 ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6620 if (CFP1) {
6621 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
6622 N0.getOperand(0),
6623 DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
6624 N0.getOperand(1)));
6625 }
6626 }
6627
Dan Gohman475871a2008-07-27 21:46:04 +00006628 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006629}
6630
Owen Anderson7c626d32012-08-13 23:32:49 +00006631SDValue DAGCombiner::visitFCEIL(SDNode *N) {
6632 SDValue N0 = N->getOperand(0);
6633 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6634 EVT VT = N->getValueType(0);
6635
6636 // fold (fceil c1) -> fceil(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006637 if (N0CFP)
Owen Anderson7c626d32012-08-13 23:32:49 +00006638 return DAG.getNode(ISD::FCEIL, N->getDebugLoc(), VT, N0);
6639
6640 return SDValue();
6641}
6642
6643SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
6644 SDValue N0 = N->getOperand(0);
6645 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6646 EVT VT = N->getValueType(0);
6647
6648 // fold (ftrunc c1) -> ftrunc(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006649 if (N0CFP)
Owen Anderson7c626d32012-08-13 23:32:49 +00006650 return DAG.getNode(ISD::FTRUNC, N->getDebugLoc(), VT, N0);
6651
6652 return SDValue();
6653}
6654
6655SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
6656 SDValue N0 = N->getOperand(0);
6657 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6658 EVT VT = N->getValueType(0);
6659
6660 // fold (ffloor c1) -> ffloor(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006661 if (N0CFP)
Owen Anderson7c626d32012-08-13 23:32:49 +00006662 return DAG.getNode(ISD::FFLOOR, N->getDebugLoc(), VT, N0);
6663
6664 return SDValue();
6665}
6666
Dan Gohman475871a2008-07-27 21:46:04 +00006667SDValue DAGCombiner::visitFABS(SDNode *N) {
6668 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006669 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006670 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006671
Craig Topperdd201ff2012-09-11 01:45:21 +00006672 if (VT.isVector()) {
6673 SDValue FoldedVOp = SimplifyVUnaryOp(N);
6674 if (FoldedVOp.getNode()) return FoldedVOp;
6675 }
6676
Nate Begeman1d4d4142005-09-01 00:19:25 +00006677 // fold (fabs c1) -> fabs(c1)
Ulrich Weigande669c932012-10-29 18:35:49 +00006678 if (N0CFP)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006679 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006680 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006681 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006682 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006683 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006684 // fold (fabs (fcopysign x, y)) -> (fabs x)
6685 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006686 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006687
Chris Lattner3bd39d42008-01-27 17:42:27 +00006688 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6689 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006690 if (!TLI.isFAbsFree(VT) &&
6691 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006692 N0.getOperand(0).getValueType().isInteger() &&
6693 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006694 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006695 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006696 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006697 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006698 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006699 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006700 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006701 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006702 }
6703 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006704
Dan Gohman475871a2008-07-27 21:46:04 +00006705 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006706}
6707
Dan Gohman475871a2008-07-27 21:46:04 +00006708SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6709 SDValue Chain = N->getOperand(0);
6710 SDValue N1 = N->getOperand(1);
6711 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006712
Dan Gohmane0f06c72009-11-17 00:47:23 +00006713 // If N is a constant we could fold this into a fallthrough or unconditional
6714 // branch. However that doesn't happen very often in normal code, because
6715 // Instcombine/SimplifyCFG should have handled the available opportunities.
6716 // If we did this folding here, it would be necessary to update the
6717 // MachineBasicBlock CFG, which is awkward.
6718
Nate Begeman750ac1b2006-02-01 07:19:44 +00006719 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6720 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006721 if (N1.getOpcode() == ISD::SETCC &&
Tom Stellard3ef53832013-03-08 15:36:57 +00006722 TLI.isOperationLegalOrCustom(ISD::BR_CC,
6723 N1.getOperand(0).getValueType())) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006724 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006725 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006726 N1.getOperand(0), N1.getOperand(1), N2);
6727 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006728
Evan Cheng2a135ae2010-10-04 22:41:01 +00006729 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6730 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6731 (N1.getOperand(0).hasOneUse() &&
6732 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6733 SDNode *Trunc = 0;
6734 if (N1.getOpcode() == ISD::TRUNCATE) {
6735 // Look pass the truncate.
6736 Trunc = N1.getNode();
6737 N1 = N1.getOperand(0);
6738 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006739
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006740 // Match this pattern so that we can generate simpler code:
6741 //
6742 // %a = ...
6743 // %b = and i32 %a, 2
6744 // %c = srl i32 %b, 1
6745 // brcond i32 %c ...
6746 //
6747 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006748 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006749 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006750 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006751 // %c = setcc eq %b, 0
6752 // brcond %c ...
6753 //
6754 // This applies only when the AND constant value has one bit set and the
6755 // SRL constant is equal to the log2 of the AND constant. The back-end is
6756 // smart enough to convert the result into a TEST/JMP sequence.
6757 SDValue Op0 = N1.getOperand(0);
6758 SDValue Op1 = N1.getOperand(1);
6759
6760 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006761 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006762 SDValue AndOp1 = Op0.getOperand(1);
6763
6764 if (AndOp1.getOpcode() == ISD::Constant) {
6765 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6766
6767 if (AndConst.isPowerOf2() &&
6768 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6769 SDValue SetCC =
6770 DAG.getSetCC(N->getDebugLoc(),
6771 TLI.getSetCCResultType(Op0.getValueType()),
6772 Op0, DAG.getConstant(0, Op0.getValueType()),
6773 ISD::SETNE);
6774
Evan Chengd40d03e2010-01-06 19:38:29 +00006775 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6776 MVT::Other, Chain, SetCC, N2);
6777 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6778 // will convert it back to (X & C1) >> C2.
6779 CombineTo(N, NewBRCond, false);
6780 // Truncate is dead.
6781 if (Trunc) {
6782 removeFromWorkList(Trunc);
6783 DAG.DeleteNode(Trunc);
6784 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006785 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006786 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006787 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006788 removeFromWorkList(N1.getNode());
6789 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006790 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006791 }
6792 }
6793 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006794
6795 if (Trunc)
6796 // Restore N1 if the above transformation doesn't match.
6797 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006798 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006799
Evan Cheng2c755ba2010-02-27 07:36:59 +00006800 // Transform br(xor(x, y)) -> br(x != y)
6801 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6802 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6803 SDNode *TheXor = N1.getNode();
6804 SDValue Op0 = TheXor->getOperand(0);
6805 SDValue Op1 = TheXor->getOperand(1);
6806 if (Op0.getOpcode() == Op1.getOpcode()) {
6807 // Avoid missing important xor optimizations.
6808 SDValue Tmp = visitXOR(TheXor);
Evan Cheng78ec0252013-01-09 20:56:40 +00006809 if (Tmp.getNode()) {
6810 if (Tmp.getNode() != TheXor) {
6811 DEBUG(dbgs() << "\nReplacing.8 ";
6812 TheXor->dump(&DAG);
6813 dbgs() << "\nWith: ";
6814 Tmp.getNode()->dump(&DAG);
6815 dbgs() << '\n');
6816 WorkListRemover DeadNodes(*this);
6817 DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
6818 removeFromWorkList(TheXor);
6819 DAG.DeleteNode(TheXor);
6820 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6821 MVT::Other, Chain, Tmp, N2);
6822 }
6823
Benjamin Kramer0b68b752013-03-30 21:28:18 +00006824 // visitXOR has changed XOR's operands or replaced the XOR completely,
6825 // bail out.
6826 return SDValue(N, 0);
Evan Cheng2c755ba2010-02-27 07:36:59 +00006827 }
6828 }
6829
6830 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6831 bool Equal = false;
6832 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6833 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6834 Op0.getOpcode() == ISD::XOR) {
6835 TheXor = Op0.getNode();
6836 Equal = true;
6837 }
6838
Evan Cheng2a135ae2010-10-04 22:41:01 +00006839 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006840 if (LegalTypes)
6841 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6842 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6843 SetCCVT,
6844 Op0, Op1,
6845 Equal ? ISD::SETEQ : ISD::SETNE);
6846 // Replace the uses of XOR with SETCC
6847 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00006848 DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006849 removeFromWorkList(N1.getNode());
6850 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006851 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6852 MVT::Other, Chain, SetCC, N2);
6853 }
6854 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006855
Dan Gohman475871a2008-07-27 21:46:04 +00006856 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006857}
6858
Chris Lattner3ea0b472005-10-05 06:47:48 +00006859// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6860//
Dan Gohman475871a2008-07-27 21:46:04 +00006861SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006862 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006863 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006864
Dan Gohmane0f06c72009-11-17 00:47:23 +00006865 // If N is a constant we could fold this into a fallthrough or unconditional
6866 // branch. However that doesn't happen very often in normal code, because
6867 // Instcombine/SimplifyCFG should have handled the available opportunities.
6868 // If we did this folding here, it would be necessary to update the
6869 // MachineBasicBlock CFG, which is awkward.
6870
Duncan Sands8eab8a22008-06-09 11:32:28 +00006871 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006872 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006873 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6874 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006875 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006876
Nate Begemane17daeb2005-10-05 21:43:42 +00006877 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006878 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006879 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006880 N->getOperand(0), Simp.getOperand(2),
6881 Simp.getOperand(0), Simp.getOperand(1),
6882 N->getOperand(4));
6883
Dan Gohman475871a2008-07-27 21:46:04 +00006884 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006885}
6886
Evan Chengc4b527a2012-01-13 01:37:24 +00006887/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6888/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006889/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006890static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6891 SelectionDAG &DAG,
6892 const TargetLowering &TLI) {
6893 EVT VT;
6894 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6895 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6896 return false;
6897 VT = Use->getValueType(0);
6898 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6899 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6900 return false;
6901 VT = ST->getValue().getValueType();
6902 } else
6903 return false;
6904
Chandler Carruth56d433d2013-01-07 15:14:13 +00006905 TargetLowering::AddrMode AM;
Evan Chengc4b527a2012-01-13 01:37:24 +00006906 if (N->getOpcode() == ISD::ADD) {
6907 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6908 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006909 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006910 AM.BaseOffs = Offset->getSExtValue();
6911 else
Evan Cheng03be3622012-03-06 23:33:32 +00006912 // [reg +/- reg]
6913 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006914 } else if (N->getOpcode() == ISD::SUB) {
6915 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6916 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006917 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006918 AM.BaseOffs = -Offset->getSExtValue();
6919 else
Evan Cheng03be3622012-03-06 23:33:32 +00006920 // [reg +/- reg]
6921 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006922 } else
6923 return false;
6924
6925 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6926}
6927
Duncan Sandsec87aa82008-06-15 20:12:31 +00006928/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6929/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006930/// and it has other uses besides the load / store. After the
6931/// transformation, the new indexed load / store has effectively folded
6932/// the add / subtract in and all of its other uses are redirected to the
6933/// new load / store.
6934bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006935 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006936 return false;
6937
6938 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006939 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006940 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006941 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006942 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006943 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006944 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006945 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006946 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6947 return false;
6948 Ptr = LD->getBasePtr();
6949 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006950 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006951 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006952 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006953 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6954 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6955 return false;
6956 Ptr = ST->getBasePtr();
6957 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006958 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006959 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006960 }
Chris Lattner448f2192006-11-11 00:39:41 +00006961
Chris Lattner9f1794e2006-11-11 00:56:29 +00006962 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6963 // out. There is no reason to make this a preinc/predec.
6964 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006965 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006966 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006967
Chris Lattner9f1794e2006-11-11 00:56:29 +00006968 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006969 SDValue BasePtr;
6970 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006971 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6972 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6973 return false;
Hal Finkel089a5f82013-02-08 21:35:47 +00006974
6975 // Backends without true r+i pre-indexed forms may need to pass a
6976 // constant base with a variable offset so that constant coercion
6977 // will work with the patterns in canonical form.
6978 bool Swapped = false;
6979 if (isa<ConstantSDNode>(BasePtr)) {
6980 std::swap(BasePtr, Offset);
6981 Swapped = true;
6982 }
6983
Evan Chenga7d4a042007-05-03 23:52:19 +00006984 // Don't create a indexed load / store with zero offset.
6985 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006986 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006987 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006988
Chris Lattner41e53fd2006-11-11 01:00:15 +00006989 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006990 // 1) The new base ptr is a frame index.
6991 // 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 +00006992 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006993 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006994 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006995 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006996
Chris Lattner41e53fd2006-11-11 01:00:15 +00006997 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6998 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006999 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00007000 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007001
Chris Lattner41e53fd2006-11-11 01:00:15 +00007002 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00007003 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00007004 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007005 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007006 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00007007 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007008
Hal Finkel089a5f82013-02-08 21:35:47 +00007009 // If the offset is a constant, there may be other adds of constants that
7010 // can be folded with this one. We should do this to avoid having to keep
7011 // a copy of the original base pointer.
7012 SmallVector<SDNode *, 16> OtherUses;
7013 if (isa<ConstantSDNode>(Offset))
7014 for (SDNode::use_iterator I = BasePtr.getNode()->use_begin(),
7015 E = BasePtr.getNode()->use_end(); I != E; ++I) {
7016 SDNode *Use = *I;
7017 if (Use == Ptr.getNode())
7018 continue;
7019
7020 if (Use->isPredecessorOf(N))
7021 continue;
7022
7023 if (Use->getOpcode() != ISD::ADD && Use->getOpcode() != ISD::SUB) {
7024 OtherUses.clear();
7025 break;
7026 }
7027
7028 SDValue Op0 = Use->getOperand(0), Op1 = Use->getOperand(1);
7029 if (Op1.getNode() == BasePtr.getNode())
7030 std::swap(Op0, Op1);
7031 assert(Op0.getNode() == BasePtr.getNode() &&
7032 "Use of ADD/SUB but not an operand");
7033
7034 if (!isa<ConstantSDNode>(Op1)) {
7035 OtherUses.clear();
7036 break;
7037 }
7038
7039 // FIXME: In some cases, we can be smarter about this.
7040 if (Op1.getValueType() != Offset.getValueType()) {
7041 OtherUses.clear();
7042 break;
7043 }
7044
7045 OtherUses.push_back(Use);
7046 }
7047
7048 if (Swapped)
7049 std::swap(BasePtr, Offset);
7050
Evan Chengc843abe2007-05-24 02:35:39 +00007051 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00007052 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00007053
7054 // Caches for hasPredecessorHelper
7055 SmallPtrSet<const SDNode *, 32> Visited;
7056 SmallVector<const SDNode *, 16> Worklist;
7057
Gabor Greifba36cb52008-08-28 21:40:38 +00007058 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7059 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00007060 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007061 if (Use == N)
7062 continue;
Lang Hames944520f2011-07-07 04:31:51 +00007063 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007064 return false;
7065
Evan Chengc4b527a2012-01-13 01:37:24 +00007066 // If Ptr may be folded in addressing mode of other use, then it's
7067 // not profitable to do this transformation.
7068 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007069 RealUse = true;
7070 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007071
Chris Lattner9f1794e2006-11-11 00:56:29 +00007072 if (!RealUse)
7073 return false;
7074
Dan Gohman475871a2008-07-27 21:46:04 +00007075 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007076 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00007077 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
7078 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007079 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00007080 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
7081 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007082 ++PreIndexedNodes;
7083 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007084 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007085 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007086 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007087 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007088 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007089 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007090 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007091 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7092 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007093 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007094 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007095 }
7096
Chris Lattner9f1794e2006-11-11 00:56:29 +00007097 // Finally, since the node is now dead, remove it from the graph.
7098 DAG.DeleteNode(N);
7099
Hal Finkel089a5f82013-02-08 21:35:47 +00007100 if (Swapped)
7101 std::swap(BasePtr, Offset);
7102
7103 // Replace other uses of BasePtr that can be updated to use Ptr
7104 for (unsigned i = 0, e = OtherUses.size(); i != e; ++i) {
7105 unsigned OffsetIdx = 1;
7106 if (OtherUses[i]->getOperand(OffsetIdx).getNode() == BasePtr.getNode())
7107 OffsetIdx = 0;
7108 assert(OtherUses[i]->getOperand(!OffsetIdx).getNode() ==
7109 BasePtr.getNode() && "Expected BasePtr operand");
7110
7111 APInt OV =
7112 cast<ConstantSDNode>(Offset)->getAPIntValue();
7113 if (AM == ISD::PRE_DEC)
7114 OV = -OV;
7115
7116 ConstantSDNode *CN =
7117 cast<ConstantSDNode>(OtherUses[i]->getOperand(OffsetIdx));
7118 APInt CNV = CN->getAPIntValue();
7119 if (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 1)
7120 CNV += OV;
7121 else
7122 CNV -= OV;
7123
7124 SDValue NewOp1 = Result.getValue(isLoad ? 1 : 0);
7125 SDValue NewOp2 = DAG.getConstant(CNV, CN->getValueType(0));
7126 if (OffsetIdx == 0)
7127 std::swap(NewOp1, NewOp2);
7128
7129 SDValue NewUse = DAG.getNode(OtherUses[i]->getOpcode(),
7130 OtherUses[i]->getDebugLoc(),
7131 OtherUses[i]->getValueType(0), NewOp1, NewOp2);
7132 DAG.ReplaceAllUsesOfValueWith(SDValue(OtherUses[i], 0), NewUse);
7133 removeFromWorkList(OtherUses[i]);
7134 DAG.DeleteNode(OtherUses[i]);
7135 }
7136
Chris Lattner9f1794e2006-11-11 00:56:29 +00007137 // Replace the uses of Ptr with uses of the updated base value.
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007138 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
Gabor Greifba36cb52008-08-28 21:40:38 +00007139 removeFromWorkList(Ptr.getNode());
7140 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00007141
7142 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007143}
7144
Duncan Sandsec87aa82008-06-15 20:12:31 +00007145/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00007146/// add / sub of the base pointer node into a post-indexed load / store.
7147/// The transformation folded the add / subtract into the new indexed
7148/// load / store effectively and all of its uses are redirected to the
7149/// new load / store.
7150bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00007151 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00007152 return false;
7153
7154 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007155 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00007156 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00007157 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007158 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007159 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007160 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007161 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
7162 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
7163 return false;
7164 Ptr = LD->getBasePtr();
7165 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00007166 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00007167 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007168 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00007169 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
7170 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
7171 return false;
7172 Ptr = ST->getBasePtr();
7173 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007174 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00007175 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00007176 }
Chris Lattner448f2192006-11-11 00:39:41 +00007177
Gabor Greifba36cb52008-08-28 21:40:38 +00007178 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00007179 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007180
Gabor Greifba36cb52008-08-28 21:40:38 +00007181 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7182 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00007183 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007184 if (Op == N ||
7185 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
7186 continue;
7187
Dan Gohman475871a2008-07-27 21:46:04 +00007188 SDValue BasePtr;
7189 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00007190 ISD::MemIndexedMode AM = ISD::UNINDEXED;
7191 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00007192 // Don't create a indexed load / store with zero offset.
7193 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00007194 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00007195 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007196
Chris Lattner9f1794e2006-11-11 00:56:29 +00007197 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00007198 // 1) All uses are load / store ops that use it as base ptr (and
7199 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00007200 // 2) Op must be independent of N, i.e. Op is neither a predecessor
7201 // nor a successor of N. Otherwise, if Op is folded that would
7202 // create a cycle.
7203
Evan Chengcaab1292009-05-06 18:25:01 +00007204 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
7205 continue;
7206
Chris Lattner9f1794e2006-11-11 00:56:29 +00007207 // Check for #1.
7208 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00007209 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
7210 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00007211 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00007212 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00007213 continue;
7214
Chris Lattner9f1794e2006-11-11 00:56:29 +00007215 // If all the uses are load / store addresses, then don't do the
7216 // transformation.
7217 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
7218 bool RealUse = false;
7219 for (SDNode::use_iterator III = Use->use_begin(),
7220 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00007221 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00007222 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00007223 RealUse = true;
7224 }
Chris Lattner448f2192006-11-11 00:39:41 +00007225
Chris Lattner9f1794e2006-11-11 00:56:29 +00007226 if (!RealUse) {
7227 TryNext = true;
7228 break;
Chris Lattner448f2192006-11-11 00:39:41 +00007229 }
7230 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007231 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007232
Chris Lattner9f1794e2006-11-11 00:56:29 +00007233 if (TryNext)
7234 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00007235
Chris Lattner9f1794e2006-11-11 00:56:29 +00007236 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00007237 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00007238 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00007239 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
7240 BasePtr, Offset, AM)
7241 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
7242 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007243 ++PostIndexedNodes;
7244 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00007245 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007246 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007247 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007248 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007249 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007250 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007251 if (isLoad) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007252 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7253 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007254 } else {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007255 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
Chris Lattner448f2192006-11-11 00:39:41 +00007256 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00007257
Chris Lattner9f1794e2006-11-11 00:56:29 +00007258 // Finally, since the node is now dead, remove it from the graph.
7259 DAG.DeleteNode(N);
7260
7261 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00007262 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007263 Result.getValue(isLoad ? 1 : 0));
Chris Lattner9f1794e2006-11-11 00:56:29 +00007264 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007265 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00007266 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00007267 }
7268 }
7269 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007270
Chris Lattner448f2192006-11-11 00:39:41 +00007271 return false;
7272}
7273
Dan Gohman475871a2008-07-27 21:46:04 +00007274SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00007275 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007276 SDValue Chain = LD->getChain();
7277 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007278
Evan Cheng45a7ca92007-05-01 00:38:21 +00007279 // If load is not volatile and there are no uses of the loaded value (and
7280 // the updated indexed value in case of indexed loads), change uses of the
7281 // chain value into uses of the chain input (i.e. delete the dead load).
7282 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007283 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00007284 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00007285 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00007286 // It's not safe to use the two value CombineTo variant here. e.g.
7287 // v1, chain2 = load chain1, loc
7288 // v2, chain3 = load chain2, loc
7289 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00007290 // Now we replace use of chain2 with chain1. This makes the second load
7291 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00007292 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007293 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007294 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007295 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007296 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007297 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007298 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
Bill Wendlingc0debad2009-01-30 23:27:35 +00007299
Chris Lattner125991a2008-01-24 07:57:06 +00007300 if (N->use_empty()) {
7301 removeFromWorkList(N);
7302 DAG.DeleteNode(N);
7303 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00007304
Dan Gohman475871a2008-07-27 21:46:04 +00007305 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00007306 }
Evan Cheng498f5592007-05-01 08:53:39 +00007307 } else {
7308 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00007309 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00007310 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007311 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00007312 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007313 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007314 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00007315 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00007316 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00007317 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007318 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
Dan Gohman475871a2008-07-27 21:46:04 +00007319 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007320 DAG.getUNDEF(N->getValueType(1)));
7321 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
Evan Cheng02c42852008-01-16 23:11:54 +00007322 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00007323 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007324 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00007325 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00007326 }
7327 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007328
Chris Lattner01a22022005-10-10 22:04:48 +00007329 // If this load is directly stored, replace the load value with the stored
7330 // value.
7331 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007332 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00007333 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007334 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007335 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7336 if (PrevST->getBasePtr() == Ptr &&
7337 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007338 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00007339 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007340 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007341
Evan Cheng255f20f2010-04-01 06:04:33 +00007342 // Try to infer better alignment information than the load already has.
7343 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007344 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
Owen Andersonb48783b2013-02-05 19:24:39 +00007345 if (Align > LD->getMemOperand()->getBaseAlignment()) {
7346 SDValue NewLoad =
7347 DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
Evan Chenged1c0c72011-11-28 22:37:34 +00007348 LD->getValueType(0),
7349 Chain, Ptr, LD->getPointerInfo(),
7350 LD->getMemoryVT(),
7351 LD->isVolatile(), LD->isNonTemporal(), Align);
Owen Andersonb48783b2013-02-05 19:24:39 +00007352 return CombineTo(N, NewLoad, SDValue(NewLoad.getNode(), 1), true);
7353 }
Evan Cheng255f20f2010-04-01 06:04:33 +00007354 }
7355 }
7356
Jim Laskey7ca56af2006-10-11 13:47:09 +00007357 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007358 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007359 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007360
Jim Laskey6ff23e52006-10-04 16:53:27 +00007361 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007362 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007363 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007364
Jim Laskey279f0532006-09-25 16:29:54 +00007365 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007366 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00007367 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00007368 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007369 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007370 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007371 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00007372 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
7373 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00007374 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007375 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007376 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007377 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00007378 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00007379 }
Jim Laskey279f0532006-09-25 16:29:54 +00007380
Jim Laskey6ff23e52006-10-04 16:53:27 +00007381 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00007382 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007383 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007384
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007385 // Make sure the new and old chains are cleaned up.
7386 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007387
Jim Laskey274062c2006-10-13 23:32:28 +00007388 // Replace uses with load result and token factor. Don't add users
7389 // to work list.
7390 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007391 }
7392 }
7393
Evan Cheng7fc033a2006-11-03 03:06:21 +00007394 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007395 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007396 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00007397
Dan Gohman475871a2008-07-27 21:46:04 +00007398 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00007399}
7400
Chris Lattner2392ae72010-04-15 04:48:01 +00007401/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
7402/// load is having specific bytes cleared out. If so, return the byte size
7403/// being masked out and the shift amount.
7404static std::pair<unsigned, unsigned>
7405CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
7406 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007407
Chris Lattner2392ae72010-04-15 04:48:01 +00007408 // Check for the structure we're looking for.
7409 if (V->getOpcode() != ISD::AND ||
7410 !isa<ConstantSDNode>(V->getOperand(1)) ||
7411 !ISD::isNormalLoad(V->getOperand(0).getNode()))
7412 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007413
Chris Lattnere6987582010-04-15 06:10:49 +00007414 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00007415 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00007416 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007417
Chris Lattnere6987582010-04-15 06:10:49 +00007418 // The store should be chained directly to the load or be an operand of a
7419 // tokenfactor.
7420 if (LD == Chain.getNode())
7421 ; // ok.
7422 else if (Chain->getOpcode() != ISD::TokenFactor)
7423 return Result; // Fail.
7424 else {
7425 bool isOk = false;
7426 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
7427 if (Chain->getOperand(i).getNode() == LD) {
7428 isOk = true;
7429 break;
7430 }
7431 if (!isOk) return Result;
7432 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007433
Chris Lattner2392ae72010-04-15 04:48:01 +00007434 // This only handles simple types.
7435 if (V.getValueType() != MVT::i16 &&
7436 V.getValueType() != MVT::i32 &&
7437 V.getValueType() != MVT::i64)
7438 return Result;
7439
7440 // Check the constant mask. Invert it so that the bits being masked out are
7441 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
7442 // follow the sign bit for uniformity.
7443 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
7444 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
7445 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
7446 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
7447 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
7448 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007449
Chris Lattner2392ae72010-04-15 04:48:01 +00007450 // See if we have a continuous run of bits. If so, we have 0*1+0*
7451 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
7452 return Result;
7453
7454 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
7455 if (V.getValueType() != MVT::i64 && NotMaskLZ)
7456 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007457
Chris Lattner2392ae72010-04-15 04:48:01 +00007458 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
7459 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007460 case 1:
7461 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00007462 case 4: break;
7463 default: return Result; // All one mask, or 5-byte mask.
7464 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007465
Chris Lattner2392ae72010-04-15 04:48:01 +00007466 // Verify that the first bit starts at a multiple of mask so that the access
7467 // is aligned the same as the access width.
7468 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007469
Chris Lattner2392ae72010-04-15 04:48:01 +00007470 Result.first = MaskedBytes;
7471 Result.second = NotMaskTZ/8;
7472 return Result;
7473}
7474
7475
7476/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
7477/// provides a value as specified by MaskInfo. If so, replace the specified
7478/// store with a narrower store of truncated IVal.
7479static SDNode *
7480ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
7481 SDValue IVal, StoreSDNode *St,
7482 DAGCombiner *DC) {
7483 unsigned NumBytes = MaskInfo.first;
7484 unsigned ByteShift = MaskInfo.second;
7485 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007486
Chris Lattner2392ae72010-04-15 04:48:01 +00007487 // Check to see if IVal is all zeros in the part being masked in by the 'or'
7488 // that uses this. If not, this is not a replacement.
7489 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
7490 ByteShift*8, (ByteShift+NumBytes)*8);
7491 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007492
Chris Lattner2392ae72010-04-15 04:48:01 +00007493 // Check that it is legal on the target to do this. It is legal if the new
7494 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
7495 // legalization.
7496 MVT VT = MVT::getIntegerVT(NumBytes*8);
7497 if (!DC->isTypeLegal(VT))
7498 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007499
Chris Lattner2392ae72010-04-15 04:48:01 +00007500 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
7501 // shifted by ByteShift and truncated down to NumBytes.
7502 if (ByteShift)
7503 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00007504 DAG.getConstant(ByteShift*8,
7505 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00007506
7507 // Figure out the offset for the store and the alignment of the access.
7508 unsigned StOffset;
7509 unsigned NewAlign = St->getAlignment();
7510
7511 if (DAG.getTargetLoweringInfo().isLittleEndian())
7512 StOffset = ByteShift;
7513 else
7514 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007515
Chris Lattner2392ae72010-04-15 04:48:01 +00007516 SDValue Ptr = St->getBasePtr();
7517 if (StOffset) {
7518 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
7519 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
7520 NewAlign = MinAlign(NewAlign, StOffset);
7521 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007522
Chris Lattner2392ae72010-04-15 04:48:01 +00007523 // Truncate down to the new size.
7524 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007525
Chris Lattner2392ae72010-04-15 04:48:01 +00007526 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007527 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007528 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00007529 false, false, NewAlign).getNode();
7530}
7531
Evan Cheng8b944d32009-05-28 00:35:15 +00007532
7533/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
7534/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
7535/// of the loaded bits, try narrowing the load and store if it would end up
7536/// being a win for performance or code size.
7537SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7538 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00007539 if (ST->isVolatile())
7540 return SDValue();
7541
Evan Cheng8b944d32009-05-28 00:35:15 +00007542 SDValue Chain = ST->getChain();
7543 SDValue Value = ST->getValue();
7544 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00007545 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00007546
7547 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00007548 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007549
7550 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007551
Chris Lattner2392ae72010-04-15 04:48:01 +00007552 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7553 // is a byte mask indicating a consecutive number of bytes, check to see if
7554 // Y is known to provide just those bytes. If so, we try to replace the
7555 // load + replace + store sequence with a single (narrower) store, which makes
7556 // the load dead.
7557 if (Opc == ISD::OR) {
7558 std::pair<unsigned, unsigned> MaskedLoad;
7559 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7560 if (MaskedLoad.first)
7561 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7562 Value.getOperand(1), ST,this))
7563 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007564
Chris Lattner2392ae72010-04-15 04:48:01 +00007565 // Or is commutative, so try swapping X and Y.
7566 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7567 if (MaskedLoad.first)
7568 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7569 Value.getOperand(0), ST,this))
7570 return SDValue(NewST, 0);
7571 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007572
Evan Cheng8b944d32009-05-28 00:35:15 +00007573 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7574 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00007575 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007576
7577 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00007578 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7579 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00007580 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00007581 if (LD->getBasePtr() != Ptr ||
7582 LD->getPointerInfo().getAddrSpace() !=
7583 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00007584 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007585
7586 // Find the type to narrow it the load / op / store to.
7587 SDValue N1 = Value.getOperand(1);
7588 unsigned BitWidth = N1.getValueSizeInBits();
7589 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7590 if (Opc == ISD::AND)
7591 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00007592 if (Imm == 0 || Imm.isAllOnesValue())
7593 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007594 unsigned ShAmt = Imm.countTrailingZeros();
7595 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7596 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00007597 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007598 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00007599 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00007600 TLI.isNarrowingProfitable(VT, NewVT))) {
7601 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00007602 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00007603 }
Evan Chengcdcecc02009-05-28 18:41:02 +00007604 if (NewBW >= BitWidth)
7605 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007606
7607 // If the lsb changed does not start at the type bitwidth boundary,
7608 // start at the previous one.
7609 if (ShAmt % NewBW)
7610 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
Manman Ren981b9632012-12-12 01:13:50 +00007611 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt,
7612 std::min(BitWidth, ShAmt + NewBW));
Evan Cheng8b944d32009-05-28 00:35:15 +00007613 if ((Imm & Mask) == Imm) {
7614 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7615 if (Opc == ISD::AND)
7616 NewImm ^= APInt::getAllOnesValue(NewBW);
7617 uint64_t PtrOff = ShAmt / 8;
7618 // For big endian targets, we need to adjust the offset to the pointer to
7619 // load the correct bytes.
7620 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00007621 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00007622
7623 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007624 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007625 if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00007626 return SDValue();
7627
Evan Cheng8b944d32009-05-28 00:35:15 +00007628 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
7629 Ptr.getValueType(), Ptr,
7630 DAG.getConstant(PtrOff, Ptr.getValueType()));
7631 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
7632 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007633 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007634 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007635 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007636 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
7637 DAG.getConstant(NewImm, NewVT));
7638 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
7639 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00007640 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00007641 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00007642
7643 AddToWorkList(NewPtr.getNode());
7644 AddToWorkList(NewLD.getNode());
7645 AddToWorkList(NewVal.getNode());
7646 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007647 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
Evan Cheng8b944d32009-05-28 00:35:15 +00007648 ++OpsNarrowed;
7649 return NewST;
7650 }
7651 }
7652
Evan Chengcdcecc02009-05-28 18:41:02 +00007653 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00007654}
7655
Evan Cheng31959b12011-02-02 01:06:55 +00007656/// TransformFPLoadStorePair - For a given floating point load / store pair,
7657/// if the load value isn't used by any other operations, then consider
7658/// transforming the pair to integer load / store operations if the target
7659/// deems the transformation profitable.
7660SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7661 StoreSDNode *ST = cast<StoreSDNode>(N);
7662 SDValue Chain = ST->getChain();
7663 SDValue Value = ST->getValue();
7664 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7665 Value.hasOneUse() &&
7666 Chain == SDValue(Value.getNode(), 1)) {
7667 LoadSDNode *LD = cast<LoadSDNode>(Value);
7668 EVT VT = LD->getMemoryVT();
7669 if (!VT.isFloatingPoint() ||
7670 VT != ST->getMemoryVT() ||
7671 LD->isNonTemporal() ||
7672 ST->isNonTemporal() ||
7673 LD->getPointerInfo().getAddrSpace() != 0 ||
7674 ST->getPointerInfo().getAddrSpace() != 0)
7675 return SDValue();
7676
7677 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7678 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7679 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7680 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7681 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7682 return SDValue();
7683
7684 unsigned LDAlign = LD->getAlignment();
7685 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007686 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00007687 unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy);
Evan Cheng31959b12011-02-02 01:06:55 +00007688 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7689 return SDValue();
7690
7691 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
7692 LD->getChain(), LD->getBasePtr(),
7693 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007694 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007695
7696 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
7697 NewLD, ST->getBasePtr(),
7698 ST->getPointerInfo(),
7699 false, false, STAlign);
7700
7701 AddToWorkList(NewLD.getNode());
7702 AddToWorkList(NewST.getNode());
7703 WorkListRemover DeadNodes(*this);
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00007704 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
Evan Cheng31959b12011-02-02 01:06:55 +00007705 ++LdStFP2Int;
7706 return NewST;
7707 }
7708
7709 return SDValue();
7710}
7711
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007712/// Helper struct to parse and store a memory address as base + index + offset.
7713/// We ignore sign extensions when it is safe to do so.
7714/// The following two expressions are not equivalent. To differentiate we need
7715/// to store whether there was a sign extension involved in the index
7716/// computation.
7717/// (load (i64 add (i64 copyfromreg %c)
7718/// (i64 signextend (add (i8 load %index)
7719/// (i8 1))))
7720/// vs
7721///
7722/// (load (i64 add (i64 copyfromreg %c)
7723/// (i64 signextend (i32 add (i32 signextend (i8 load %index))
7724/// (i32 1)))))
7725struct BaseIndexOffset {
7726 SDValue Base;
7727 SDValue Index;
7728 int64_t Offset;
7729 bool IsIndexSignExt;
7730
7731 BaseIndexOffset() : Offset(0), IsIndexSignExt(false) {}
7732
7733 BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset,
7734 bool IsIndexSignExt) :
7735 Base(Base), Index(Index), Offset(Offset), IsIndexSignExt(IsIndexSignExt) {}
7736
7737 bool equalBaseIndex(const BaseIndexOffset &Other) {
7738 return Other.Base == Base && Other.Index == Index &&
7739 Other.IsIndexSignExt == IsIndexSignExt;
Nadav Rotemc653de62012-10-03 16:11:15 +00007740 }
7741
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007742 /// Parses tree in Ptr for base, index, offset addresses.
7743 static BaseIndexOffset match(SDValue Ptr) {
7744 bool IsIndexSignExt = false;
7745
7746 // Just Base or possibly anything else.
7747 if (Ptr->getOpcode() != ISD::ADD)
7748 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7749
7750 // Base + offset.
7751 if (isa<ConstantSDNode>(Ptr->getOperand(1))) {
7752 int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue();
7753 return BaseIndexOffset(Ptr->getOperand(0), SDValue(), Offset,
7754 IsIndexSignExt);
7755 }
7756
7757 // Look at Base + Index + Offset cases.
7758 SDValue Base = Ptr->getOperand(0);
7759 SDValue IndexOffset = Ptr->getOperand(1);
7760
7761 // Skip signextends.
7762 if (IndexOffset->getOpcode() == ISD::SIGN_EXTEND) {
7763 IndexOffset = IndexOffset->getOperand(0);
7764 IsIndexSignExt = true;
7765 }
7766
7767 // Either the case of Base + Index (no offset) or something else.
7768 if (IndexOffset->getOpcode() != ISD::ADD)
7769 return BaseIndexOffset(Base, IndexOffset, 0, IsIndexSignExt);
7770
7771 // Now we have the case of Base + Index + offset.
7772 SDValue Index = IndexOffset->getOperand(0);
7773 SDValue Offset = IndexOffset->getOperand(1);
7774
7775 if (!isa<ConstantSDNode>(Offset))
7776 return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7777
7778 // Ignore signextends.
7779 if (Index->getOpcode() == ISD::SIGN_EXTEND) {
7780 Index = Index->getOperand(0);
7781 IsIndexSignExt = true;
7782 } else IsIndexSignExt = false;
7783
7784 int64_t Off = cast<ConstantSDNode>(Offset)->getSExtValue();
7785 return BaseIndexOffset(Base, Index, Off, IsIndexSignExt);
7786 }
7787};
Nadav Rotemc653de62012-10-03 16:11:15 +00007788
7789/// Holds a pointer to an LSBaseSDNode as well as information on where it
7790/// is located in a sequence of memory operations connected by a chain.
7791struct MemOpLink {
7792 MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq):
7793 MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
7794 // Ptr to the mem node.
7795 LSBaseSDNode *MemNode;
7796 // Offset from the base ptr.
7797 int64_t OffsetFromBase;
7798 // What is the sequence number of this mem node.
7799 // Lowest mem operand in the DAG starts at zero.
7800 unsigned SequenceNum;
7801};
7802
7803/// Sorts store nodes in a link according to their offset from a shared
7804// base ptr.
7805struct ConsecutiveMemoryChainSorter {
7806 bool operator()(MemOpLink LHS, MemOpLink RHS) {
7807 return LHS.OffsetFromBase < RHS.OffsetFromBase;
7808 }
7809};
7810
7811bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) {
7812 EVT MemVT = St->getMemoryVT();
7813 int64_t ElementSizeBytes = MemVT.getSizeInBits()/8;
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00007814 bool NoVectors = DAG.getMachineFunction().getFunction()->getAttributes().
7815 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nadav Rotemc653de62012-10-03 16:11:15 +00007816
7817 // Don't merge vectors into wider inputs.
7818 if (MemVT.isVector() || !MemVT.isSimple())
7819 return false;
7820
7821 // Perform an early exit check. Do not bother looking at stored values that
7822 // are not constants or loads.
7823 SDValue StoredVal = St->getValue();
7824 bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
7825 if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
7826 !IsLoadSrc)
7827 return false;
7828
7829 // Only look at ends of store sequences.
7830 SDValue Chain = SDValue(St, 1);
7831 if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE)
7832 return false;
7833
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007834 // This holds the base pointer, index, and the offset in bytes from the base
7835 // pointer.
7836 BaseIndexOffset BasePtr = BaseIndexOffset::match(St->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00007837
7838 // We must have a base and an offset.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007839 if (!BasePtr.Base.getNode())
Nadav Rotemc653de62012-10-03 16:11:15 +00007840 return false;
7841
7842 // Do not handle stores to undef base pointers.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007843 if (BasePtr.Base.getOpcode() == ISD::UNDEF)
Nadav Rotemc653de62012-10-03 16:11:15 +00007844 return false;
7845
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007846 // Save the LoadSDNodes that we find in the chain.
7847 // We need to make sure that these nodes do not interfere with
7848 // any of the store nodes.
7849 SmallVector<LSBaseSDNode*, 8> AliasLoadNodes;
7850
7851 // Save the StoreSDNodes that we find in the chain.
Nadav Rotemc653de62012-10-03 16:11:15 +00007852 SmallVector<MemOpLink, 8> StoreNodes;
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007853
Nadav Rotemc653de62012-10-03 16:11:15 +00007854 // Walk up the chain and look for nodes with offsets from the same
7855 // base pointer. Stop when reaching an instruction with a different kind
7856 // or instruction which has a different base pointer.
7857 unsigned Seq = 0;
7858 StoreSDNode *Index = St;
7859 while (Index) {
7860 // If the chain has more than one use, then we can't reorder the mem ops.
7861 if (Index != St && !SDValue(Index, 1)->hasOneUse())
7862 break;
7863
7864 // Find the base pointer and offset for this memory node.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007865 BaseIndexOffset Ptr = BaseIndexOffset::match(Index->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00007866
7867 // Check that the base pointer is the same as the original one.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007868 if (!Ptr.equalBaseIndex(BasePtr))
Nadav Rotemc653de62012-10-03 16:11:15 +00007869 break;
7870
7871 // Check that the alignment is the same.
7872 if (Index->getAlignment() != St->getAlignment())
7873 break;
7874
7875 // The memory operands must not be volatile.
7876 if (Index->isVolatile() || Index->isIndexed())
7877 break;
7878
7879 // No truncation.
7880 if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index))
7881 if (St->isTruncatingStore())
7882 break;
7883
7884 // The stored memory type must be the same.
7885 if (Index->getMemoryVT() != MemVT)
7886 break;
7887
7888 // We do not allow unaligned stores because we want to prevent overriding
7889 // stores.
7890 if (Index->getAlignment()*8 != MemVT.getSizeInBits())
7891 break;
7892
7893 // We found a potential memory operand to merge.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00007894 StoreNodes.push_back(MemOpLink(Index, Ptr.Offset, Seq++));
Nadav Rotemc653de62012-10-03 16:11:15 +00007895
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007896 // Find the next memory operand in the chain. If the next operand in the
7897 // chain is a store then move up and continue the scan with the next
7898 // memory operand. If the next operand is a load save it and use alias
7899 // information to check if it interferes with anything.
7900 SDNode *NextInChain = Index->getChain().getNode();
7901 while (1) {
Nadav Rotemdde785c2012-12-06 17:34:13 +00007902 if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) {
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007903 // We found a store node. Use it for the next iteration.
Nadav Rotemdde785c2012-12-06 17:34:13 +00007904 Index = STn;
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007905 break;
7906 } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) {
7907 // Save the load node for later. Continue the scan.
7908 AliasLoadNodes.push_back(Ldn);
7909 NextInChain = Ldn->getChain().getNode();
7910 continue;
7911 } else {
7912 Index = NULL;
7913 break;
7914 }
7915 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007916 }
7917
7918 // Check if there is anything to merge.
7919 if (StoreNodes.size() < 2)
7920 return false;
7921
7922 // Sort the memory operands according to their distance from the base pointer.
7923 std::sort(StoreNodes.begin(), StoreNodes.end(),
7924 ConsecutiveMemoryChainSorter());
7925
7926 // Scan the memory operations on the chain and find the first non-consecutive
7927 // store memory address.
7928 unsigned LastConsecutiveStore = 0;
7929 int64_t StartAddress = StoreNodes[0].OffsetFromBase;
Nadav Rotemdde785c2012-12-06 17:34:13 +00007930 for (unsigned i = 0, e = StoreNodes.size(); i < e; ++i) {
7931
7932 // Check that the addresses are consecutive starting from the second
7933 // element in the list of stores.
7934 if (i > 0) {
7935 int64_t CurrAddress = StoreNodes[i].OffsetFromBase;
7936 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
7937 break;
7938 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007939
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007940 bool Alias = false;
7941 // Check if this store interferes with any of the loads that we found.
7942 for (unsigned ld = 0, lde = AliasLoadNodes.size(); ld < lde; ++ld)
7943 if (isAlias(AliasLoadNodes[ld], StoreNodes[i].MemNode)) {
7944 Alias = true;
7945 break;
7946 }
Nadav Rotem90e11dc2012-11-29 00:00:08 +00007947 // We found a load that alias with this store. Stop the sequence.
7948 if (Alias)
7949 break;
7950
Nadav Rotemc653de62012-10-03 16:11:15 +00007951 // Mark this node as useful.
7952 LastConsecutiveStore = i;
7953 }
7954
7955 // The node with the lowest store address.
7956 LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode;
7957
7958 // Store the constants into memory as one consecutive store.
7959 if (!IsLoadSrc) {
Nadav Rotemc653de62012-10-03 16:11:15 +00007960 unsigned LastLegalType = 0;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007961 unsigned LastLegalVectorType = 0;
7962 bool NonZero = false;
Nadav Rotemc653de62012-10-03 16:11:15 +00007963 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
7964 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
7965 SDValue StoredVal = St->getValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007966
7967 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00007968 NonZero |= !C->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007969 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
Benjamin Kramerebd7eab2012-10-05 18:19:44 +00007970 NonZero |= !C->getConstantFPValue()->isNullValue();
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007971 } else {
7972 // Non constant.
Nadav Rotemc653de62012-10-03 16:11:15 +00007973 break;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007974 }
Nadav Rotemc653de62012-10-03 16:11:15 +00007975
Nadav Rotemc653de62012-10-03 16:11:15 +00007976 // Find a legal type for the constant store.
7977 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
7978 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
7979 if (TLI.isTypeLegal(StoreTy))
7980 LastLegalType = i+1;
Arnold Schwaighofere7370182013-04-02 15:58:51 +00007981 // Or check whether a truncstore is legal.
7982 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
7983 TargetLowering::TypePromoteInteger) {
7984 EVT LegalizedStoredValueTy =
7985 TLI.getTypeToTransformTo(*DAG.getContext(), StoredVal.getValueType());
7986 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy))
7987 LastLegalType = i+1;
7988 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007989
7990 // Find a legal type for the vector store.
7991 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
7992 if (TLI.isTypeLegal(Ty))
7993 LastLegalVectorType = i + 1;
Nadav Rotemc653de62012-10-03 16:11:15 +00007994 }
7995
Bob Wilson99d8e762012-12-20 01:36:20 +00007996 // We only use vectors if the constant is known to be zero and the
7997 // function is not marked with the noimplicitfloat attribute.
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00007998 if (NonZero || NoVectors)
Nadav Rotemea2c50c2012-10-04 22:35:15 +00007999 LastLegalVectorType = 0;
8000
Nadav Rotemc653de62012-10-03 16:11:15 +00008001 // Check if we found a legal integer type to store.
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008002 if (LastLegalType == 0 && LastLegalVectorType == 0)
Nadav Rotemc653de62012-10-03 16:11:15 +00008003 return false;
8004
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008005 bool UseVector = (LastLegalVectorType > LastLegalType) && !NoVectors;
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008006 unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType;
8007
8008 // Make sure we have something to merge.
8009 if (NumElem < 2)
8010 return false;
Nadav Rotemc653de62012-10-03 16:11:15 +00008011
8012 unsigned EarliestNodeUsed = 0;
8013 for (unsigned i=0; i < NumElem; ++i) {
8014 // Find a chain for the new wide-store operand. Notice that some
8015 // of the store nodes that we found may not be selected for inclusion
8016 // in the wide store. The chain we use needs to be the chain of the
8017 // earliest store node which is *used* and replaced by the wide store.
8018 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
8019 EarliestNodeUsed = i;
8020 }
8021
8022 // The earliest Node in the DAG.
8023 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
Nadav Rotemc653de62012-10-03 16:11:15 +00008024 DebugLoc DL = StoreNodes[0].MemNode->getDebugLoc();
Nadav Rotemc653de62012-10-03 16:11:15 +00008025
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008026 SDValue StoredVal;
8027 if (UseVector) {
8028 // Find a legal type for the vector store.
8029 EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8030 assert(TLI.isTypeLegal(Ty) && "Illegal vector store");
8031 StoredVal = DAG.getConstant(0, Ty);
8032 } else {
8033 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8034 APInt StoreInt(StoreBW, 0);
8035
8036 // Construct a single integer constant which is made of the smaller
8037 // constant inputs.
8038 bool IsLE = TLI.isLittleEndian();
8039 for (unsigned i = 0; i < NumElem ; ++i) {
8040 unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
8041 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[Idx].MemNode);
8042 SDValue Val = St->getValue();
8043 StoreInt<<=ElementSizeBytes*8;
8044 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) {
8045 StoreInt|=C->getAPIntValue().zext(StoreBW);
8046 } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) {
8047 StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW);
8048 } else {
8049 assert(false && "Invalid constant element type");
8050 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008051 }
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008052
8053 // Create the new Load and Store operations.
8054 EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8055 StoredVal = DAG.getConstant(StoreInt, StoreTy);
Nadav Rotemc653de62012-10-03 16:11:15 +00008056 }
8057
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008058 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal,
Nadav Rotemc653de62012-10-03 16:11:15 +00008059 FirstInChain->getBasePtr(),
8060 FirstInChain->getPointerInfo(),
8061 false, false,
8062 FirstInChain->getAlignment());
8063
8064 // Replace the first store with the new store
8065 CombineTo(EarliestOp, NewStore);
8066 // Erase all other stores.
8067 for (unsigned i = 0; i < NumElem ; ++i) {
8068 if (StoreNodes[i].MemNode == EarliestOp)
8069 continue;
8070 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
Rafael Espindola8e2b8ae2012-11-14 05:08:56 +00008071 // ReplaceAllUsesWith will replace all uses that existed when it was
8072 // called, but graph optimizations may cause new ones to appear. For
8073 // example, the case in pr14333 looks like
8074 //
8075 // St's chain -> St -> another store -> X
8076 //
8077 // And the only difference from St to the other store is the chain.
8078 // When we change it's chain to be St's chain they become identical,
8079 // get CSEed and the net result is that X is now a use of St.
8080 // Since we know that St is redundant, just iterate.
8081 while (!St->use_empty())
8082 DAG.ReplaceAllUsesWith(SDValue(St, 0), St->getChain());
Nadav Rotemc653de62012-10-03 16:11:15 +00008083 removeFromWorkList(St);
8084 DAG.DeleteNode(St);
8085 }
8086
8087 return true;
8088 }
8089
8090 // Below we handle the case of multiple consecutive stores that
8091 // come from multiple consecutive loads. We merge them into a single
8092 // wide load and a single wide store.
8093
8094 // Look for load nodes which are used by the stored values.
8095 SmallVector<MemOpLink, 8> LoadNodes;
8096
8097 // Find acceptable loads. Loads need to have the same chain (token factor),
8098 // must not be zext, volatile, indexed, and they must be consecutive.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008099 BaseIndexOffset LdBasePtr;
Nadav Rotemc653de62012-10-03 16:11:15 +00008100 for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
8101 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8102 LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue());
8103 if (!Ld) break;
8104
8105 // Loads must only have one use.
8106 if (!Ld->hasNUsesOfValue(1, 0))
8107 break;
8108
8109 // Check that the alignment is the same as the stores.
8110 if (Ld->getAlignment() != St->getAlignment())
8111 break;
8112
8113 // The memory operands must not be volatile.
8114 if (Ld->isVolatile() || Ld->isIndexed())
8115 break;
8116
8117 // We do not accept ext loads.
8118 if (Ld->getExtensionType() != ISD::NON_EXTLOAD)
8119 break;
8120
8121 // The stored memory type must be the same.
8122 if (Ld->getMemoryVT() != MemVT)
8123 break;
8124
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008125 BaseIndexOffset LdPtr = BaseIndexOffset::match(Ld->getBasePtr());
Nadav Rotemc653de62012-10-03 16:11:15 +00008126 // If this is not the first ptr that we check.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008127 if (LdBasePtr.Base.getNode()) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008128 // The base ptr must be the same.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008129 if (!LdPtr.equalBaseIndex(LdBasePtr))
Nadav Rotemc653de62012-10-03 16:11:15 +00008130 break;
8131 } else {
8132 // Check that all other base pointers are the same as this one.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008133 LdBasePtr = LdPtr;
Nadav Rotemc653de62012-10-03 16:11:15 +00008134 }
8135
8136 // We found a potential memory operand to merge.
Arnold Schwaighoferf28a29b2013-04-01 18:12:58 +00008137 LoadNodes.push_back(MemOpLink(Ld, LdPtr.Offset, 0));
Nadav Rotemc653de62012-10-03 16:11:15 +00008138 }
8139
8140 if (LoadNodes.size() < 2)
8141 return false;
8142
8143 // Scan the memory operations on the chain and find the first non-consecutive
8144 // load memory address. These variables hold the index in the store node
8145 // array.
8146 unsigned LastConsecutiveLoad = 0;
8147 // This variable refers to the size and not index in the array.
8148 unsigned LastLegalVectorType = 0;
8149 unsigned LastLegalIntegerType = 0;
8150 StartAddress = LoadNodes[0].OffsetFromBase;
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008151 SDValue FirstChain = LoadNodes[0].MemNode->getChain();
8152 for (unsigned i = 1; i < LoadNodes.size(); ++i) {
8153 // All loads much share the same chain.
8154 if (LoadNodes[i].MemNode->getChain() != FirstChain)
8155 break;
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008156
Nadav Rotemc653de62012-10-03 16:11:15 +00008157 int64_t CurrAddress = LoadNodes[i].OffsetFromBase;
8158 if (CurrAddress - StartAddress != (ElementSizeBytes * i))
8159 break;
8160 LastConsecutiveLoad = i;
8161
8162 // Find a legal type for the vector store.
8163 EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
8164 if (TLI.isTypeLegal(StoreTy))
8165 LastLegalVectorType = i + 1;
8166
8167 // Find a legal type for the integer store.
8168 unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
8169 StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8170 if (TLI.isTypeLegal(StoreTy))
8171 LastLegalIntegerType = i + 1;
Arnold Schwaighofere7370182013-04-02 15:58:51 +00008172 // Or check whether a truncstore and extload is legal.
8173 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
8174 TargetLowering::TypePromoteInteger) {
8175 EVT LegalizedStoredValueTy =
8176 TLI.getTypeToTransformTo(*DAG.getContext(), StoreTy);
8177 if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy) &&
8178 TLI.isLoadExtLegal(ISD::ZEXTLOAD, StoreTy) &&
8179 TLI.isLoadExtLegal(ISD::SEXTLOAD, StoreTy) &&
8180 TLI.isLoadExtLegal(ISD::EXTLOAD, StoreTy))
8181 LastLegalIntegerType = i+1;
8182 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008183 }
8184
8185 // Only use vector types if the vector type is larger than the integer type.
8186 // If they are the same, use integers.
Nadav Rotem6cc4b8d2013-02-14 18:28:52 +00008187 bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType && !NoVectors;
Nadav Rotemc653de62012-10-03 16:11:15 +00008188 unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType);
8189
8190 // We add +1 here because the LastXXX variables refer to location while
8191 // the NumElem refers to array/index size.
8192 unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1;
8193 NumElem = std::min(LastLegalType, NumElem);
8194
8195 if (NumElem < 2)
8196 return false;
8197
8198 // The earliest Node in the DAG.
8199 unsigned EarliestNodeUsed = 0;
8200 LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
8201 for (unsigned i=1; i<NumElem; ++i) {
8202 // Find a chain for the new wide-store operand. Notice that some
8203 // of the store nodes that we found may not be selected for inclusion
8204 // in the wide store. The chain we use needs to be the chain of the
8205 // earliest store node which is *used* and replaced by the wide store.
8206 if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
8207 EarliestNodeUsed = i;
8208 }
8209
8210 // Find if it is better to use vectors or integers to load and store
8211 // to memory.
8212 EVT JointMemOpVT;
8213 if (UseVectorTy) {
8214 JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8215 } else {
8216 unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8217 JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8218 }
8219
8220 DebugLoc LoadDL = LoadNodes[0].MemNode->getDebugLoc();
8221 DebugLoc StoreDL = StoreNodes[0].MemNode->getDebugLoc();
8222
8223 LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode);
8224 SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL,
8225 FirstLoad->getChain(),
8226 FirstLoad->getBasePtr(),
8227 FirstLoad->getPointerInfo(),
8228 false, false, false,
8229 FirstLoad->getAlignment());
8230
8231 SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad,
8232 FirstInChain->getBasePtr(),
8233 FirstInChain->getPointerInfo(), false, false,
8234 FirstInChain->getAlignment());
8235
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008236 // Replace one of the loads with the new load.
8237 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode);
8238 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1),
8239 SDValue(NewLoad.getNode(), 1));
8240
8241 // Remove the rest of the load chains.
8242 for (unsigned i = 1; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008243 // Replace all chain users of the old load nodes with the chain of the new
8244 // load node.
8245 LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode);
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008246 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain());
8247 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008248
Nadav Rotem2e7d3812012-10-03 19:30:31 +00008249 // Replace the first store with the new store.
8250 CombineTo(EarliestOp, NewStore);
8251 // Erase all other stores.
8252 for (unsigned i = 0; i < NumElem ; ++i) {
Nadav Rotemc653de62012-10-03 16:11:15 +00008253 // Remove all Store nodes.
8254 if (StoreNodes[i].MemNode == EarliestOp)
8255 continue;
8256 StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8257 DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
8258 removeFromWorkList(St);
8259 DAG.DeleteNode(St);
8260 }
8261
8262 return true;
8263}
8264
Dan Gohman475871a2008-07-27 21:46:04 +00008265SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00008266 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00008267 SDValue Chain = ST->getChain();
8268 SDValue Value = ST->getValue();
8269 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00008270
Evan Cheng59d5b682007-05-07 21:27:48 +00008271 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00008272 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008273 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008274 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00008275 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008276 EVT SVT = Value.getOperand(0).getValueType();
Micah Villmow3574eca2012-10-08 16:38:25 +00008277 unsigned Align = TLI.getDataLayout()->
Owen Anderson23b9b192009-08-12 00:36:31 +00008278 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008279 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008280 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008281 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00008282 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00008283 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008284 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00008285 }
Owen Andersona34d9362011-04-14 17:30:49 +00008286
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008287 // Turn 'store undef, Ptr' -> nothing.
8288 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
8289 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008290
Nate Begeman2cbba892006-12-11 02:23:46 +00008291 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00008292 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008293 // NOTE: If the original store is volatile, this transform must not increase
8294 // the number of stores. For example, on x86-32 an f64 can be stored in one
8295 // processor operation but an i64 (which is not legal) requires two. So the
8296 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00008297 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00008298 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008299 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008300 default: llvm_unreachable("Unknown FP type");
Pete Cooper438c0402012-06-21 18:00:39 +00008301 case MVT::f16: // We don't do this for these yet.
8302 case MVT::f80:
Owen Anderson825b72b2009-08-11 20:47:22 +00008303 case MVT::f128:
8304 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00008305 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008306 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00008307 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00008308 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00008309 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00008310 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00008311 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008312 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008313 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00008314 }
8315 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008316 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00008317 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008318 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00008319 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00008320 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00008321 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00008322 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008323 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00008324 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008325 }
Owen Andersona34d9362011-04-14 17:30:49 +00008326
Chris Lattnerb3452ea2011-04-09 02:32:02 +00008327 if (!ST->isVolatile() &&
8328 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00008329 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00008330 // argument passing. Since this is so common, custom legalize the
8331 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00008332 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00008333 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
8334 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00008335 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00008336
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00008337 unsigned Alignment = ST->getAlignment();
8338 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00008339 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00008340
Bill Wendlingc144a572009-01-30 23:36:47 +00008341 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008342 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008343 isVolatile, isNonTemporal,
8344 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00008345 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00008346 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00008347 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00008348 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008349 Ptr, ST->getPointerInfo().getWithOffset(4),
8350 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00008351 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00008352 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00008353 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00008354 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008355
Chris Lattner62be1a72006-12-12 04:16:14 +00008356 break;
Evan Cheng25ece662006-12-11 17:25:19 +00008357 }
Nate Begeman2cbba892006-12-11 02:23:46 +00008358 }
Nate Begeman2cbba892006-12-11 02:23:46 +00008359 }
8360
Evan Cheng255f20f2010-04-01 06:04:33 +00008361 // Try to infer better alignment information than the store already has.
8362 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00008363 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
8364 if (Align > ST->getAlignment())
8365 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
8366 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
8367 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00008368 }
8369 }
8370
Evan Cheng31959b12011-02-02 01:06:55 +00008371 // Try transforming a pair floating point load / store ops to integer
8372 // load / store ops.
8373 SDValue NewST = TransformFPLoadStorePair(N);
8374 if (NewST.getNode())
8375 return NewST;
8376
Scott Michelfdc40a02009-02-17 22:15:04 +00008377 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00008378 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00008379 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00008380
Jim Laskey6ff23e52006-10-04 16:53:27 +00008381 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00008382 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00008383 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008384
8385 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008386 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00008387 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008388 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008389 ST->getMemoryVT(), ST->isVolatile(),
8390 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008391 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00008392 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00008393 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00008394 ST->isVolatile(), ST->isNonTemporal(),
8395 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00008396 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008397
Jim Laskey279f0532006-09-25 16:29:54 +00008398 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00008399 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008400 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00008401
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008402 // Make sure the new and old chains are cleaned up.
8403 AddToWorkList(Token.getNode());
8404
Jim Laskey274062c2006-10-13 23:32:28 +00008405 // Don't add users to work list.
8406 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00008407 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00008408 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008409
Evan Cheng33dbedc2006-11-05 09:31:14 +00008410 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00008411 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00008412 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00008413
Chris Lattner3c872852007-12-29 06:26:16 +00008414 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00008415 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00008416 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00008417 // See if we can simplify the input to this truncstore with knowledge that
8418 // only the low bits are being used. For example:
8419 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00008420 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00008421 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00008422 APInt::getLowBitsSet(
8423 Value.getValueType().getScalarType().getSizeInBits(),
8424 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00008425 AddToWorkList(Value.getNode());
8426 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00008427 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008428 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008429 ST->isVolatile(), ST->isNonTemporal(),
8430 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00008431
Chris Lattnere33544c2007-10-13 06:58:48 +00008432 // Otherwise, see if we can simplify the operation with
8433 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00008434 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00008435 APInt::getLowBitsSet(
8436 Value.getValueType().getScalarType().getSizeInBits(),
8437 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00008438 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00008439 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008440
Chris Lattner3c872852007-12-29 06:26:16 +00008441 // If this is a load followed by a store to the same location, then the store
8442 // is dead/noop.
8443 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008444 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008445 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00008446 // There can't be any side effects between the load and store, such as
8447 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00008448 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00008449 // The store is dead, remove it.
8450 return Chain;
8451 }
8452 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008453
Chris Lattnerddf89562008-01-17 19:59:44 +00008454 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
8455 // truncating store. We can do this even if this is already a truncstore.
8456 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00008457 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00008458 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00008459 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00008460 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00008461 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00008462 ST->isVolatile(), ST->isNonTemporal(),
8463 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00008464 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008465
Nadav Rotemc653de62012-10-03 16:11:15 +00008466 // Only perform this optimization before the types are legal, because we
Nadav Rotemea2c50c2012-10-04 22:35:15 +00008467 // don't want to perform this optimization on every DAGCombine invocation.
Nadav Rotema569a802012-12-02 17:14:09 +00008468 if (!LegalTypes) {
8469 bool EverChanged = false;
8470
8471 do {
8472 // There can be multiple store sequences on the same chain.
8473 // Keep trying to merge store sequences until we are unable to do so
8474 // or until we merge the last store on the chain.
8475 bool Changed = MergeConsecutiveStores(ST);
8476 EverChanged |= Changed;
8477 if (!Changed) break;
8478 } while (ST->getOpcode() != ISD::DELETED_NODE);
8479
8480 if (EverChanged)
8481 return SDValue(N, 0);
8482 }
Nadav Rotemc653de62012-10-03 16:11:15 +00008483
Evan Cheng8b944d32009-05-28 00:35:15 +00008484 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00008485}
8486
Dan Gohman475871a2008-07-27 21:46:04 +00008487SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
8488 SDValue InVec = N->getOperand(0);
8489 SDValue InVal = N->getOperand(1);
8490 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00008491 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008492
Bob Wilson492fd452010-05-19 23:42:58 +00008493 // If the inserted element is an UNDEF, just use the input vector.
8494 if (InVal.getOpcode() == ISD::UNDEF)
8495 return InVec;
8496
Nadav Rotem609d54e2011-02-12 14:40:33 +00008497 EVT VT = InVec.getValueType();
8498
Owen Anderson95771af2011-02-25 21:41:48 +00008499 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00008500 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
8501 return SDValue();
8502
Eli Friedman9db817f2011-09-09 21:04:06 +00008503 // Check that we know which element is being inserted
8504 if (!isa<ConstantSDNode>(EltNo))
8505 return SDValue();
8506 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008507
Eli Friedman9db817f2011-09-09 21:04:06 +00008508 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
8509 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
8510 // vector elements.
8511 SmallVector<SDValue, 8> Ops;
8512 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
8513 Ops.append(InVec.getNode()->op_begin(),
8514 InVec.getNode()->op_end());
8515 } else if (InVec.getOpcode() == ISD::UNDEF) {
8516 unsigned NElts = VT.getVectorNumElements();
8517 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
8518 } else {
8519 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00008520 }
Eli Friedman9db817f2011-09-09 21:04:06 +00008521
8522 // Insert the element
8523 if (Elt < Ops.size()) {
8524 // All the operands of BUILD_VECTOR must have the same type;
8525 // we enforce that here.
8526 EVT OpVT = Ops[0].getValueType();
8527 if (InVal.getValueType() != OpVT)
8528 InVal = OpVT.bitsGT(InVal.getValueType()) ?
8529 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
8530 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
8531 Ops[Elt] = InVal;
8532 }
8533
8534 // Return the new vector
8535 return DAG.getNode(ISD::BUILD_VECTOR, dl,
8536 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00008537}
8538
Dan Gohman475871a2008-07-27 21:46:04 +00008539SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008540 // (vextract (scalar_to_vector val, 0) -> val
8541 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00008542 EVT VT = InVec.getValueType();
8543 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008544
Duncan Sandsc356f332011-05-09 08:03:33 +00008545 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
8546 // Check if the result type doesn't match the inserted element type. A
8547 // SCALAR_TO_VECTOR may truncate the inserted element and the
8548 // EXTRACT_VECTOR_ELT may widen the extracted vector.
8549 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00008550 if (InOp.getValueType() != NVT) {
8551 assert(InOp.getValueType().isInteger() && NVT.isInteger());
8552 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
8553 }
8554 return InOp;
8555 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008556
Nadav Rotemba05c912012-01-17 21:44:01 +00008557 SDValue EltNo = N->getOperand(1);
8558 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
8559
8560 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
8561 // We only perform this optimization before the op legalization phase because
Nadav Rotem6dfabb62012-09-20 08:53:31 +00008562 // we may introduce new vector instructions which are not backed by TD
8563 // patterns. For example on AVX, extracting elements from a wide vector
8564 // without using extract_subvector.
Nadav Rotemba05c912012-01-17 21:44:01 +00008565 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
8566 && ConstEltNo && !LegalOperations) {
8567 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8568 int NumElem = VT.getVectorNumElements();
8569 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
8570 // Find the new index to extract from.
8571 int OrigElt = SVOp->getMaskElt(Elt);
8572
8573 // Extracting an undef index is undef.
8574 if (OrigElt == -1)
8575 return DAG.getUNDEF(NVT);
8576
8577 // Select the right vector half to extract from.
8578 if (OrigElt < NumElem) {
8579 InVec = InVec->getOperand(0);
8580 } else {
8581 InVec = InVec->getOperand(1);
8582 OrigElt -= NumElem;
8583 }
8584
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008585 EVT IndexTy = N->getOperand(1).getValueType();
Nadav Rotemba05c912012-01-17 21:44:01 +00008586 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
Jim Grosbacha249f7d2012-05-08 20:56:07 +00008587 InVec, DAG.getConstant(OrigElt, IndexTy));
Nadav Rotemba05c912012-01-17 21:44:01 +00008588 }
8589
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008590 // Perform only after legalization to ensure build_vector / vector_shuffle
8591 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00008592 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008593
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00008594 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
8595 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
8596 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00008597
Nadav Rotemba05c912012-01-17 21:44:01 +00008598 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00008599 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00008600 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00008601 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00008602 EVT ExtVT = VT.getVectorElementType();
8603 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00008604
Evan Cheng84387ea2012-03-13 22:00:52 +00008605 // If the result of load has to be truncated, then it's not necessarily
8606 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00008607 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00008608 return SDValue();
8609
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008610 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008611 // Don't duplicate a load with other uses.
8612 if (!InVec.hasOneUse())
8613 return SDValue();
8614
Owen Andersone50ed302009-08-10 22:56:29 +00008615 EVT BCVT = InVec.getOperand(0).getValueType();
8616 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008617 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00008618 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
8619 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008620 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00008621 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008622 NewLoad = true;
8623 }
Evan Cheng513da432007-10-06 08:19:55 +00008624
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008625 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00008626 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00008627 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008628 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00008629 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00008630 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00008631 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00008632 // Don't duplicate a load with other uses.
8633 if (!InVec.hasOneUse())
8634 return SDValue();
8635
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008636 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00008637 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008638 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
8639 // =>
8640 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00008641
Eli Friedmand6e25602011-12-26 22:49:32 +00008642 // Don't duplicate a load with other uses.
8643 if (!InVec.hasOneUse())
8644 return SDValue();
8645
Mon P Wanga60b5232008-12-11 00:26:16 +00008646 // If the bit convert changed the number of elements, it is unsafe
8647 // to examine the mask.
8648 if (BCNumEltsChanged)
8649 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00008650
8651 // Select the input vector, guarding against out of range extract vector.
8652 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00008653 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00008654 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
8655
Eli Friedmand6e25602011-12-26 22:49:32 +00008656 if (InVec.getOpcode() == ISD::BITCAST) {
8657 // Don't duplicate a load with other uses.
8658 if (!InVec.hasOneUse())
8659 return SDValue();
8660
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008661 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00008662 }
Gabor Greifba36cb52008-08-28 21:40:38 +00008663 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008664 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00008665 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00008666 }
8667 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008668
Eli Friedmand6e25602011-12-26 22:49:32 +00008669 // Make sure we found a non-volatile load and the extractelement is
8670 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00008671 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00008672 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008673
Eric Christopherd81f17a2010-11-03 20:44:42 +00008674 // If Idx was -1 above, Elt is going to be -1, so just return undef.
8675 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00008676 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00008677
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008678 unsigned Align = LN0->getAlignment();
8679 if (NewLoad) {
8680 // Check the resultant load doesn't need a higher alignment than the
8681 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00008682 unsigned NewAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00008683 TLI.getDataLayout()
Eric Christopher503a64d2010-12-09 04:48:06 +00008684 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00008685
Dan Gohmanf560ffa2009-01-28 17:46:25 +00008686 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00008687 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00008688
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008689 Align = NewAlign;
8690 }
8691
Dan Gohman475871a2008-07-27 21:46:04 +00008692 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00008693 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008694
Eric Christopherd81f17a2010-11-03 20:44:42 +00008695 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00008696 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00008697 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008698 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00008699 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00008700 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00008701 DAG.getConstant(PtrOff, PtrType));
8702 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008703
Eli Friedman4db4add2011-11-16 23:50:22 +00008704 // The replacement we need to do here is a little tricky: we need to
8705 // replace an extractelement of a load with a load.
8706 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00008707 // Note that this replacement assumes that the extractvalue is the only
8708 // use of the load; that's okay because we don't want to perform this
8709 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00008710 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00008711 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00008712 if (NVT.bitsGT(LVT)) {
8713 // If the result type of vextract is wider than the load, then issue an
8714 // extending load instead.
8715 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
8716 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
8717 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
8718 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
8719 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008720 Chain = Load.getValue(1);
8721 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00008722 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
8723 LN0->getPointerInfo().getWithOffset(PtrOff),
8724 LN0->isVolatile(), LN0->isNonTemporal(),
8725 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00008726 Chain = Load.getValue(1);
8727 if (NVT.bitsLT(LVT))
8728 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
8729 else
8730 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
8731 }
Eli Friedman4db4add2011-11-16 23:50:22 +00008732 WorkListRemover DeadNodes(*this);
8733 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00008734 SDValue To[] = { Load, Chain };
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00008735 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
Eli Friedman4db4add2011-11-16 23:50:22 +00008736 // Since we're explcitly calling ReplaceAllUses, add the new node to the
8737 // worklist explicitly as well.
8738 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00008739 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00008740 // Make sure to revisit this node to clean it up; it will usually be dead.
8741 AddToWorkList(N);
8742 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00008743 }
Bill Wendlingc144a572009-01-30 23:36:47 +00008744
Dan Gohman475871a2008-07-27 21:46:04 +00008745 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00008746}
Evan Cheng513da432007-10-06 08:19:55 +00008747
Michael Liaofac14ab2012-10-23 23:06:52 +00008748// Simplify (build_vec (ext )) to (bitcast (build_vec ))
8749SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) {
8750 // We perform this optimization post type-legalization because
8751 // the type-legalizer often scalarizes integer-promoted vectors.
8752 // Performing this optimization before may create bit-casts which
8753 // will be type-legalized to complex code sequences.
8754 // We perform this optimization only before the operation legalizer because we
8755 // may introduce illegal operations.
8756 if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes)
8757 return SDValue();
8758
Dan Gohman7f321562007-06-25 16:23:39 +00008759 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008760 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008761 EVT VT = N->getValueType(0);
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008762
Nadav Rotemb00418a2011-10-29 21:23:04 +00008763 // Check to see if this is a BUILD_VECTOR of a bunch of values
8764 // which come from any_extend or zero_extend nodes. If so, we can create
8765 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00008766 // optimizations. We do not handle sign-extend because we can't fill the sign
8767 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008768 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00008769 bool AllAnyExt = true;
Nadav Rotemb87bdac2012-07-15 08:38:23 +00008770
Craig Topperd3b58892012-01-17 09:09:48 +00008771 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00008772 SDValue In = N->getOperand(i);
8773 // Ignore undef inputs.
8774 if (In.getOpcode() == ISD::UNDEF) continue;
8775
8776 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
8777 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
8778
Nadav Rotemf47368b2011-10-31 20:08:25 +00008779 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008780 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00008781 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008782 break;
8783 }
8784
8785 // The input is a ZeroExt or AnyExt. Check the original type.
8786 EVT InTy = In.getOperand(0).getValueType();
8787
8788 // Check that all of the widened source types are the same.
8789 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00008790 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00008791 SourceType = InTy;
8792 else if (InTy != SourceType) {
8793 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00008794 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008795 break;
8796 }
8797
8798 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00008799 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008800 }
8801
Nadav Rotemf47368b2011-10-31 20:08:25 +00008802 // In order to have valid types, all of the inputs must be extended from the
8803 // same source type and all of the inputs must be any or zero extend.
8804 // Scalar sizes must be a power of two.
Michael Liaofac14ab2012-10-23 23:06:52 +00008805 EVT OutScalarTy = VT.getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008806 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00008807 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
8808 isPowerOf2_32(SourceType.getSizeInBits());
8809
Nadav Rotem6431ff92012-03-15 08:49:06 +00008810 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
8811 // turn into a single shuffle instruction.
Michael Liaofac14ab2012-10-23 23:06:52 +00008812 if (!ValidTypes)
8813 return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00008814
Michael Liaofac14ab2012-10-23 23:06:52 +00008815 bool isLE = TLI.isLittleEndian();
8816 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
8817 assert(ElemRatio > 1 && "Invalid element size ratio");
8818 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
8819 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008820
Michael Liaofac14ab2012-10-23 23:06:52 +00008821 unsigned NewBVElems = ElemRatio * VT.getVectorNumElements();
8822 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00008823
Michael Liaofac14ab2012-10-23 23:06:52 +00008824 // Populate the new build_vector
Jakub Staszakadf38912012-10-24 00:38:25 +00008825 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Michael Liaofac14ab2012-10-23 23:06:52 +00008826 SDValue Cast = N->getOperand(i);
8827 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
8828 Cast.getOpcode() == ISD::ZERO_EXTEND ||
8829 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
8830 SDValue In;
8831 if (Cast.getOpcode() == ISD::UNDEF)
8832 In = DAG.getUNDEF(SourceType);
8833 else
8834 In = Cast->getOperand(0);
8835 unsigned Index = isLE ? (i * ElemRatio) :
8836 (i * ElemRatio + (ElemRatio - 1));
Nadav Rotemb00418a2011-10-29 21:23:04 +00008837
Michael Liaofac14ab2012-10-23 23:06:52 +00008838 assert(Index < Ops.size() && "Invalid index");
8839 Ops[Index] = In;
Nadav Rotemb00418a2011-10-29 21:23:04 +00008840 }
Chris Lattnerca242442006-03-19 01:27:56 +00008841
Michael Liaofac14ab2012-10-23 23:06:52 +00008842 // The type of the new BUILD_VECTOR node.
8843 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
8844 assert(VecVT.getSizeInBits() == VT.getSizeInBits() &&
8845 "Invalid vector size");
8846 // Check if the new vector type is legal.
8847 if (!isTypeLegal(VecVT)) return SDValue();
8848
8849 // Make the new BUILD_VECTOR.
8850 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], Ops.size());
8851
8852 // The new BUILD_VECTOR node has the potential to be further optimized.
8853 AddToWorkList(BV.getNode());
8854 // Bitcast to the desired type.
8855 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
8856}
8857
Michael Liao1a5cc712012-10-24 04:14:18 +00008858SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) {
8859 EVT VT = N->getValueType(0);
8860
8861 unsigned NumInScalars = N->getNumOperands();
8862 DebugLoc dl = N->getDebugLoc();
8863
8864 EVT SrcVT = MVT::Other;
8865 unsigned Opcode = ISD::DELETED_NODE;
8866 unsigned NumDefs = 0;
8867
8868 for (unsigned i = 0; i != NumInScalars; ++i) {
8869 SDValue In = N->getOperand(i);
8870 unsigned Opc = In.getOpcode();
8871
8872 if (Opc == ISD::UNDEF)
8873 continue;
8874
8875 // If all scalar values are floats and converted from integers.
8876 if (Opcode == ISD::DELETED_NODE &&
8877 (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) {
8878 Opcode = Opc;
Michael Liao1a5cc712012-10-24 04:14:18 +00008879 }
Tom Stellardd40758b2013-01-02 22:13:01 +00008880
Michael Liao1a5cc712012-10-24 04:14:18 +00008881 if (Opc != Opcode)
8882 return SDValue();
8883
8884 EVT InVT = In.getOperand(0).getValueType();
8885
8886 // If all scalar values are typed differently, bail out. It's chosen to
8887 // simplify BUILD_VECTOR of integer types.
8888 if (SrcVT == MVT::Other)
8889 SrcVT = InVT;
8890 if (SrcVT != InVT)
8891 return SDValue();
8892 NumDefs++;
8893 }
8894
8895 // If the vector has just one element defined, it's not worth to fold it into
8896 // a vectorized one.
8897 if (NumDefs < 2)
8898 return SDValue();
8899
8900 assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP)
8901 && "Should only handle conversion from integer to float.");
8902 assert(SrcVT != MVT::Other && "Cannot determine source type!");
8903
8904 EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars);
Tom Stellardd40758b2013-01-02 22:13:01 +00008905
8906 if (!TLI.isOperationLegalOrCustom(Opcode, NVT))
8907 return SDValue();
8908
Michael Liao1a5cc712012-10-24 04:14:18 +00008909 SmallVector<SDValue, 8> Opnds;
8910 for (unsigned i = 0; i != NumInScalars; ++i) {
8911 SDValue In = N->getOperand(i);
8912
8913 if (In.getOpcode() == ISD::UNDEF)
8914 Opnds.push_back(DAG.getUNDEF(SrcVT));
8915 else
8916 Opnds.push_back(In.getOperand(0));
8917 }
8918 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT,
8919 &Opnds[0], Opnds.size());
8920 AddToWorkList(BV.getNode());
8921
8922 return DAG.getNode(Opcode, dl, VT, BV);
8923}
8924
Michael Liaofac14ab2012-10-23 23:06:52 +00008925SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
8926 unsigned NumInScalars = N->getNumOperands();
8927 DebugLoc dl = N->getDebugLoc();
8928 EVT VT = N->getValueType(0);
8929
8930 // A vector built entirely of undefs is undef.
8931 if (ISD::allOperandsUndef(N))
8932 return DAG.getUNDEF(VT);
8933
8934 SDValue V = reduceBuildVecExtToExtBuildVec(N);
8935 if (V.getNode())
8936 return V;
8937
Michael Liao1a5cc712012-10-24 04:14:18 +00008938 V = reduceBuildVecConvertToConvertBuildVec(N);
8939 if (V.getNode())
8940 return V;
8941
Dan Gohman7f321562007-06-25 16:23:39 +00008942 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
8943 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
8944 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00008945
8946 // May only combine to shuffle after legalize if shuffle is legal.
8947 if (LegalOperations &&
8948 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
8949 return SDValue();
8950
Dan Gohman475871a2008-07-27 21:46:04 +00008951 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008952 for (unsigned i = 0; i != NumInScalars; ++i) {
8953 // Ignore undef inputs.
8954 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008955
Dan Gohman7f321562007-06-25 16:23:39 +00008956 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00008957 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00008958 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00008959 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00008960 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008961 break;
8962 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008963
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008964 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00008965 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008966 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
8967 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008968
Gabor Greifba36cb52008-08-28 21:40:38 +00008969 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008970 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00008971 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00008972 VecIn2 = ExtractedFromVec;
8973 } else {
8974 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008975 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008976 break;
8977 }
8978 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008979
Nadav Rotem2ee746b2012-02-12 15:05:31 +00008980 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00008981 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008982 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00008983 for (unsigned i = 0; i != NumInScalars; ++i) {
8984 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008985 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008986 continue;
8987 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008988
Rafael Espindola15684b22009-04-24 12:40:33 +00008989 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00008990 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00008991 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008992 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00008993 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
8994 if (ExtIndex > VT.getVectorNumElements())
8995 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008996
Nate Begeman5a5ca152009-04-29 05:20:52 +00008997 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00008998 continue;
8999 }
9000
9001 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00009002 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00009003 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009004 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009005
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009006 // We can't generate a shuffle node with mismatched input and output types.
9007 // Attempt to transform a single input vector to the correct type.
9008 if ((VT != VecIn1.getValueType())) {
9009 // We don't support shuffeling between TWO values of different types.
9010 if (VecIn2.getNode() != 0)
9011 return SDValue();
9012
9013 // We only support widening of vectors which are half the size of the
9014 // output registers. For example XMM->YMM widening on X86 with AVX.
9015 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
9016 return SDValue();
9017
James Molloy8cd08bf2012-09-10 14:01:21 +00009018 // If the input vector type has a different base type to the output
9019 // vector type, bail out.
9020 if (VecIn1.getValueType().getVectorElementType() !=
9021 VT.getVectorElementType())
9022 return SDValue();
9023
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00009024 // Widen the input vector by adding undef values.
Michael Liaofac14ab2012-10-23 23:06:52 +00009025 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
Stepan Dyatkovskiyfdeb9fe2012-08-22 09:33:55 +00009026 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009027 }
9028
9029 // If VecIn2 is unused then change it to undef.
9030 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
9031
Nadav Rotem6dfabb62012-09-20 08:53:31 +00009032 // Check that we were able to transform all incoming values to the same
9033 // type.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00009034 if (VecIn2.getValueType() != VecIn1.getValueType() ||
9035 VecIn1.getValueType() != VT)
9036 return SDValue();
9037
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009038 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00009039 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00009040 return SDValue();
9041
Dan Gohman7f321562007-06-25 16:23:39 +00009042 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00009043 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00009044 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00009045 Ops[1] = VecIn2;
Michael Liaofac14ab2012-10-23 23:06:52 +00009046 return DAG.getVectorShuffle(VT, dl, Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00009047 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009048
Dan Gohman475871a2008-07-27 21:46:04 +00009049 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00009050}
9051
Dan Gohman475871a2008-07-27 21:46:04 +00009052SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00009053 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
9054 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
9055 // inputs come from at most two distinct vectors, turn this into a shuffle
9056 // node.
9057
9058 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00009059 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00009060 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00009061
Nadav Rotemb7e230d2012-07-14 21:30:27 +00009062 // Check if all of the operands are undefs.
Nadav Rotemb87bdac2012-07-15 08:38:23 +00009063 if (ISD::allOperandsUndef(N))
Nadav Rotemb7e230d2012-07-14 21:30:27 +00009064 return DAG.getUNDEF(N->getValueType(0));
9065
Dan Gohman475871a2008-07-27 21:46:04 +00009066 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00009067}
9068
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00009069SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
9070 EVT NVT = N->getValueType(0);
9071 SDValue V = N->getOperand(0);
9072
Michael Liao13429e22012-10-17 20:48:33 +00009073 if (V->getOpcode() == ISD::CONCAT_VECTORS) {
9074 // Combine:
9075 // (extract_subvec (concat V1, V2, ...), i)
9076 // Into:
9077 // Vi if possible
Michael Liao9aecdb52012-10-19 03:17:00 +00009078 // Only operand 0 is checked as 'concat' assumes all inputs of the same type.
9079 if (V->getOperand(0).getValueType() != NVT)
9080 return SDValue();
Michael Liao13429e22012-10-17 20:48:33 +00009081 unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
9082 unsigned NumElems = NVT.getVectorNumElements();
9083 assert((Idx % NumElems) == 0 &&
9084 "IDX in concat is not a multiple of the result vector length.");
9085 return V->getOperand(Idx / NumElems);
9086 }
9087
Michael Liaob4f98ea2013-03-25 23:47:35 +00009088 // Skip bitcasting
9089 if (V->getOpcode() == ISD::BITCAST)
9090 V = V.getOperand(0);
9091
9092 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
9093 DebugLoc dl = N->getDebugLoc();
9094 // Handle only simple case where vector being inserted and vector
9095 // being extracted are of same type, and are half size of larger vectors.
9096 EVT BigVT = V->getOperand(0).getValueType();
9097 EVT SmallVT = V->getOperand(1).getValueType();
9098 if (!NVT.bitsEq(SmallVT) || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
9099 return SDValue();
9100
9101 // Only handle cases where both indexes are constants with the same type.
9102 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
9103 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
9104
9105 if (InsIdx && ExtIdx &&
9106 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
9107 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
9108 // Combine:
9109 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
9110 // Into:
9111 // indices are equal or bit offsets are equal => V1
9112 // otherwise => (extract_subvec V1, ExtIdx)
9113 if (InsIdx->getZExtValue() * SmallVT.getScalarType().getSizeInBits() ==
9114 ExtIdx->getZExtValue() * NVT.getScalarType().getSizeInBits())
9115 return DAG.getNode(ISD::BITCAST, dl, NVT, V->getOperand(1));
9116 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NVT,
9117 DAG.getNode(ISD::BITCAST, dl,
9118 N->getOperand(0).getValueType(),
9119 V->getOperand(0)), N->getOperand(1));
9120 }
9121 }
9122
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00009123 return SDValue();
9124}
9125
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009126// Tries to turn a shuffle of two CONCAT_VECTORS into a single concat.
9127static SDValue partitionShuffleOfConcats(SDNode *N, SelectionDAG &DAG) {
9128 EVT VT = N->getValueType(0);
9129 unsigned NumElts = VT.getVectorNumElements();
9130
9131 SDValue N0 = N->getOperand(0);
9132 SDValue N1 = N->getOperand(1);
9133 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9134
9135 SmallVector<SDValue, 4> Ops;
9136 EVT ConcatVT = N0.getOperand(0).getValueType();
9137 unsigned NumElemsPerConcat = ConcatVT.getVectorNumElements();
9138 unsigned NumConcats = NumElts / NumElemsPerConcat;
9139
9140 // Look at every vector that's inserted. We're looking for exact
9141 // subvector-sized copies from a concatenated vector
9142 for (unsigned I = 0; I != NumConcats; ++I) {
9143 // Make sure we're dealing with a copy.
9144 unsigned Begin = I * NumElemsPerConcat;
9145 if (SVN->getMaskElt(Begin) % NumElemsPerConcat != 0)
9146 return SDValue();
9147
9148 for (unsigned J = 1; J != NumElemsPerConcat; ++J) {
9149 if (SVN->getMaskElt(Begin + J - 1) + 1 != SVN->getMaskElt(Begin + J))
9150 return SDValue();
9151 }
9152
9153 unsigned FirstElt = SVN->getMaskElt(Begin) / NumElemsPerConcat;
9154 if (FirstElt < N0.getNumOperands())
9155 Ops.push_back(N0.getOperand(FirstElt));
9156 else
9157 Ops.push_back(N1.getOperand(FirstElt - N0.getNumOperands()));
9158 }
9159
9160 return DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT, Ops.data(),
9161 Ops.size());
9162}
9163
Dan Gohman475871a2008-07-27 21:46:04 +00009164SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00009165 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00009166 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00009167
Mon P Wangaeb06d22008-11-10 04:46:22 +00009168 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00009169 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00009170
Craig Topperae1bec52012-04-09 05:16:56 +00009171 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00009172
Craig Topper481b79c2012-01-04 08:07:43 +00009173 // Canonicalize shuffle undef, undef -> undef
9174 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
9175 return DAG.getUNDEF(VT);
9176
9177 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9178
9179 // Canonicalize shuffle v, v -> v, undef
9180 if (N0 == N1) {
9181 SmallVector<int, 8> NewMask;
9182 for (unsigned i = 0; i != NumElts; ++i) {
9183 int Idx = SVN->getMaskElt(i);
9184 if (Idx >= (int)NumElts) Idx -= NumElts;
9185 NewMask.push_back(Idx);
9186 }
9187 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
9188 &NewMask[0]);
9189 }
9190
9191 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
9192 if (N0.getOpcode() == ISD::UNDEF) {
9193 SmallVector<int, 8> NewMask;
9194 for (unsigned i = 0; i != NumElts; ++i) {
9195 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00009196 if (Idx >= 0) {
9197 if (Idx < (int)NumElts)
9198 Idx += NumElts;
9199 else
9200 Idx -= NumElts;
9201 }
9202 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00009203 }
9204 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
9205 &NewMask[0]);
9206 }
9207
9208 // Remove references to rhs if it is undef
9209 if (N1.getOpcode() == ISD::UNDEF) {
9210 bool Changed = false;
9211 SmallVector<int, 8> NewMask;
9212 for (unsigned i = 0; i != NumElts; ++i) {
9213 int Idx = SVN->getMaskElt(i);
9214 if (Idx >= (int)NumElts) {
9215 Idx = -1;
9216 Changed = true;
9217 }
9218 NewMask.push_back(Idx);
9219 }
9220 if (Changed)
9221 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
9222 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00009223
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009224 // If it is a splat, check if the argument vector is another splat or a
9225 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009226 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00009227 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00009228
Dan Gohman7f321562007-06-25 16:23:39 +00009229 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00009230 // not the number of vector elements, look through it. Be careful not to
9231 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009232 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00009233 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00009234 if (ConvInput.getValueType().isVector() &&
9235 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00009236 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00009237 }
9238
Dan Gohman7f321562007-06-25 16:23:39 +00009239 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009240 assert(V->getNumOperands() == NumElts &&
9241 "BUILD_VECTOR has wrong number of operands");
9242 SDValue Base;
9243 bool AllSame = true;
9244 for (unsigned i = 0; i != NumElts; ++i) {
9245 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
9246 Base = V->getOperand(i);
9247 break;
Evan Cheng917ec982006-07-21 08:25:53 +00009248 }
Evan Cheng917ec982006-07-21 08:25:53 +00009249 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00009250 // Splat of <u, u, u, u>, return <u, u, u, u>
9251 if (!Base.getNode())
9252 return N0;
9253 for (unsigned i = 0; i != NumElts; ++i) {
9254 if (V->getOperand(i) != Base) {
9255 AllSame = false;
9256 break;
9257 }
9258 }
9259 // Splat of <x, x, x, x>, return <x, x, x, x>
9260 if (AllSame)
9261 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00009262 }
9263 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00009264
Benjamin Kramer6fac1fb2013-04-09 17:41:43 +00009265 if (N0.getOpcode() == ISD::CONCAT_VECTORS &&
9266 Level < AfterLegalizeVectorOps &&
9267 (N1.getOpcode() == ISD::UNDEF ||
9268 (N1.getOpcode() == ISD::CONCAT_VECTORS &&
9269 N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()))) {
9270 SDValue V = partitionShuffleOfConcats(N, DAG);
9271
9272 if (V.getNode())
9273 return V;
9274 }
9275
Nadav Rotem4ac90812012-04-01 19:31:22 +00009276 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009277 // and it reverses the swizzle of the previous shuffle then we can
9278 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00009279 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
9280 N1.getOpcode() == ISD::UNDEF) {
9281
Nadav Rotem4ac90812012-04-01 19:31:22 +00009282 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
9283
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009284 // Shuffle nodes can only reverse shuffles with a single non-undef value.
9285 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
9286 return SDValue();
9287
Craig Topperae1bec52012-04-09 05:16:56 +00009288 // The incoming shuffle must be of the same type as the result of the
9289 // current shuffle.
9290 assert(OtherSV->getOperand(0).getValueType() == VT &&
9291 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00009292
9293 for (unsigned i = 0; i != NumElts; ++i) {
9294 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00009295 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00009296 // Next, this index comes from the first value, which is the incoming
9297 // shuffle. Adopt the incoming index.
9298 if (Idx >= 0)
9299 Idx = OtherSV->getMaskElt(Idx);
9300
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009301 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00009302 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009303 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00009304 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00009305
9306 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00009307 }
9308
Dan Gohman475871a2008-07-27 21:46:04 +00009309 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00009310}
9311
Evan Cheng44f1f092006-04-20 08:56:16 +00009312/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00009313/// an AND to a vector_shuffle with the destination vector and a zero vector.
9314/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00009315/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00009316SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00009317 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00009318 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00009319 SDValue LHS = N->getOperand(0);
9320 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00009321 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009322 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00009323 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00009324 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00009325 SmallVector<int, 8> Indices;
9326 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00009327 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00009328 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00009329 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00009330 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00009331
9332 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00009333 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00009334 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00009335 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00009336 else
Dan Gohman475871a2008-07-27 21:46:04 +00009337 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009338 }
9339
9340 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00009341 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00009342 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00009343 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009344
Dan Gohman7f321562007-06-25 16:23:39 +00009345 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00009346 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00009347 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00009348 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00009349 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
9350 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009351 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00009352 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009353 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00009354 }
9355 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009356
Dan Gohman475871a2008-07-27 21:46:04 +00009357 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00009358}
9359
Dan Gohman7f321562007-06-25 16:23:39 +00009360/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00009361SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Bob Wilsond7273432010-12-17 23:06:49 +00009362 assert(N->getValueType(0).isVector() &&
9363 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00009364
Dan Gohman475871a2008-07-27 21:46:04 +00009365 SDValue LHS = N->getOperand(0);
9366 SDValue RHS = N->getOperand(1);
9367 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00009368 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00009369
Dan Gohman7f321562007-06-25 16:23:39 +00009370 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00009371 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00009372 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00009373 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00009374 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00009375 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00009376 SDValue LHSOp = LHS.getOperand(i);
9377 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00009378 // If these two elements can't be folded, bail out.
9379 if ((LHSOp.getOpcode() != ISD::UNDEF &&
9380 LHSOp.getOpcode() != ISD::Constant &&
9381 LHSOp.getOpcode() != ISD::ConstantFP) ||
9382 (RHSOp.getOpcode() != ISD::UNDEF &&
9383 RHSOp.getOpcode() != ISD::Constant &&
9384 RHSOp.getOpcode() != ISD::ConstantFP))
9385 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00009386
Evan Cheng7b336a82006-05-31 06:08:35 +00009387 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00009388 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
9389 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00009390 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009391 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00009392 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00009393 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00009394 break;
9395 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009396
Bob Wilsond7273432010-12-17 23:06:49 +00009397 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00009398 EVT RVT = RHSOp.getValueType();
9399 if (RVT != VT) {
9400 // Integer BUILD_VECTOR operands may have types larger than the element
9401 // size (e.g., when the element type is not legal). Prior to type
9402 // legalization, the types may not match between the two BUILD_VECTORS.
9403 // Truncate one of the operands to make them match.
9404 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
9405 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
9406 } else {
9407 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
9408 VT = RVT;
9409 }
9410 }
Bob Wilsond7273432010-12-17 23:06:49 +00009411 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00009412 LHSOp, RHSOp);
9413 if (FoldOp.getOpcode() != ISD::UNDEF &&
9414 FoldOp.getOpcode() != ISD::Constant &&
9415 FoldOp.getOpcode() != ISD::ConstantFP)
9416 break;
9417 Ops.push_back(FoldOp);
9418 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00009419 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009420
Bob Wilsond7273432010-12-17 23:06:49 +00009421 if (Ops.size() == LHS.getNumOperands())
9422 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
9423 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00009424 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009425
Dan Gohman475871a2008-07-27 21:46:04 +00009426 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00009427}
9428
Craig Topperdd201ff2012-09-11 01:45:21 +00009429/// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
9430SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
Craig Topperdd201ff2012-09-11 01:45:21 +00009431 assert(N->getValueType(0).isVector() &&
9432 "SimplifyVUnaryOp only works on vectors!");
9433
9434 SDValue N0 = N->getOperand(0);
9435
9436 if (N0.getOpcode() != ISD::BUILD_VECTOR)
9437 return SDValue();
9438
9439 // Operand is a BUILD_VECTOR node, see if we can constant fold it.
9440 SmallVector<SDValue, 8> Ops;
9441 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
9442 SDValue Op = N0.getOperand(i);
9443 if (Op.getOpcode() != ISD::UNDEF &&
9444 Op.getOpcode() != ISD::ConstantFP)
9445 break;
9446 EVT EltVT = Op.getValueType();
9447 SDValue FoldOp = DAG.getNode(N->getOpcode(), N0.getDebugLoc(), EltVT, Op);
9448 if (FoldOp.getOpcode() != ISD::UNDEF &&
9449 FoldOp.getOpcode() != ISD::ConstantFP)
9450 break;
9451 Ops.push_back(FoldOp);
9452 AddToWorkList(FoldOp.getNode());
9453 }
9454
9455 if (Ops.size() != N0.getNumOperands())
9456 return SDValue();
9457
9458 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
9459 N0.getValueType(), &Ops[0], Ops.size());
9460}
9461
Bill Wendling836ca7d2009-01-30 23:59:18 +00009462SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
9463 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00009464 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00009465
Bill Wendling836ca7d2009-01-30 23:59:18 +00009466 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00009467 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009468
Nate Begemanf845b452005-10-08 00:29:44 +00009469 // If we got a simplified select_cc node back from SimplifySelectCC, then
9470 // break it down into a new SETCC node, and a new SELECT node, and then return
9471 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00009472 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009473 // Check to see if we got a select_cc back (to turn into setcc/select).
9474 // Otherwise, just return whatever node we got back, like fabs.
9475 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009476 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
9477 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009478 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009479 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00009480 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009481 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
9482 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00009483 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009484
Nate Begemanf845b452005-10-08 00:29:44 +00009485 return SCC;
9486 }
Dan Gohman475871a2008-07-27 21:46:04 +00009487 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009488}
9489
Chris Lattner40c62d52005-10-18 06:04:22 +00009490/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
9491/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00009492/// select. Callers of this should assume that TheSelect is deleted if this
9493/// returns true. As such, they should return the appropriate thing (e.g. the
9494/// node) back to the top-level of the DAG combiner loop to avoid it being
9495/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00009496bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00009497 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009498
Nadav Rotemf94fdb62011-02-11 19:57:47 +00009499 // Cannot simplify select with vector condition
9500 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
9501
Chris Lattner40c62d52005-10-18 06:04:22 +00009502 // If this is a select from two identical things, try to pull the operation
9503 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00009504 if (LHS.getOpcode() != RHS.getOpcode() ||
9505 !LHS.hasOneUse() || !RHS.hasOneUse())
9506 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009507
Chris Lattner18061612010-09-21 15:46:59 +00009508 // If this is a load and the token chain is identical, replace the select
9509 // of two loads with a load through a select of the address to load from.
9510 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
9511 // constants have been dropped into the constant pool.
9512 if (LHS.getOpcode() == ISD::LOAD) {
9513 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
9514 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009515
Chris Lattner18061612010-09-21 15:46:59 +00009516 // Token chains must be identical.
9517 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00009518 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00009519 LLD->isVolatile() || RLD->isVolatile() ||
9520 // If this is an EXTLOAD, the VT's must match.
9521 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00009522 // If this is an EXTLOAD, the kind of extension must match.
9523 (LLD->getExtensionType() != RLD->getExtensionType() &&
9524 // The only exception is if one of the extensions is anyext.
9525 LLD->getExtensionType() != ISD::EXTLOAD &&
9526 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00009527 // FIXME: this discards src value information. This is
9528 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00009529 // both potential memory locations. Since we are discarding
9530 // src value info, don't do the transformation if the memory
9531 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00009532 LLD->getPointerInfo().getAddrSpace() != 0 ||
Pete Cooperb0fde6d2013-02-12 03:14:50 +00009533 RLD->getPointerInfo().getAddrSpace() != 0 ||
9534 !TLI.isOperationLegalOrCustom(TheSelect->getOpcode(),
9535 LLD->getBasePtr().getValueType()))
Chris Lattner18061612010-09-21 15:46:59 +00009536 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009537
Chris Lattnerf1658062010-09-21 15:58:55 +00009538 // Check that the select condition doesn't reach either load. If so,
9539 // folding this will induce a cycle into the DAG. If not, this is safe to
9540 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00009541 SDValue Addr;
9542 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00009543 SDNode *CondNode = TheSelect->getOperand(0).getNode();
9544 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
9545 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
9546 return false;
Nadav Rotem1c5bf3f2012-10-18 18:06:48 +00009547 // The loads must not depend on one another.
9548 if (LLD->isPredecessorOf(RLD) ||
9549 RLD->isPredecessorOf(LLD))
9550 return false;
Chris Lattnerf1658062010-09-21 15:58:55 +00009551 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
9552 LLD->getBasePtr().getValueType(),
9553 TheSelect->getOperand(0), LLD->getBasePtr(),
9554 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00009555 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00009556 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
9557 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
9558
9559 if ((LLD->hasAnyUseOfValue(1) &&
9560 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00009561 (RLD->hasAnyUseOfValue(1) &&
9562 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00009563 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009564
Chris Lattnerf1658062010-09-21 15:58:55 +00009565 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
9566 LLD->getBasePtr().getValueType(),
9567 TheSelect->getOperand(0),
9568 TheSelect->getOperand(1),
9569 LLD->getBasePtr(), RLD->getBasePtr(),
9570 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00009571 }
9572
Chris Lattnerf1658062010-09-21 15:58:55 +00009573 SDValue Load;
9574 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
9575 Load = DAG.getLoad(TheSelect->getValueType(0),
9576 TheSelect->getDebugLoc(),
9577 // FIXME: Discards pointer info.
9578 LLD->getChain(), Addr, MachinePointerInfo(),
9579 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009580 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00009581 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00009582 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
9583 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00009584 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00009585 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00009586 // FIXME: Discards pointer info.
9587 LLD->getChain(), Addr, MachinePointerInfo(),
9588 LLD->getMemoryVT(), LLD->isVolatile(),
9589 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00009590 }
Chris Lattnerf1658062010-09-21 15:58:55 +00009591
9592 // Users of the select now use the result of the load.
9593 CombineTo(TheSelect, Load);
9594
9595 // Users of the old loads now use the new load's chain. We know the
9596 // old-load value is dead now.
9597 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
9598 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
9599 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00009600 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009601
Chris Lattner40c62d52005-10-18 06:04:22 +00009602 return false;
9603}
9604
Chris Lattner600fec32009-03-11 05:08:08 +00009605/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
9606/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00009607SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00009608 SDValue N2, SDValue N3,
9609 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00009610 // (x ? y : y) -> y.
9611 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009612
Owen Andersone50ed302009-08-10 22:56:29 +00009613 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00009614 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
9615 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
9616 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009617
9618 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00009619 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009620 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00009621 if (SCC.getNode()) AddToWorkList(SCC.getNode());
9622 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009623
9624 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00009625 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009626 return N2;
9627 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00009628 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00009629 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00009630
Nate Begemanf845b452005-10-08 00:29:44 +00009631 // Check to see if we can simplify the select into an fabs node
9632 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
9633 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00009634 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00009635 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
9636 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
9637 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
9638 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009639 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009640
Nate Begemanf845b452005-10-08 00:29:44 +00009641 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
9642 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
9643 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
9644 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009645 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00009646 }
9647 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009648
Chris Lattner600fec32009-03-11 05:08:08 +00009649 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
9650 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
9651 // in it. This is a win when the constant is not otherwise available because
9652 // it replaces two constant pool loads with one. We only do this if the FP
9653 // type is known to be legal, because if it isn't, then we are before legalize
9654 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00009655 // messing with soft float) and if the ConstantFP is not legal, because if
9656 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00009657 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
9658 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
9659 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00009660 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
9661 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00009662 // If both constants have multiple uses, then we won't need to do an
9663 // extra load, they are likely around in registers for other users.
9664 (TV->hasOneUse() || FV->hasOneUse())) {
9665 Constant *Elts[] = {
9666 const_cast<ConstantFP*>(FV->getConstantFPValue()),
9667 const_cast<ConstantFP*>(TV->getConstantFPValue())
9668 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009669 Type *FPTy = Elts[0]->getType();
Micah Villmow3574eca2012-10-08 16:38:25 +00009670 const DataLayout &TD = *TLI.getDataLayout();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009671
Chris Lattner600fec32009-03-11 05:08:08 +00009672 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00009673 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00009674 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
9675 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00009676 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00009677
9678 // Get the offsets to the 0 and 1 element of the array so that we can
9679 // select between them.
9680 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00009681 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00009682 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009683
Chris Lattner600fec32009-03-11 05:08:08 +00009684 SDValue Cond = DAG.getSetCC(DL,
9685 TLI.getSetCCResultType(N0.getValueType()),
9686 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00009687 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009688 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
9689 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00009690 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009691 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
9692 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00009693 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00009694 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00009695 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00009696 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00009697
9698 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009699 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009700
Nate Begemanf845b452005-10-08 00:29:44 +00009701 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00009702 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00009703 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00009704 (N1C->isNullValue() || // (a < 0) ? b : 0
9705 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00009706 EVT XType = N0.getValueType();
9707 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00009708 if (XType.bitsGE(AType)) {
Sylvestre Ledru94c22712012-09-27 10:14:43 +00009709 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00009710 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00009711 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
9712 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00009713 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00009714 SDValue ShCt = DAG.getConstant(ShCtV,
9715 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00009716 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009717 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00009718 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009719
Duncan Sands8e4eb092008-06-08 20:54:56 +00009720 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009721 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009722 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009723 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009724
9725 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009726 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009727
Bill Wendling9729c5a2009-01-31 03:12:48 +00009728 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009729 XType, N0,
9730 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009731 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00009732 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00009733
Duncan Sands8e4eb092008-06-08 20:54:56 +00009734 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009735 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00009736 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00009737 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009738
9739 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00009740 }
9741 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009742
Owen Andersoned1088a2010-09-22 22:58:22 +00009743 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
9744 // where y is has a single bit set.
9745 // A plaintext description would be, we can turn the SELECT_CC into an AND
9746 // when the condition can be materialized as an all-ones register. Any
9747 // single bit-test can be materialized as an all-ones register with
9748 // shift-left and shift-right-arith.
9749 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
9750 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009751 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00009752 N2C && N2C->isNullValue()) {
9753 SDValue AndLHS = N0->getOperand(0);
9754 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
9755 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
9756 // Shift the tested bit over the sign bit.
9757 APInt AndMask = ConstAndRHS->getAPIntValue();
9758 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009759 DAG.getConstant(AndMask.countLeadingZeros(),
9760 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00009761 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009762
Owen Andersoned1088a2010-09-22 22:58:22 +00009763 // Now arithmetic right shift it all the way over, so the result is either
9764 // all-ones, or zero.
9765 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00009766 DAG.getConstant(AndMask.getBitWidth()-1,
9767 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00009768 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009769
Owen Andersoned1088a2010-09-22 22:58:22 +00009770 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
9771 }
9772 }
9773
Nate Begeman07ed4172005-10-10 21:26:48 +00009774 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00009775 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00009776 TLI.getBooleanContents(N0.getValueType().isVector()) ==
9777 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009778
Chris Lattner1eba01e2007-04-11 06:50:51 +00009779 // If the caller doesn't want us to simplify this into a zext of a compare,
9780 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00009781 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00009782 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00009783
Nate Begeman07ed4172005-10-10 21:26:48 +00009784 // Get a SetCC of the condition
Owen Andersonefcc1ae2012-11-03 00:17:26 +00009785 // NOTE: Don't create a SETCC if it's not legal on this target.
9786 if (!LegalOperations ||
9787 TLI.isOperationLegal(ISD::SETCC,
9788 LegalTypes ? TLI.getSetCCResultType(N0.getValueType()) : MVT::i1)) {
9789 SDValue Temp, SCC;
9790 // cast from setcc result type to select result type
9791 if (LegalTypes) {
9792 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
9793 N0, N1, CC);
9794 if (N2.getValueType().bitsLT(SCC.getValueType()))
9795 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(),
9796 N2.getValueType());
9797 else
9798 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
9799 N2.getValueType(), SCC);
9800 } else {
9801 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00009802 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00009803 N2.getValueType(), SCC);
Owen Andersonefcc1ae2012-11-03 00:17:26 +00009804 }
9805
9806 AddToWorkList(SCC.getNode());
9807 AddToWorkList(Temp.getNode());
9808
9809 if (N2C->getAPIntValue() == 1)
9810 return Temp;
9811
9812 // shl setcc result by log2 n2c
9813 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
9814 DAG.getConstant(N2C->getAPIntValue().logBase2(),
9815 getShiftAmountTy(Temp.getValueType())));
Nate Begemanb0d04a72006-02-18 02:40:58 +00009816 }
Nate Begeman07ed4172005-10-10 21:26:48 +00009817 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009818
Nate Begemanf845b452005-10-08 00:29:44 +00009819 // Check to see if this is the equivalent of setcc
9820 // FIXME: Turn all of these into setcc if setcc if setcc is legal
9821 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00009822 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00009823 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00009824 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00009825 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009826 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00009827 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00009828 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00009829 return Res;
9830 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009831
Bill Wendling836ca7d2009-01-30 23:59:18 +00009832 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00009833 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00009834 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00009835 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009836 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00009837 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00009838 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00009839 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00009840 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009841 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00009842 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00009843 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
9844 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00009845 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00009846 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00009847 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00009848 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009849 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00009850 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00009851 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00009852 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00009853 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00009854 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009855 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00009856 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00009857 }
9858 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009859
Benjamin Kramercde51102010-07-08 12:09:56 +00009860 // Check to see if this is an integer abs.
9861 // select_cc setg[te] X, 0, X, -X ->
9862 // select_cc setgt X, -1, X, -X ->
9863 // select_cc setl[te] X, 0, -X, X ->
9864 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00009865 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00009866 if (N1C) {
9867 ConstantSDNode *SubC = NULL;
9868 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
9869 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
9870 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
9871 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
9872 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
9873 (N1C->isOne() && CC == ISD::SETLT)) &&
9874 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
9875 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
9876
Owen Andersone50ed302009-08-10 22:56:29 +00009877 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00009878 if (SubC && SubC->isNullValue() && XType.isInteger()) {
9879 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
9880 N0,
9881 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00009882 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00009883 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
9884 XType, N0, Shift);
9885 AddToWorkList(Shift.getNode());
9886 AddToWorkList(Add.getNode());
9887 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00009888 }
9889 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009890
Dan Gohman475871a2008-07-27 21:46:04 +00009891 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00009892}
9893
Evan Chengfa1eb272007-02-08 22:13:59 +00009894/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00009895SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00009896 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009897 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00009898 TargetLowering::DAGCombinerInfo
Nadav Rotem444b4bf2012-12-27 06:47:41 +00009899 DagCombineInfo(DAG, Level, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00009900 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00009901}
9902
Nate Begeman69575232005-10-20 02:15:44 +00009903/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
9904/// return a DAG expression to select that will generate the same value by
9905/// multiplying by a magic number. See:
9906/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00009907SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00009908 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00009909 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009910
Andrew Lenharth232c9102006-06-12 16:07:18 +00009911 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009912 ii != ee; ++ii)
9913 AddToWorkList(*ii);
9914 return S;
Nate Begeman69575232005-10-20 02:15:44 +00009915}
9916
9917/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
9918/// return a DAG expression to select that will generate the same value by
9919/// multiplying by a magic number. See:
9920/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00009921SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00009922 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00009923 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00009924
Andrew Lenharth232c9102006-06-12 16:07:18 +00009925 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00009926 ii != ee; ++ii)
9927 AddToWorkList(*ii);
9928 return S;
Nate Begeman69575232005-10-20 02:15:44 +00009929}
9930
Nate Begemancc66cdd2009-09-25 06:05:26 +00009931/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00009932// to alias with anything but itself. Provides base object and offset as
9933// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009934static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Roman Divacky2943e372012-09-05 22:15:49 +00009935 const GlobalValue *&GV, const void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00009936 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009937 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00009938
Jim Laskey71382342006-10-07 23:37:56 +00009939 // If it's an adding a simple constant then integrate the offset.
9940 if (Base.getOpcode() == ISD::ADD) {
9941 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
9942 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00009943 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00009944 }
9945 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009946
Nate Begemancc66cdd2009-09-25 06:05:26 +00009947 // Return the underlying GlobalValue, and update the Offset. Return false
9948 // for GlobalAddressSDNode since the same GlobalAddress may be represented
9949 // by multiple nodes with different offsets.
9950 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
9951 GV = G->getGlobal();
9952 Offset += G->getOffset();
9953 return false;
9954 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009955
Nate Begemancc66cdd2009-09-25 06:05:26 +00009956 // Return the underlying Constant value, and update the Offset. Return false
9957 // for ConstantSDNodes since the same constant pool entry may be represented
9958 // by multiple nodes with different offsets.
9959 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
Roman Divacky2943e372012-09-05 22:15:49 +00009960 CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
9961 : (const void *)C->getConstVal();
Nate Begemancc66cdd2009-09-25 06:05:26 +00009962 Offset += C->getOffset();
9963 return false;
9964 }
Jim Laskey71382342006-10-07 23:37:56 +00009965 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00009966 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00009967}
9968
9969/// isAlias - Return true if there is any possibility that the two addresses
9970/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00009971bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00009972 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009973 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009974 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00009975 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00009976 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00009977 unsigned SrcValueAlign2,
9978 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00009979 // If they are the same then they must be aliases.
9980 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00009981
Jim Laskey71382342006-10-07 23:37:56 +00009982 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00009983 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00009984 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00009985 const GlobalValue *GV1, *GV2;
Roman Divacky2943e372012-09-05 22:15:49 +00009986 const void *CV1, *CV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00009987 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
9988 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009989
Nate Begemancc66cdd2009-09-25 06:05:26 +00009990 // If they have a same base address then check to see if they overlap.
9991 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00009992 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009993
Owen Anderson4a9f1502010-09-20 20:39:59 +00009994 // It is possible for different frame indices to alias each other, mostly
9995 // when tail call optimization reuses return address slots for arguments.
9996 // To catch this case, look up the actual index of frame indices to compute
9997 // the real alias relationship.
9998 if (isFrameIndex1 && isFrameIndex2) {
9999 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10000 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
10001 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
10002 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
10003 }
10004
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010005 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +000010006 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +000010007 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
10008 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +000010009
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010010 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
10011 // compared to the size and offset of the access, we may be able to prove they
10012 // do not alias. This check is conservative for now to catch cases created by
10013 // splitting vector types.
10014 if ((SrcValueAlign1 == SrcValueAlign2) &&
10015 (SrcValueOffset1 != SrcValueOffset2) &&
10016 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
10017 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
10018 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010019
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010020 // There is no overlap between these relatively aligned accesses of similar
10021 // size, return no alias.
10022 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
10023 return false;
10024 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010025
Jim Laskey07a27092006-10-18 19:08:31 +000010026 if (CombinerGlobalAA) {
10027 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +000010028 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
10029 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
10030 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +000010031 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010032 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
10033 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +000010034 if (AAResult == AliasAnalysis::NoAlias)
10035 return false;
10036 }
Jim Laskey096c22e2006-10-18 12:29:57 +000010037
10038 // Otherwise we have to assume they alias.
10039 return true;
Jim Laskey71382342006-10-07 23:37:56 +000010040}
10041
Nadav Rotem90e11dc2012-11-29 00:00:08 +000010042bool DAGCombiner::isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) {
10043 SDValue Ptr0, Ptr1;
10044 int64_t Size0, Size1;
10045 const Value *SrcValue0, *SrcValue1;
10046 int SrcValueOffset0, SrcValueOffset1;
10047 unsigned SrcValueAlign0, SrcValueAlign1;
10048 const MDNode *SrcTBAAInfo0, *SrcTBAAInfo1;
10049 FindAliasInfo(Op0, Ptr0, Size0, SrcValue0, SrcValueOffset0,
10050 SrcValueAlign0, SrcTBAAInfo0);
10051 FindAliasInfo(Op1, Ptr1, Size1, SrcValue1, SrcValueOffset1,
10052 SrcValueAlign1, SrcTBAAInfo1);
10053 return isAlias(Ptr0, Size0, SrcValue0, SrcValueOffset0,
Nadav Rotemdde785c2012-12-06 17:34:13 +000010054 SrcValueAlign0, SrcTBAAInfo0,
10055 Ptr1, Size1, SrcValue1, SrcValueOffset1,
10056 SrcValueAlign1, SrcTBAAInfo1);
Nadav Rotem90e11dc2012-11-29 00:00:08 +000010057}
10058
Jim Laskey71382342006-10-07 23:37:56 +000010059/// FindAliasInfo - Extracts the relevant alias information from the memory
10060/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +000010061bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +000010062 SDValue &Ptr, int64_t &Size,
10063 const Value *&SrcValue,
10064 int &SrcValueOffset,
10065 unsigned &SrcValueAlign,
10066 const MDNode *&TBAAInfo) const {
10067 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
10068
10069 Ptr = LS->getBasePtr();
10070 Size = LS->getMemoryVT().getSizeInBits() >> 3;
10071 SrcValue = LS->getSrcValue();
10072 SrcValueOffset = LS->getSrcValueOffset();
10073 SrcValueAlign = LS->getOriginalAlignment();
10074 TBAAInfo = LS->getTBAAInfo();
10075 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +000010076}
10077
Jim Laskey6ff23e52006-10-04 16:53:27 +000010078/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
10079/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +000010080void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
10081 SmallVector<SDValue, 8> &Aliases) {
10082 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010083 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +000010084
Jim Laskey279f0532006-09-25 16:29:54 +000010085 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +000010086 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010087 int64_t Size;
10088 const Value *SrcValue;
10089 int SrcValueOffset;
10090 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010091 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010092 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010093 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +000010094
Jim Laskey6ff23e52006-10-04 16:53:27 +000010095 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +000010096 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +000010097 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010098
Jim Laskeybc588b82006-10-05 15:07:25 +000010099 // Look at each chain and determine if it is an alias. If so, add it to the
10100 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +000010101 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +000010102 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +000010103 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +000010104 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010105
10106 // For TokenFactor nodes, look at each operand and only continue up the
10107 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +000010108 // find more and revert to original chain since the xform is unlikely to be
10109 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010110 //
10111 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +000010112 // chain we found before we hit a tokenfactor rather than the original
10113 // chain.
10114 if (Depth > 6 || Aliases.size() == 2) {
10115 Aliases.clear();
10116 Aliases.push_back(OriginalChain);
10117 break;
10118 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010119
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010120 // Don't bother if we've been before.
10121 if (!Visited.insert(Chain.getNode()))
10122 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +000010123
Jim Laskeybc588b82006-10-05 15:07:25 +000010124 switch (Chain.getOpcode()) {
10125 case ISD::EntryToken:
10126 // Entry token is ideal chain operand, but handled in FindBetterChain.
10127 break;
Scott Michelfdc40a02009-02-17 22:15:04 +000010128
Jim Laskeybc588b82006-10-05 15:07:25 +000010129 case ISD::LOAD:
10130 case ISD::STORE: {
10131 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +000010132 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010133 int64_t OpSize;
10134 const Value *OpSrcValue;
10135 int OpSrcValueOffset;
10136 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010137 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +000010138 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010139 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010140 OpSrcValueAlign,
10141 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +000010142
Jim Laskeybc588b82006-10-05 15:07:25 +000010143 // If chain is alias then stop here.
10144 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010145 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010146 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010147 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +000010148 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +000010149 Aliases.push_back(Chain);
10150 } else {
10151 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +000010152 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +000010153 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +000010154 }
Jim Laskeybc588b82006-10-05 15:07:25 +000010155 break;
10156 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010157
Jim Laskeybc588b82006-10-05 15:07:25 +000010158 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010159 // We have to check each of the operands of the token factor for "small"
10160 // token factors, so we queue them up. Adding the operands to the queue
10161 // (stack) in reverse order maintains the original order and increases the
10162 // likelihood that getNode will find a matching token factor (CSE.)
10163 if (Chain.getNumOperands() > 16) {
10164 Aliases.push_back(Chain);
10165 break;
10166 }
Jim Laskeybc588b82006-10-05 15:07:25 +000010167 for (unsigned n = Chain.getNumOperands(); n;)
10168 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +000010169 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +000010170 break;
Scott Michelfdc40a02009-02-17 22:15:04 +000010171
Jim Laskeybc588b82006-10-05 15:07:25 +000010172 default:
10173 // For all other instructions we will just have to take what we can get.
10174 Aliases.push_back(Chain);
10175 break;
Jim Laskey279f0532006-09-25 16:29:54 +000010176 }
10177 }
Jim Laskey6ff23e52006-10-04 16:53:27 +000010178}
10179
10180/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
10181/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +000010182SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
10183 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +000010184
Jim Laskey6ff23e52006-10-04 16:53:27 +000010185 // Accumulate all the aliases to this node.
10186 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +000010187
Dan Gohman71dc7c92011-05-17 22:20:36 +000010188 // If no operands then chain to entry token.
10189 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +000010190 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +000010191
10192 // If a single operand then chain to it. We don't need to revisit it.
10193 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +000010194 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010195
Jim Laskey6ff23e52006-10-04 16:53:27 +000010196 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010197 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +000010198 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +000010199}
10200
Nate Begeman1d4d4142005-09-01 00:19:25 +000010201// SelectionDAG::Combine - This is the entry point for the file.
10202//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000010203void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +000010204 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +000010205 /// run - This is the main entry point to this class.
10206 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000010207 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +000010208}