blob: 0914c6627660f3db3dd0b9fe76b92e68ef2d3949 [file] [log] [blame]
Nate Begeman4ebd8052005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman1d4d4142005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman1d4d4142005-09-01 00:19:25 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass combines dag nodes to form fewer, simpler DAG nodes. It can be run
11// both before and after the DAG is legalized.
Scott Michelfdc40a02009-02-17 22:15:04 +000012//
Dan Gohman41287002009-04-25 17:09:45 +000013// This pass is not a substitute for the LLVM IR instcombine pass. This pass is
14// primarily intended to handle simplification opportunities that are implicit
15// in the LLVM IR and exposed by the various codegen lowering phases.
16//
Nate Begeman1d4d4142005-09-01 00:19:25 +000017//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "dagcombine"
Nate Begeman1d4d4142005-09-01 00:19:25 +000020#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner600fec32009-03-11 05:08:08 +000021#include "llvm/DerivedTypes.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000022#include "llvm/LLVMContext.h"
Chris Lattner00161a62008-01-25 07:20:16 +000023#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000025#include "llvm/Analysis/AliasAnalysis.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000026#include "llvm/Target/TargetData.h"
Nate Begeman1d4d4142005-09-01 00:19:25 +000027#include "llvm/Target/TargetLowering.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000028#include "llvm/Target/TargetMachine.h"
Chris Lattnerddae4bd2007-01-08 23:04:05 +000029#include "llvm/Target/TargetOptions.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000030#include "llvm/ADT/SmallPtrSet.h"
31#include "llvm/ADT/Statistic.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000032#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000033#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000034#include "llvm/Support/ErrorHandling.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000035#include "llvm/Support/MathExtras.h"
Chris Lattnerbbbfa992009-08-23 06:35:02 +000036#include "llvm/Support/raw_ostream.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000037#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000038using namespace llvm;
39
Chris Lattnercd3245a2006-12-19 22:41:21 +000040STATISTIC(NodesCombined , "Number of dag nodes combined");
41STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
42STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
Evan Cheng8b944d32009-05-28 00:35:15 +000043STATISTIC(OpsNarrowed , "Number of load/op/store narrowed");
Evan Cheng31959b12011-02-02 01:06:55 +000044STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int");
Chris Lattnercd3245a2006-12-19 22:41:21 +000045
Nate Begeman1d4d4142005-09-01 00:19:25 +000046namespace {
Jim Laskey71382342006-10-07 23:37:56 +000047 static cl::opt<bool>
Owen Anderson0dcc8142010-09-19 21:01:26 +000048 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000049 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000050
Jim Laskey07a27092006-10-18 19:08:31 +000051 static cl::opt<bool>
52 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
53 cl::desc("Include global information in alias analysis"));
54
Jim Laskeybc588b82006-10-05 15:07:25 +000055//------------------------------ DAGCombiner ---------------------------------//
56
Nick Lewycky6726b6d2009-10-25 06:33:48 +000057 class DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000058 SelectionDAG &DAG;
Dan Gohman79ce2762009-01-15 19:20:50 +000059 const TargetLowering &TLI;
Duncan Sands25cf2272008-11-24 14:53:14 +000060 CombineLevel Level;
Bill Wendling98a366d2009-04-29 23:29:43 +000061 CodeGenOpt::Level OptLevel;
Duncan Sands25cf2272008-11-24 14:53:14 +000062 bool LegalOperations;
63 bool LegalTypes;
Nate Begeman1d4d4142005-09-01 00:19:25 +000064
65 // Worklist of all of the nodes that need to be simplified.
James Molloy6660c052012-02-16 09:17:04 +000066 //
67 // This has the semantics that when adding to the worklist,
68 // the item added must be next to be processed. It should
69 // also only appear once. The naive approach to this takes
70 // linear time.
71 //
72 // To reduce the insert/remove time to logarithmic, we use
73 // a set and a vector to maintain our worklist.
74 //
75 // The set contains the items on the worklist, but does not
76 // maintain the order they should be visited.
77 //
78 // The vector maintains the order nodes should be visited, but may
79 // contain duplicate or removed nodes. When choosing a node to
80 // visit, we pop off the order stack until we find an item that is
81 // also in the contents set. All operations are O(log N).
82 SmallPtrSet<SDNode*, 64> WorkListContents;
Benjamin Kramerd5f76902012-03-10 00:23:58 +000083 SmallVector<SDNode*, 64> WorkListOrder;
Nate Begeman1d4d4142005-09-01 00:19:25 +000084
Jim Laskeyc7c3f112006-10-16 20:52:31 +000085 // AA - Used for DAG load/store alias analysis.
86 AliasAnalysis &AA;
87
Nate Begeman1d4d4142005-09-01 00:19:25 +000088 /// AddUsersToWorkList - When an instruction is simplified, add all users of
89 /// the instruction to the work lists because they might get more simplified
90 /// now.
91 ///
92 void AddUsersToWorkList(SDNode *N) {
93 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000094 UI != UE; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +000095 AddToWorkList(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000096 }
97
Dan Gohman389079b2007-10-08 17:57:15 +000098 /// visit - call the node-specific routine that knows how to fold each
99 /// particular type of node.
Dan Gohman475871a2008-07-27 21:46:04 +0000100 SDValue visit(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000101
Chris Lattner24664722006-03-01 04:53:38 +0000102 public:
James Molloy6afa3f72012-02-16 09:48:07 +0000103 /// AddToWorkList - Add to the work list making sure its instance is at the
James Molloy6660c052012-02-16 09:17:04 +0000104 /// back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +0000105 void AddToWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000106 WorkListContents.insert(N);
107 WorkListOrder.push_back(N);
Chris Lattner5750df92006-03-01 04:03:14 +0000108 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000109
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000110 /// removeFromWorkList - remove all instances of N from the worklist.
111 ///
112 void removeFromWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000113 WorkListContents.erase(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000114 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000115
Dan Gohman475871a2008-07-27 21:46:04 +0000116 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000117 bool AddTo = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000118
Dan Gohman475871a2008-07-27 21:46:04 +0000119 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) {
Jim Laskey274062c2006-10-13 23:32:28 +0000120 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000121 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000122
Dan Gohman475871a2008-07-27 21:46:04 +0000123 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000124 bool AddTo = true) {
Dan Gohman475871a2008-07-27 21:46:04 +0000125 SDValue To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000126 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000127 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000128
129 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
Scott Michelfdc40a02009-02-17 22:15:04 +0000130
131 private:
132
Chris Lattner012f2412006-02-17 21:58:01 +0000133 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000134 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000135 /// propagation. If so, return true.
Dan Gohman475871a2008-07-27 21:46:04 +0000136 bool SimplifyDemandedBits(SDValue Op) {
Dan Gohman87862e72009-12-11 21:31:27 +0000137 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
138 APInt Demanded = APInt::getAllOnesValue(BitWidth);
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000139 return SimplifyDemandedBits(Op, Demanded);
140 }
141
Dan Gohman475871a2008-07-27 21:46:04 +0000142 bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded);
Chris Lattner87514ca2005-10-10 22:31:19 +0000143
Chris Lattner448f2192006-11-11 00:39:41 +0000144 bool CombineToPreIndexedLoadStore(SDNode *N);
145 bool CombineToPostIndexedLoadStore(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000146
Evan Cheng95c57ea2010-04-24 04:43:44 +0000147 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad);
148 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
149 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
150 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000151 SDValue PromoteIntBinOp(SDValue Op);
Evan Cheng07c4e102010-04-22 20:19:46 +0000152 SDValue PromoteIntShiftOp(SDValue Op);
Evan Cheng4c26e932010-04-19 19:29:22 +0000153 SDValue PromoteExtend(SDValue Op);
154 bool PromoteLoad(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000155
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +0000156 void ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
157 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
158 ISD::NodeType ExtType);
159
Dan Gohman389079b2007-10-08 17:57:15 +0000160 /// combine - call the node-specific routine that knows how to fold each
161 /// particular type of node. If that doesn't do anything, try the
162 /// target-specific DAG combines.
Dan Gohman475871a2008-07-27 21:46:04 +0000163 SDValue combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000164
165 // Visitation implementation - Implement dag node combining for different
166 // node types. The semantics are as follows:
167 // Return Value:
Evan Cheng17a568b2008-08-29 22:21:44 +0000168 // SDValue.getNode() == 0 - No change was made
169 // SDValue.getNode() == N - N was replaced, is dead and has been handled.
170 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000171 //
Dan Gohman475871a2008-07-27 21:46:04 +0000172 SDValue visitTokenFactor(SDNode *N);
173 SDValue visitMERGE_VALUES(SDNode *N);
174 SDValue visitADD(SDNode *N);
175 SDValue visitSUB(SDNode *N);
176 SDValue visitADDC(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000177 SDValue visitSUBC(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000178 SDValue visitADDE(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000179 SDValue visitSUBE(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000180 SDValue visitMUL(SDNode *N);
181 SDValue visitSDIV(SDNode *N);
182 SDValue visitUDIV(SDNode *N);
183 SDValue visitSREM(SDNode *N);
184 SDValue visitUREM(SDNode *N);
185 SDValue visitMULHU(SDNode *N);
186 SDValue visitMULHS(SDNode *N);
187 SDValue visitSMUL_LOHI(SDNode *N);
188 SDValue visitUMUL_LOHI(SDNode *N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +0000189 SDValue visitSMULO(SDNode *N);
190 SDValue visitUMULO(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000191 SDValue visitSDIVREM(SDNode *N);
192 SDValue visitUDIVREM(SDNode *N);
193 SDValue visitAND(SDNode *N);
194 SDValue visitOR(SDNode *N);
195 SDValue visitXOR(SDNode *N);
196 SDValue SimplifyVBinOp(SDNode *N);
197 SDValue visitSHL(SDNode *N);
198 SDValue visitSRA(SDNode *N);
199 SDValue visitSRL(SDNode *N);
200 SDValue visitCTLZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000201 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000202 SDValue visitCTTZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000203 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000204 SDValue visitCTPOP(SDNode *N);
205 SDValue visitSELECT(SDNode *N);
206 SDValue visitSELECT_CC(SDNode *N);
207 SDValue visitSETCC(SDNode *N);
208 SDValue visitSIGN_EXTEND(SDNode *N);
209 SDValue visitZERO_EXTEND(SDNode *N);
210 SDValue visitANY_EXTEND(SDNode *N);
211 SDValue visitSIGN_EXTEND_INREG(SDNode *N);
212 SDValue visitTRUNCATE(SDNode *N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000213 SDValue visitBITCAST(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000214 SDValue visitBUILD_PAIR(SDNode *N);
215 SDValue visitFADD(SDNode *N);
216 SDValue visitFSUB(SDNode *N);
217 SDValue visitFMUL(SDNode *N);
218 SDValue visitFDIV(SDNode *N);
219 SDValue visitFREM(SDNode *N);
220 SDValue visitFCOPYSIGN(SDNode *N);
221 SDValue visitSINT_TO_FP(SDNode *N);
222 SDValue visitUINT_TO_FP(SDNode *N);
223 SDValue visitFP_TO_SINT(SDNode *N);
224 SDValue visitFP_TO_UINT(SDNode *N);
225 SDValue visitFP_ROUND(SDNode *N);
226 SDValue visitFP_ROUND_INREG(SDNode *N);
227 SDValue visitFP_EXTEND(SDNode *N);
228 SDValue visitFNEG(SDNode *N);
229 SDValue visitFABS(SDNode *N);
230 SDValue visitBRCOND(SDNode *N);
231 SDValue visitBR_CC(SDNode *N);
232 SDValue visitLOAD(SDNode *N);
233 SDValue visitSTORE(SDNode *N);
234 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
235 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
236 SDValue visitBUILD_VECTOR(SDNode *N);
237 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +0000238 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000239 SDValue visitVECTOR_SHUFFLE(SDNode *N);
Jim Grosbach9a526492010-06-23 16:07:42 +0000240 SDValue visitMEMBARRIER(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000241
Dan Gohman475871a2008-07-27 21:46:04 +0000242 SDValue XformToShuffleWithZero(SDNode *N);
Bill Wendling35247c32009-01-30 00:45:56 +0000243 SDValue ReassociateOps(unsigned Opc, DebugLoc DL, SDValue LHS, SDValue RHS);
Scott Michelfdc40a02009-02-17 22:15:04 +0000244
Dan Gohman475871a2008-07-27 21:46:04 +0000245 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
Chris Lattnere70da202007-12-06 07:33:36 +0000246
Dan Gohman475871a2008-07-27 21:46:04 +0000247 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
248 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Bill Wendling836ca7d2009-01-30 23:59:18 +0000249 SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
Scott Michelfdc40a02009-02-17 22:15:04 +0000250 SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
251 SDValue N3, ISD::CondCode CC,
Bill Wendling836ca7d2009-01-30 23:59:18 +0000252 bool NotExtCompare = false);
Owen Andersone50ed302009-08-10 22:56:29 +0000253 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +0000254 DebugLoc DL, bool foldBooleans = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000255 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Chris Lattner5eee4272008-01-26 01:09:19 +0000256 unsigned HiOp);
Owen Andersone50ed302009-08-10 22:56:29 +0000257 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000258 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
Dan Gohman475871a2008-07-27 21:46:04 +0000259 SDValue BuildSDIV(SDNode *N);
260 SDValue BuildUDIV(SDNode *N);
Evan Cheng9568e5c2011-06-21 06:01:08 +0000261 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
262 bool DemandHighBits = true);
263 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
Bill Wendling317bd702009-01-30 21:14:50 +0000264 SDNode *MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL);
Dan Gohman475871a2008-07-27 21:46:04 +0000265 SDValue ReduceLoadWidth(SDNode *N);
Evan Cheng8b944d32009-05-28 00:35:15 +0000266 SDValue ReduceLoadOpStoreWidth(SDNode *N);
Evan Cheng31959b12011-02-02 01:06:55 +0000267 SDValue TransformFPLoadStorePair(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000268
Dan Gohman475871a2008-07-27 21:46:04 +0000269 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000270
Jim Laskey6ff23e52006-10-04 16:53:27 +0000271 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
272 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000273 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
274 SmallVector<SDValue, 8> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000275
Jim Laskey096c22e2006-10-18 12:29:57 +0000276 /// isAlias - Return true if there is any possibility that the two addresses
277 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000278 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000279 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000280 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000281 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000282 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000283 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000284 unsigned SrcValueAlign2,
285 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000286
Jim Laskey7ca56af2006-10-11 13:47:09 +0000287 /// FindAliasInfo - Extracts the relevant alias information from the memory
288 /// node. Returns true if the operand was a load.
289 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000290 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000291 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000292 unsigned &SrcValueAlignment,
293 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000294
Jim Laskey279f0532006-09-25 16:29:54 +0000295 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000296 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000297 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000298
Chris Lattner2392ae72010-04-15 04:48:01 +0000299 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000300 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000301 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000302 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000303
Nate Begeman1d4d4142005-09-01 00:19:25 +0000304 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000305 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000306
Chris Lattner2392ae72010-04-15 04:48:01 +0000307 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000308
Chris Lattner2392ae72010-04-15 04:48:01 +0000309 /// getShiftAmountTy - Returns a type large enough to hold any valid
310 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000311 EVT getShiftAmountTy(EVT LHSTy) {
312 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000313 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000314
Chris Lattner2392ae72010-04-15 04:48:01 +0000315 /// isTypeLegal - This method returns true if we are running before type
316 /// legalization or if the specified VT is legal.
317 bool isTypeLegal(const EVT &VT) {
318 if (!LegalTypes) return true;
319 return TLI.isTypeLegal(VT);
320 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000321 };
322}
323
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000324
325namespace {
326/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
327/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000328class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000329 DAGCombiner &DC;
330public:
Dan Gohmanb5660dc2008-02-20 16:44:09 +0000331 explicit WorkListRemover(DAGCombiner &dc) : DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000332
Duncan Sandsedfcf592008-06-11 11:42:12 +0000333 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000334 DC.removeFromWorkList(N);
335 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000336
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000337 virtual void NodeUpdated(SDNode *N) {
338 // Ignore updates.
339 }
340};
341}
342
Chris Lattner24664722006-03-01 04:53:38 +0000343//===----------------------------------------------------------------------===//
344// TargetLowering::DAGCombinerInfo implementation
345//===----------------------------------------------------------------------===//
346
347void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
348 ((DAGCombiner*)DC)->AddToWorkList(N);
349}
350
Cameron Zwariched3caf92011-04-02 02:40:26 +0000351void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
352 ((DAGCombiner*)DC)->removeFromWorkList(N);
353}
354
Dan Gohman475871a2008-07-27 21:46:04 +0000355SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000356CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
357 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000358}
359
Dan Gohman475871a2008-07-27 21:46:04 +0000360SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000361CombineTo(SDNode *N, SDValue Res, bool AddTo) {
362 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000363}
364
365
Dan Gohman475871a2008-07-27 21:46:04 +0000366SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000367CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
368 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000369}
370
Dan Gohmane5af2d32009-01-29 01:59:02 +0000371void TargetLowering::DAGCombinerInfo::
372CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
373 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
374}
Chris Lattner24664722006-03-01 04:53:38 +0000375
Chris Lattner24664722006-03-01 04:53:38 +0000376//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000377// Helper Functions
378//===----------------------------------------------------------------------===//
379
380/// isNegatibleForFree - Return 1 if we can compute the negated form of the
381/// specified expression for the same cost as the expression itself, or 2 if we
382/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000383static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000384 const TargetLowering &TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000385 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000386 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000387 // No compile time optimizations on this type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000388 if (Op.getValueType() == MVT::ppcf128)
Dale Johannesendb44bf82007-10-16 23:38:29 +0000389 return 0;
390
Chris Lattner29446522007-05-14 22:04:50 +0000391 // fneg is removable even if it has multiple uses.
392 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000393
Chris Lattner29446522007-05-14 22:04:50 +0000394 // Don't allow anything with multiple uses.
395 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000396
Chris Lattner3adf9512007-05-25 02:19:06 +0000397 // Don't recurse exponentially.
398 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000399
Chris Lattner29446522007-05-14 22:04:50 +0000400 switch (Op.getOpcode()) {
401 default: return false;
402 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000403 // Don't invert constant FP values after legalize. The negated constant
404 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000405 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000406 case ISD::FADD:
407 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000408 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000409
Owen Andersonafd3d562012-03-06 00:29:31 +0000410 // After operation legalization, it might not be legal to create new FSUBs.
411 if (LegalOperations &&
412 !TLI.isOperationLegalOrCustom(ISD::FSUB, Op.getValueType()))
413 return 0;
414
Bill Wendlingd34470c2009-01-30 23:10:18 +0000415 // fold (fsub (fadd A, B)) -> (fsub (fneg A), B)
Owen Andersonafd3d562012-03-06 00:29:31 +0000416 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
417 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000418 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000419 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Owen Andersonafd3d562012-03-06 00:29:31 +0000420 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000421 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000422 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000423 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000424 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000425
Bill Wendlingd34470c2009-01-30 23:10:18 +0000426 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000427 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000428
Chris Lattner29446522007-05-14 22:04:50 +0000429 case ISD::FMUL:
430 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000431 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000432
Bill Wendlingd34470c2009-01-30 23:10:18 +0000433 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Owen Andersonafd3d562012-03-06 00:29:31 +0000434 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
435 Options, Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000436 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000437
Owen Andersonafd3d562012-03-06 00:29:31 +0000438 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000439 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000440
Chris Lattner29446522007-05-14 22:04:50 +0000441 case ISD::FP_EXTEND:
442 case ISD::FP_ROUND:
443 case ISD::FSIN:
Owen Andersonafd3d562012-03-06 00:29:31 +0000444 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000445 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000446 }
447}
448
449/// GetNegatedExpression - If isNegatibleForFree returns true, this function
450/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000451static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000452 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000453 // fneg is removable even if it has multiple uses.
454 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000455
Chris Lattner29446522007-05-14 22:04:50 +0000456 // Don't allow anything with multiple uses.
457 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000458
Chris Lattner3adf9512007-05-25 02:19:06 +0000459 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000460 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000461 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000462 case ISD::ConstantFP: {
463 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
464 V.changeSign();
465 return DAG.getConstantFP(V, Op.getValueType());
466 }
Chris Lattner29446522007-05-14 22:04:50 +0000467 case ISD::FADD:
468 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000469 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000470
Bill Wendlingd34470c2009-01-30 23:10:18 +0000471 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000472 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000473 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000474 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000475 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000476 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000477 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000478 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000479 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000480 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000481 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000482 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000483 Op.getOperand(0));
484 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000485 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000486 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000487
Bill Wendlingd34470c2009-01-30 23:10:18 +0000488 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000489 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000490 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000491 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000492
Bill Wendlingd34470c2009-01-30 23:10:18 +0000493 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000494 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
495 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000496
Chris Lattner29446522007-05-14 22:04:50 +0000497 case ISD::FMUL:
498 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000499 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000500
Bill Wendlingd34470c2009-01-30 23:10:18 +0000501 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000502 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
Owen Andersonafd3d562012-03-06 00:29:31 +0000503 DAG.getTargetLoweringInfo(),
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000504 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000505 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000506 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000507 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000508 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000509
Bill Wendlingd34470c2009-01-30 23:10:18 +0000510 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000511 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000512 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000513 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000514 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000515
Chris Lattner29446522007-05-14 22:04:50 +0000516 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000517 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000518 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000519 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000520 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000521 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000522 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000523 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000524 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000525 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000526 }
527}
Chris Lattner24664722006-03-01 04:53:38 +0000528
529
Nate Begeman4ebd8052005-09-01 23:24:04 +0000530// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
531// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000532// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000533// nodes based on the type of node we are checking. This simplifies life a
534// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000535static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
536 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000537 if (N.getOpcode() == ISD::SETCC) {
538 LHS = N.getOperand(0);
539 RHS = N.getOperand(1);
540 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000541 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000542 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000543 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000544 N.getOperand(2).getOpcode() == ISD::Constant &&
545 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000546 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000547 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
548 LHS = N.getOperand(0);
549 RHS = N.getOperand(1);
550 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000551 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000552 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000553 return false;
554}
555
Nate Begeman99801192005-09-07 23:25:52 +0000556// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
557// one use. If this is true, it allows the users to invert the operation for
558// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000559static bool isOneUseSetCC(SDValue N) {
560 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000561 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000562 return true;
563 return false;
564}
565
Bill Wendling35247c32009-01-30 00:45:56 +0000566SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
567 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000568 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000569 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
570 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000571 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000572 SDValue OpNode =
573 DAG.FoldConstantArithmetic(Opc, VT,
574 cast<ConstantSDNode>(N0.getOperand(1)),
575 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000576 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000577 }
578 if (N0.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000579 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
580 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
581 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000582 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000583 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000584 }
585 }
Bill Wendling35247c32009-01-30 00:45:56 +0000586
Nate Begemancd4d58c2006-02-03 06:46:56 +0000587 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
588 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000589 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000590 SDValue OpNode =
591 DAG.FoldConstantArithmetic(Opc, VT,
592 cast<ConstantSDNode>(N1.getOperand(1)),
593 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000594 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000595 }
596 if (N1.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000597 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000598 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000599 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000600 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000601 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000602 }
603 }
Bill Wendling35247c32009-01-30 00:45:56 +0000604
Dan Gohman475871a2008-07-27 21:46:04 +0000605 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000606}
607
Dan Gohman475871a2008-07-27 21:46:04 +0000608SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
609 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000610 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
611 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000612 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000613 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000614 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000615 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000616 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000617 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000618 assert((!To[i].getNode() ||
619 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000620 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000621 WorkListRemover DeadNodes(*this);
622 DAG.ReplaceAllUsesWith(N, To, &DeadNodes);
Scott Michelfdc40a02009-02-17 22:15:04 +0000623
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000624 if (AddTo) {
625 // Push the new nodes and any users onto the worklist
626 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000627 if (To[i].getNode()) {
628 AddToWorkList(To[i].getNode());
629 AddUsersToWorkList(To[i].getNode());
630 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000631 }
632 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000633
Dan Gohmandbe664a2009-01-19 21:44:21 +0000634 // Finally, if the node is now dead, remove it from the graph. The node
635 // may not be dead if the replacement process recursively simplified to
636 // something else needing this node.
637 if (N->use_empty()) {
638 // Nodes can be reintroduced into the worklist. Make sure we do not
639 // process a node that has been replaced.
640 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000641
Dan Gohmandbe664a2009-01-19 21:44:21 +0000642 // Finally, since the node is now dead, remove it from the graph.
643 DAG.DeleteNode(N);
644 }
Dan Gohman475871a2008-07-27 21:46:04 +0000645 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000646}
647
Evan Chenge5b51ac2010-04-17 06:13:15 +0000648void DAGCombiner::
649CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000650 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000651 // are deleted, make sure to remove them from our worklist.
652 WorkListRemover DeadNodes(*this);
653 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &DeadNodes);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000654
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000655 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000656 AddToWorkList(TLO.New.getNode());
657 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000658
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000659 // Finally, if the node is now dead, remove it from the graph. The node
660 // may not be dead if the replacement process recursively simplified to
661 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000662 if (TLO.Old.getNode()->use_empty()) {
663 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000664
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000665 // If the operands of this node are only used by the node, they will now
666 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000667 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
668 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
669 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000670
Gabor Greifba36cb52008-08-28 21:40:38 +0000671 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000672 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000673}
674
675/// SimplifyDemandedBits - Check the specified integer node value to see if
676/// it can be simplified or if things it uses can be simplified by bit
677/// propagation. If so, return true.
678bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000679 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000680 APInt KnownZero, KnownOne;
681 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
682 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000683
Dan Gohmane5af2d32009-01-29 01:59:02 +0000684 // Revisit the node.
685 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000686
Dan Gohmane5af2d32009-01-29 01:59:02 +0000687 // Replace the old value with the new one.
688 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000689 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000690 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000691 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000692 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000693 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000694
Dan Gohmane5af2d32009-01-29 01:59:02 +0000695 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000696 return true;
697}
698
Evan Cheng95c57ea2010-04-24 04:43:44 +0000699void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
700 DebugLoc dl = Load->getDebugLoc();
701 EVT VT = Load->getValueType(0);
702 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000703
Evan Cheng95c57ea2010-04-24 04:43:44 +0000704 DEBUG(dbgs() << "\nReplacing.9 ";
705 Load->dump(&DAG);
706 dbgs() << "\nWith: ";
707 Trunc.getNode()->dump(&DAG);
708 dbgs() << '\n');
709 WorkListRemover DeadNodes(*this);
710 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc, &DeadNodes);
711 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1),
712 &DeadNodes);
713 removeFromWorkList(Load);
714 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000715 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000716}
717
718SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
719 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000720 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000721 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000722 EVT MemVT = LD->getMemoryVT();
723 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000724 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000725 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000726 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000727 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000728 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000729 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000730 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000731 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000732 LD->isNonTemporal(), LD->getAlignment());
733 }
734
Evan Cheng4c26e932010-04-19 19:29:22 +0000735 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000736 switch (Opc) {
737 default: break;
738 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000739 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000740 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000741 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000742 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000743 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000744 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000745 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000746 case ISD::Constant: {
747 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000748 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000749 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000750 }
Evan Chengcaf77402010-04-23 19:10:30 +0000751 }
752
753 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000754 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000755 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000756}
757
Evan Cheng95c57ea2010-04-24 04:43:44 +0000758SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000759 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
760 return SDValue();
761 EVT OldVT = Op.getValueType();
762 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000763 bool Replace = false;
764 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
765 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000766 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000767 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000768
769 if (Replace)
770 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
771 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000772 DAG.getValueType(OldVT));
773}
774
Evan Cheng95c57ea2010-04-24 04:43:44 +0000775SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000776 EVT OldVT = Op.getValueType();
777 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000778 bool Replace = false;
779 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
780 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000781 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000782 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000783
784 if (Replace)
785 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
786 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000787}
788
Evan Cheng64b7bf72010-04-16 06:14:10 +0000789/// PromoteIntBinOp - Promote the specified integer binary operation if the
790/// target indicates it is beneficial. e.g. On x86, it's usually better to
791/// promote i16 operations to i32 since i16 instructions are longer.
792SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
793 if (!LegalOperations)
794 return SDValue();
795
796 EVT VT = Op.getValueType();
797 if (VT.isVector() || !VT.isInteger())
798 return SDValue();
799
Evan Chenge5b51ac2010-04-17 06:13:15 +0000800 // If operation type is 'undesirable', e.g. i16 on x86, consider
801 // promoting it.
802 unsigned Opc = Op.getOpcode();
803 if (TLI.isTypeDesirableForOp(Opc, VT))
804 return SDValue();
805
Evan Cheng64b7bf72010-04-16 06:14:10 +0000806 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000807 // Consult target whether it is a good idea to promote this operation and
808 // what's the right type to promote it to.
809 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000810 assert(PVT != VT && "Don't know what type to promote to!");
811
Evan Cheng95c57ea2010-04-24 04:43:44 +0000812 bool Replace0 = false;
813 SDValue N0 = Op.getOperand(0);
814 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
815 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000816 return SDValue();
817
Evan Cheng95c57ea2010-04-24 04:43:44 +0000818 bool Replace1 = false;
819 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000820 SDValue NN1;
821 if (N0 == N1)
822 NN1 = NN0;
823 else {
824 NN1 = PromoteOperand(N1, PVT, Replace1);
825 if (NN1.getNode() == 0)
826 return SDValue();
827 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000828
Evan Cheng95c57ea2010-04-24 04:43:44 +0000829 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000830 if (NN1.getNode())
831 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000832
833 if (Replace0)
834 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
835 if (Replace1)
836 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000837
Evan Chengac7eae52010-04-27 19:48:13 +0000838 DEBUG(dbgs() << "\nPromoting ";
839 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000840 DebugLoc dl = Op.getDebugLoc();
841 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000842 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000843 }
844 return SDValue();
845}
846
847/// PromoteIntShiftOp - Promote the specified integer shift operation if the
848/// target indicates it is beneficial. e.g. On x86, it's usually better to
849/// promote i16 operations to i32 since i16 instructions are longer.
850SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
851 if (!LegalOperations)
852 return SDValue();
853
854 EVT VT = Op.getValueType();
855 if (VT.isVector() || !VT.isInteger())
856 return SDValue();
857
858 // If operation type is 'undesirable', e.g. i16 on x86, consider
859 // promoting it.
860 unsigned Opc = Op.getOpcode();
861 if (TLI.isTypeDesirableForOp(Opc, VT))
862 return SDValue();
863
864 EVT PVT = VT;
865 // Consult target whether it is a good idea to promote this operation and
866 // what's the right type to promote it to.
867 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
868 assert(PVT != VT && "Don't know what type to promote to!");
869
Evan Cheng95c57ea2010-04-24 04:43:44 +0000870 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000871 SDValue N0 = Op.getOperand(0);
872 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000873 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000874 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000875 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000876 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000877 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000878 if (N0.getNode() == 0)
879 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000880
Evan Chenge5b51ac2010-04-17 06:13:15 +0000881 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000882 if (Replace)
883 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000884
Evan Chengac7eae52010-04-27 19:48:13 +0000885 DEBUG(dbgs() << "\nPromoting ";
886 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000887 DebugLoc dl = Op.getDebugLoc();
888 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000889 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000890 }
891 return SDValue();
892}
893
Evan Cheng4c26e932010-04-19 19:29:22 +0000894SDValue DAGCombiner::PromoteExtend(SDValue Op) {
895 if (!LegalOperations)
896 return SDValue();
897
898 EVT VT = Op.getValueType();
899 if (VT.isVector() || !VT.isInteger())
900 return SDValue();
901
902 // If operation type is 'undesirable', e.g. i16 on x86, consider
903 // promoting it.
904 unsigned Opc = Op.getOpcode();
905 if (TLI.isTypeDesirableForOp(Opc, VT))
906 return SDValue();
907
908 EVT PVT = VT;
909 // Consult target whether it is a good idea to promote this operation and
910 // what's the right type to promote it to.
911 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
912 assert(PVT != VT && "Don't know what type to promote to!");
913 // fold (aext (aext x)) -> (aext x)
914 // fold (aext (zext x)) -> (zext x)
915 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000916 DEBUG(dbgs() << "\nPromoting ";
917 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000918 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
919 }
920 return SDValue();
921}
922
923bool DAGCombiner::PromoteLoad(SDValue Op) {
924 if (!LegalOperations)
925 return false;
926
927 EVT VT = Op.getValueType();
928 if (VT.isVector() || !VT.isInteger())
929 return false;
930
931 // If operation type is 'undesirable', e.g. i16 on x86, consider
932 // promoting it.
933 unsigned Opc = Op.getOpcode();
934 if (TLI.isTypeDesirableForOp(Opc, VT))
935 return false;
936
937 EVT PVT = VT;
938 // Consult target whether it is a good idea to promote this operation and
939 // what's the right type to promote it to.
940 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
941 assert(PVT != VT && "Don't know what type to promote to!");
942
943 DebugLoc dl = Op.getDebugLoc();
944 SDNode *N = Op.getNode();
945 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000946 EVT MemVT = LD->getMemoryVT();
947 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000948 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000949 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000950 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000951 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000952 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000953 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000954 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000955 LD->isNonTemporal(), LD->getAlignment());
956 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
957
Evan Cheng95c57ea2010-04-24 04:43:44 +0000958 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000959 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000960 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000961 Result.getNode()->dump(&DAG);
962 dbgs() << '\n');
963 WorkListRemover DeadNodes(*this);
964 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result, &DeadNodes);
965 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1), &DeadNodes);
966 removeFromWorkList(N);
967 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000968 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000969 return true;
970 }
971 return false;
972}
973
Evan Chenge5b51ac2010-04-17 06:13:15 +0000974
Chris Lattner29446522007-05-14 22:04:50 +0000975//===----------------------------------------------------------------------===//
976// Main DAG Combiner implementation
977//===----------------------------------------------------------------------===//
978
Duncan Sands25cf2272008-11-24 14:53:14 +0000979void DAGCombiner::Run(CombineLevel AtLevel) {
980 // set the instance variables, so that the various visit routines may use it.
981 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000982 LegalOperations = Level >= AfterLegalizeVectorOps;
983 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000984
Evan Cheng17a568b2008-08-29 22:21:44 +0000985 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000986 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
987 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000988 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000989
Evan Cheng17a568b2008-08-29 22:21:44 +0000990 // Create a dummy node (which is not added to allnodes), that adds a reference
991 // to the root node, preventing it from being deleted, and tracking any
992 // changes of the root.
993 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +0000994
Jim Laskey26f7fa72006-10-17 19:33:52 +0000995 // The root of the dag may dangle to deleted nodes until the dag combiner is
996 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +0000997 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +0000998
James Molloy6660c052012-02-16 09:17:04 +0000999 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +00001000 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +00001001 while (!WorkListContents.empty()) {
1002 SDNode *N;
1003 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1004 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1005 // worklist *should* contain, and check the node we want to visit is should
1006 // actually be visited.
1007 do {
Benjamin Kramerd5f76902012-03-10 00:23:58 +00001008 N = WorkListOrder.pop_back_val();
James Molloy6660c052012-02-16 09:17:04 +00001009 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001010
Evan Cheng17a568b2008-08-29 22:21:44 +00001011 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1012 // N is deleted from the DAG, since they too may now be dead or may have a
1013 // reduced number of uses, allowing other xforms.
1014 if (N->use_empty() && N != &Dummy) {
1015 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1016 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001017
Evan Cheng17a568b2008-08-29 22:21:44 +00001018 DAG.DeleteNode(N);
1019 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001020 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001021
Evan Cheng17a568b2008-08-29 22:21:44 +00001022 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001023
Evan Cheng17a568b2008-08-29 22:21:44 +00001024 if (RV.getNode() == 0)
1025 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001026
Evan Cheng17a568b2008-08-29 22:21:44 +00001027 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
Evan Cheng17a568b2008-08-29 22:21:44 +00001029 // If we get back the same node we passed in, rather than a new node or
1030 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001031 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001032 // mechanics for us, we have no work to do in this case.
1033 if (RV.getNode() == N)
1034 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001035
Evan Cheng17a568b2008-08-29 22:21:44 +00001036 assert(N->getOpcode() != ISD::DELETED_NODE &&
1037 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1038 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001039
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001040 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001041 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001042 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001043 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001044 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001045
Devang Patel9728ea22011-05-23 22:04:42 +00001046 // Transfer debug value.
1047 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001048 WorkListRemover DeadNodes(*this);
1049 if (N->getNumValues() == RV.getNode()->getNumValues())
1050 DAG.ReplaceAllUsesWith(N, RV.getNode(), &DeadNodes);
1051 else {
1052 assert(N->getValueType(0) == RV.getValueType() &&
1053 N->getNumValues() == 1 && "Type mismatch");
1054 SDValue OpV = RV;
1055 DAG.ReplaceAllUsesWith(N, &OpV, &DeadNodes);
1056 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001057
Evan Cheng17a568b2008-08-29 22:21:44 +00001058 // Push the new node and any users onto the worklist
1059 AddToWorkList(RV.getNode());
1060 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001061
Evan Cheng17a568b2008-08-29 22:21:44 +00001062 // Add any uses of the old node to the worklist in case this node is the
1063 // last one that uses them. They may become dead after this node is
1064 // deleted.
1065 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1066 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001067
Dan Gohmandbe664a2009-01-19 21:44:21 +00001068 // Finally, if the node is now dead, remove it from the graph. The node
1069 // may not be dead if the replacement process recursively simplified to
1070 // something else needing this node.
1071 if (N->use_empty()) {
1072 // Nodes can be reintroduced into the worklist. Make sure we do not
1073 // process a node that has been replaced.
1074 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001075
Dan Gohmandbe664a2009-01-19 21:44:21 +00001076 // Finally, since the node is now dead, remove it from the graph.
1077 DAG.DeleteNode(N);
1078 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001079 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001080
Chris Lattner95038592005-10-05 06:35:28 +00001081 // If the root changed (e.g. it was a dead load, update the root).
1082 DAG.setRoot(Dummy.getValue());
Hal Finkel31490ba2012-04-16 03:33:22 +00001083 DAG.RemoveDeadNodes();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001084}
1085
Dan Gohman475871a2008-07-27 21:46:04 +00001086SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001087 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001088 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001089 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001090 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001091 case ISD::ADD: return visitADD(N);
1092 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001093 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001094 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001095 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001096 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001097 case ISD::MUL: return visitMUL(N);
1098 case ISD::SDIV: return visitSDIV(N);
1099 case ISD::UDIV: return visitUDIV(N);
1100 case ISD::SREM: return visitSREM(N);
1101 case ISD::UREM: return visitUREM(N);
1102 case ISD::MULHU: return visitMULHU(N);
1103 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001104 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1105 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001106 case ISD::SMULO: return visitSMULO(N);
1107 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001108 case ISD::SDIVREM: return visitSDIVREM(N);
1109 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001110 case ISD::AND: return visitAND(N);
1111 case ISD::OR: return visitOR(N);
1112 case ISD::XOR: return visitXOR(N);
1113 case ISD::SHL: return visitSHL(N);
1114 case ISD::SRA: return visitSRA(N);
1115 case ISD::SRL: return visitSRL(N);
1116 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001117 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001118 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001119 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001120 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001121 case ISD::SELECT: return visitSELECT(N);
1122 case ISD::SELECT_CC: return visitSELECT_CC(N);
1123 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001124 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1125 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001126 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001127 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1128 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001129 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001130 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001131 case ISD::FADD: return visitFADD(N);
1132 case ISD::FSUB: return visitFSUB(N);
1133 case ISD::FMUL: return visitFMUL(N);
1134 case ISD::FDIV: return visitFDIV(N);
1135 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001136 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001137 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1138 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1139 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1140 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1141 case ISD::FP_ROUND: return visitFP_ROUND(N);
1142 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1143 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1144 case ISD::FNEG: return visitFNEG(N);
1145 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001146 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001147 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001148 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001149 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001150 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001151 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001152 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1153 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001154 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001155 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001156 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001157 }
Dan Gohman475871a2008-07-27 21:46:04 +00001158 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001159}
1160
Dan Gohman475871a2008-07-27 21:46:04 +00001161SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001162 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001163
1164 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001165 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001166 assert(N->getOpcode() != ISD::DELETED_NODE &&
1167 "Node was deleted but visit returned NULL!");
1168
1169 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1170 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1171
1172 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001173 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001174 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001175
1176 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1177 }
1178 }
1179
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001180 // If nothing happened still, try promoting the operation.
1181 if (RV.getNode() == 0) {
1182 switch (N->getOpcode()) {
1183 default: break;
1184 case ISD::ADD:
1185 case ISD::SUB:
1186 case ISD::MUL:
1187 case ISD::AND:
1188 case ISD::OR:
1189 case ISD::XOR:
1190 RV = PromoteIntBinOp(SDValue(N, 0));
1191 break;
1192 case ISD::SHL:
1193 case ISD::SRA:
1194 case ISD::SRL:
1195 RV = PromoteIntShiftOp(SDValue(N, 0));
1196 break;
1197 case ISD::SIGN_EXTEND:
1198 case ISD::ZERO_EXTEND:
1199 case ISD::ANY_EXTEND:
1200 RV = PromoteExtend(SDValue(N, 0));
1201 break;
1202 case ISD::LOAD:
1203 if (PromoteLoad(SDValue(N, 0)))
1204 RV = SDValue(N, 0);
1205 break;
1206 }
1207 }
1208
Scott Michelfdc40a02009-02-17 22:15:04 +00001209 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001210 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001211 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001212 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1213 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001214 SDValue N0 = N->getOperand(0);
1215 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001216
Evan Cheng08b11732008-03-22 01:55:50 +00001217 // Constant operands are canonicalized to RHS.
1218 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001219 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001220 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1221 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001222 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001223 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001224 }
1225 }
1226
Dan Gohman389079b2007-10-08 17:57:15 +00001227 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001228}
Dan Gohman389079b2007-10-08 17:57:15 +00001229
Chris Lattner6270f682006-10-08 22:57:01 +00001230/// getInputChainForNode - Given a node, return its input chain if it has one,
1231/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001232static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001233 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001234 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001235 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001236 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001237 return N->getOperand(NumOps-1);
1238 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001239 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001240 return N->getOperand(i);
1241 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001242 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001243}
1244
Dan Gohman475871a2008-07-27 21:46:04 +00001245SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001246 // If N has two operands, where one has an input chain equal to the other,
1247 // the 'other' chain is redundant.
1248 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001249 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001250 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001251 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001252 return N->getOperand(1);
1253 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001254
Chris Lattnerc76d4412007-05-16 06:37:59 +00001255 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001256 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001257 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001258 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001259
Jim Laskey6ff23e52006-10-04 16:53:27 +00001260 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001261 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001262
Jim Laskey71382342006-10-07 23:37:56 +00001263 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001264 // encountered.
1265 for (unsigned i = 0; i < TFs.size(); ++i) {
1266 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001267
Jim Laskey6ff23e52006-10-04 16:53:27 +00001268 // Check each of the operands.
1269 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001270 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001271
Jim Laskey6ff23e52006-10-04 16:53:27 +00001272 switch (Op.getOpcode()) {
1273 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001274 // Entry tokens don't need to be added to the list. They are
1275 // rededundant.
1276 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001277 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001278
Jim Laskey6ff23e52006-10-04 16:53:27 +00001279 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001280 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001281 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001282 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001283 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001284 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001285 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001286 Changed = true;
1287 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001288 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001289 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001290
Jim Laskey6ff23e52006-10-04 16:53:27 +00001291 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001292 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001293 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001294 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001295 else
1296 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001297 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001298 }
1299 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001300 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001301
Dan Gohman475871a2008-07-27 21:46:04 +00001302 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001303
1304 // If we've change things around then replace token factor.
1305 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001306 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001307 // The entry token is the only possible outcome.
1308 Result = DAG.getEntryNode();
1309 } else {
1310 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001311 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001312 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001313 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001314
Jim Laskey274062c2006-10-13 23:32:28 +00001315 // Don't add users to work list.
1316 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001317 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001318
Jim Laskey6ff23e52006-10-04 16:53:27 +00001319 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001320}
1321
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001322/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001323SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001324 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001325 // Replacing results may cause a different MERGE_VALUES to suddenly
1326 // be CSE'd with N, and carry its uses with it. Iterate until no
1327 // uses remain, to ensure that the node can be safely deleted.
1328 do {
1329 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1330 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i),
1331 &DeadNodes);
1332 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001333 removeFromWorkList(N);
1334 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001335 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001336}
1337
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001338static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001339SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1340 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001341 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001342 SDValue N00 = N0.getOperand(0);
1343 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001344 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001345
Gabor Greifba36cb52008-08-28 21:40:38 +00001346 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001347 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001348 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1349 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1350 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1351 N00.getOperand(0), N01),
1352 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1353 N00.getOperand(1), N01));
1354 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001355 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001356
Dan Gohman475871a2008-07-27 21:46:04 +00001357 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001358}
1359
Dan Gohman475871a2008-07-27 21:46:04 +00001360SDValue DAGCombiner::visitADD(SDNode *N) {
1361 SDValue N0 = N->getOperand(0);
1362 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001363 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1364 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001365 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001366
1367 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001368 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001369 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001370 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001371 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001372
Dan Gohman613e0d82007-07-03 14:03:57 +00001373 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001374 if (N0.getOpcode() == ISD::UNDEF)
1375 return N0;
1376 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001377 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001378 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001379 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001380 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001381 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001382 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001383 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001384 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001385 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001386 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001387 // fold (add Sym, c) -> Sym+c
1388 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001389 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001390 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001391 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001392 GA->getOffset() +
1393 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001394 // fold ((c1-A)+c2) -> (c1+c2)-A
1395 if (N1C && N0.getOpcode() == ISD::SUB)
1396 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001397 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001398 DAG.getConstant(N1C->getAPIntValue()+
1399 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001400 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001401 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001402 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001403 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001404 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001405 // fold ((0-A) + B) -> B-A
1406 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1407 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001408 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001409 // fold (A + (0-B)) -> A-B
1410 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1411 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001412 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001413 // fold (A+(B-A)) -> B
1414 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001415 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001416 // fold ((B-A)+A) -> B
1417 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1418 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001419 // fold (A+(B-(A+C))) to (B-C)
1420 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001421 N0 == N1.getOperand(1).getOperand(0))
1422 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001423 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001424 // fold (A+(B-(C+A))) to (B-C)
1425 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001426 N0 == N1.getOperand(1).getOperand(1))
1427 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001428 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001429 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001430 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1431 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001432 N0 == N1.getOperand(0).getOperand(1))
1433 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1434 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001435
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001436 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1437 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1438 SDValue N00 = N0.getOperand(0);
1439 SDValue N01 = N0.getOperand(1);
1440 SDValue N10 = N1.getOperand(0);
1441 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001442
1443 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1444 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1445 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1446 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001447 }
Chris Lattner947c2892006-03-13 06:51:27 +00001448
Dan Gohman475871a2008-07-27 21:46:04 +00001449 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1450 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001451
Chris Lattner947c2892006-03-13 06:51:27 +00001452 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001453 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001454 APInt LHSZero, LHSOne;
1455 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001456 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001457
Dan Gohman948d8ea2008-02-20 16:33:30 +00001458 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001459 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001460
Chris Lattner947c2892006-03-13 06:51:27 +00001461 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1462 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001463 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001464 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001465 }
1466 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001467
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001468 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001469 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001470 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001471 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001472 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001473 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001474 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001475 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001476 }
1477
Dan Gohmancd9e1552010-01-19 23:30:49 +00001478 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1479 if (N1.getOpcode() == ISD::SHL &&
1480 N1.getOperand(0).getOpcode() == ISD::SUB)
1481 if (ConstantSDNode *C =
1482 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1483 if (C->getAPIntValue() == 0)
1484 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1485 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1486 N1.getOperand(0).getOperand(1),
1487 N1.getOperand(1)));
1488 if (N0.getOpcode() == ISD::SHL &&
1489 N0.getOperand(0).getOpcode() == ISD::SUB)
1490 if (ConstantSDNode *C =
1491 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1492 if (C->getAPIntValue() == 0)
1493 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1494 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1495 N0.getOperand(0).getOperand(1),
1496 N0.getOperand(1)));
1497
Owen Andersonbc146b02010-09-21 20:42:50 +00001498 if (N1.getOpcode() == ISD::AND) {
1499 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001500 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001501 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1502 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001503
Owen Andersonbc146b02010-09-21 20:42:50 +00001504 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1505 // and similar xforms where the inner op is either ~0 or 0.
1506 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1507 DebugLoc DL = N->getDebugLoc();
1508 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1509 }
1510 }
1511
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001512 // add (sext i1), X -> sub X, (zext i1)
1513 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1514 N0.getOperand(0).getValueType() == MVT::i1 &&
1515 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1516 DebugLoc DL = N->getDebugLoc();
1517 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1518 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1519 }
1520
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001521 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001522}
1523
Dan Gohman475871a2008-07-27 21:46:04 +00001524SDValue DAGCombiner::visitADDC(SDNode *N) {
1525 SDValue N0 = N->getOperand(0);
1526 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001527 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1528 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001529 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001530
Chris Lattner91153682007-03-04 20:03:15 +00001531 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001532 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001533 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001534 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001535 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001536
Chris Lattner91153682007-03-04 20:03:15 +00001537 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001538 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001539 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001540
Chris Lattnerb6541762007-03-04 20:40:38 +00001541 // fold (addc x, 0) -> x + no carry out
1542 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001543 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001544 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001545
Dale Johannesen874ae252009-06-02 03:12:52 +00001546 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001547 APInt LHSZero, LHSOne;
1548 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001549 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001550
Dan Gohman948d8ea2008-02-20 16:33:30 +00001551 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001552 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001553
Chris Lattnerb6541762007-03-04 20:40:38 +00001554 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1555 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001556 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001557 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001558 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001559 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001560 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001561
Dan Gohman475871a2008-07-27 21:46:04 +00001562 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001563}
1564
Dan Gohman475871a2008-07-27 21:46:04 +00001565SDValue DAGCombiner::visitADDE(SDNode *N) {
1566 SDValue N0 = N->getOperand(0);
1567 SDValue N1 = N->getOperand(1);
1568 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001569 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1570 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001571
Chris Lattner91153682007-03-04 20:03:15 +00001572 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001573 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001574 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1575 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001576
Chris Lattnerb6541762007-03-04 20:40:38 +00001577 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001578 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001579 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001580
Dan Gohman475871a2008-07-27 21:46:04 +00001581 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001582}
1583
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001584// Since it may not be valid to emit a fold to zero for vector initializers
1585// check if we can before folding.
1586static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001587 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001588 if (!VT.isVector()) {
1589 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001590 }
1591 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001592 // Produce a vector of zeros.
1593 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1594 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1595 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1596 &Ops[0], Ops.size());
1597 }
1598 return SDValue();
1599}
1600
Dan Gohman475871a2008-07-27 21:46:04 +00001601SDValue DAGCombiner::visitSUB(SDNode *N) {
1602 SDValue N0 = N->getOperand(0);
1603 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001604 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1605 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001606 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1607 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001608 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001609
Dan Gohman7f321562007-06-25 16:23:39 +00001610 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001611 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001612 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001613 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001614 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001615
Chris Lattner854077d2005-10-17 01:07:11 +00001616 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001617 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001618 if (N0 == N1)
1619 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001620 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001621 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001622 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001623 // fold (sub x, c) -> (add x, -c)
1624 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001625 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001626 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001627 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1628 if (N0C && N0C->isAllOnesValue())
1629 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001630 // fold A-(A-B) -> B
1631 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1632 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001633 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001634 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001635 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001636 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001637 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001638 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001639 // fold C2-(A+C1) -> (C2-C1)-A
1640 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
1641 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT);
1642 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
1643 N1.getOperand(0));
1644 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001645 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001646 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001647 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1648 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001649 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001650 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1651 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001652 // fold ((A+(C+B))-B) -> A+C
1653 if (N0.getOpcode() == ISD::ADD &&
1654 N0.getOperand(1).getOpcode() == ISD::ADD &&
1655 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001656 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1657 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001658 // fold ((A-(B-C))-C) -> A-B
1659 if (N0.getOpcode() == ISD::SUB &&
1660 N0.getOperand(1).getOpcode() == ISD::SUB &&
1661 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001662 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1663 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001664
Dan Gohman613e0d82007-07-03 14:03:57 +00001665 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001666 if (N0.getOpcode() == ISD::UNDEF)
1667 return N0;
1668 if (N1.getOpcode() == ISD::UNDEF)
1669 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001670
Dan Gohman6520e202008-10-18 02:06:02 +00001671 // If the relocation model supports it, consider symbol offsets.
1672 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001673 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001674 // fold (sub Sym, c) -> Sym-c
1675 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001676 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001677 GA->getOffset() -
1678 (uint64_t)N1C->getSExtValue());
1679 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1680 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1681 if (GA->getGlobal() == GB->getGlobal())
1682 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1683 VT);
1684 }
1685
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001686 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001687}
1688
Craig Toppercc274522012-01-07 09:06:39 +00001689SDValue DAGCombiner::visitSUBC(SDNode *N) {
1690 SDValue N0 = N->getOperand(0);
1691 SDValue N1 = N->getOperand(1);
1692 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1693 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1694 EVT VT = N0.getValueType();
1695
1696 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001697 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001698 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1699 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1700 MVT::Glue));
1701
1702 // fold (subc x, x) -> 0 + no borrow
1703 if (N0 == N1)
1704 return CombineTo(N, DAG.getConstant(0, VT),
1705 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1706 MVT::Glue));
1707
1708 // fold (subc x, 0) -> x + no borrow
1709 if (N1C && N1C->isNullValue())
1710 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1711 MVT::Glue));
1712
1713 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1714 if (N0C && N0C->isAllOnesValue())
1715 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1716 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1717 MVT::Glue));
1718
1719 return SDValue();
1720}
1721
1722SDValue DAGCombiner::visitSUBE(SDNode *N) {
1723 SDValue N0 = N->getOperand(0);
1724 SDValue N1 = N->getOperand(1);
1725 SDValue CarryIn = N->getOperand(2);
1726
1727 // fold (sube x, y, false) -> (subc x, y)
1728 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1729 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1730
1731 return SDValue();
1732}
1733
Dan Gohman475871a2008-07-27 21:46:04 +00001734SDValue DAGCombiner::visitMUL(SDNode *N) {
1735 SDValue N0 = N->getOperand(0);
1736 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001737 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1738 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001739 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001740
Dan Gohman7f321562007-06-25 16:23:39 +00001741 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001742 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001743 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001744 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001745 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001746
Dan Gohman613e0d82007-07-03 14:03:57 +00001747 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001748 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001749 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001750 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001751 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001752 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001753 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001754 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001755 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001756 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001757 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001758 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001759 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001760 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001761 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1762 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001763 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001764 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001765 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001766 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001767 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001768 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001769 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1770 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001771 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001772 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001773 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1774 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001775 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001776 DAG.getConstant(Log2Val,
1777 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001778 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001779 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001780 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001781 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001782 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1783 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001784 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001785 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1786 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001787 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001788
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001789 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1790 // use.
1791 {
Dan Gohman475871a2008-07-27 21:46:04 +00001792 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001793 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1794 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001795 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001796 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001797 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001798 isa<ConstantSDNode>(N1.getOperand(1)) &&
1799 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001800 Sh = N1; Y = N0;
1801 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001802
Gabor Greifba36cb52008-08-28 21:40:38 +00001803 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001804 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1805 Sh.getOperand(0), Y);
1806 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1807 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001808 }
1809 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001810
Chris Lattnera1deca32006-03-04 23:33:26 +00001811 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001812 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001813 isa<ConstantSDNode>(N0.getOperand(1)))
1814 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1815 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1816 N0.getOperand(0), N1),
1817 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1818 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001819
Nate Begemancd4d58c2006-02-03 06:46:56 +00001820 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001821 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001822 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001823 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001824
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001825 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001826}
1827
Dan Gohman475871a2008-07-27 21:46:04 +00001828SDValue DAGCombiner::visitSDIV(SDNode *N) {
1829 SDValue N0 = N->getOperand(0);
1830 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001831 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1832 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001833 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001834
Dan Gohman7f321562007-06-25 16:23:39 +00001835 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001836 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001837 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001838 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001839 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001840
Nate Begeman1d4d4142005-09-01 00:19:25 +00001841 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001842 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001843 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001844 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001845 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001846 return N0;
1847 // fold (sdiv X, -1) -> 0-X
1848 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001849 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1850 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001851 // If we know the sign bits of both operands are zero, strength reduce to a
1852 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001853 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001854 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001855 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1856 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001857 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001858 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001859 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001860 (N1C->getAPIntValue().isPowerOf2() ||
1861 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001862 // If dividing by powers of two is cheap, then don't perform the following
1863 // fold.
1864 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001865 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001866
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001867 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001868
Chris Lattner8f4880b2006-02-16 08:02:36 +00001869 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001870 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1871 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001872 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001873 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001874
Chris Lattner8f4880b2006-02-16 08:02:36 +00001875 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001876 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1877 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001878 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001879 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001880 AddToWorkList(SRL.getNode());
1881 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001882 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001883 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001884
Nate Begeman405e3ec2005-10-21 00:02:42 +00001885 // If we're dividing by a positive value, we're done. Otherwise, we must
1886 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001887 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001888 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001889
Gabor Greifba36cb52008-08-28 21:40:38 +00001890 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001891 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1892 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001893 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001894
Nate Begeman69575232005-10-20 02:15:44 +00001895 // if integer divide is expensive and we satisfy the requirements, emit an
1896 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001897 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001898 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001899 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001900 }
Dan Gohman7f321562007-06-25 16:23:39 +00001901
Dan Gohman613e0d82007-07-03 14:03:57 +00001902 // undef / X -> 0
1903 if (N0.getOpcode() == ISD::UNDEF)
1904 return DAG.getConstant(0, VT);
1905 // X / undef -> undef
1906 if (N1.getOpcode() == ISD::UNDEF)
1907 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001908
Dan Gohman475871a2008-07-27 21:46:04 +00001909 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001910}
1911
Dan Gohman475871a2008-07-27 21:46:04 +00001912SDValue DAGCombiner::visitUDIV(SDNode *N) {
1913 SDValue N0 = N->getOperand(0);
1914 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001915 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1916 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001917 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001918
Dan Gohman7f321562007-06-25 16:23:39 +00001919 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001920 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001921 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001922 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001923 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001924
Nate Begeman1d4d4142005-09-01 00:19:25 +00001925 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001926 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001927 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001928 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001929 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001930 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001931 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001932 getShiftAmountTy(N0.getValueType())));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001933 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1934 if (N1.getOpcode() == ISD::SHL) {
1935 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001936 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001937 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001938 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1939 N1.getOperand(1),
1940 DAG.getConstant(SHC->getAPIntValue()
1941 .logBase2(),
1942 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001943 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001944 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001945 }
1946 }
1947 }
Nate Begeman69575232005-10-20 02:15:44 +00001948 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001949 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001950 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001951 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001952 }
Dan Gohman7f321562007-06-25 16:23:39 +00001953
Dan Gohman613e0d82007-07-03 14:03:57 +00001954 // undef / X -> 0
1955 if (N0.getOpcode() == ISD::UNDEF)
1956 return DAG.getConstant(0, VT);
1957 // X / undef -> undef
1958 if (N1.getOpcode() == ISD::UNDEF)
1959 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001960
Dan Gohman475871a2008-07-27 21:46:04 +00001961 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001962}
1963
Dan Gohman475871a2008-07-27 21:46:04 +00001964SDValue DAGCombiner::visitSREM(SDNode *N) {
1965 SDValue N0 = N->getOperand(0);
1966 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001967 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1968 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001969 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001970
Nate Begeman1d4d4142005-09-01 00:19:25 +00001971 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001972 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001973 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001974 // If we know the sign bits of both operands are zero, strength reduce to a
1975 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001976 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001977 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001978 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001979 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001980
Dan Gohman77003042007-11-26 23:46:11 +00001981 // If X/C can be simplified by the division-by-constant logic, lower
1982 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001983 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001984 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001985 AddToWorkList(Div.getNode());
1986 SDValue OptimizedDiv = combine(Div.getNode());
1987 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001988 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1989 OptimizedDiv, N1);
1990 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00001991 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00001992 return Sub;
1993 }
Chris Lattner26d29902006-10-12 20:58:32 +00001994 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001995
Dan Gohman613e0d82007-07-03 14:03:57 +00001996 // undef % X -> 0
1997 if (N0.getOpcode() == ISD::UNDEF)
1998 return DAG.getConstant(0, VT);
1999 // X % undef -> undef
2000 if (N1.getOpcode() == ISD::UNDEF)
2001 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002002
Dan Gohman475871a2008-07-27 21:46:04 +00002003 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002004}
2005
Dan Gohman475871a2008-07-27 21:46:04 +00002006SDValue DAGCombiner::visitUREM(SDNode *N) {
2007 SDValue N0 = N->getOperand(0);
2008 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002009 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2010 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002011 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002012
Nate Begeman1d4d4142005-09-01 00:19:25 +00002013 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002014 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002015 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002016 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002017 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002018 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002019 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002020 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2021 if (N1.getOpcode() == ISD::SHL) {
2022 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002023 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002024 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002025 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002026 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002027 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002028 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002029 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002030 }
2031 }
2032 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002033
Dan Gohman77003042007-11-26 23:46:11 +00002034 // If X/C can be simplified by the division-by-constant logic, lower
2035 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002036 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002037 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002038 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002039 SDValue OptimizedDiv = combine(Div.getNode());
2040 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002041 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2042 OptimizedDiv, N1);
2043 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002044 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002045 return Sub;
2046 }
Chris Lattner26d29902006-10-12 20:58:32 +00002047 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002048
Dan Gohman613e0d82007-07-03 14:03:57 +00002049 // undef % X -> 0
2050 if (N0.getOpcode() == ISD::UNDEF)
2051 return DAG.getConstant(0, VT);
2052 // X % undef -> undef
2053 if (N1.getOpcode() == ISD::UNDEF)
2054 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002055
Dan Gohman475871a2008-07-27 21:46:04 +00002056 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002057}
2058
Dan Gohman475871a2008-07-27 21:46:04 +00002059SDValue DAGCombiner::visitMULHS(SDNode *N) {
2060 SDValue N0 = N->getOperand(0);
2061 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002062 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002063 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002064 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002065
Nate Begeman1d4d4142005-09-01 00:19:25 +00002066 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002067 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002068 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002069 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002070 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002071 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2072 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002073 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002074 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002075 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002076 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002077
Chris Lattnerde1c3602010-12-13 08:39:01 +00002078 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2079 // plus a shift.
2080 if (VT.isSimple() && !VT.isVector()) {
2081 MVT Simple = VT.getSimpleVT();
2082 unsigned SimpleSize = Simple.getSizeInBits();
2083 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2084 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2085 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2086 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2087 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002088 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002089 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002090 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2091 }
2092 }
Owen Anderson95771af2011-02-25 21:41:48 +00002093
Dan Gohman475871a2008-07-27 21:46:04 +00002094 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002095}
2096
Dan Gohman475871a2008-07-27 21:46:04 +00002097SDValue DAGCombiner::visitMULHU(SDNode *N) {
2098 SDValue N0 = N->getOperand(0);
2099 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002100 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002101 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002102 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002103
Nate Begeman1d4d4142005-09-01 00:19:25 +00002104 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002105 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002106 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002107 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002108 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002109 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002110 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002111 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002112 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002113
Chris Lattnerde1c3602010-12-13 08:39:01 +00002114 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2115 // plus a shift.
2116 if (VT.isSimple() && !VT.isVector()) {
2117 MVT Simple = VT.getSimpleVT();
2118 unsigned SimpleSize = Simple.getSizeInBits();
2119 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2120 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2121 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2122 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2123 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2124 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002125 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002126 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2127 }
2128 }
Owen Anderson95771af2011-02-25 21:41:48 +00002129
Dan Gohman475871a2008-07-27 21:46:04 +00002130 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002131}
2132
Dan Gohman389079b2007-10-08 17:57:15 +00002133/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2134/// compute two values. LoOp and HiOp give the opcodes for the two computations
2135/// that are being performed. Return true if a simplification was made.
2136///
Scott Michelfdc40a02009-02-17 22:15:04 +00002137SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002138 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002139 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002140 bool HiExists = N->hasAnyUseOfValue(1);
2141 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002142 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002143 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002144 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2145 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002146 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002147 }
2148
2149 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002150 bool LoExists = N->hasAnyUseOfValue(0);
2151 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002152 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002153 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002154 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2155 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002156 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002157 }
2158
Evan Cheng44711942007-11-08 09:25:29 +00002159 // If both halves are used, return as it is.
2160 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002161 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002162
2163 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002164 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002165 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2166 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002167 AddToWorkList(Lo.getNode());
2168 SDValue LoOpt = combine(Lo.getNode());
2169 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002170 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002171 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002172 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002173 }
2174
Evan Cheng44711942007-11-08 09:25:29 +00002175 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002176 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002177 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002178 AddToWorkList(Hi.getNode());
2179 SDValue HiOpt = combine(Hi.getNode());
2180 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002181 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002182 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002183 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002184 }
Bill Wendling826d1142009-01-30 03:08:40 +00002185
Dan Gohman475871a2008-07-27 21:46:04 +00002186 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002187}
2188
Dan Gohman475871a2008-07-27 21:46:04 +00002189SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2190 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002191 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002192
Chris Lattner33e77d32010-12-15 06:04:19 +00002193 EVT VT = N->getValueType(0);
2194 DebugLoc DL = N->getDebugLoc();
2195
2196 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2197 // plus a shift.
2198 if (VT.isSimple() && !VT.isVector()) {
2199 MVT Simple = VT.getSimpleVT();
2200 unsigned SimpleSize = Simple.getSizeInBits();
2201 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2202 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2203 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2204 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2205 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2206 // Compute the high part as N1.
2207 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002208 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002209 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2210 // Compute the low part as N0.
2211 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2212 return CombineTo(N, Lo, Hi);
2213 }
2214 }
Owen Anderson95771af2011-02-25 21:41:48 +00002215
Dan Gohman475871a2008-07-27 21:46:04 +00002216 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002217}
2218
Dan Gohman475871a2008-07-27 21:46:04 +00002219SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2220 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002221 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002222
Chris Lattner33e77d32010-12-15 06:04:19 +00002223 EVT VT = N->getValueType(0);
2224 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002225
Chris Lattner33e77d32010-12-15 06:04:19 +00002226 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2227 // plus a shift.
2228 if (VT.isSimple() && !VT.isVector()) {
2229 MVT Simple = VT.getSimpleVT();
2230 unsigned SimpleSize = Simple.getSizeInBits();
2231 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2232 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2233 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2234 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2235 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2236 // Compute the high part as N1.
2237 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002238 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002239 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2240 // Compute the low part as N0.
2241 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2242 return CombineTo(N, Lo, Hi);
2243 }
2244 }
Owen Anderson95771af2011-02-25 21:41:48 +00002245
Dan Gohman475871a2008-07-27 21:46:04 +00002246 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002247}
2248
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002249SDValue DAGCombiner::visitSMULO(SDNode *N) {
2250 // (smulo x, 2) -> (saddo x, x)
2251 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2252 if (C2->getAPIntValue() == 2)
2253 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2254 N->getOperand(0), N->getOperand(0));
2255
2256 return SDValue();
2257}
2258
2259SDValue DAGCombiner::visitUMULO(SDNode *N) {
2260 // (umulo x, 2) -> (uaddo x, x)
2261 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2262 if (C2->getAPIntValue() == 2)
2263 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2264 N->getOperand(0), N->getOperand(0));
2265
2266 return SDValue();
2267}
2268
Dan Gohman475871a2008-07-27 21:46:04 +00002269SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2270 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002271 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002272
Dan Gohman475871a2008-07-27 21:46:04 +00002273 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002274}
2275
Dan Gohman475871a2008-07-27 21:46:04 +00002276SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2277 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002278 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002279
Dan Gohman475871a2008-07-27 21:46:04 +00002280 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002281}
2282
Chris Lattner35e5c142006-05-05 05:51:50 +00002283/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2284/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002285SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2286 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002287 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002288 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002289
Dan Gohmanff00a552010-01-14 03:08:49 +00002290 // Bail early if none of these transforms apply.
2291 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2292
Chris Lattner540121f2006-05-05 06:31:05 +00002293 // For each of OP in AND/OR/XOR:
2294 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2295 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2296 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002297 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002298 //
2299 // do not sink logical op inside of a vector extend, since it may combine
2300 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002301 EVT Op0VT = N0.getOperand(0).getValueType();
2302 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002303 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002304 // Avoid infinite looping with PromoteIntBinOp.
2305 (N0.getOpcode() == ISD::ANY_EXTEND &&
2306 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002307 (N0.getOpcode() == ISD::TRUNCATE &&
2308 (!TLI.isZExtFree(VT, Op0VT) ||
2309 !TLI.isTruncateFree(Op0VT, VT)) &&
2310 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002311 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002312 Op0VT == N1.getOperand(0).getValueType() &&
2313 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002314 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2315 N0.getOperand(0).getValueType(),
2316 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002317 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002318 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002319 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002320
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002321 // For each of OP in SHL/SRL/SRA/AND...
2322 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2323 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2324 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002325 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002326 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002327 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002328 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2329 N0.getOperand(0).getValueType(),
2330 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002331 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002332 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2333 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002334 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002335
Nadav Rotem4ac90812012-04-01 19:31:22 +00002336 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2337 // Only perform this optimization after type legalization and before
2338 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2339 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2340 // we don't want to undo this promotion.
2341 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2342 // on scalars.
2343 if ((N0.getOpcode() == ISD::BITCAST || N0.getOpcode() == ISD::SCALAR_TO_VECTOR)
2344 && Level == AfterLegalizeVectorOps) {
2345 SDValue In0 = N0.getOperand(0);
2346 SDValue In1 = N1.getOperand(0);
2347 EVT In0Ty = In0.getValueType();
2348 EVT In1Ty = In1.getValueType();
2349 // If both incoming values are integers, and the original types are the same.
2350 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
2351 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), In0Ty, In0, In1);
2352 SDValue BC = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, Op);
2353 AddToWorkList(Op.getNode());
2354 return BC;
2355 }
2356 }
2357
2358 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2359 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2360 // If both shuffles use the same mask, and both shuffle within a single
2361 // vector, then it is worthwhile to move the swizzle after the operation.
2362 // The type-legalizer generates this pattern when loading illegal
2363 // vector types from memory. In many cases this allows additional shuffle
2364 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002365 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2366 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2367 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002368 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2369 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002370
2371 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2372 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002373
2374 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002375
2376 // Check that both shuffles use the same mask. The masks are known to be of
2377 // the same length because the result vector type is the same.
2378 bool SameMask = true;
2379 for (unsigned i = 0; i != NumElts; ++i) {
2380 int Idx0 = SVN0->getMaskElt(i);
2381 int Idx1 = SVN1->getMaskElt(i);
2382 if (Idx0 != Idx1) {
2383 SameMask = false;
2384 break;
2385 }
2386 }
2387
Craig Topperf9204232012-04-09 07:19:09 +00002388 if (SameMask) {
2389 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2390 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002391 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002392 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2393 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002394 }
2395 }
Craig Topperf9204232012-04-09 07:19:09 +00002396
Dan Gohman475871a2008-07-27 21:46:04 +00002397 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002398}
2399
Dan Gohman475871a2008-07-27 21:46:04 +00002400SDValue DAGCombiner::visitAND(SDNode *N) {
2401 SDValue N0 = N->getOperand(0);
2402 SDValue N1 = N->getOperand(1);
2403 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002404 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2405 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002406 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002407 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002408
Dan Gohman7f321562007-06-25 16:23:39 +00002409 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002410 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002411 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002412 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002413 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002414
Dan Gohman613e0d82007-07-03 14:03:57 +00002415 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002416 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002417 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002418 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002419 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002420 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002421 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002422 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002423 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002424 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002425 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002426 return N0;
2427 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002428 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002429 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002430 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002431 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002432 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002433 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002434 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002435 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002436 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002437 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002438 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002439 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002440 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2441 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002442 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002443 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002444 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002445 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002446 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2447 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002448
Chris Lattner1ec05d12006-03-01 21:47:21 +00002449 // Replace uses of the AND with uses of the Zero extend node.
2450 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002451
Chris Lattner3603cd62006-02-02 07:17:31 +00002452 // We actually want to replace all uses of the any_extend with the
2453 // zero_extend, to avoid duplicating things. This will later cause this
2454 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002455 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002456 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002457 }
2458 }
James Molloy6259dcd2012-02-20 12:02:38 +00002459 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2460 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2461 // already be zero by virtue of the width of the base type of the load.
2462 //
2463 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2464 // more cases.
2465 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2466 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2467 N0.getOpcode() == ISD::LOAD) {
2468 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2469 N0 : N0.getOperand(0) );
2470
2471 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2472 // This can be a pure constant or a vector splat, in which case we treat the
2473 // vector as a scalar and use the splat value.
2474 APInt Constant = APInt::getNullValue(1);
2475 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2476 Constant = C->getAPIntValue();
2477 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2478 APInt SplatValue, SplatUndef;
2479 unsigned SplatBitSize;
2480 bool HasAnyUndefs;
2481 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2482 SplatBitSize, HasAnyUndefs);
2483 if (IsSplat) {
2484 // Undef bits can contribute to a possible optimisation if set, so
2485 // set them.
2486 SplatValue |= SplatUndef;
2487
2488 // The splat value may be something like "0x00FFFFFF", which means 0 for
2489 // the first vector value and FF for the rest, repeating. We need a mask
2490 // that will apply equally to all members of the vector, so AND all the
2491 // lanes of the constant together.
2492 EVT VT = Vector->getValueType(0);
2493 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
2494 Constant = APInt::getAllOnesValue(BitWidth);
2495 for (unsigned i = 0, n = VT.getVectorNumElements(); i < n; ++i)
2496 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2497 }
2498 }
2499
2500 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2501 // actually legal and isn't going to get expanded, else this is a false
2502 // optimisation.
2503 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2504 Load->getMemoryVT());
2505
2506 // Resize the constant to the same size as the original memory access before
2507 // extension. If it is still the AllOnesValue then this AND is completely
2508 // unneeded.
2509 Constant =
2510 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2511
2512 bool B;
2513 switch (Load->getExtensionType()) {
2514 default: B = false; break;
2515 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2516 case ISD::ZEXTLOAD:
2517 case ISD::NON_EXTLOAD: B = true; break;
2518 }
2519
2520 if (B && Constant.isAllOnesValue()) {
2521 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2522 // preserve semantics once we get rid of the AND.
2523 SDValue NewLoad(Load, 0);
2524 if (Load->getExtensionType() == ISD::EXTLOAD) {
2525 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2526 Load->getValueType(0), Load->getDebugLoc(),
2527 Load->getChain(), Load->getBasePtr(),
2528 Load->getOffset(), Load->getMemoryVT(),
2529 Load->getMemOperand());
2530 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
2531 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2532 }
2533
2534 // Fold the AND away, taking care not to fold to the old load node if we
2535 // replaced it.
2536 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2537
2538 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2539 }
2540 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002541 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2542 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2543 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2544 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002545
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002546 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002547 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002548 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002549 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002550 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2551 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002552 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002553 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002554 }
Bill Wendling2627a882009-01-30 20:43:18 +00002555 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002556 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002557 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2558 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002559 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002560 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002561 }
Bill Wendling2627a882009-01-30 20:43:18 +00002562 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002563 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002564 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2565 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002566 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002567 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002568 }
2569 }
2570 // canonicalize equivalent to ll == rl
2571 if (LL == RR && LR == RL) {
2572 Op1 = ISD::getSetCCSwappedOperands(Op1);
2573 std::swap(RL, RR);
2574 }
2575 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002576 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002577 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002578 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002579 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002580 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2581 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002582 }
2583 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002584
Bill Wendling2627a882009-01-30 20:43:18 +00002585 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002586 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002587 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002588 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002589 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002590
Nate Begemande996292006-02-03 22:24:05 +00002591 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2592 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002593 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002594 SimplifyDemandedBits(SDValue(N, 0)))
2595 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002596
Nate Begemanded49632005-10-13 03:11:28 +00002597 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002598 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002599 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002600 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002601 // If we zero all the possible extended bits, then we can turn this into
2602 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002603 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002604 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002605 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002606 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002607 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002608 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002609 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002610 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002611 LN0->isVolatile(), LN0->isNonTemporal(),
2612 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002613 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002614 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002615 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002616 }
2617 }
2618 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002619 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002620 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002621 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002622 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002623 // If we zero all the possible extended bits, then we can turn this into
2624 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002625 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002626 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002627 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002628 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002629 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002630 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002631 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002632 LN0->getBasePtr(), LN0->getPointerInfo(),
2633 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002634 LN0->isVolatile(), LN0->isNonTemporal(),
2635 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002636 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002637 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002638 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002639 }
2640 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002641
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002642 // fold (and (load x), 255) -> (zextload x, i8)
2643 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002644 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2645 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2646 (N0.getOpcode() == ISD::ANY_EXTEND &&
2647 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2648 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2649 LoadSDNode *LN0 = HasAnyExt
2650 ? cast<LoadSDNode>(N0.getOperand(0))
2651 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002652 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002653 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002654 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002655 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2656 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2657 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002658
Evan Chengd40d03e2010-01-06 19:38:29 +00002659 if (ExtVT == LoadedVT &&
2660 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002661 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002662
2663 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002664 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002665 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002666 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002667 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2668 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002669 AddToWorkList(N);
2670 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2671 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2672 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002673
Chris Lattneref7634c2010-01-07 21:53:27 +00002674 // Do not change the width of a volatile load.
2675 // Do not generate loads of non-round integer types since these can
2676 // be expensive (and would be wrong if the type is not byte sized).
2677 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2678 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2679 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002680
Chris Lattneref7634c2010-01-07 21:53:27 +00002681 unsigned Alignment = LN0->getAlignment();
2682 SDValue NewPtr = LN0->getBasePtr();
2683
2684 // For big endian targets, we need to add an offset to the pointer
2685 // to load the correct bytes. For little endian systems, we merely
2686 // need to read fewer bytes from the same pointer.
2687 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002688 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2689 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2690 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002691 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2692 NewPtr, DAG.getConstant(PtrOff, PtrType));
2693 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002694 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002695
2696 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002697
Chris Lattneref7634c2010-01-07 21:53:27 +00002698 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2699 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002700 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002701 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002702 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002703 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2704 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002705 AddToWorkList(N);
2706 CombineTo(LN0, Load, Load.getValue(1));
2707 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002708 }
Evan Cheng466685d2006-10-09 20:57:25 +00002709 }
Chris Lattner15045b62006-02-28 06:35:35 +00002710 }
2711 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002712
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002713 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002714}
2715
Evan Cheng9568e5c2011-06-21 06:01:08 +00002716/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2717///
2718SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2719 bool DemandHighBits) {
2720 if (!LegalOperations)
2721 return SDValue();
2722
2723 EVT VT = N->getValueType(0);
2724 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2725 return SDValue();
2726 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2727 return SDValue();
2728
2729 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2730 bool LookPassAnd0 = false;
2731 bool LookPassAnd1 = false;
2732 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2733 std::swap(N0, N1);
2734 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2735 std::swap(N0, N1);
2736 if (N0.getOpcode() == ISD::AND) {
2737 if (!N0.getNode()->hasOneUse())
2738 return SDValue();
2739 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2740 if (!N01C || N01C->getZExtValue() != 0xFF00)
2741 return SDValue();
2742 N0 = N0.getOperand(0);
2743 LookPassAnd0 = true;
2744 }
2745
2746 if (N1.getOpcode() == ISD::AND) {
2747 if (!N1.getNode()->hasOneUse())
2748 return SDValue();
2749 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2750 if (!N11C || N11C->getZExtValue() != 0xFF)
2751 return SDValue();
2752 N1 = N1.getOperand(0);
2753 LookPassAnd1 = true;
2754 }
2755
2756 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2757 std::swap(N0, N1);
2758 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2759 return SDValue();
2760 if (!N0.getNode()->hasOneUse() ||
2761 !N1.getNode()->hasOneUse())
2762 return SDValue();
2763
2764 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2765 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2766 if (!N01C || !N11C)
2767 return SDValue();
2768 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2769 return SDValue();
2770
2771 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2772 SDValue N00 = N0->getOperand(0);
2773 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2774 if (!N00.getNode()->hasOneUse())
2775 return SDValue();
2776 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2777 if (!N001C || N001C->getZExtValue() != 0xFF)
2778 return SDValue();
2779 N00 = N00.getOperand(0);
2780 LookPassAnd0 = true;
2781 }
2782
2783 SDValue N10 = N1->getOperand(0);
2784 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2785 if (!N10.getNode()->hasOneUse())
2786 return SDValue();
2787 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2788 if (!N101C || N101C->getZExtValue() != 0xFF00)
2789 return SDValue();
2790 N10 = N10.getOperand(0);
2791 LookPassAnd1 = true;
2792 }
2793
2794 if (N00 != N10)
2795 return SDValue();
2796
2797 // Make sure everything beyond the low halfword is zero since the SRL 16
2798 // will clear the top bits.
2799 unsigned OpSizeInBits = VT.getSizeInBits();
2800 if (DemandHighBits && OpSizeInBits > 16 &&
2801 (!LookPassAnd0 || !LookPassAnd1) &&
2802 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2803 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002804
Evan Cheng9568e5c2011-06-21 06:01:08 +00002805 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2806 if (OpSizeInBits > 16)
2807 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2808 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2809 return Res;
2810}
2811
2812/// isBSwapHWordElement - Return true if the specified node is an element
2813/// that makes up a 32-bit packed halfword byteswap. i.e.
2814/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2815static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2816 if (!N.getNode()->hasOneUse())
2817 return false;
2818
2819 unsigned Opc = N.getOpcode();
2820 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2821 return false;
2822
2823 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2824 if (!N1C)
2825 return false;
2826
2827 unsigned Num;
2828 switch (N1C->getZExtValue()) {
2829 default:
2830 return false;
2831 case 0xFF: Num = 0; break;
2832 case 0xFF00: Num = 1; break;
2833 case 0xFF0000: Num = 2; break;
2834 case 0xFF000000: Num = 3; break;
2835 }
2836
2837 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2838 SDValue N0 = N.getOperand(0);
2839 if (Opc == ISD::AND) {
2840 if (Num == 0 || Num == 2) {
2841 // (x >> 8) & 0xff
2842 // (x >> 8) & 0xff0000
2843 if (N0.getOpcode() != ISD::SRL)
2844 return false;
2845 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2846 if (!C || C->getZExtValue() != 8)
2847 return false;
2848 } else {
2849 // (x << 8) & 0xff00
2850 // (x << 8) & 0xff000000
2851 if (N0.getOpcode() != ISD::SHL)
2852 return false;
2853 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2854 if (!C || C->getZExtValue() != 8)
2855 return false;
2856 }
2857 } else if (Opc == ISD::SHL) {
2858 // (x & 0xff) << 8
2859 // (x & 0xff0000) << 8
2860 if (Num != 0 && Num != 2)
2861 return false;
2862 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2863 if (!C || C->getZExtValue() != 8)
2864 return false;
2865 } else { // Opc == ISD::SRL
2866 // (x & 0xff00) >> 8
2867 // (x & 0xff000000) >> 8
2868 if (Num != 1 && Num != 3)
2869 return false;
2870 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2871 if (!C || C->getZExtValue() != 8)
2872 return false;
2873 }
2874
2875 if (Parts[Num])
2876 return false;
2877
2878 Parts[Num] = N0.getOperand(0).getNode();
2879 return true;
2880}
2881
2882/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2883/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2884/// => (rotl (bswap x), 16)
2885SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2886 if (!LegalOperations)
2887 return SDValue();
2888
2889 EVT VT = N->getValueType(0);
2890 if (VT != MVT::i32)
2891 return SDValue();
2892 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2893 return SDValue();
2894
2895 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2896 // Look for either
2897 // (or (or (and), (and)), (or (and), (and)))
2898 // (or (or (or (and), (and)), (and)), (and))
2899 if (N0.getOpcode() != ISD::OR)
2900 return SDValue();
2901 SDValue N00 = N0.getOperand(0);
2902 SDValue N01 = N0.getOperand(1);
2903
2904 if (N1.getOpcode() == ISD::OR) {
2905 // (or (or (and), (and)), (or (and), (and)))
2906 SDValue N000 = N00.getOperand(0);
2907 if (!isBSwapHWordElement(N000, Parts))
2908 return SDValue();
2909
2910 SDValue N001 = N00.getOperand(1);
2911 if (!isBSwapHWordElement(N001, Parts))
2912 return SDValue();
2913 SDValue N010 = N01.getOperand(0);
2914 if (!isBSwapHWordElement(N010, Parts))
2915 return SDValue();
2916 SDValue N011 = N01.getOperand(1);
2917 if (!isBSwapHWordElement(N011, Parts))
2918 return SDValue();
2919 } else {
2920 // (or (or (or (and), (and)), (and)), (and))
2921 if (!isBSwapHWordElement(N1, Parts))
2922 return SDValue();
2923 if (!isBSwapHWordElement(N01, Parts))
2924 return SDValue();
2925 if (N00.getOpcode() != ISD::OR)
2926 return SDValue();
2927 SDValue N000 = N00.getOperand(0);
2928 if (!isBSwapHWordElement(N000, Parts))
2929 return SDValue();
2930 SDValue N001 = N00.getOperand(1);
2931 if (!isBSwapHWordElement(N001, Parts))
2932 return SDValue();
2933 }
2934
2935 // Make sure the parts are all coming from the same node.
2936 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2937 return SDValue();
2938
2939 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2940 SDValue(Parts[0],0));
2941
2942 // Result of the bswap should be rotated by 16. If it's not legal, than
2943 // do (x << 16) | (x >> 16).
2944 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
2945 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
2946 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
2947 else if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
2948 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
2949 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
2950 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
2951 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
2952}
2953
Dan Gohman475871a2008-07-27 21:46:04 +00002954SDValue DAGCombiner::visitOR(SDNode *N) {
2955 SDValue N0 = N->getOperand(0);
2956 SDValue N1 = N->getOperand(1);
2957 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002958 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2959 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002960 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002961
Dan Gohman7f321562007-06-25 16:23:39 +00002962 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002963 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002964 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002965 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002966 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002967
Dan Gohman613e0d82007-07-03 14:03:57 +00002968 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00002969 if (!LegalOperations &&
2970 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00002971 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
2972 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
2973 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00002974 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002975 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002976 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002977 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002978 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00002979 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002980 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002981 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002982 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002983 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002984 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002985 return N1;
2986 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002987 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002988 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00002989
2990 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
2991 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
2992 if (BSwap.getNode() != 0)
2993 return BSwap;
2994 BSwap = MatchBSwapHWordLow(N, N0, N1);
2995 if (BSwap.getNode() != 0)
2996 return BSwap;
2997
Nate Begemancd4d58c2006-02-03 06:46:56 +00002998 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00002999 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003000 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003001 return ROR;
3002 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003003 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003004 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003005 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003006 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003007 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003008 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3009 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3010 N0.getOperand(0), N1),
3011 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003012 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003013 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3014 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3015 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3016 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003017
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003018 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003019 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003020 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3021 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003022 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003023 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003024 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3025 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003026 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003027 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003028 }
Bill Wendling09025642009-01-30 20:59:34 +00003029 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3030 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003031 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003032 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003033 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3034 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003035 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003036 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003037 }
3038 }
3039 // canonicalize equivalent to ll == rl
3040 if (LL == RR && LR == RL) {
3041 Op1 = ISD::getSetCCSwappedOperands(Op1);
3042 std::swap(RL, RR);
3043 }
3044 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003045 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003046 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003047 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00003048 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003049 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3050 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003051 }
3052 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003053
Bill Wendling09025642009-01-30 20:59:34 +00003054 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003055 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003056 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003057 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003058 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003059
Bill Wendling09025642009-01-30 20:59:34 +00003060 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003061 if (N0.getOpcode() == ISD::AND &&
3062 N1.getOpcode() == ISD::AND &&
3063 N0.getOperand(1).getOpcode() == ISD::Constant &&
3064 N1.getOperand(1).getOpcode() == ISD::Constant &&
3065 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003066 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003067 // We can only do this xform if we know that bits from X that are set in C2
3068 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003069 const APInt &LHSMask =
3070 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3071 const APInt &RHSMask =
3072 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003073
Dan Gohmanea859be2007-06-22 14:59:07 +00003074 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3075 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003076 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3077 N0.getOperand(0), N1.getOperand(0));
3078 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3079 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003080 }
3081 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003082
Chris Lattner516b9622006-09-14 20:50:57 +00003083 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003084 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003085 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003086
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003087 // Simplify the operands using demanded-bits information.
3088 if (!VT.isVector() &&
3089 SimplifyDemandedBits(SDValue(N, 0)))
3090 return SDValue(N, 0);
3091
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003092 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003093}
3094
Chris Lattner516b9622006-09-14 20:50:57 +00003095/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003096static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003097 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003098 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003099 Mask = Op.getOperand(1);
3100 Op = Op.getOperand(0);
3101 } else {
3102 return false;
3103 }
3104 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003105
Chris Lattner516b9622006-09-14 20:50:57 +00003106 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3107 Shift = Op;
3108 return true;
3109 }
Bill Wendling09025642009-01-30 20:59:34 +00003110
Scott Michelfdc40a02009-02-17 22:15:04 +00003111 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003112}
3113
Chris Lattner516b9622006-09-14 20:50:57 +00003114// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3115// idioms for rotate, and if the target supports rotation instructions, generate
3116// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003117SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003118 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003119 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003120 if (!TLI.isTypeLegal(VT)) return 0;
3121
3122 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003123 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3124 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003125 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003126
Chris Lattner516b9622006-09-14 20:50:57 +00003127 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003128 SDValue LHSShift; // The shift.
3129 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003130 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3131 return 0; // Not part of a rotate.
3132
Dan Gohman475871a2008-07-27 21:46:04 +00003133 SDValue RHSShift; // The shift.
3134 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003135 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3136 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003137
Chris Lattner516b9622006-09-14 20:50:57 +00003138 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3139 return 0; // Not shifting the same value.
3140
3141 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3142 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003143
Chris Lattner516b9622006-09-14 20:50:57 +00003144 // Canonicalize shl to left side in a shl/srl pair.
3145 if (RHSShift.getOpcode() == ISD::SHL) {
3146 std::swap(LHS, RHS);
3147 std::swap(LHSShift, RHSShift);
3148 std::swap(LHSMask , RHSMask );
3149 }
3150
Duncan Sands83ec4b62008-06-06 12:08:01 +00003151 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003152 SDValue LHSShiftArg = LHSShift.getOperand(0);
3153 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3154 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003155
3156 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3157 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003158 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3159 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003160 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3161 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003162 if ((LShVal + RShVal) != OpSizeInBits)
3163 return 0;
3164
Dan Gohman475871a2008-07-27 21:46:04 +00003165 SDValue Rot;
Chris Lattner516b9622006-09-14 20:50:57 +00003166 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003167 Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00003168 else
Bill Wendling317bd702009-01-30 21:14:50 +00003169 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003170
Chris Lattner516b9622006-09-14 20:50:57 +00003171 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003172 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003173 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003174
Gabor Greifba36cb52008-08-28 21:40:38 +00003175 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003176 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3177 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003178 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003179 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003180 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3181 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003182 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003183
Bill Wendling317bd702009-01-30 21:14:50 +00003184 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003185 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003186
Gabor Greifba36cb52008-08-28 21:40:38 +00003187 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003188 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003189
Chris Lattner516b9622006-09-14 20:50:57 +00003190 // If there is a mask here, and we have a variable shift, we can't be sure
3191 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003192 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003193 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003194
Chris Lattner516b9622006-09-14 20:50:57 +00003195 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3196 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003197 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3198 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003199 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003200 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003201 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00003202 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003203 return DAG.getNode(ISD::ROTL, DL, VT,
3204 LHSShiftArg, LHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003205 else
Bill Wendling317bd702009-01-30 21:14:50 +00003206 return DAG.getNode(ISD::ROTR, DL, VT,
3207 LHSShiftArg, RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003208 }
Chris Lattner516b9622006-09-14 20:50:57 +00003209 }
3210 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003211
Chris Lattner516b9622006-09-14 20:50:57 +00003212 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3213 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003214 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3215 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003216 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003217 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003218 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling2692d592008-08-31 01:13:31 +00003219 if (HasROTR)
Bill Wendling317bd702009-01-30 21:14:50 +00003220 return DAG.getNode(ISD::ROTR, DL, VT,
3221 LHSShiftArg, RHSShiftAmt).getNode();
Bill Wendling2692d592008-08-31 01:13:31 +00003222 else
Bill Wendling317bd702009-01-30 21:14:50 +00003223 return DAG.getNode(ISD::ROTL, DL, VT,
3224 LHSShiftArg, LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003225 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003226 }
3227 }
3228
Dan Gohman74feef22008-10-17 01:23:35 +00003229 // Look for sign/zext/any-extended or truncate cases:
Scott Michelc9dc1142007-04-02 21:36:32 +00003230 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3231 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003232 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3233 || LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
Scott Michelc9dc1142007-04-02 21:36:32 +00003234 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3235 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003236 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3237 || RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003238 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3239 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003240 if (RExtOp0.getOpcode() == ISD::SUB &&
3241 RExtOp0.getOperand(1) == LExtOp0) {
3242 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003243 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003244 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003245 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003246 if (ConstantSDNode *SUBC =
3247 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003248 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003249 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3250 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003251 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003252 }
3253 }
3254 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3255 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003256 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003257 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003258 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003259 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003260 if (ConstantSDNode *SUBC =
3261 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003262 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003263 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3264 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003265 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003266 }
3267 }
Chris Lattner516b9622006-09-14 20:50:57 +00003268 }
3269 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003270
Chris Lattner516b9622006-09-14 20:50:57 +00003271 return 0;
3272}
3273
Dan Gohman475871a2008-07-27 21:46:04 +00003274SDValue DAGCombiner::visitXOR(SDNode *N) {
3275 SDValue N0 = N->getOperand(0);
3276 SDValue N1 = N->getOperand(1);
3277 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003278 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3279 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003280 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003281
Dan Gohman7f321562007-06-25 16:23:39 +00003282 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003283 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003284 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003285 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003286 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003287
Evan Cheng26471c42008-03-25 20:08:07 +00003288 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3289 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3290 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003291 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003292 if (N0.getOpcode() == ISD::UNDEF)
3293 return N0;
3294 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003295 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003296 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003297 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003298 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003299 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003300 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003301 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003302 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003303 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003304 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003305 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003306 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003307 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003308 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003309
Nate Begeman1d4d4142005-09-01 00:19:25 +00003310 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003311 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003312 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003313 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3314 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003315
Duncan Sands25cf2272008-11-24 14:53:14 +00003316 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003317 switch (N0.getOpcode()) {
3318 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003319 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003320 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003321 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003322 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003323 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003324 N0.getOperand(3), NotCC);
3325 }
3326 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003327 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003328
Chris Lattner61c5ff42007-09-10 21:39:07 +00003329 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003330 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003331 N0.getNode()->hasOneUse() &&
3332 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003333 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003334 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003335 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003336 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003337 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003338 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003339
Bill Wendling317bd702009-01-30 21:14:50 +00003340 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003341 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003342 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003343 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003344 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3345 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003346 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3347 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003348 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003349 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003350 }
3351 }
Bill Wendling317bd702009-01-30 21:14:50 +00003352 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003353 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003354 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003355 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003356 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3357 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003358 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3359 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003360 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003361 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003362 }
3363 }
Bill Wendling317bd702009-01-30 21:14:50 +00003364 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003365 if (N1C && N0.getOpcode() == ISD::XOR) {
3366 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3367 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3368 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003369 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3370 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003371 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003372 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003373 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3374 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003375 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003376 }
3377 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003378 if (N0 == N1)
3379 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003380
Chris Lattner35e5c142006-05-05 05:51:50 +00003381 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3382 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003383 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003384 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003385 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003386
Chris Lattner3e104b12006-04-08 04:15:24 +00003387 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003388 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003389 SimplifyDemandedBits(SDValue(N, 0)))
3390 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003391
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003392 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003393}
3394
Chris Lattnere70da202007-12-06 07:33:36 +00003395/// visitShiftByConstant - Handle transforms common to the three shifts, when
3396/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003397SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003398 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003399 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003400
Chris Lattnere70da202007-12-06 07:33:36 +00003401 // We want to pull some binops through shifts, so that we have (and (shift))
3402 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3403 // thing happens with address calculations, so it's important to canonicalize
3404 // it.
3405 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003406
Chris Lattnere70da202007-12-06 07:33:36 +00003407 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003408 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003409 case ISD::OR:
3410 case ISD::XOR:
3411 HighBitSet = false; // We can only transform sra if the high bit is clear.
3412 break;
3413 case ISD::AND:
3414 HighBitSet = true; // We can only transform sra if the high bit is set.
3415 break;
3416 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003417 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003418 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003419 HighBitSet = false; // We can only transform sra if the high bit is clear.
3420 break;
3421 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003422
Chris Lattnere70da202007-12-06 07:33:36 +00003423 // We require the RHS of the binop to be a constant as well.
3424 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003425 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003426
3427 // FIXME: disable this unless the input to the binop is a shift by a constant.
3428 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003429 //
Bill Wendling88103372009-01-30 21:37:17 +00003430 // void foo(int *X, int i) { X[i & 1235] = 1; }
3431 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003432 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003433 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003434 BinOpLHSVal->getOpcode() != ISD::SRA &&
3435 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3436 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003437 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003438
Owen Andersone50ed302009-08-10 22:56:29 +00003439 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003440
Bill Wendling88103372009-01-30 21:37:17 +00003441 // If this is a signed shift right, and the high bit is modified by the
3442 // logical operation, do not perform the transformation. The highBitSet
3443 // boolean indicates the value of the high bit of the constant which would
3444 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003445 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003446 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3447 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003448 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003449 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003450
Chris Lattnere70da202007-12-06 07:33:36 +00003451 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003452 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3453 N->getValueType(0),
3454 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003455
3456 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003457 SDValue NewShift = DAG.getNode(N->getOpcode(),
3458 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003459 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003460
3461 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003462 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003463}
3464
Dan Gohman475871a2008-07-27 21:46:04 +00003465SDValue DAGCombiner::visitSHL(SDNode *N) {
3466 SDValue N0 = N->getOperand(0);
3467 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003468 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3469 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003470 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003471 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003472
Nate Begeman1d4d4142005-09-01 00:19:25 +00003473 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003474 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003475 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003476 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003477 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003478 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003479 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003480 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003481 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003482 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003483 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003484 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003485 // fold (shl undef, x) -> 0
3486 if (N0.getOpcode() == ISD::UNDEF)
3487 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003488 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003489 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003490 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003491 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003492 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003493 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003494 N1.getOperand(0).getOpcode() == ISD::AND &&
3495 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003496 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003497 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003498 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003499 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003500 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003501 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003502 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003503 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3504 DAG.getNode(ISD::TRUNCATE,
3505 N->getDebugLoc(),
3506 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003507 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003508 }
3509 }
3510
Dan Gohman475871a2008-07-27 21:46:04 +00003511 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3512 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003513
3514 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003515 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003516 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003517 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3518 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003519 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003520 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003521 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003522 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003523 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003524
3525 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3526 // For this to be valid, the second form must not preserve any of the bits
3527 // that are shifted out by the inner shift in the first form. This means
3528 // the outer shift size must be >= the number of bits added by the ext.
3529 // As a corollary, we don't care what kind of ext it is.
3530 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3531 N0.getOpcode() == ISD::ANY_EXTEND ||
3532 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3533 N0.getOperand(0).getOpcode() == ISD::SHL &&
3534 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003535 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003536 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3537 uint64_t c2 = N1C->getZExtValue();
3538 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3539 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3540 if (c2 >= OpSizeInBits - InnerShiftSize) {
3541 if (c1 + c2 >= OpSizeInBits)
3542 return DAG.getConstant(0, VT);
3543 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3544 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3545 N0.getOperand(0)->getOperand(0)),
3546 DAG.getConstant(c1 + c2, N1.getValueType()));
3547 }
3548 }
3549
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003550 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3551 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003552 // Only fold this if the inner shift has no other uses -- if it does, folding
3553 // this will increase the total number of instructions.
3554 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003555 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003556 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003557 if (c1 < VT.getSizeInBits()) {
3558 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003559 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3560 VT.getSizeInBits() - c1);
3561 SDValue Shift;
3562 if (c2 > c1) {
3563 Mask = Mask.shl(c2-c1);
3564 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3565 DAG.getConstant(c2-c1, N1.getValueType()));
3566 } else {
3567 Mask = Mask.lshr(c1-c2);
3568 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3569 DAG.getConstant(c1-c2, N1.getValueType()));
3570 }
3571 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3572 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003573 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003574 }
Bill Wendling88103372009-01-30 21:37:17 +00003575 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003576 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3577 SDValue HiBitsMask =
3578 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3579 VT.getSizeInBits() -
3580 N1C->getZExtValue()),
3581 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003582 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003583 HiBitsMask);
3584 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003585
Evan Chenge5b51ac2010-04-17 06:13:15 +00003586 if (N1C) {
3587 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3588 if (NewSHL.getNode())
3589 return NewSHL;
3590 }
3591
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003592 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003593}
3594
Dan Gohman475871a2008-07-27 21:46:04 +00003595SDValue DAGCombiner::visitSRA(SDNode *N) {
3596 SDValue N0 = N->getOperand(0);
3597 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003598 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3599 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003600 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003601 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003602
Bill Wendling88103372009-01-30 21:37:17 +00003603 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003604 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003605 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003606 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003607 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003608 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003609 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003610 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003611 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003612 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003613 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003614 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003615 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003616 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003617 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003618 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3619 // sext_inreg.
3620 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003621 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003622 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3623 if (VT.isVector())
3624 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3625 ExtVT, VT.getVectorNumElements());
3626 if ((!LegalOperations ||
3627 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003628 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003629 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003630 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003631
Bill Wendling88103372009-01-30 21:37:17 +00003632 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003633 if (N1C && N0.getOpcode() == ISD::SRA) {
3634 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003635 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003636 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003637 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003638 DAG.getConstant(Sum, N1C->getValueType(0)));
3639 }
3640 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003641
Bill Wendling88103372009-01-30 21:37:17 +00003642 // fold (sra (shl X, m), (sub result_size, n))
3643 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003644 // result_size - n != m.
3645 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003646 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003647 if (N0.getOpcode() == ISD::SHL) {
3648 // Get the two constanst of the shifts, CN0 = m, CN = n.
3649 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3650 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003651 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003652 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003653 EVT::getIntegerVT(*DAG.getContext(),
3654 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003655 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003656 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003657
Scott Michelfdc40a02009-02-17 22:15:04 +00003658 // If the shift is not a no-op (in which case this should be just a sign
3659 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003660 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003661 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003662 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003663 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3664 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003665 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003666
Owen Anderson95771af2011-02-25 21:41:48 +00003667 SDValue Amt = DAG.getConstant(ShiftAmt,
3668 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003669 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3670 N0.getOperand(0), Amt);
3671 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3672 Shift);
3673 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3674 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003675 }
3676 }
3677 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003678
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003679 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003680 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003681 N1.getOperand(0).getOpcode() == ISD::AND &&
3682 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003683 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003684 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003685 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003686 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003687 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003688 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003689 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003690 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003691 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003692 DAG.getNode(ISD::TRUNCATE,
3693 N->getDebugLoc(),
3694 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003695 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003696 }
3697 }
3698
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003699 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3700 // if c1 is equal to the number of bits the trunc removes
3701 if (N0.getOpcode() == ISD::TRUNCATE &&
3702 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3703 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3704 N0.getOperand(0).hasOneUse() &&
3705 N0.getOperand(0).getOperand(1).hasOneUse() &&
3706 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3707 EVT LargeVT = N0.getOperand(0).getValueType();
3708 ConstantSDNode *LargeShiftAmt =
3709 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3710
3711 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3712 LargeShiftAmt->getZExtValue()) {
3713 SDValue Amt =
3714 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003715 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003716 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3717 N0.getOperand(0).getOperand(0), Amt);
3718 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3719 }
3720 }
3721
Scott Michelfdc40a02009-02-17 22:15:04 +00003722 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003723 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3724 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003725
3726
Nate Begeman1d4d4142005-09-01 00:19:25 +00003727 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003728 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003729 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003730
Evan Chenge5b51ac2010-04-17 06:13:15 +00003731 if (N1C) {
3732 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3733 if (NewSRA.getNode())
3734 return NewSRA;
3735 }
3736
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003737 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003738}
3739
Dan Gohman475871a2008-07-27 21:46:04 +00003740SDValue DAGCombiner::visitSRL(SDNode *N) {
3741 SDValue N0 = N->getOperand(0);
3742 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003743 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3744 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003745 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003746 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003747
Nate Begeman1d4d4142005-09-01 00:19:25 +00003748 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003749 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003750 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003751 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003752 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003753 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003754 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003755 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003756 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003757 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003758 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003759 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003760 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003761 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003762 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003763 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003764
Bill Wendling88103372009-01-30 21:37:17 +00003765 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003766 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003767 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003768 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3769 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003770 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003771 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003772 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003773 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003774 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003775
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003776 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003777 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3778 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003779 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003780 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003781 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3782 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003783 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3784 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003785 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003786 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003787 if (c1 + OpSizeInBits == InnerShiftSize) {
3788 if (c1 + c2 >= InnerShiftSize)
3789 return DAG.getConstant(0, VT);
3790 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003791 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003792 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003793 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003794 }
3795 }
3796
Chris Lattnerefcddc32010-04-15 05:28:43 +00003797 // fold (srl (shl x, c), c) -> (and x, cst2)
3798 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3799 N0.getValueSizeInBits() <= 64) {
3800 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3801 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3802 DAG.getConstant(~0ULL >> ShAmt, VT));
3803 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003804
Scott Michelfdc40a02009-02-17 22:15:04 +00003805
Chris Lattner06afe072006-05-05 22:53:17 +00003806 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3807 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3808 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003809 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003810 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003811 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003812
Evan Chenge5b51ac2010-04-17 06:13:15 +00003813 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003814 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003815 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003816 N0.getOperand(0),
3817 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003818 AddToWorkList(SmallShift.getNode());
3819 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3820 }
Chris Lattner06afe072006-05-05 22:53:17 +00003821 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003822
Chris Lattner3657ffe2006-10-12 20:23:19 +00003823 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3824 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003825 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003826 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003827 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003828 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003829
Chris Lattner350bec02006-04-02 06:11:11 +00003830 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003831 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003832 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003833 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003834 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003835
Chris Lattner350bec02006-04-02 06:11:11 +00003836 // If any of the input bits are KnownOne, then the input couldn't be all
3837 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003838 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003839
Chris Lattner350bec02006-04-02 06:11:11 +00003840 // If all of the bits input the to ctlz node are known to be zero, then
3841 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003842 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003843 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003844
Chris Lattner350bec02006-04-02 06:11:11 +00003845 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003846 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003847 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003848 // could be set on input to the CTLZ node. If this bit is set, the SRL
3849 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3850 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003851 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003852 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003853
Chris Lattner350bec02006-04-02 06:11:11 +00003854 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003855 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003856 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003857 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003858 }
Bill Wendling88103372009-01-30 21:37:17 +00003859
3860 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3861 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003862 }
3863 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003864
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003865 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003866 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003867 N1.getOperand(0).getOpcode() == ISD::AND &&
3868 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003869 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003870 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003871 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003872 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003873 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003874 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003875 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003876 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003877 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003878 DAG.getNode(ISD::TRUNCATE,
3879 N->getDebugLoc(),
3880 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003881 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003882 }
3883 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003884
Chris Lattner61a4c072007-04-18 03:06:49 +00003885 // fold operands of srl based on knowledge that the low bits are not
3886 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003887 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3888 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003889
Evan Cheng9ab2b982009-12-18 21:31:31 +00003890 if (N1C) {
3891 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3892 if (NewSRL.getNode())
3893 return NewSRL;
3894 }
3895
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003896 // Attempt to convert a srl of a load into a narrower zero-extending load.
3897 SDValue NarrowLoad = ReduceLoadWidth(N);
3898 if (NarrowLoad.getNode())
3899 return NarrowLoad;
3900
Evan Cheng9ab2b982009-12-18 21:31:31 +00003901 // Here is a common situation. We want to optimize:
3902 //
3903 // %a = ...
3904 // %b = and i32 %a, 2
3905 // %c = srl i32 %b, 1
3906 // brcond i32 %c ...
3907 //
3908 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003909 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003910 // %a = ...
3911 // %b = and %a, 2
3912 // %c = setcc eq %b, 0
3913 // brcond %c ...
3914 //
3915 // However when after the source operand of SRL is optimized into AND, the SRL
3916 // itself may not be optimized further. Look for it and add the BRCOND into
3917 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003918 if (N->hasOneUse()) {
3919 SDNode *Use = *N->use_begin();
3920 if (Use->getOpcode() == ISD::BRCOND)
3921 AddToWorkList(Use);
3922 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3923 // Also look pass the truncate.
3924 Use = *Use->use_begin();
3925 if (Use->getOpcode() == ISD::BRCOND)
3926 AddToWorkList(Use);
3927 }
3928 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003929
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003930 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003931}
3932
Dan Gohman475871a2008-07-27 21:46:04 +00003933SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3934 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003935 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003936
3937 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003938 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003939 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003940 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003941}
3942
Chandler Carruth63974b22011-12-13 01:56:10 +00003943SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3944 SDValue N0 = N->getOperand(0);
3945 EVT VT = N->getValueType(0);
3946
3947 // fold (ctlz_zero_undef c1) -> c2
3948 if (isa<ConstantSDNode>(N0))
3949 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3950 return SDValue();
3951}
3952
Dan Gohman475871a2008-07-27 21:46:04 +00003953SDValue DAGCombiner::visitCTTZ(SDNode *N) {
3954 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003955 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003956
Nate Begeman1d4d4142005-09-01 00:19:25 +00003957 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003958 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003959 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003960 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003961}
3962
Chandler Carruth63974b22011-12-13 01:56:10 +00003963SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
3964 SDValue N0 = N->getOperand(0);
3965 EVT VT = N->getValueType(0);
3966
3967 // fold (cttz_zero_undef c1) -> c2
3968 if (isa<ConstantSDNode>(N0))
3969 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3970 return SDValue();
3971}
3972
Dan Gohman475871a2008-07-27 21:46:04 +00003973SDValue DAGCombiner::visitCTPOP(SDNode *N) {
3974 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003975 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003976
Nate Begeman1d4d4142005-09-01 00:19:25 +00003977 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003978 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003979 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003980 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003981}
3982
Dan Gohman475871a2008-07-27 21:46:04 +00003983SDValue DAGCombiner::visitSELECT(SDNode *N) {
3984 SDValue N0 = N->getOperand(0);
3985 SDValue N1 = N->getOperand(1);
3986 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003987 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3988 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3989 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00003990 EVT VT = N->getValueType(0);
3991 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00003992
Bill Wendling34584e62009-01-30 22:02:18 +00003993 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003994 if (N1 == N2)
3995 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003996 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003997 if (N0C && !N0C->isNullValue())
3998 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003999 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00004000 if (N0C && N0C->isNullValue())
4001 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004002 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004003 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004004 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4005 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004006 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004007 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004008 (VT0.isInteger() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00004009 TLI.getBooleanContents(false) == TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004010 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004011 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004012 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004013 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4014 N0, DAG.getConstant(1, VT0));
4015 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4016 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004017 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004018 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004019 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4020 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004021 }
Bill Wendling34584e62009-01-30 22:02:18 +00004022 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004023 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004024 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004025 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004026 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004027 }
Bill Wendling34584e62009-01-30 22:02:18 +00004028 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004029 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004030 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004031 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004032 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004033 }
Bill Wendling34584e62009-01-30 22:02:18 +00004034 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004035 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004036 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4037 // fold (select X, X, Y) -> (or X, Y)
4038 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004039 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004040 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4041 // fold (select X, Y, X) -> (and X, Y)
4042 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004043 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004044 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004045
Chris Lattner40c62d52005-10-18 06:04:22 +00004046 // If we can fold this based on the true/false value, do so.
4047 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004048 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004049
Nate Begeman44728a72005-09-19 22:34:01 +00004050 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004051 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004052 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004053 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004054 // having to say they don't support SELECT_CC on every type the DAG knows
4055 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004056 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004057 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004058 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4059 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004060 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004061 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004062 }
Bill Wendling34584e62009-01-30 22:02:18 +00004063
Dan Gohman475871a2008-07-27 21:46:04 +00004064 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004065}
4066
Dan Gohman475871a2008-07-27 21:46:04 +00004067SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4068 SDValue N0 = N->getOperand(0);
4069 SDValue N1 = N->getOperand(1);
4070 SDValue N2 = N->getOperand(2);
4071 SDValue N3 = N->getOperand(3);
4072 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004073 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004074
Nate Begeman44728a72005-09-19 22:34:01 +00004075 // fold select_cc lhs, rhs, x, x, cc -> x
4076 if (N2 == N3)
4077 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004078
Chris Lattner5f42a242006-09-20 06:19:26 +00004079 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004080 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004081 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004082 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004083
Gabor Greifba36cb52008-08-28 21:40:38 +00004084 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004085 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004086 return N2; // cond always true -> true val
4087 else
4088 return N3; // cond always false -> false val
4089 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004090
Chris Lattner5f42a242006-09-20 06:19:26 +00004091 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004092 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004093 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4094 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004095 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004096
Chris Lattner40c62d52005-10-18 06:04:22 +00004097 // If we can fold this based on the true/false value, do so.
4098 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004099 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004100
Nate Begeman44728a72005-09-19 22:34:01 +00004101 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004102 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004103}
4104
Dan Gohman475871a2008-07-27 21:46:04 +00004105SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004106 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004107 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4108 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004109}
4110
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004111// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004112// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004113// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004114// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004115static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004116 unsigned ExtOpc,
4117 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004118 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004119 bool HasCopyToRegUses = false;
4120 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004121 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4122 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004123 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004124 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004125 if (User == N)
4126 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004127 if (UI.getUse().getResNo() != N0.getResNo())
4128 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004129 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004130 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004131 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4132 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4133 // Sign bits will be lost after a zext.
4134 return false;
4135 bool Add = false;
4136 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004137 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004138 if (UseOp == N0)
4139 continue;
4140 if (!isa<ConstantSDNode>(UseOp))
4141 return false;
4142 Add = true;
4143 }
4144 if (Add)
4145 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004146 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004147 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004148 // If truncates aren't free and there are users we can't
4149 // extend, it isn't worthwhile.
4150 if (!isTruncFree)
4151 return false;
4152 // Remember if this value is live-out.
4153 if (User->getOpcode() == ISD::CopyToReg)
4154 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004155 }
4156
4157 if (HasCopyToRegUses) {
4158 bool BothLiveOut = false;
4159 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4160 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004161 SDUse &Use = UI.getUse();
4162 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4163 BothLiveOut = true;
4164 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004165 }
4166 }
4167 if (BothLiveOut)
4168 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004169 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004170 return ExtendNodes.size();
4171 }
4172 return true;
4173}
4174
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004175void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4176 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4177 ISD::NodeType ExtType) {
4178 // Extend SetCC uses if necessary.
4179 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4180 SDNode *SetCC = SetCCs[i];
4181 SmallVector<SDValue, 4> Ops;
4182
4183 for (unsigned j = 0; j != 2; ++j) {
4184 SDValue SOp = SetCC->getOperand(j);
4185 if (SOp == Trunc)
4186 Ops.push_back(ExtLoad);
4187 else
4188 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4189 }
4190
4191 Ops.push_back(SetCC->getOperand(2));
4192 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4193 &Ops[0], Ops.size()));
4194 }
4195}
4196
Dan Gohman475871a2008-07-27 21:46:04 +00004197SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4198 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004199 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004200
Nate Begeman1d4d4142005-09-01 00:19:25 +00004201 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004202 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004203 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004204
Nate Begeman1d4d4142005-09-01 00:19:25 +00004205 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004206 // fold (sext (aext x)) -> (sext x)
4207 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004208 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4209 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004210
Chris Lattner22558872007-02-26 03:13:59 +00004211 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004212 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4213 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004214 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4215 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004216 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4217 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004218 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004219 // CombineTo deleted the truncate, if needed, but not what's under it.
4220 AddToWorkList(oye);
4221 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004222 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004223 }
Evan Chengc88138f2007-03-22 01:54:19 +00004224
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004225 // See if the value being truncated is already sign extended. If so, just
4226 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004227 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004228 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4229 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4230 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004231 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004232
Chris Lattner22558872007-02-26 03:13:59 +00004233 if (OpBits == DestBits) {
4234 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4235 // bits, it is already ready.
4236 if (NumSignBits > DestBits-MidBits)
4237 return Op;
4238 } else if (OpBits < DestBits) {
4239 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4240 // bits, just sext from i32.
4241 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004242 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004243 } else {
4244 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4245 // bits, just truncate to i32.
4246 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004247 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004248 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004249
Chris Lattner22558872007-02-26 03:13:59 +00004250 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004251 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4252 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004253 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004254 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004255 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004256 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4257 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004258 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004259 }
Chris Lattner6007b842006-09-21 06:00:20 +00004260 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004261
Evan Cheng110dec22005-12-14 02:19:23 +00004262 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004263 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004264 // on vectors in one instruction. We only perform this transformation on
4265 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004266 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004267 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004268 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004269 bool DoXform = true;
4270 SmallVector<SDNode*, 4> SetCCs;
4271 if (!N0.hasOneUse())
4272 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4273 if (DoXform) {
4274 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004275 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004276 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004277 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004278 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004279 LN0->isVolatile(), LN0->isNonTemporal(),
4280 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004281 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004282 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4283 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004284 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004285 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4286 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004287 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004288 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004289 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004290
4291 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4292 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004293 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4294 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004295 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004296 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004297 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004298 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004299 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004300 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004301 LN0->getBasePtr(), LN0->getPointerInfo(),
4302 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004303 LN0->isVolatile(), LN0->isNonTemporal(),
4304 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004305 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004306 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004307 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4308 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004309 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004310 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004311 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004312 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004313
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004314 // fold (sext (and/or/xor (load x), cst)) ->
4315 // (and/or/xor (sextload x), (sext cst))
4316 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4317 N0.getOpcode() == ISD::XOR) &&
4318 isa<LoadSDNode>(N0.getOperand(0)) &&
4319 N0.getOperand(1).getOpcode() == ISD::Constant &&
4320 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4321 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4322 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4323 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4324 bool DoXform = true;
4325 SmallVector<SDNode*, 4> SetCCs;
4326 if (!N0.hasOneUse())
4327 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4328 SetCCs, TLI);
4329 if (DoXform) {
4330 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4331 LN0->getChain(), LN0->getBasePtr(),
4332 LN0->getPointerInfo(),
4333 LN0->getMemoryVT(),
4334 LN0->isVolatile(),
4335 LN0->isNonTemporal(),
4336 LN0->getAlignment());
4337 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4338 Mask = Mask.sext(VT.getSizeInBits());
4339 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4340 ExtLoad, DAG.getConstant(Mask, VT));
4341 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4342 N0.getOperand(0).getDebugLoc(),
4343 N0.getOperand(0).getValueType(), ExtLoad);
4344 CombineTo(N, And);
4345 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4346 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4347 ISD::SIGN_EXTEND);
4348 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4349 }
4350 }
4351 }
4352
Chris Lattner20a35c32007-04-11 05:32:27 +00004353 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004354 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004355 // Only do this before legalize for now.
4356 if (VT.isVector() && !LegalOperations) {
4357 EVT N0VT = N0.getOperand(0).getValueType();
Nadav Rotem2e506192012-04-11 08:26:11 +00004358 // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4359 // of the same size as the compared operands. Only optimize sext(setcc())
4360 // if this is the case.
4361 EVT SVT = TLI.getSetCCResultType(N0VT);
4362
4363 // We know that the # elements of the results is the same as the
4364 // # elements of the compare (and the # elements of the compare result
4365 // for that matter). Check to see that they are the same size. If so,
4366 // we know that the element size of the sext'd result matches the
4367 // element size of the compare operands.
4368 if (VT.getSizeInBits() == SVT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004369 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004370 N0.getOperand(1),
4371 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004372 // If the desired elements are smaller or larger than the source
4373 // elements we can use a matching integer vector type and then
4374 // truncate/sign extend
4375 else {
Duncan Sands34727662010-07-12 08:16:59 +00004376 EVT MatchingElementType =
4377 EVT::getIntegerVT(*DAG.getContext(),
4378 N0VT.getScalarType().getSizeInBits());
4379 EVT MatchingVectorType =
4380 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4381 N0VT.getVectorNumElements());
Nadav Rotem2e506192012-04-11 08:26:11 +00004382
4383 if (SVT == MatchingVectorType) {
4384 SDValue VsetCC = DAG.getSetCC(N->getDebugLoc(), MatchingVectorType,
4385 N0.getOperand(0), N0.getOperand(1),
4386 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4387 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
4388 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004389 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004390 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004391
Chris Lattner2b7a2712009-07-08 00:31:33 +00004392 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004393 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004394 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004395 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004396 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004397 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004398 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004399 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004400 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004401 if (!LegalOperations ||
4402 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4403 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4404 DAG.getSetCC(N->getDebugLoc(),
4405 TLI.getSetCCResultType(VT),
4406 N0.getOperand(0), N0.getOperand(1),
4407 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4408 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004409 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004410
Dan Gohman8f0ad582008-04-28 16:58:24 +00004411 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004412 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004413 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004414 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004415
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004416 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004417}
4418
Rafael Espindoladecbc432012-04-09 16:06:03 +00004419// isTruncateOf - If N is a truncate of some other value, return true, record
4420// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4421// This function computes KnownZero to avoid a duplicated call to
4422// ComputeMaskedBits in the caller.
4423static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4424 APInt &KnownZero) {
4425 APInt KnownOne;
4426 if (N->getOpcode() == ISD::TRUNCATE) {
4427 Op = N->getOperand(0);
4428 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4429 return true;
4430 }
4431
4432 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4433 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4434 return false;
4435
4436 SDValue Op0 = N->getOperand(0);
4437 SDValue Op1 = N->getOperand(1);
4438 assert(Op0.getValueType() == Op1.getValueType());
4439
4440 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4441 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004442 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004443 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004444 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004445 Op = Op0;
4446 else
4447 return false;
4448
4449 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4450
4451 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4452 return false;
4453
4454 return true;
4455}
4456
Dan Gohman475871a2008-07-27 21:46:04 +00004457SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4458 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004459 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004460
Nate Begeman1d4d4142005-09-01 00:19:25 +00004461 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004462 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004463 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004464 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004465 // fold (zext (aext x)) -> (zext x)
4466 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004467 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4468 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004469
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004470 // fold (zext (truncate x)) -> (zext x) or
4471 // (zext (truncate x)) -> (truncate x)
4472 // This is valid when the truncated bits of x are already zero.
4473 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004474 SDValue Op;
4475 APInt KnownZero;
4476 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4477 APInt TruncatedBits =
4478 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4479 APInt(Op.getValueSizeInBits(), 0) :
4480 APInt::getBitsSet(Op.getValueSizeInBits(),
4481 N0.getValueSizeInBits(),
4482 std::min(Op.getValueSizeInBits(),
4483 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004484 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004485 if (VT.bitsGT(Op.getValueType()))
4486 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4487 if (VT.bitsLT(Op.getValueType()))
4488 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4489
4490 return Op;
4491 }
4492 }
4493
Evan Chengc88138f2007-03-22 01:54:19 +00004494 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4495 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004496 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004497 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4498 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004499 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4500 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004501 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004502 // CombineTo deleted the truncate, if needed, but not what's under it.
4503 AddToWorkList(oye);
4504 }
Eli Friedmane545d382011-04-16 23:25:34 +00004505 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004506 }
Evan Chengc88138f2007-03-22 01:54:19 +00004507 }
4508
Chris Lattner6007b842006-09-21 06:00:20 +00004509 // fold (zext (truncate x)) -> (and x, mask)
4510 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004511 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004512
4513 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4514 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4515 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4516 if (NarrowLoad.getNode()) {
4517 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4518 if (NarrowLoad.getNode() != N0.getNode()) {
4519 CombineTo(N0.getNode(), NarrowLoad);
4520 // CombineTo deleted the truncate, if needed, but not what's under it.
4521 AddToWorkList(oye);
4522 }
4523 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4524 }
4525
Dan Gohman475871a2008-07-27 21:46:04 +00004526 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004527 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004528 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004529 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004530 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004531 }
Dan Gohman87862e72009-12-11 21:31:27 +00004532 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4533 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004534 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004535
Dan Gohman97121ba2009-04-08 00:15:30 +00004536 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4537 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004538 if (N0.getOpcode() == ISD::AND &&
4539 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004540 N0.getOperand(1).getOpcode() == ISD::Constant &&
4541 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4542 N0.getValueType()) ||
4543 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004544 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004545 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004546 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004547 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004548 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004549 }
Dan Gohman220a8232008-03-03 23:51:38 +00004550 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004551 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004552 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4553 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004554 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004555
Evan Cheng110dec22005-12-14 02:19:23 +00004556 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004557 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004558 // on vectors in one instruction. We only perform this transformation on
4559 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004560 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004561 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004562 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004563 bool DoXform = true;
4564 SmallVector<SDNode*, 4> SetCCs;
4565 if (!N0.hasOneUse())
4566 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4567 if (DoXform) {
4568 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004569 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004570 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004571 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004572 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004573 LN0->isVolatile(), LN0->isNonTemporal(),
4574 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004575 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004576 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4577 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004578 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004579
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004580 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4581 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004582 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004583 }
Evan Cheng110dec22005-12-14 02:19:23 +00004584 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004585
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004586 // fold (zext (and/or/xor (load x), cst)) ->
4587 // (and/or/xor (zextload x), (zext cst))
4588 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4589 N0.getOpcode() == ISD::XOR) &&
4590 isa<LoadSDNode>(N0.getOperand(0)) &&
4591 N0.getOperand(1).getOpcode() == ISD::Constant &&
4592 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4593 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4594 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4595 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4596 bool DoXform = true;
4597 SmallVector<SDNode*, 4> SetCCs;
4598 if (!N0.hasOneUse())
4599 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4600 SetCCs, TLI);
4601 if (DoXform) {
4602 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4603 LN0->getChain(), LN0->getBasePtr(),
4604 LN0->getPointerInfo(),
4605 LN0->getMemoryVT(),
4606 LN0->isVolatile(),
4607 LN0->isNonTemporal(),
4608 LN0->getAlignment());
4609 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4610 Mask = Mask.zext(VT.getSizeInBits());
4611 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4612 ExtLoad, DAG.getConstant(Mask, VT));
4613 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4614 N0.getOperand(0).getDebugLoc(),
4615 N0.getOperand(0).getValueType(), ExtLoad);
4616 CombineTo(N, And);
4617 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4618 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4619 ISD::ZERO_EXTEND);
4620 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4621 }
4622 }
4623 }
4624
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004625 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4626 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004627 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4628 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004629 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004630 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004631 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004632 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004633 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004634 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004635 LN0->getBasePtr(), LN0->getPointerInfo(),
4636 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004637 LN0->isVolatile(), LN0->isNonTemporal(),
4638 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004639 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004640 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004641 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4642 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004643 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004644 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004645 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004646 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004647
Chris Lattner20a35c32007-04-11 05:32:27 +00004648 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004649 if (!LegalOperations && VT.isVector()) {
4650 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4651 // Only do this before legalize for now.
4652 EVT N0VT = N0.getOperand(0).getValueType();
4653 EVT EltVT = VT.getVectorElementType();
4654 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4655 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004656 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004657 // We know that the # elements of the results is the same as the
4658 // # elements of the compare (and the # elements of the compare result
4659 // for that matter). Check to see that they are the same size. If so,
4660 // we know that the element size of the sext'd result matches the
4661 // element size of the compare operands.
4662 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004663 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004664 N0.getOperand(1),
4665 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4666 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4667 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004668
4669 // If the desired elements are smaller or larger than the source
4670 // elements we can use a matching integer vector type and then
4671 // truncate/sign extend
4672 EVT MatchingElementType =
4673 EVT::getIntegerVT(*DAG.getContext(),
4674 N0VT.getScalarType().getSizeInBits());
4675 EVT MatchingVectorType =
4676 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4677 N0VT.getVectorNumElements());
4678 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004679 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004680 N0.getOperand(1),
4681 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4682 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4683 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4684 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4685 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004686 }
4687
4688 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004689 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004690 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004691 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004692 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004693 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004694 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004695
Evan Cheng9818c042009-12-15 03:00:32 +00004696 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004697 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004698 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004699 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4700 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004701 SDValue ShAmt = N0.getOperand(1);
4702 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004703 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004704 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004705 // If the original shl may be shifting out bits, do not perform this
4706 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004707 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4708 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4709 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004710 return SDValue();
4711 }
Chris Lattnere0751182011-02-13 19:09:16 +00004712
4713 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004714
4715 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004716 if (VT.getSizeInBits() >= 256)
4717 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004718
Chris Lattnere0751182011-02-13 19:09:16 +00004719 return DAG.getNode(N0.getOpcode(), DL, VT,
4720 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4721 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004722 }
4723
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004724 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004725}
4726
Dan Gohman475871a2008-07-27 21:46:04 +00004727SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4728 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004729 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004730
Chris Lattner5ffc0662006-05-05 05:58:59 +00004731 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004732 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004733 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004734 // fold (aext (aext x)) -> (aext x)
4735 // fold (aext (zext x)) -> (zext x)
4736 // fold (aext (sext x)) -> (sext x)
4737 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4738 N0.getOpcode() == ISD::ZERO_EXTEND ||
4739 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004740 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004741
Evan Chengc88138f2007-03-22 01:54:19 +00004742 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4743 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4744 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004745 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4746 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004747 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4748 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004749 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004750 // CombineTo deleted the truncate, if needed, but not what's under it.
4751 AddToWorkList(oye);
4752 }
Eli Friedmane545d382011-04-16 23:25:34 +00004753 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004754 }
Evan Chengc88138f2007-03-22 01:54:19 +00004755 }
4756
Chris Lattner84750582006-09-20 06:29:17 +00004757 // fold (aext (truncate x))
4758 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004759 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004760 if (TruncOp.getValueType() == VT)
4761 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004762 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004763 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4764 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004765 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004766
Dan Gohman97121ba2009-04-08 00:15:30 +00004767 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4768 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004769 if (N0.getOpcode() == ISD::AND &&
4770 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004771 N0.getOperand(1).getOpcode() == ISD::Constant &&
4772 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4773 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004774 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004775 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004776 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004777 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004778 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004779 }
Dan Gohman220a8232008-03-03 23:51:38 +00004780 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004781 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004782 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4783 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004784 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004785
Chris Lattner5ffc0662006-05-05 05:58:59 +00004786 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004787 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004788 // on vectors in one instruction. We only perform this transformation on
4789 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004790 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004791 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004792 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004793 bool DoXform = true;
4794 SmallVector<SDNode*, 4> SetCCs;
4795 if (!N0.hasOneUse())
4796 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4797 if (DoXform) {
4798 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004799 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004800 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004801 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004802 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004803 LN0->isVolatile(), LN0->isNonTemporal(),
4804 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004805 CombineTo(N, ExtLoad);
4806 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4807 N0.getValueType(), ExtLoad);
4808 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004809 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4810 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004811 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4812 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004813 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004814
Chris Lattner5ffc0662006-05-05 05:58:59 +00004815 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4816 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4817 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004818 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004819 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004820 N0.hasOneUse()) {
4821 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004822 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004823 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4824 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004825 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004826 LN0->isVolatile(), LN0->isNonTemporal(),
4827 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004828 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004829 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004830 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4831 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004832 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004833 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004834 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004835
Chris Lattner20a35c32007-04-11 05:32:27 +00004836 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004837 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4838 // Only do this before legalize for now.
4839 if (VT.isVector() && !LegalOperations) {
4840 EVT N0VT = N0.getOperand(0).getValueType();
4841 // We know that the # elements of the results is the same as the
4842 // # elements of the compare (and the # elements of the compare result
4843 // for that matter). Check to see that they are the same size. If so,
4844 // we know that the element size of the sext'd result matches the
4845 // element size of the compare operands.
4846 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004847 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004848 N0.getOperand(1),
4849 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004850 // If the desired elements are smaller or larger than the source
4851 // elements we can use a matching integer vector type and then
4852 // truncate/sign extend
4853 else {
Duncan Sands34727662010-07-12 08:16:59 +00004854 EVT MatchingElementType =
4855 EVT::getIntegerVT(*DAG.getContext(),
4856 N0VT.getScalarType().getSizeInBits());
4857 EVT MatchingVectorType =
4858 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4859 N0VT.getVectorNumElements());
4860 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004861 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004862 N0.getOperand(1),
4863 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4864 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004865 }
4866 }
4867
4868 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004869 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004870 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004871 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004872 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004873 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004874 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004875 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004876
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004877 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004878}
4879
Chris Lattner2b4c2792007-10-13 06:35:54 +00004880/// GetDemandedBits - See if the specified operand can be simplified with the
4881/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004882/// simpler operand, otherwise return a null SDValue.
4883SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004884 switch (V.getOpcode()) {
4885 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004886 case ISD::Constant: {
4887 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4888 assert(CV != 0 && "Const value should be ConstSDNode.");
4889 const APInt &CVal = CV->getAPIntValue();
4890 APInt NewVal = CVal & Mask;
4891 if (NewVal != CVal) {
4892 return DAG.getConstant(NewVal, V.getValueType());
4893 }
4894 break;
4895 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004896 case ISD::OR:
4897 case ISD::XOR:
4898 // If the LHS or RHS don't contribute bits to the or, drop them.
4899 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4900 return V.getOperand(1);
4901 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4902 return V.getOperand(0);
4903 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004904 case ISD::SRL:
4905 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004906 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004907 break;
4908 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4909 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004910 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004911
Dan Gohmancc91d632009-01-03 19:22:06 +00004912 // Watch out for shift count overflow though.
4913 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004914 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004915 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004916 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004917 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004918 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004919 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004920 }
Dan Gohman475871a2008-07-27 21:46:04 +00004921 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004922}
4923
Evan Chengc88138f2007-03-22 01:54:19 +00004924/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4925/// bits and then truncated to a narrower type and where N is a multiple
4926/// of number of bits of the narrower type, transform it to a narrower load
4927/// from address + N / num of bits of new type. If the result is to be
4928/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004929SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004930 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004931
Evan Chengc88138f2007-03-22 01:54:19 +00004932 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004933 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004934 EVT VT = N->getValueType(0);
4935 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004936
Dan Gohman7f8613e2008-08-14 20:04:46 +00004937 // This transformation isn't valid for vector loads.
4938 if (VT.isVector())
4939 return SDValue();
4940
Dan Gohmand1996362010-01-09 02:13:55 +00004941 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004942 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004943 if (Opc == ISD::SIGN_EXTEND_INREG) {
4944 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004945 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004946 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004947 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004948 ExtType = ISD::ZEXTLOAD;
4949 N0 = SDValue(N, 0);
4950 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4951 if (!N01) return SDValue();
4952 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
4953 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00004954 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00004955 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
4956 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004957
Owen Andersone50ed302009-08-10 22:56:29 +00004958 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00004959
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004960 // Do not generate loads of non-round integer types since these can
4961 // be expensive (and would be wrong if the type is not byte sized).
4962 if (!ExtVT.isRound())
4963 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004964
Evan Chengc88138f2007-03-22 01:54:19 +00004965 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004966 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00004967 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004968 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004969 // Is the shift amount a multiple of size of VT?
4970 if ((ShAmt & (EVTBits-1)) == 0) {
4971 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00004972 // Is the load width a multiple of size of VT?
4973 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00004974 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004975 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004976
Chris Lattnercbf68df2010-12-22 08:02:57 +00004977 // At this point, we must have a load or else we can't do the transform.
4978 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004979
Chris Lattner2831a192010-10-01 05:36:09 +00004980 // If the shift amount is larger than the input type then we're not
4981 // accessing any of the loaded bytes. If the load was a zextload/extload
4982 // then the result of the shift+trunc is zero/undef (handled elsewhere).
4983 // If the load was a sextload then the result is a splat of the sign bit
4984 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00004985 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00004986 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004987 }
4988 }
4989
Dan Gohman394d6292010-11-03 01:47:46 +00004990 // If the load is shifted left (and the result isn't shifted back right),
4991 // we can fold the truncate through the shift.
4992 unsigned ShLeftAmt = 0;
4993 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00004994 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00004995 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
4996 ShLeftAmt = N01->getZExtValue();
4997 N0 = N0.getOperand(0);
4998 }
4999 }
Owen Anderson95771af2011-02-25 21:41:48 +00005000
Chris Lattner4c32bc22010-12-22 07:36:50 +00005001 // If we haven't found a load, we can't narrow it. Don't transform one with
5002 // multiple uses, this would require adding a new load.
5003 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
5004 // Don't change the width of a volatile load.
5005 cast<LoadSDNode>(N0)->isVolatile())
5006 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005007
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005008 // Verify that we are actually reducing a load width here.
5009 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005010 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005011
Chris Lattner4c32bc22010-12-22 07:36:50 +00005012 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5013 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005014
Chris Lattner4c32bc22010-12-22 07:36:50 +00005015 // For big endian targets, we need to adjust the offset to the pointer to
5016 // load the correct bytes.
5017 if (TLI.isBigEndian()) {
5018 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5019 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5020 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005021 }
5022
Chris Lattner4c32bc22010-12-22 07:36:50 +00005023 uint64_t PtrOff = ShAmt / 8;
5024 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5025 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5026 PtrType, LN0->getBasePtr(),
5027 DAG.getConstant(PtrOff, PtrType));
5028 AddToWorkList(NewPtr.getNode());
5029
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005030 SDValue Load;
5031 if (ExtType == ISD::NON_EXTLOAD)
5032 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5033 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005034 LN0->isVolatile(), LN0->isNonTemporal(),
5035 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005036 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005037 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005038 LN0->getPointerInfo().getWithOffset(PtrOff),
5039 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5040 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005041
5042 // Replace the old load's chain with the new load's chain.
5043 WorkListRemover DeadNodes(*this);
5044 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1),
5045 &DeadNodes);
5046
5047 // Shift the result left, if we've swallowed a left shift.
5048 SDValue Result = Load;
5049 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005050 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005051 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5052 ShImmTy = VT;
5053 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5054 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5055 }
5056
5057 // Return the new loaded value.
5058 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005059}
5060
Dan Gohman475871a2008-07-27 21:46:04 +00005061SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5062 SDValue N0 = N->getOperand(0);
5063 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005064 EVT VT = N->getValueType(0);
5065 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005066 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005067 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005068
Nate Begeman1d4d4142005-09-01 00:19:25 +00005069 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005070 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005071 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005072
Chris Lattner541a24f2006-05-06 22:43:44 +00005073 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005074 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005075 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005076
Nate Begeman646d7e22005-09-02 21:18:40 +00005077 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5078 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005079 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005080 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5081 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005082 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005083
Dan Gohman75dcf082008-07-31 00:50:31 +00005084 // fold (sext_in_reg (sext x)) -> (sext x)
5085 // fold (sext_in_reg (aext x)) -> (sext x)
5086 // if x is small enough.
5087 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5088 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005089 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5090 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005091 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005092 }
5093
Chris Lattner95a5e052007-04-17 19:03:21 +00005094 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005095 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005096 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005097
Chris Lattner95a5e052007-04-17 19:03:21 +00005098 // fold operands of sext_in_reg based on knowledge that the top bits are not
5099 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005100 if (SimplifyDemandedBits(SDValue(N, 0)))
5101 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005102
Evan Chengc88138f2007-03-22 01:54:19 +00005103 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5104 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005105 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005106 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005107 return NarrowLoad;
5108
Bill Wendling8509c902009-01-30 22:33:24 +00005109 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
5110 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005111 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5112 if (N0.getOpcode() == ISD::SRL) {
5113 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005114 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Chris Lattner4b37e872006-05-08 21:18:59 +00005115 // We can turn this into an SRA iff the input to the SRL is already sign
5116 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005117 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005118 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005119 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5120 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005121 }
5122 }
Evan Chengc88138f2007-03-22 01:54:19 +00005123
Nate Begemanded49632005-10-13 03:11:28 +00005124 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005125 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005126 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005127 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005128 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005129 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005130 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005131 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005132 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005133 LN0->getBasePtr(), LN0->getPointerInfo(),
5134 EVT,
David Greene1e559442010-02-15 17:00:31 +00005135 LN0->isVolatile(), LN0->isNonTemporal(),
5136 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005137 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005138 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005139 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005140 }
5141 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005142 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005143 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005144 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005145 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005146 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005147 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005148 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005149 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005150 LN0->getBasePtr(), LN0->getPointerInfo(),
5151 EVT,
David Greene1e559442010-02-15 17:00:31 +00005152 LN0->isVolatile(), LN0->isNonTemporal(),
5153 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005154 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005155 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005156 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005157 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005158
5159 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5160 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5161 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5162 N0.getOperand(1), false);
5163 if (BSwap.getNode() != 0)
5164 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5165 BSwap, N1);
5166 }
5167
Dan Gohman475871a2008-07-27 21:46:04 +00005168 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005169}
5170
Dan Gohman475871a2008-07-27 21:46:04 +00005171SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5172 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005173 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005174 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005175
5176 // noop truncate
5177 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005178 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005179 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005180 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005181 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005182 // fold (truncate (truncate x)) -> (truncate x)
5183 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005184 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005185 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005186 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5187 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005188 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005189 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005190 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005191 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5192 N0.getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005193 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005194 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005195 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005196 else
5197 // if the source and dest are the same type, we can drop both the extend
Evan Chengd40d03e2010-01-06 19:38:29 +00005198 // and the truncate.
Nate Begeman83e75ec2005-09-06 04:43:02 +00005199 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005200 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005201
Nadav Rotemcc870a82012-02-05 11:39:23 +00005202 // Fold extract-and-trunc into a narrow extract. For example:
5203 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5204 // i32 y = TRUNCATE(i64 x)
5205 // -- becomes --
5206 // v16i8 b = BITCAST (v2i64 val)
5207 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5208 //
5209 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005210 // creates this pattern) and before operation legalization after which
5211 // we need to be more careful about the vector instructions that we generate.
5212 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5213 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5214
5215 EVT VecTy = N0.getOperand(0).getValueType();
5216 EVT ExTy = N0.getValueType();
5217 EVT TrTy = N->getValueType(0);
5218
5219 unsigned NumElem = VecTy.getVectorNumElements();
5220 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5221
5222 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5223 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5224
5225 SDValue EltNo = N0->getOperand(1);
5226 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5227 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5228
5229 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5230
5231 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5232 NVT, N0.getOperand(0));
5233
5234 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5235 N->getDebugLoc(), TrTy, V,
5236 DAG.getConstant(Index, MVT::i32));
5237 }
5238 }
5239
Chris Lattner2b4c2792007-10-13 06:35:54 +00005240 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005241 // only the low bits are being used.
5242 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005243 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005244 // may have different active low bits.
5245 if (!VT.isVector()) {
5246 SDValue Shorter =
5247 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5248 VT.getSizeInBits()));
5249 if (Shorter.getNode())
5250 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5251 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005252 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005253 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005254 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5255 SDValue Reduced = ReduceLoadWidth(N);
5256 if (Reduced.getNode())
5257 return Reduced;
5258 }
5259
5260 // Simplify the operands using demanded-bits information.
5261 if (!VT.isVector() &&
5262 SimplifyDemandedBits(SDValue(N, 0)))
5263 return SDValue(N, 0);
5264
Evan Chenge5b51ac2010-04-17 06:13:15 +00005265 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005266}
5267
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005268static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005269 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005270 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005271 return Elt.getNode();
5272 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005273}
5274
5275/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005276/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005277SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005278 assert(N->getOpcode() == ISD::BUILD_PAIR);
5279
Nate Begemanabc01992009-06-05 21:37:30 +00005280 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5281 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005282 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5283 LD1->getPointerInfo().getAddrSpace() !=
5284 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005285 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005286 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005287
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005288 if (ISD::isNON_EXTLoad(LD2) &&
5289 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005290 // If both are volatile this would reduce the number of volatile loads.
5291 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005292 !LD1->isVolatile() &&
5293 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005294 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005295 unsigned Align = LD1->getAlignment();
Dan Gohman6448d912008-09-04 15:39:15 +00005296 unsigned NewAlign = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005297 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005298
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005299 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005300 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005301 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005302 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005303 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005304 }
Bill Wendling67a67682009-01-30 22:44:24 +00005305
Dan Gohman475871a2008-07-27 21:46:04 +00005306 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005307}
5308
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005309SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005310 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005311 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005312
Dan Gohman7f321562007-06-25 16:23:39 +00005313 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5314 // Only do this before legalize, since afterward the target may be depending
5315 // on the bitconvert.
5316 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005317 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005318 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005319 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005320 bool isSimple = true;
5321 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5322 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5323 N0.getOperand(i).getOpcode() != ISD::Constant &&
5324 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005325 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005326 break;
5327 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005328
Owen Andersone50ed302009-08-10 22:56:29 +00005329 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005330 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005331 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005332 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005333 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005334 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005335
Dan Gohman3dd168d2008-09-05 01:58:21 +00005336 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005337 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005338 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005339 if (Res.getNode() != N) {
5340 if (!LegalOperations ||
5341 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5342 return Res;
5343
5344 // Folding it resulted in an illegal node, and it's too late to
5345 // do that. Clean up the old node and forego the transformation.
5346 // Ideally this won't happen very often, because instcombine
5347 // and the earlier dagcombine runs (where illegal nodes are
5348 // permitted) should have folded most of them already.
5349 DAG.DeleteNode(Res.getNode());
5350 }
Chris Lattner94683772005-12-23 05:30:37 +00005351 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005352
Bill Wendling67a67682009-01-30 22:44:24 +00005353 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005354 if (N0.getOpcode() == ISD::BITCAST)
5355 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005356 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005357
Chris Lattner57104102005-12-23 05:44:41 +00005358 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005359 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005360 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005361 // Do not change the width of a volatile load.
5362 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005363 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005364 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman6448d912008-09-04 15:39:15 +00005365 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005366 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005367 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005368
Evan Cheng59d5b682007-05-07 21:27:48 +00005369 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005370 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005371 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005372 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005373 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005374 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005375 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005376 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005377 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005378 Load.getValue(1));
5379 return Load;
5380 }
Chris Lattner57104102005-12-23 05:44:41 +00005381 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005382
Bill Wendling67a67682009-01-30 22:44:24 +00005383 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5384 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005385 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005386 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5387 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005388 N0.getNode()->hasOneUse() && VT.isInteger() && !VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005389 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005390 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005391 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005392
Duncan Sands83ec4b62008-06-06 12:08:01 +00005393 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005394 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005395 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5396 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005397 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005398 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5399 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005400 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005401
Bill Wendling67a67682009-01-30 22:44:24 +00005402 // fold (bitconvert (fcopysign cst, x)) ->
5403 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5404 // Note that we don't handle (copysign x, cst) because this can always be
5405 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005406 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005407 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005408 VT.isInteger() && !VT.isVector()) {
5409 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005410 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005411 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005412 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005413 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005414 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005415
Duncan Sands25cf2272008-11-24 14:53:14 +00005416 // If X has a different width than the result/lhs, sext it or truncate it.
5417 unsigned VTWidth = VT.getSizeInBits();
5418 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005419 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005420 AddToWorkList(X.getNode());
5421 } else if (OrigXWidth > VTWidth) {
5422 // To get the sign bit in the right place, we have to shift it right
5423 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005424 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005425 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005426 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5427 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005428 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005429 AddToWorkList(X.getNode());
5430 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005431
Duncan Sands25cf2272008-11-24 14:53:14 +00005432 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005433 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005434 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005435 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005436
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005437 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005438 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005439 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005440 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005441 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005442
Bill Wendling67a67682009-01-30 22:44:24 +00005443 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005444 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005445 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005446
Scott Michelfdc40a02009-02-17 22:15:04 +00005447 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005448 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005449 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5450 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005451 return CombineLD;
5452 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005453
Dan Gohman475871a2008-07-27 21:46:04 +00005454 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005455}
5456
Dan Gohman475871a2008-07-27 21:46:04 +00005457SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005458 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005459 return CombineConsecutiveLoads(N, VT);
5460}
5461
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005462/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005463/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005464/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005465SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005466ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005467 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005468
Chris Lattner6258fb22006-04-02 02:53:43 +00005469 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005470 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005471
Duncan Sands83ec4b62008-06-06 12:08:01 +00005472 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5473 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005474
Chris Lattner6258fb22006-04-02 02:53:43 +00005475 // If this is a conversion of N elements of one type to N elements of another
5476 // type, convert each element. This handles FP<->INT cases.
5477 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005478 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5479 BV->getValueType(0).getVectorNumElements());
5480
5481 // Due to the FP element handling below calling this routine recursively,
5482 // we can end up with a scalar-to-vector node here.
5483 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005484 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5485 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005486 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005487
Dan Gohman475871a2008-07-27 21:46:04 +00005488 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005489 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005490 SDValue Op = BV->getOperand(i);
5491 // If the vector element type is not legal, the BUILD_VECTOR operands
5492 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005493 if (Op.getValueType() != SrcEltVT)
5494 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005495 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005496 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005497 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005498 }
Evan Chenga87008d2009-02-25 22:49:59 +00005499 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5500 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005501 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005502
Chris Lattner6258fb22006-04-02 02:53:43 +00005503 // Otherwise, we're growing or shrinking the elements. To avoid having to
5504 // handle annoying details of growing/shrinking FP values, we convert them to
5505 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005506 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005507 // Convert the input float vector to a int vector where the elements are the
5508 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005509 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005510 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005511 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005512 SrcEltVT = IntVT;
5513 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005514
Chris Lattner6258fb22006-04-02 02:53:43 +00005515 // Now we know the input is an integer vector. If the output is a FP type,
5516 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005517 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005518 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005519 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005520 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005521
Chris Lattner6258fb22006-04-02 02:53:43 +00005522 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005523 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005524 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005525
Chris Lattner6258fb22006-04-02 02:53:43 +00005526 // Okay, we know the src/dst types are both integers of differing types.
5527 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005528 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005529 if (SrcBitSize < DstBitSize) {
5530 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005531
Dan Gohman475871a2008-07-27 21:46:04 +00005532 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005533 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005534 i += NumInputsPerOutput) {
5535 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005536 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005537 bool EltIsUndef = true;
5538 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5539 // Shift the previously computed bits over.
5540 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005541 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005542 if (Op.getOpcode() == ISD::UNDEF) continue;
5543 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005544
Jay Foad40f8f622010-12-07 08:25:19 +00005545 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005546 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005547 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005548
Chris Lattner6258fb22006-04-02 02:53:43 +00005549 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005550 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005551 else
5552 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5553 }
5554
Owen Anderson23b9b192009-08-12 00:36:31 +00005555 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005556 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5557 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005558 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005559
Chris Lattner6258fb22006-04-02 02:53:43 +00005560 // Finally, this must be the case where we are shrinking elements: each input
5561 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005562 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005563 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005564 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5565 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005566 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005567
Dan Gohman7f321562007-06-25 16:23:39 +00005568 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005569 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5570 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005571 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005572 continue;
5573 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005574
Jay Foad40f8f622010-12-07 08:25:19 +00005575 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5576 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005577
Chris Lattner6258fb22006-04-02 02:53:43 +00005578 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005579 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005580 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005581 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005582 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005583 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5584 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005585 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005586 }
5587
5588 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005589 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005590 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5591 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005592
Evan Chenga87008d2009-02-25 22:49:59 +00005593 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5594 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005595}
5596
Dan Gohman475871a2008-07-27 21:46:04 +00005597SDValue DAGCombiner::visitFADD(SDNode *N) {
5598 SDValue N0 = N->getOperand(0);
5599 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005600 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5601 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005602 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005603
Dan Gohman7f321562007-06-25 16:23:39 +00005604 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005605 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005606 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005607 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005608 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005609
Bill Wendlingb0162f52009-01-30 22:53:48 +00005610 // fold (fadd c1, c2) -> (fadd c1, c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005611 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005612 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005613 // canonicalize constant to RHS
5614 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005615 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5616 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005617 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5618 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005619 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005620 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005621 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5622 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005623 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005624 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005625 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005626 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5627 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005628 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005629 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005630
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005631 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005632 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5633 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5634 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005635 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005636 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5637 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005638
Dan Gohman475871a2008-07-27 21:46:04 +00005639 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005640}
5641
Dan Gohman475871a2008-07-27 21:46:04 +00005642SDValue DAGCombiner::visitFSUB(SDNode *N) {
5643 SDValue N0 = N->getOperand(0);
5644 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005645 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5646 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005647 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005648
Dan Gohman7f321562007-06-25 16:23:39 +00005649 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005650 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005651 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005652 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005653 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005654
Nate Begemana0e221d2005-10-18 00:28:13 +00005655 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005656 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005657 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005658 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005659 if (DAG.getTarget().Options.UnsafeFPMath &&
5660 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005661 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005662 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005663 if (DAG.getTarget().Options.UnsafeFPMath &&
5664 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005665 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005666 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005667 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005668 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005669 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005670 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005671 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005672 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005673 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005674
Bill Wendling5a894342012-03-15 05:12:00 +00005675 // If 'unsafe math' is enabled, fold
5676 // (fsub x, (fadd x, y)) -> (fneg y) &
5677 // (fsub x, (fadd y, x)) -> (fneg y)
5678 if (DAG.getTarget().Options.UnsafeFPMath) {
5679 if (N1.getOpcode() == ISD::FADD) {
5680 SDValue N10 = N1->getOperand(0);
5681 SDValue N11 = N1->getOperand(1);
5682
5683 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5684 &DAG.getTarget().Options))
5685 return GetNegatedExpression(N11, DAG, LegalOperations);
5686 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5687 &DAG.getTarget().Options))
5688 return GetNegatedExpression(N10, DAG, LegalOperations);
5689 }
5690 }
5691
Dan Gohman475871a2008-07-27 21:46:04 +00005692 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005693}
5694
Dan Gohman475871a2008-07-27 21:46:04 +00005695SDValue DAGCombiner::visitFMUL(SDNode *N) {
5696 SDValue N0 = N->getOperand(0);
5697 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005698 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5699 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005700 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005701 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005702
Dan Gohman7f321562007-06-25 16:23:39 +00005703 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005704 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005705 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005706 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005707 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005708
Nate Begeman11af4ea2005-10-17 20:40:11 +00005709 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005710 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005711 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005712 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005713 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005714 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5715 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005716 if (DAG.getTarget().Options.UnsafeFPMath &&
5717 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005718 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005719 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005720 if (DAG.getTarget().Options.UnsafeFPMath &&
5721 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005722 return N1;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005723 // fold (fmul X, 2.0) -> (fadd X, X)
5724 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005725 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00005726 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00005727 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00005728 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005729 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005730
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005731 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005732 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005733 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005734 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005735 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005736 // Both can be negated for free, check to see if at least one is cheaper
5737 // negated.
5738 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005739 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005740 GetNegatedExpression(N0, DAG, LegalOperations),
5741 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005742 }
5743 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005744
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005745 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005746 if (DAG.getTarget().Options.UnsafeFPMath &&
5747 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005748 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005749 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00005750 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00005751 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005752
Dan Gohman475871a2008-07-27 21:46:04 +00005753 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005754}
5755
Dan Gohman475871a2008-07-27 21:46:04 +00005756SDValue DAGCombiner::visitFDIV(SDNode *N) {
5757 SDValue N0 = N->getOperand(0);
5758 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005759 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5760 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005761 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005762 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005763
Dan Gohman7f321562007-06-25 16:23:39 +00005764 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005765 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005766 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005767 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005768 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005769
Nate Begemana148d982006-01-18 22:35:16 +00005770 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005771 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005772 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005773
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00005774 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
5775 if (N1CFP && VT != MVT::ppcf128 && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00005776 // Compute the reciprocal 1.0 / c2.
5777 APFloat N1APF = N1CFP->getValueAPF();
5778 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
5779 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Duncan Sands507bb7a2012-04-10 20:35:27 +00005780 // Only do the transform if the reciprocal is a legal fp immediate that
5781 // isn't too nasty (eg NaN, denormal, ...).
5782 if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
Anton Korobeynikov999821c2012-04-10 13:22:49 +00005783 (!LegalOperations ||
5784 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
5785 // backend)... we should handle this gracefully after Legalize.
5786 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
5787 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
5788 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00005789 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
5790 DAG.getConstantFP(Recip, VT));
5791 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005792
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005793 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005794 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005795 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005796 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005797 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005798 // Both can be negated for free, check to see if at least one is cheaper
5799 // negated.
5800 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00005801 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005802 GetNegatedExpression(N0, DAG, LegalOperations),
5803 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005804 }
5805 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005806
Dan Gohman475871a2008-07-27 21:46:04 +00005807 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005808}
5809
Dan Gohman475871a2008-07-27 21:46:04 +00005810SDValue DAGCombiner::visitFREM(SDNode *N) {
5811 SDValue N0 = N->getOperand(0);
5812 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005813 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5814 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005815 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00005816
Nate Begemana148d982006-01-18 22:35:16 +00005817 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005818 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005819 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00005820
Dan Gohman475871a2008-07-27 21:46:04 +00005821 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005822}
5823
Dan Gohman475871a2008-07-27 21:46:04 +00005824SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
5825 SDValue N0 = N->getOperand(0);
5826 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00005827 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5828 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005829 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00005830
Owen Anderson825b72b2009-08-11 20:47:22 +00005831 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005832 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005833
Chris Lattner12d83032006-03-05 05:30:57 +00005834 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00005835 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00005836 // copysign(x, c1) -> fabs(x) iff ispos(c1)
5837 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00005838 if (!V.isNegative()) {
5839 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005840 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00005841 } else {
5842 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005843 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00005844 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00005845 }
Chris Lattner12d83032006-03-05 05:30:57 +00005846 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005847
Chris Lattner12d83032006-03-05 05:30:57 +00005848 // copysign(fabs(x), y) -> copysign(x, y)
5849 // copysign(fneg(x), y) -> copysign(x, y)
5850 // copysign(copysign(x,z), y) -> copysign(x, y)
5851 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
5852 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005853 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5854 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00005855
5856 // copysign(x, abs(y)) -> abs(x)
5857 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005858 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005859
Chris Lattner12d83032006-03-05 05:30:57 +00005860 // copysign(x, copysign(y,z)) -> copysign(x, z)
5861 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005862 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5863 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005864
Chris Lattner12d83032006-03-05 05:30:57 +00005865 // copysign(x, fp_extend(y)) -> copysign(x, y)
5866 // copysign(x, fp_round(y)) -> copysign(x, y)
5867 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005868 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5869 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005870
Dan Gohman475871a2008-07-27 21:46:04 +00005871 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00005872}
5873
Dan Gohman475871a2008-07-27 21:46:04 +00005874SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
5875 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005876 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005877 EVT VT = N->getValueType(0);
5878 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00005879
Nate Begeman1d4d4142005-09-01 00:19:25 +00005880 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005881 if (N0C && OpVT != MVT::ppcf128 &&
5882 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005883 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005884 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005885 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005886
Chris Lattnercda88752008-06-26 00:16:49 +00005887 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
5888 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005889 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
5890 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005891 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005892 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005893 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005894 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005895
Dan Gohman475871a2008-07-27 21:46:04 +00005896 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005897}
5898
Dan Gohman475871a2008-07-27 21:46:04 +00005899SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
5900 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005901 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005902 EVT VT = N->getValueType(0);
5903 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00005904
Nate Begeman1d4d4142005-09-01 00:19:25 +00005905 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005906 if (N0C && OpVT != MVT::ppcf128 &&
5907 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005908 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005909 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005910 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005911
Chris Lattnercda88752008-06-26 00:16:49 +00005912 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
5913 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005914 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
5915 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005916 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005917 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005918 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005919 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005920
Dan Gohman475871a2008-07-27 21:46:04 +00005921 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005922}
5923
Dan Gohman475871a2008-07-27 21:46:04 +00005924SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
5925 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005926 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005927 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005928
Nate Begeman1d4d4142005-09-01 00:19:25 +00005929 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00005930 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005931 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
5932
Dan Gohman475871a2008-07-27 21:46:04 +00005933 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005934}
5935
Dan Gohman475871a2008-07-27 21:46:04 +00005936SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
5937 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005938 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005939 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005940
Nate Begeman1d4d4142005-09-01 00:19:25 +00005941 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00005942 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005943 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
5944
Dan Gohman475871a2008-07-27 21:46:04 +00005945 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005946}
5947
Dan Gohman475871a2008-07-27 21:46:04 +00005948SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
5949 SDValue N0 = N->getOperand(0);
5950 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005951 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005952 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005953
Nate Begeman1d4d4142005-09-01 00:19:25 +00005954 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00005955 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005956 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005957
Chris Lattner79dbea52006-03-13 06:26:26 +00005958 // fold (fp_round (fp_extend x)) -> x
5959 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
5960 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005961
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005962 // fold (fp_round (fp_round x)) -> (fp_round x)
5963 if (N0.getOpcode() == ISD::FP_ROUND) {
5964 // This is a value preserving truncation if both round's are.
5965 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005966 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00005967 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005968 DAG.getIntPtrConstant(IsTrunc));
5969 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005970
Chris Lattner79dbea52006-03-13 06:26:26 +00005971 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00005972 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00005973 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
5974 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00005975 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00005976 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5977 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00005978 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005979
Dan Gohman475871a2008-07-27 21:46:04 +00005980 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005981}
5982
Dan Gohman475871a2008-07-27 21:46:04 +00005983SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
5984 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005985 EVT VT = N->getValueType(0);
5986 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00005987 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005988
Nate Begeman1d4d4142005-09-01 00:19:25 +00005989 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00005990 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005991 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00005992 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005993 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005994
Dan Gohman475871a2008-07-27 21:46:04 +00005995 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005996}
5997
Dan Gohman475871a2008-07-27 21:46:04 +00005998SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
5999 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006000 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006001 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006002
Chris Lattner5938bef2007-12-29 06:55:23 +00006003 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00006004 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00006005 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00006006 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00006007
Nate Begeman1d4d4142005-09-01 00:19:25 +00006008 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006009 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006010 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006011
6012 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6013 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006014 if (N0.getOpcode() == ISD::FP_ROUND
6015 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006016 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006017 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006018 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006019 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6020 In, N0.getOperand(1));
6021 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006022 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006023
Chris Lattner0bd48932008-01-17 07:00:52 +00006024 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006025 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006026 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006027 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006028 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006029 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006030 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006031 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006032 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006033 LN0->isVolatile(), LN0->isNonTemporal(),
6034 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006035 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006036 CombineTo(N0.getNode(),
6037 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6038 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006039 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006040 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006041 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006042
Dan Gohman475871a2008-07-27 21:46:04 +00006043 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006044}
6045
Dan Gohman475871a2008-07-27 21:46:04 +00006046SDValue DAGCombiner::visitFNEG(SDNode *N) {
6047 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006048 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006049
Owen Andersonafd3d562012-03-06 00:29:31 +00006050 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6051 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006052 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006053
Chris Lattner3bd39d42008-01-27 17:42:27 +00006054 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6055 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006056 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006057 !VT.isVector() &&
6058 N0.getNode()->hasOneUse() &&
6059 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006060 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006061 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006062 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006063 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6064 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006065 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006066 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006067 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006068 }
6069 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006070
Dan Gohman475871a2008-07-27 21:46:04 +00006071 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006072}
6073
Dan Gohman475871a2008-07-27 21:46:04 +00006074SDValue DAGCombiner::visitFABS(SDNode *N) {
6075 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006076 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006077 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006078
Nate Begeman1d4d4142005-09-01 00:19:25 +00006079 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00006080 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006081 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006082 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006083 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006084 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006085 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006086 // fold (fabs (fcopysign x, y)) -> (fabs x)
6087 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006088 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006089
Chris Lattner3bd39d42008-01-27 17:42:27 +00006090 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6091 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006092 if (!TLI.isFAbsFree(VT) &&
6093 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006094 N0.getOperand(0).getValueType().isInteger() &&
6095 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006096 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006097 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006098 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006099 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006100 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006101 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006102 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006103 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006104 }
6105 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006106
Dan Gohman475871a2008-07-27 21:46:04 +00006107 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006108}
6109
Dan Gohman475871a2008-07-27 21:46:04 +00006110SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6111 SDValue Chain = N->getOperand(0);
6112 SDValue N1 = N->getOperand(1);
6113 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006114
Dan Gohmane0f06c72009-11-17 00:47:23 +00006115 // If N is a constant we could fold this into a fallthrough or unconditional
6116 // branch. However that doesn't happen very often in normal code, because
6117 // Instcombine/SimplifyCFG should have handled the available opportunities.
6118 // If we did this folding here, it would be necessary to update the
6119 // MachineBasicBlock CFG, which is awkward.
6120
Nate Begeman750ac1b2006-02-01 07:19:44 +00006121 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6122 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006123 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006124 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6125 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006126 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006127 N1.getOperand(0), N1.getOperand(1), N2);
6128 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006129
Evan Cheng2a135ae2010-10-04 22:41:01 +00006130 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6131 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6132 (N1.getOperand(0).hasOneUse() &&
6133 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6134 SDNode *Trunc = 0;
6135 if (N1.getOpcode() == ISD::TRUNCATE) {
6136 // Look pass the truncate.
6137 Trunc = N1.getNode();
6138 N1 = N1.getOperand(0);
6139 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006140
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006141 // Match this pattern so that we can generate simpler code:
6142 //
6143 // %a = ...
6144 // %b = and i32 %a, 2
6145 // %c = srl i32 %b, 1
6146 // brcond i32 %c ...
6147 //
6148 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006149 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006150 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006151 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006152 // %c = setcc eq %b, 0
6153 // brcond %c ...
6154 //
6155 // This applies only when the AND constant value has one bit set and the
6156 // SRL constant is equal to the log2 of the AND constant. The back-end is
6157 // smart enough to convert the result into a TEST/JMP sequence.
6158 SDValue Op0 = N1.getOperand(0);
6159 SDValue Op1 = N1.getOperand(1);
6160
6161 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006162 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006163 SDValue AndOp1 = Op0.getOperand(1);
6164
6165 if (AndOp1.getOpcode() == ISD::Constant) {
6166 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6167
6168 if (AndConst.isPowerOf2() &&
6169 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6170 SDValue SetCC =
6171 DAG.getSetCC(N->getDebugLoc(),
6172 TLI.getSetCCResultType(Op0.getValueType()),
6173 Op0, DAG.getConstant(0, Op0.getValueType()),
6174 ISD::SETNE);
6175
Evan Chengd40d03e2010-01-06 19:38:29 +00006176 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6177 MVT::Other, Chain, SetCC, N2);
6178 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6179 // will convert it back to (X & C1) >> C2.
6180 CombineTo(N, NewBRCond, false);
6181 // Truncate is dead.
6182 if (Trunc) {
6183 removeFromWorkList(Trunc);
6184 DAG.DeleteNode(Trunc);
6185 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006186 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006187 WorkListRemover DeadNodes(*this);
6188 DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006189 removeFromWorkList(N1.getNode());
6190 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006191 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006192 }
6193 }
6194 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006195
6196 if (Trunc)
6197 // Restore N1 if the above transformation doesn't match.
6198 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006199 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006200
Evan Cheng2c755ba2010-02-27 07:36:59 +00006201 // Transform br(xor(x, y)) -> br(x != y)
6202 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6203 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6204 SDNode *TheXor = N1.getNode();
6205 SDValue Op0 = TheXor->getOperand(0);
6206 SDValue Op1 = TheXor->getOperand(1);
6207 if (Op0.getOpcode() == Op1.getOpcode()) {
6208 // Avoid missing important xor optimizations.
6209 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006210 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006211 DEBUG(dbgs() << "\nReplacing.8 ";
6212 TheXor->dump(&DAG);
6213 dbgs() << "\nWith: ";
6214 Tmp.getNode()->dump(&DAG);
6215 dbgs() << '\n');
6216 WorkListRemover DeadNodes(*this);
6217 DAG.ReplaceAllUsesOfValueWith(N1, Tmp, &DeadNodes);
6218 removeFromWorkList(TheXor);
6219 DAG.DeleteNode(TheXor);
6220 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6221 MVT::Other, Chain, Tmp, N2);
6222 }
6223 }
6224
6225 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6226 bool Equal = false;
6227 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6228 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6229 Op0.getOpcode() == ISD::XOR) {
6230 TheXor = Op0.getNode();
6231 Equal = true;
6232 }
6233
Evan Cheng2a135ae2010-10-04 22:41:01 +00006234 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006235 if (LegalTypes)
6236 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6237 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6238 SetCCVT,
6239 Op0, Op1,
6240 Equal ? ISD::SETEQ : ISD::SETNE);
6241 // Replace the uses of XOR with SETCC
6242 WorkListRemover DeadNodes(*this);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006243 DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
6244 removeFromWorkList(N1.getNode());
6245 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006246 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6247 MVT::Other, Chain, SetCC, N2);
6248 }
6249 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006250
Dan Gohman475871a2008-07-27 21:46:04 +00006251 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006252}
6253
Chris Lattner3ea0b472005-10-05 06:47:48 +00006254// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6255//
Dan Gohman475871a2008-07-27 21:46:04 +00006256SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006257 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006258 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006259
Dan Gohmane0f06c72009-11-17 00:47:23 +00006260 // If N is a constant we could fold this into a fallthrough or unconditional
6261 // branch. However that doesn't happen very often in normal code, because
6262 // Instcombine/SimplifyCFG should have handled the available opportunities.
6263 // If we did this folding here, it would be necessary to update the
6264 // MachineBasicBlock CFG, which is awkward.
6265
Duncan Sands8eab8a22008-06-09 11:32:28 +00006266 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006267 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006268 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6269 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006270 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006271
Nate Begemane17daeb2005-10-05 21:43:42 +00006272 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006273 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006274 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006275 N->getOperand(0), Simp.getOperand(2),
6276 Simp.getOperand(0), Simp.getOperand(1),
6277 N->getOperand(4));
6278
Dan Gohman475871a2008-07-27 21:46:04 +00006279 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006280}
6281
Evan Chengc4b527a2012-01-13 01:37:24 +00006282/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6283/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006284/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006285static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6286 SelectionDAG &DAG,
6287 const TargetLowering &TLI) {
6288 EVT VT;
6289 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6290 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6291 return false;
6292 VT = Use->getValueType(0);
6293 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6294 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6295 return false;
6296 VT = ST->getValue().getValueType();
6297 } else
6298 return false;
6299
6300 TargetLowering::AddrMode AM;
6301 if (N->getOpcode() == ISD::ADD) {
6302 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6303 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006304 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006305 AM.BaseOffs = Offset->getSExtValue();
6306 else
Evan Cheng03be3622012-03-06 23:33:32 +00006307 // [reg +/- reg]
6308 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006309 } else if (N->getOpcode() == ISD::SUB) {
6310 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6311 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006312 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006313 AM.BaseOffs = -Offset->getSExtValue();
6314 else
Evan Cheng03be3622012-03-06 23:33:32 +00006315 // [reg +/- reg]
6316 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006317 } else
6318 return false;
6319
6320 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6321}
6322
Duncan Sandsec87aa82008-06-15 20:12:31 +00006323/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6324/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006325/// and it has other uses besides the load / store. After the
6326/// transformation, the new indexed load / store has effectively folded
6327/// the add / subtract in and all of its other uses are redirected to the
6328/// new load / store.
6329bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006330 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006331 return false;
6332
6333 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006334 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006335 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006336 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006337 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006338 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006339 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006340 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006341 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6342 return false;
6343 Ptr = LD->getBasePtr();
6344 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006345 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006346 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006347 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006348 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6349 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6350 return false;
6351 Ptr = ST->getBasePtr();
6352 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006353 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006354 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006355 }
Chris Lattner448f2192006-11-11 00:39:41 +00006356
Chris Lattner9f1794e2006-11-11 00:56:29 +00006357 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6358 // out. There is no reason to make this a preinc/predec.
6359 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006360 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006361 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006362
Chris Lattner9f1794e2006-11-11 00:56:29 +00006363 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006364 SDValue BasePtr;
6365 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006366 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6367 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6368 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006369 // Don't create a indexed load / store with zero offset.
6370 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006371 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006372 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006373
Chris Lattner41e53fd2006-11-11 01:00:15 +00006374 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006375 // 1) The new base ptr is a frame index.
6376 // 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 +00006377 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006378 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006379 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006380 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006381
Chris Lattner41e53fd2006-11-11 01:00:15 +00006382 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6383 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006384 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006385 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006386
Chris Lattner41e53fd2006-11-11 01:00:15 +00006387 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006388 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006389 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006390 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006391 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006392 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006393
Evan Chengc843abe2007-05-24 02:35:39 +00006394 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006395 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006396
6397 // Caches for hasPredecessorHelper
6398 SmallPtrSet<const SDNode *, 32> Visited;
6399 SmallVector<const SDNode *, 16> Worklist;
6400
Gabor Greifba36cb52008-08-28 21:40:38 +00006401 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6402 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006403 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006404 if (Use == N)
6405 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006406 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006407 return false;
6408
Evan Chengc4b527a2012-01-13 01:37:24 +00006409 // If Ptr may be folded in addressing mode of other use, then it's
6410 // not profitable to do this transformation.
6411 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006412 RealUse = true;
6413 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006414
Chris Lattner9f1794e2006-11-11 00:56:29 +00006415 if (!RealUse)
6416 return false;
6417
Dan Gohman475871a2008-07-27 21:46:04 +00006418 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006419 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006420 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6421 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006422 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006423 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6424 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006425 ++PreIndexedNodes;
6426 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006427 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006428 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006429 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006430 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006431 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006432 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006433 if (isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006434 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006435 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006436 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006437 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006438 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006439 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006440 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006441 }
6442
Chris Lattner9f1794e2006-11-11 00:56:29 +00006443 // Finally, since the node is now dead, remove it from the graph.
6444 DAG.DeleteNode(N);
6445
6446 // Replace the uses of Ptr with uses of the updated base value.
6447 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006448 &DeadNodes);
Gabor Greifba36cb52008-08-28 21:40:38 +00006449 removeFromWorkList(Ptr.getNode());
6450 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006451
6452 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006453}
6454
Duncan Sandsec87aa82008-06-15 20:12:31 +00006455/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006456/// add / sub of the base pointer node into a post-indexed load / store.
6457/// The transformation folded the add / subtract into the new indexed
6458/// load / store effectively and all of its uses are redirected to the
6459/// new load / store.
6460bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006461 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006462 return false;
6463
6464 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006465 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006466 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006467 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006468 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006469 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006470 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006471 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6472 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6473 return false;
6474 Ptr = LD->getBasePtr();
6475 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006476 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006477 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006478 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006479 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6480 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6481 return false;
6482 Ptr = ST->getBasePtr();
6483 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006484 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006485 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006486 }
Chris Lattner448f2192006-11-11 00:39:41 +00006487
Gabor Greifba36cb52008-08-28 21:40:38 +00006488 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006489 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006490
Gabor Greifba36cb52008-08-28 21:40:38 +00006491 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6492 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006493 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006494 if (Op == N ||
6495 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6496 continue;
6497
Dan Gohman475871a2008-07-27 21:46:04 +00006498 SDValue BasePtr;
6499 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006500 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6501 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006502 // Don't create a indexed load / store with zero offset.
6503 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006504 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006505 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006506
Chris Lattner9f1794e2006-11-11 00:56:29 +00006507 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006508 // 1) All uses are load / store ops that use it as base ptr (and
6509 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006510 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6511 // nor a successor of N. Otherwise, if Op is folded that would
6512 // create a cycle.
6513
Evan Chengcaab1292009-05-06 18:25:01 +00006514 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6515 continue;
6516
Chris Lattner9f1794e2006-11-11 00:56:29 +00006517 // Check for #1.
6518 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006519 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6520 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006521 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006522 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006523 continue;
6524
Chris Lattner9f1794e2006-11-11 00:56:29 +00006525 // If all the uses are load / store addresses, then don't do the
6526 // transformation.
6527 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6528 bool RealUse = false;
6529 for (SDNode::use_iterator III = Use->use_begin(),
6530 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006531 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006532 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006533 RealUse = true;
6534 }
Chris Lattner448f2192006-11-11 00:39:41 +00006535
Chris Lattner9f1794e2006-11-11 00:56:29 +00006536 if (!RealUse) {
6537 TryNext = true;
6538 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006539 }
6540 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006541 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006542
Chris Lattner9f1794e2006-11-11 00:56:29 +00006543 if (TryNext)
6544 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006545
Chris Lattner9f1794e2006-11-11 00:56:29 +00006546 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00006547 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006548 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00006549 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6550 BasePtr, Offset, AM)
6551 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6552 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006553 ++PostIndexedNodes;
6554 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006555 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006556 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006557 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006558 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006559 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006560 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006561 if (isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006562 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006563 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006564 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006565 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006566 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006567 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006568 &DeadNodes);
Chris Lattner448f2192006-11-11 00:39:41 +00006569 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006570
Chris Lattner9f1794e2006-11-11 00:56:29 +00006571 // Finally, since the node is now dead, remove it from the graph.
6572 DAG.DeleteNode(N);
6573
6574 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00006575 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Chris Lattner9f1794e2006-11-11 00:56:29 +00006576 Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006577 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006578 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006579 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006580 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006581 }
6582 }
6583 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006584
Chris Lattner448f2192006-11-11 00:39:41 +00006585 return false;
6586}
6587
Dan Gohman475871a2008-07-27 21:46:04 +00006588SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00006589 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006590 SDValue Chain = LD->getChain();
6591 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006592
Evan Cheng45a7ca92007-05-01 00:38:21 +00006593 // If load is not volatile and there are no uses of the loaded value (and
6594 // the updated indexed value in case of indexed loads), change uses of the
6595 // chain value into uses of the chain input (i.e. delete the dead load).
6596 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006597 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00006598 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00006599 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00006600 // It's not safe to use the two value CombineTo variant here. e.g.
6601 // v1, chain2 = load chain1, loc
6602 // v2, chain3 = load chain2, loc
6603 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00006604 // Now we replace use of chain2 with chain1. This makes the second load
6605 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00006606 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006607 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006608 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006609 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006610 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006611 WorkListRemover DeadNodes(*this);
Dan Gohman475871a2008-07-27 21:46:04 +00006612 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain, &DeadNodes);
Bill Wendlingc0debad2009-01-30 23:27:35 +00006613
Chris Lattner125991a2008-01-24 07:57:06 +00006614 if (N->use_empty()) {
6615 removeFromWorkList(N);
6616 DAG.DeleteNode(N);
6617 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006618
Dan Gohman475871a2008-07-27 21:46:04 +00006619 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00006620 }
Evan Cheng498f5592007-05-01 08:53:39 +00006621 } else {
6622 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00006623 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00006624 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00006625 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00006626 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006627 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006628 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006629 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006630 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006631 WorkListRemover DeadNodes(*this);
Dan Gohman475871a2008-07-27 21:46:04 +00006632 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef, &DeadNodes);
6633 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Dale Johannesene8d72302009-02-06 23:05:02 +00006634 DAG.getUNDEF(N->getValueType(1)),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006635 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006636 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain, &DeadNodes);
Evan Cheng02c42852008-01-16 23:11:54 +00006637 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00006638 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006639 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00006640 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00006641 }
6642 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006643
Chris Lattner01a22022005-10-10 22:04:48 +00006644 // If this load is directly stored, replace the load value with the stored
6645 // value.
6646 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006647 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00006648 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00006649 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006650 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
6651 if (PrevST->getBasePtr() == Ptr &&
6652 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006653 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00006654 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006655 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006656
Evan Cheng255f20f2010-04-01 06:04:33 +00006657 // Try to infer better alignment information than the load already has.
6658 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00006659 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6660 if (Align > LD->getAlignment())
6661 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
6662 LD->getValueType(0),
6663 Chain, Ptr, LD->getPointerInfo(),
6664 LD->getMemoryVT(),
6665 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00006666 }
6667 }
6668
Jim Laskey7ca56af2006-10-11 13:47:09 +00006669 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00006670 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00006671 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00006672
Jim Laskey6ff23e52006-10-04 16:53:27 +00006673 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00006674 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00006675 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006676
Jim Laskey279f0532006-09-25 16:29:54 +00006677 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006678 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00006679 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00006680 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006681 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006682 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006683 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00006684 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
6685 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00006686 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006687 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006688 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006689 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00006690 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006691 }
Jim Laskey279f0532006-09-25 16:29:54 +00006692
Jim Laskey6ff23e52006-10-04 16:53:27 +00006693 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00006694 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006695 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006696
Nate Begemanb6aef5c2009-09-15 00:18:30 +00006697 // Make sure the new and old chains are cleaned up.
6698 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006699
Jim Laskey274062c2006-10-13 23:32:28 +00006700 // Replace uses with load result and token factor. Don't add users
6701 // to work list.
6702 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00006703 }
6704 }
6705
Evan Cheng7fc033a2006-11-03 03:06:21 +00006706 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00006707 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00006708 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00006709
Dan Gohman475871a2008-07-27 21:46:04 +00006710 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00006711}
6712
Chris Lattner2392ae72010-04-15 04:48:01 +00006713/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
6714/// load is having specific bytes cleared out. If so, return the byte size
6715/// being masked out and the shift amount.
6716static std::pair<unsigned, unsigned>
6717CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
6718 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006719
Chris Lattner2392ae72010-04-15 04:48:01 +00006720 // Check for the structure we're looking for.
6721 if (V->getOpcode() != ISD::AND ||
6722 !isa<ConstantSDNode>(V->getOperand(1)) ||
6723 !ISD::isNormalLoad(V->getOperand(0).getNode()))
6724 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006725
Chris Lattnere6987582010-04-15 06:10:49 +00006726 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00006727 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00006728 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006729
Chris Lattnere6987582010-04-15 06:10:49 +00006730 // The store should be chained directly to the load or be an operand of a
6731 // tokenfactor.
6732 if (LD == Chain.getNode())
6733 ; // ok.
6734 else if (Chain->getOpcode() != ISD::TokenFactor)
6735 return Result; // Fail.
6736 else {
6737 bool isOk = false;
6738 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
6739 if (Chain->getOperand(i).getNode() == LD) {
6740 isOk = true;
6741 break;
6742 }
6743 if (!isOk) return Result;
6744 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006745
Chris Lattner2392ae72010-04-15 04:48:01 +00006746 // This only handles simple types.
6747 if (V.getValueType() != MVT::i16 &&
6748 V.getValueType() != MVT::i32 &&
6749 V.getValueType() != MVT::i64)
6750 return Result;
6751
6752 // Check the constant mask. Invert it so that the bits being masked out are
6753 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
6754 // follow the sign bit for uniformity.
6755 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
6756 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
6757 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
6758 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
6759 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
6760 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006761
Chris Lattner2392ae72010-04-15 04:48:01 +00006762 // See if we have a continuous run of bits. If so, we have 0*1+0*
6763 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
6764 return Result;
6765
6766 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
6767 if (V.getValueType() != MVT::i64 && NotMaskLZ)
6768 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006769
Chris Lattner2392ae72010-04-15 04:48:01 +00006770 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
6771 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006772 case 1:
6773 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00006774 case 4: break;
6775 default: return Result; // All one mask, or 5-byte mask.
6776 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006777
Chris Lattner2392ae72010-04-15 04:48:01 +00006778 // Verify that the first bit starts at a multiple of mask so that the access
6779 // is aligned the same as the access width.
6780 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006781
Chris Lattner2392ae72010-04-15 04:48:01 +00006782 Result.first = MaskedBytes;
6783 Result.second = NotMaskTZ/8;
6784 return Result;
6785}
6786
6787
6788/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
6789/// provides a value as specified by MaskInfo. If so, replace the specified
6790/// store with a narrower store of truncated IVal.
6791static SDNode *
6792ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
6793 SDValue IVal, StoreSDNode *St,
6794 DAGCombiner *DC) {
6795 unsigned NumBytes = MaskInfo.first;
6796 unsigned ByteShift = MaskInfo.second;
6797 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006798
Chris Lattner2392ae72010-04-15 04:48:01 +00006799 // Check to see if IVal is all zeros in the part being masked in by the 'or'
6800 // that uses this. If not, this is not a replacement.
6801 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
6802 ByteShift*8, (ByteShift+NumBytes)*8);
6803 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006804
Chris Lattner2392ae72010-04-15 04:48:01 +00006805 // Check that it is legal on the target to do this. It is legal if the new
6806 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
6807 // legalization.
6808 MVT VT = MVT::getIntegerVT(NumBytes*8);
6809 if (!DC->isTypeLegal(VT))
6810 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006811
Chris Lattner2392ae72010-04-15 04:48:01 +00006812 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
6813 // shifted by ByteShift and truncated down to NumBytes.
6814 if (ByteShift)
6815 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00006816 DAG.getConstant(ByteShift*8,
6817 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00006818
6819 // Figure out the offset for the store and the alignment of the access.
6820 unsigned StOffset;
6821 unsigned NewAlign = St->getAlignment();
6822
6823 if (DAG.getTargetLoweringInfo().isLittleEndian())
6824 StOffset = ByteShift;
6825 else
6826 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006827
Chris Lattner2392ae72010-04-15 04:48:01 +00006828 SDValue Ptr = St->getBasePtr();
6829 if (StOffset) {
6830 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
6831 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
6832 NewAlign = MinAlign(NewAlign, StOffset);
6833 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006834
Chris Lattner2392ae72010-04-15 04:48:01 +00006835 // Truncate down to the new size.
6836 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006837
Chris Lattner2392ae72010-04-15 04:48:01 +00006838 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006839 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006840 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00006841 false, false, NewAlign).getNode();
6842}
6843
Evan Cheng8b944d32009-05-28 00:35:15 +00006844
6845/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
6846/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
6847/// of the loaded bits, try narrowing the load and store if it would end up
6848/// being a win for performance or code size.
6849SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
6850 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00006851 if (ST->isVolatile())
6852 return SDValue();
6853
Evan Cheng8b944d32009-05-28 00:35:15 +00006854 SDValue Chain = ST->getChain();
6855 SDValue Value = ST->getValue();
6856 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00006857 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00006858
6859 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00006860 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006861
6862 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006863
Chris Lattner2392ae72010-04-15 04:48:01 +00006864 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
6865 // is a byte mask indicating a consecutive number of bytes, check to see if
6866 // Y is known to provide just those bytes. If so, we try to replace the
6867 // load + replace + store sequence with a single (narrower) store, which makes
6868 // the load dead.
6869 if (Opc == ISD::OR) {
6870 std::pair<unsigned, unsigned> MaskedLoad;
6871 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
6872 if (MaskedLoad.first)
6873 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6874 Value.getOperand(1), ST,this))
6875 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006876
Chris Lattner2392ae72010-04-15 04:48:01 +00006877 // Or is commutative, so try swapping X and Y.
6878 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
6879 if (MaskedLoad.first)
6880 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6881 Value.getOperand(0), ST,this))
6882 return SDValue(NewST, 0);
6883 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006884
Evan Cheng8b944d32009-05-28 00:35:15 +00006885 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
6886 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00006887 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006888
6889 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00006890 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
6891 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00006892 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00006893 if (LD->getBasePtr() != Ptr ||
6894 LD->getPointerInfo().getAddrSpace() !=
6895 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00006896 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006897
6898 // Find the type to narrow it the load / op / store to.
6899 SDValue N1 = Value.getOperand(1);
6900 unsigned BitWidth = N1.getValueSizeInBits();
6901 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
6902 if (Opc == ISD::AND)
6903 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00006904 if (Imm == 0 || Imm.isAllOnesValue())
6905 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006906 unsigned ShAmt = Imm.countTrailingZeros();
6907 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
6908 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00006909 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006910 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00006911 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00006912 TLI.isNarrowingProfitable(VT, NewVT))) {
6913 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00006914 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006915 }
Evan Chengcdcecc02009-05-28 18:41:02 +00006916 if (NewBW >= BitWidth)
6917 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006918
6919 // If the lsb changed does not start at the type bitwidth boundary,
6920 // start at the previous one.
6921 if (ShAmt % NewBW)
6922 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
6923 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
6924 if ((Imm & Mask) == Imm) {
6925 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
6926 if (Opc == ISD::AND)
6927 NewImm ^= APInt::getAllOnesValue(NewBW);
6928 uint64_t PtrOff = ShAmt / 8;
6929 // For big endian targets, we need to adjust the offset to the pointer to
6930 // load the correct bytes.
6931 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00006932 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00006933
6934 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006935 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Chris Lattner2392ae72010-04-15 04:48:01 +00006936 if (NewAlign < TLI.getTargetData()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00006937 return SDValue();
6938
Evan Cheng8b944d32009-05-28 00:35:15 +00006939 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
6940 Ptr.getValueType(), Ptr,
6941 DAG.getConstant(PtrOff, Ptr.getValueType()));
6942 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
6943 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006944 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006945 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006946 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006947 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
6948 DAG.getConstant(NewImm, NewVT));
6949 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
6950 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006951 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006952 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006953
6954 AddToWorkList(NewPtr.getNode());
6955 AddToWorkList(NewLD.getNode());
6956 AddToWorkList(NewVal.getNode());
6957 WorkListRemover DeadNodes(*this);
6958 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1),
6959 &DeadNodes);
6960 ++OpsNarrowed;
6961 return NewST;
6962 }
6963 }
6964
Evan Chengcdcecc02009-05-28 18:41:02 +00006965 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006966}
6967
Evan Cheng31959b12011-02-02 01:06:55 +00006968/// TransformFPLoadStorePair - For a given floating point load / store pair,
6969/// if the load value isn't used by any other operations, then consider
6970/// transforming the pair to integer load / store operations if the target
6971/// deems the transformation profitable.
6972SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
6973 StoreSDNode *ST = cast<StoreSDNode>(N);
6974 SDValue Chain = ST->getChain();
6975 SDValue Value = ST->getValue();
6976 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
6977 Value.hasOneUse() &&
6978 Chain == SDValue(Value.getNode(), 1)) {
6979 LoadSDNode *LD = cast<LoadSDNode>(Value);
6980 EVT VT = LD->getMemoryVT();
6981 if (!VT.isFloatingPoint() ||
6982 VT != ST->getMemoryVT() ||
6983 LD->isNonTemporal() ||
6984 ST->isNonTemporal() ||
6985 LD->getPointerInfo().getAddrSpace() != 0 ||
6986 ST->getPointerInfo().getAddrSpace() != 0)
6987 return SDValue();
6988
6989 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
6990 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
6991 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
6992 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
6993 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
6994 return SDValue();
6995
6996 unsigned LDAlign = LD->getAlignment();
6997 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006998 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Evan Cheng31959b12011-02-02 01:06:55 +00006999 unsigned ABIAlign = TLI.getTargetData()->getABITypeAlignment(IntVTTy);
7000 if (LDAlign < ABIAlign || STAlign < ABIAlign)
7001 return SDValue();
7002
7003 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
7004 LD->getChain(), LD->getBasePtr(),
7005 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007006 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00007007
7008 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
7009 NewLD, ST->getBasePtr(),
7010 ST->getPointerInfo(),
7011 false, false, STAlign);
7012
7013 AddToWorkList(NewLD.getNode());
7014 AddToWorkList(NewST.getNode());
7015 WorkListRemover DeadNodes(*this);
7016 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1),
7017 &DeadNodes);
7018 ++LdStFP2Int;
7019 return NewST;
7020 }
7021
7022 return SDValue();
7023}
7024
Dan Gohman475871a2008-07-27 21:46:04 +00007025SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007026 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007027 SDValue Chain = ST->getChain();
7028 SDValue Value = ST->getValue();
7029 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007030
Evan Cheng59d5b682007-05-07 21:27:48 +00007031 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00007032 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007033 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007034 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00007035 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00007036 EVT SVT = Value.getOperand(0).getValueType();
Dan Gohman1ba519b2009-02-20 23:29:13 +00007037 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00007038 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007039 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00007040 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007041 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00007042 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00007043 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007044 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00007045 }
Owen Andersona34d9362011-04-14 17:30:49 +00007046
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007047 // Turn 'store undef, Ptr' -> nothing.
7048 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
7049 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007050
Nate Begeman2cbba892006-12-11 02:23:46 +00007051 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00007052 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007053 // NOTE: If the original store is volatile, this transform must not increase
7054 // the number of stores. For example, on x86-32 an f64 can be stored in one
7055 // processor operation but an i64 (which is not legal) requires two. So the
7056 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00007057 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00007058 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00007059 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007060 default: llvm_unreachable("Unknown FP type");
Owen Anderson825b72b2009-08-11 20:47:22 +00007061 case MVT::f80: // We don't do this for these yet.
7062 case MVT::f128:
7063 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00007064 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007065 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00007066 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007067 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00007068 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00007069 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00007070 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007071 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007072 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00007073 }
7074 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007075 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00007076 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007077 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007078 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00007079 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00007080 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00007081 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007082 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007083 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007084 }
Owen Andersona34d9362011-04-14 17:30:49 +00007085
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007086 if (!ST->isVolatile() &&
7087 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00007088 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00007089 // argument passing. Since this is so common, custom legalize the
7090 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00007091 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007092 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
7093 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00007094 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00007095
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007096 unsigned Alignment = ST->getAlignment();
7097 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00007098 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007099
Bill Wendlingc144a572009-01-30 23:36:47 +00007100 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007101 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007102 isVolatile, isNonTemporal,
7103 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00007104 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00007105 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00007106 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00007107 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007108 Ptr, ST->getPointerInfo().getWithOffset(4),
7109 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00007110 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00007111 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00007112 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00007113 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007114
Chris Lattner62be1a72006-12-12 04:16:14 +00007115 break;
Evan Cheng25ece662006-12-11 17:25:19 +00007116 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007117 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007118 }
7119
Evan Cheng255f20f2010-04-01 06:04:33 +00007120 // Try to infer better alignment information than the store already has.
7121 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007122 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7123 if (Align > ST->getAlignment())
7124 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
7125 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
7126 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007127 }
7128 }
7129
Evan Cheng31959b12011-02-02 01:06:55 +00007130 // Try transforming a pair floating point load / store ops to integer
7131 // load / store ops.
7132 SDValue NewST = TransformFPLoadStorePair(N);
7133 if (NewST.getNode())
7134 return NewST;
7135
Scott Michelfdc40a02009-02-17 22:15:04 +00007136 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007137 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007138 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007139
Jim Laskey6ff23e52006-10-04 16:53:27 +00007140 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007141 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007142 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007143
7144 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007145 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007146 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007147 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007148 ST->getMemoryVT(), ST->isVolatile(),
7149 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007150 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00007151 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007152 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007153 ST->isVolatile(), ST->isNonTemporal(),
7154 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007155 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007156
Jim Laskey279f0532006-09-25 16:29:54 +00007157 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00007158 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007159 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00007160
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007161 // Make sure the new and old chains are cleaned up.
7162 AddToWorkList(Token.getNode());
7163
Jim Laskey274062c2006-10-13 23:32:28 +00007164 // Don't add users to work list.
7165 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007166 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00007167 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007168
Evan Cheng33dbedc2006-11-05 09:31:14 +00007169 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007170 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007171 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00007172
Chris Lattner3c872852007-12-29 06:26:16 +00007173 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00007174 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00007175 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00007176 // See if we can simplify the input to this truncstore with knowledge that
7177 // only the low bits are being used. For example:
7178 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00007179 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007180 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00007181 APInt::getLowBitsSet(
7182 Value.getValueType().getScalarType().getSizeInBits(),
7183 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00007184 AddToWorkList(Value.getNode());
7185 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00007186 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007187 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007188 ST->isVolatile(), ST->isNonTemporal(),
7189 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00007190
Chris Lattnere33544c2007-10-13 06:58:48 +00007191 // Otherwise, see if we can simplify the operation with
7192 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00007193 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00007194 APInt::getLowBitsSet(
7195 Value.getValueType().getScalarType().getSizeInBits(),
7196 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00007197 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00007198 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007199
Chris Lattner3c872852007-12-29 06:26:16 +00007200 // If this is a load followed by a store to the same location, then the store
7201 // is dead/noop.
7202 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007203 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007204 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00007205 // There can't be any side effects between the load and store, such as
7206 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00007207 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00007208 // The store is dead, remove it.
7209 return Chain;
7210 }
7211 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007212
Chris Lattnerddf89562008-01-17 19:59:44 +00007213 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
7214 // truncating store. We can do this even if this is already a truncstore.
7215 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00007216 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007217 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007218 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007219 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007220 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007221 ST->isVolatile(), ST->isNonTemporal(),
7222 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00007223 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007224
Evan Cheng8b944d32009-05-28 00:35:15 +00007225 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00007226}
7227
Dan Gohman475871a2008-07-27 21:46:04 +00007228SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
7229 SDValue InVec = N->getOperand(0);
7230 SDValue InVal = N->getOperand(1);
7231 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00007232 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00007233
Bob Wilson492fd452010-05-19 23:42:58 +00007234 // If the inserted element is an UNDEF, just use the input vector.
7235 if (InVal.getOpcode() == ISD::UNDEF)
7236 return InVec;
7237
Nadav Rotem609d54e2011-02-12 14:40:33 +00007238 EVT VT = InVec.getValueType();
7239
Owen Anderson95771af2011-02-25 21:41:48 +00007240 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00007241 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
7242 return SDValue();
7243
Eli Friedman9db817f2011-09-09 21:04:06 +00007244 // Check that we know which element is being inserted
7245 if (!isa<ConstantSDNode>(EltNo))
7246 return SDValue();
7247 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007248
Eli Friedman9db817f2011-09-09 21:04:06 +00007249 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
7250 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
7251 // vector elements.
7252 SmallVector<SDValue, 8> Ops;
7253 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
7254 Ops.append(InVec.getNode()->op_begin(),
7255 InVec.getNode()->op_end());
7256 } else if (InVec.getOpcode() == ISD::UNDEF) {
7257 unsigned NElts = VT.getVectorNumElements();
7258 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
7259 } else {
7260 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007261 }
Eli Friedman9db817f2011-09-09 21:04:06 +00007262
7263 // Insert the element
7264 if (Elt < Ops.size()) {
7265 // All the operands of BUILD_VECTOR must have the same type;
7266 // we enforce that here.
7267 EVT OpVT = Ops[0].getValueType();
7268 if (InVal.getValueType() != OpVT)
7269 InVal = OpVT.bitsGT(InVal.getValueType()) ?
7270 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
7271 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
7272 Ops[Elt] = InVal;
7273 }
7274
7275 // Return the new vector
7276 return DAG.getNode(ISD::BUILD_VECTOR, dl,
7277 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00007278}
7279
Dan Gohman475871a2008-07-27 21:46:04 +00007280SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007281 // (vextract (scalar_to_vector val, 0) -> val
7282 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00007283 EVT VT = InVec.getValueType();
7284 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007285
Duncan Sandsc356f332011-05-09 08:03:33 +00007286 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
7287 // Check if the result type doesn't match the inserted element type. A
7288 // SCALAR_TO_VECTOR may truncate the inserted element and the
7289 // EXTRACT_VECTOR_ELT may widen the extracted vector.
7290 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00007291 if (InOp.getValueType() != NVT) {
7292 assert(InOp.getValueType().isInteger() && NVT.isInteger());
7293 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
7294 }
7295 return InOp;
7296 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007297
Nadav Rotemba05c912012-01-17 21:44:01 +00007298 SDValue EltNo = N->getOperand(1);
7299 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
7300
7301 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
7302 // We only perform this optimization before the op legalization phase because
7303 // we may introduce new vector instructions which are not backed by TD patterns.
7304 // For example on AVX, extracting elements from a wide vector without using
7305 // extract_subvector.
7306 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
7307 && ConstEltNo && !LegalOperations) {
7308 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
7309 int NumElem = VT.getVectorNumElements();
7310 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
7311 // Find the new index to extract from.
7312 int OrigElt = SVOp->getMaskElt(Elt);
7313
7314 // Extracting an undef index is undef.
7315 if (OrigElt == -1)
7316 return DAG.getUNDEF(NVT);
7317
7318 // Select the right vector half to extract from.
7319 if (OrigElt < NumElem) {
7320 InVec = InVec->getOperand(0);
7321 } else {
7322 InVec = InVec->getOperand(1);
7323 OrigElt -= NumElem;
7324 }
7325
7326 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
7327 InVec, DAG.getConstant(OrigElt, MVT::i32));
7328 }
7329
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007330 // Perform only after legalization to ensure build_vector / vector_shuffle
7331 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00007332 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007333
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007334 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
7335 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
7336 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00007337
Nadav Rotemba05c912012-01-17 21:44:01 +00007338 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00007339 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00007340 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00007341 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00007342 EVT ExtVT = VT.getVectorElementType();
7343 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00007344
Evan Cheng84387ea2012-03-13 22:00:52 +00007345 // If the result of load has to be truncated, then it's not necessarily
7346 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00007347 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00007348 return SDValue();
7349
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007350 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007351 // Don't duplicate a load with other uses.
7352 if (!InVec.hasOneUse())
7353 return SDValue();
7354
Owen Andersone50ed302009-08-10 22:56:29 +00007355 EVT BCVT = InVec.getOperand(0).getValueType();
7356 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007357 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00007358 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
7359 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007360 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00007361 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007362 NewLoad = true;
7363 }
Evan Cheng513da432007-10-06 08:19:55 +00007364
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007365 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00007366 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00007367 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007368 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00007369 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00007370 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00007371 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007372 // Don't duplicate a load with other uses.
7373 if (!InVec.hasOneUse())
7374 return SDValue();
7375
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007376 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00007377 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007378 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
7379 // =>
7380 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00007381
Eli Friedmand6e25602011-12-26 22:49:32 +00007382 // Don't duplicate a load with other uses.
7383 if (!InVec.hasOneUse())
7384 return SDValue();
7385
Mon P Wanga60b5232008-12-11 00:26:16 +00007386 // If the bit convert changed the number of elements, it is unsafe
7387 // to examine the mask.
7388 if (BCNumEltsChanged)
7389 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00007390
7391 // Select the input vector, guarding against out of range extract vector.
7392 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00007393 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00007394 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
7395
Eli Friedmand6e25602011-12-26 22:49:32 +00007396 if (InVec.getOpcode() == ISD::BITCAST) {
7397 // Don't duplicate a load with other uses.
7398 if (!InVec.hasOneUse())
7399 return SDValue();
7400
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007401 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00007402 }
Gabor Greifba36cb52008-08-28 21:40:38 +00007403 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007404 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00007405 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00007406 }
7407 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007408
Eli Friedmand6e25602011-12-26 22:49:32 +00007409 // Make sure we found a non-volatile load and the extractelement is
7410 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00007411 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00007412 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007413
Eric Christopherd81f17a2010-11-03 20:44:42 +00007414 // If Idx was -1 above, Elt is going to be -1, so just return undef.
7415 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00007416 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00007417
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007418 unsigned Align = LN0->getAlignment();
7419 if (NewLoad) {
7420 // Check the resultant load doesn't need a higher alignment than the
7421 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00007422 unsigned NewAlign =
Eric Christopher503a64d2010-12-09 04:48:06 +00007423 TLI.getTargetData()
7424 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00007425
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007426 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007427 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00007428
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007429 Align = NewAlign;
7430 }
7431
Dan Gohman475871a2008-07-27 21:46:04 +00007432 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00007433 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007434
Eric Christopherd81f17a2010-11-03 20:44:42 +00007435 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00007436 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007437 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007438 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007439 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00007440 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007441 DAG.getConstant(PtrOff, PtrType));
7442 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007443
Eli Friedman4db4add2011-11-16 23:50:22 +00007444 // The replacement we need to do here is a little tricky: we need to
7445 // replace an extractelement of a load with a load.
7446 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00007447 // Note that this replacement assumes that the extractvalue is the only
7448 // use of the load; that's okay because we don't want to perform this
7449 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00007450 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00007451 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00007452 if (NVT.bitsGT(LVT)) {
7453 // If the result type of vextract is wider than the load, then issue an
7454 // extending load instead.
7455 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
7456 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
7457 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
7458 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
7459 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007460 Chain = Load.getValue(1);
7461 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00007462 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
7463 LN0->getPointerInfo().getWithOffset(PtrOff),
7464 LN0->isVolatile(), LN0->isNonTemporal(),
7465 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007466 Chain = Load.getValue(1);
7467 if (NVT.bitsLT(LVT))
7468 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
7469 else
7470 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
7471 }
Eli Friedman4db4add2011-11-16 23:50:22 +00007472 WorkListRemover DeadNodes(*this);
7473 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00007474 SDValue To[] = { Load, Chain };
Eli Friedman4db4add2011-11-16 23:50:22 +00007475 DAG.ReplaceAllUsesOfValuesWith(From, To, 2, &DeadNodes);
7476 // Since we're explcitly calling ReplaceAllUses, add the new node to the
7477 // worklist explicitly as well.
7478 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00007479 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00007480 // Make sure to revisit this node to clean it up; it will usually be dead.
7481 AddToWorkList(N);
7482 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00007483 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007484
Dan Gohman475871a2008-07-27 21:46:04 +00007485 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00007486}
Evan Cheng513da432007-10-06 08:19:55 +00007487
Dan Gohman475871a2008-07-27 21:46:04 +00007488SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007489 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007490 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007491 EVT VT = N->getValueType(0);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007492 // Check to see if this is a BUILD_VECTOR of a bunch of values
7493 // which come from any_extend or zero_extend nodes. If so, we can create
7494 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00007495 // optimizations. We do not handle sign-extend because we can't fill the sign
7496 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007497 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00007498 bool AllAnyExt = true;
7499 bool AllUndef = true;
7500 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007501 SDValue In = N->getOperand(i);
7502 // Ignore undef inputs.
7503 if (In.getOpcode() == ISD::UNDEF) continue;
Craig Topperd3b58892012-01-17 09:09:48 +00007504 AllUndef = false;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007505
7506 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
7507 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
7508
Nadav Rotemf47368b2011-10-31 20:08:25 +00007509 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007510 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00007511 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007512 break;
7513 }
7514
7515 // The input is a ZeroExt or AnyExt. Check the original type.
7516 EVT InTy = In.getOperand(0).getValueType();
7517
7518 // Check that all of the widened source types are the same.
7519 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007520 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007521 SourceType = InTy;
7522 else if (InTy != SourceType) {
7523 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007524 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007525 break;
7526 }
7527
7528 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00007529 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007530 }
7531
Craig Topperd3b58892012-01-17 09:09:48 +00007532 if (AllUndef)
7533 return DAG.getUNDEF(VT);
Nadav Rotemf47368b2011-10-31 20:08:25 +00007534
7535 // In order to have valid types, all of the inputs must be extended from the
7536 // same source type and all of the inputs must be any or zero extend.
7537 // Scalar sizes must be a power of two.
7538 EVT OutScalarTy = N->getValueType(0).getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007539 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00007540 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
7541 isPowerOf2_32(SourceType.getSizeInBits());
7542
7543 // We perform this optimization post type-legalization because
7544 // the type-legalizer often scalarizes integer-promoted vectors.
7545 // Performing this optimization before may create bit-casts which
7546 // will be type-legalized to complex code sequences.
7547 // We perform this optimization only before the operation legalizer because we
7548 // may introduce illegal operations.
Nadav Rotem6431ff92012-03-15 08:49:06 +00007549 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
7550 // turn into a single shuffle instruction.
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007551 if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) &&
7552 ValidTypes) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007553 bool isLE = TLI.isLittleEndian();
Nadav Rotemf47368b2011-10-31 20:08:25 +00007554 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007555 assert(ElemRatio > 1 && "Invalid element size ratio");
Craig Topperd3b58892012-01-17 09:09:48 +00007556 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
Nadav Rotemf47368b2011-10-31 20:08:25 +00007557 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007558
7559 unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007560 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007561
7562 // Populate the new build_vector
7563 for (unsigned i=0; i < N->getNumOperands(); ++i) {
7564 SDValue Cast = N->getOperand(i);
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007565 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
7566 Cast.getOpcode() == ISD::ZERO_EXTEND ||
7567 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
Nadav Rotemb00418a2011-10-29 21:23:04 +00007568 SDValue In;
7569 if (Cast.getOpcode() == ISD::UNDEF)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007570 In = DAG.getUNDEF(SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007571 else
7572 In = Cast->getOperand(0);
7573 unsigned Index = isLE ? (i * ElemRatio) :
7574 (i * ElemRatio + (ElemRatio - 1));
7575
7576 assert(Index < Ops.size() && "Invalid index");
7577 Ops[Index] = In;
7578 }
7579
7580 // The type of the new BUILD_VECTOR node.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007581 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007582 assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() &&
7583 "Invalid vector size");
Nadav Rotemf47368b2011-10-31 20:08:25 +00007584 // Check if the new vector type is legal.
7585 if (!isTypeLegal(VecVT)) return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007586
7587 // Make the new BUILD_VECTOR.
7588 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7589 VecVT, &Ops[0], Ops.size());
7590
Nadav Rotem6431ff92012-03-15 08:49:06 +00007591 // The new BUILD_VECTOR node has the potential to be further optimized.
7592 AddToWorkList(BV.getNode());
Nadav Rotemb00418a2011-10-29 21:23:04 +00007593 // Bitcast to the desired type.
7594 return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV);
7595 }
Chris Lattnerca242442006-03-19 01:27:56 +00007596
Dan Gohman7f321562007-06-25 16:23:39 +00007597 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
7598 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
7599 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00007600
7601 // May only combine to shuffle after legalize if shuffle is legal.
7602 if (LegalOperations &&
7603 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
7604 return SDValue();
7605
Dan Gohman475871a2008-07-27 21:46:04 +00007606 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007607 for (unsigned i = 0; i != NumInScalars; ++i) {
7608 // Ignore undef inputs.
7609 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007610
Dan Gohman7f321562007-06-25 16:23:39 +00007611 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00007612 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00007613 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00007614 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007615 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007616 break;
7617 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007618
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007619 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00007620 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007621 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
7622 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007623
Gabor Greifba36cb52008-08-28 21:40:38 +00007624 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007625 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00007626 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007627 VecIn2 = ExtractedFromVec;
7628 } else {
7629 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007630 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007631 break;
7632 }
7633 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007634
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007635 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00007636 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007637 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007638 for (unsigned i = 0; i != NumInScalars; ++i) {
7639 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007640 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007641 continue;
7642 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007643
Rafael Espindola15684b22009-04-24 12:40:33 +00007644 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00007645 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00007646 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007647 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00007648 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
7649 if (ExtIndex > VT.getVectorNumElements())
7650 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007651
Nate Begeman5a5ca152009-04-29 05:20:52 +00007652 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007653 continue;
7654 }
7655
7656 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00007657 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007658 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007659 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007660
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007661 // We can't generate a shuffle node with mismatched input and output types.
7662 // Attempt to transform a single input vector to the correct type.
7663 if ((VT != VecIn1.getValueType())) {
7664 // We don't support shuffeling between TWO values of different types.
7665 if (VecIn2.getNode() != 0)
7666 return SDValue();
7667
7668 // We only support widening of vectors which are half the size of the
7669 // output registers. For example XMM->YMM widening on X86 with AVX.
7670 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
7671 return SDValue();
7672
7673 // Widen the input vector by adding undef values.
7674 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
7675 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
7676 }
7677
7678 // If VecIn2 is unused then change it to undef.
7679 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
7680
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007681 // Check that we were able to transform all incoming values to the same type.
7682 if (VecIn2.getValueType() != VecIn1.getValueType() ||
7683 VecIn1.getValueType() != VT)
7684 return SDValue();
7685
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007686 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007687 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00007688 return SDValue();
7689
Dan Gohman7f321562007-06-25 16:23:39 +00007690 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00007691 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007692 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007693 Ops[1] = VecIn2;
Nate Begeman9008ca62009-04-27 18:41:29 +00007694 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007695 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007696
Dan Gohman475871a2008-07-27 21:46:04 +00007697 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00007698}
7699
Dan Gohman475871a2008-07-27 21:46:04 +00007700SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007701 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
7702 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
7703 // inputs come from at most two distinct vectors, turn this into a shuffle
7704 // node.
7705
7706 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00007707 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00007708 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007709
Dan Gohman475871a2008-07-27 21:46:04 +00007710 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007711}
7712
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007713SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
7714 EVT NVT = N->getValueType(0);
7715 SDValue V = N->getOperand(0);
7716
7717 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
7718 // Handle only simple case where vector being inserted and vector
7719 // being extracted are of same type, and are half size of larger vectors.
7720 EVT BigVT = V->getOperand(0).getValueType();
7721 EVT SmallVT = V->getOperand(1).getValueType();
7722 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
7723 return SDValue();
7724
Eli Friedman26323442011-12-07 00:11:56 +00007725 // Only handle cases where both indexes are constants with the same type.
7726 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
7727 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007728
Eli Friedman26323442011-12-07 00:11:56 +00007729 if (InsIdx && ExtIdx &&
7730 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
7731 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
7732 // Combine:
7733 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
7734 // Into:
7735 // indices are equal => V1
7736 // otherwise => (extract_subvec V1, ExtIdx)
7737 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
7738 return V->getOperand(1);
7739 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
7740 V->getOperand(0), N->getOperand(1));
7741 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007742 }
7743
7744 return SDValue();
7745}
7746
Dan Gohman475871a2008-07-27 21:46:04 +00007747SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007748 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007749 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007750
Mon P Wangaeb06d22008-11-10 04:46:22 +00007751 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00007752 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007753
Craig Topperae1bec52012-04-09 05:16:56 +00007754 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00007755
Craig Topper481b79c2012-01-04 08:07:43 +00007756 // Canonicalize shuffle undef, undef -> undef
7757 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
7758 return DAG.getUNDEF(VT);
7759
7760 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7761
7762 // Canonicalize shuffle v, v -> v, undef
7763 if (N0 == N1) {
7764 SmallVector<int, 8> NewMask;
7765 for (unsigned i = 0; i != NumElts; ++i) {
7766 int Idx = SVN->getMaskElt(i);
7767 if (Idx >= (int)NumElts) Idx -= NumElts;
7768 NewMask.push_back(Idx);
7769 }
7770 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
7771 &NewMask[0]);
7772 }
7773
7774 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
7775 if (N0.getOpcode() == ISD::UNDEF) {
7776 SmallVector<int, 8> NewMask;
7777 for (unsigned i = 0; i != NumElts; ++i) {
7778 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00007779 if (Idx >= 0) {
7780 if (Idx < (int)NumElts)
7781 Idx += NumElts;
7782 else
7783 Idx -= NumElts;
7784 }
7785 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00007786 }
7787 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
7788 &NewMask[0]);
7789 }
7790
7791 // Remove references to rhs if it is undef
7792 if (N1.getOpcode() == ISD::UNDEF) {
7793 bool Changed = false;
7794 SmallVector<int, 8> NewMask;
7795 for (unsigned i = 0; i != NumElts; ++i) {
7796 int Idx = SVN->getMaskElt(i);
7797 if (Idx >= (int)NumElts) {
7798 Idx = -1;
7799 Changed = true;
7800 }
7801 NewMask.push_back(Idx);
7802 }
7803 if (Changed)
7804 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
7805 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00007806
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007807 // If it is a splat, check if the argument vector is another splat or a
7808 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007809 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007810 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00007811
Dan Gohman7f321562007-06-25 16:23:39 +00007812 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00007813 // not the number of vector elements, look through it. Be careful not to
7814 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007815 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00007816 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00007817 if (ConvInput.getValueType().isVector() &&
7818 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00007819 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00007820 }
7821
Dan Gohman7f321562007-06-25 16:23:39 +00007822 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007823 assert(V->getNumOperands() == NumElts &&
7824 "BUILD_VECTOR has wrong number of operands");
7825 SDValue Base;
7826 bool AllSame = true;
7827 for (unsigned i = 0; i != NumElts; ++i) {
7828 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
7829 Base = V->getOperand(i);
7830 break;
Evan Cheng917ec982006-07-21 08:25:53 +00007831 }
Evan Cheng917ec982006-07-21 08:25:53 +00007832 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007833 // Splat of <u, u, u, u>, return <u, u, u, u>
7834 if (!Base.getNode())
7835 return N0;
7836 for (unsigned i = 0; i != NumElts; ++i) {
7837 if (V->getOperand(i) != Base) {
7838 AllSame = false;
7839 break;
7840 }
7841 }
7842 // Splat of <x, x, x, x>, return <x, x, x, x>
7843 if (AllSame)
7844 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00007845 }
7846 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00007847
7848 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007849 // and it reverses the swizzle of the previous shuffle then we can
7850 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00007851 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
7852 N1.getOpcode() == ISD::UNDEF) {
7853
Nadav Rotem4ac90812012-04-01 19:31:22 +00007854 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
7855
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007856 // Shuffle nodes can only reverse shuffles with a single non-undef value.
7857 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
7858 return SDValue();
7859
Craig Topperae1bec52012-04-09 05:16:56 +00007860 // The incoming shuffle must be of the same type as the result of the
7861 // current shuffle.
7862 assert(OtherSV->getOperand(0).getValueType() == VT &&
7863 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00007864
7865 for (unsigned i = 0; i != NumElts; ++i) {
7866 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00007867 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00007868 // Next, this index comes from the first value, which is the incoming
7869 // shuffle. Adopt the incoming index.
7870 if (Idx >= 0)
7871 Idx = OtherSV->getMaskElt(Idx);
7872
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007873 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00007874 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007875 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00007876 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007877
7878 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00007879 }
7880
Dan Gohman475871a2008-07-27 21:46:04 +00007881 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007882}
7883
Jim Grosbach9a526492010-06-23 16:07:42 +00007884SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
7885 if (!TLI.getShouldFoldAtomicFences())
7886 return SDValue();
7887
7888 SDValue atomic = N->getOperand(0);
7889 switch (atomic.getOpcode()) {
7890 case ISD::ATOMIC_CMP_SWAP:
7891 case ISD::ATOMIC_SWAP:
7892 case ISD::ATOMIC_LOAD_ADD:
7893 case ISD::ATOMIC_LOAD_SUB:
7894 case ISD::ATOMIC_LOAD_AND:
7895 case ISD::ATOMIC_LOAD_OR:
7896 case ISD::ATOMIC_LOAD_XOR:
7897 case ISD::ATOMIC_LOAD_NAND:
7898 case ISD::ATOMIC_LOAD_MIN:
7899 case ISD::ATOMIC_LOAD_MAX:
7900 case ISD::ATOMIC_LOAD_UMIN:
7901 case ISD::ATOMIC_LOAD_UMAX:
7902 break;
7903 default:
7904 return SDValue();
7905 }
7906
7907 SDValue fence = atomic.getOperand(0);
7908 if (fence.getOpcode() != ISD::MEMBARRIER)
7909 return SDValue();
7910
7911 switch (atomic.getOpcode()) {
7912 case ISD::ATOMIC_CMP_SWAP:
7913 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7914 fence.getOperand(0),
7915 atomic.getOperand(1), atomic.getOperand(2),
7916 atomic.getOperand(3)), atomic.getResNo());
7917 case ISD::ATOMIC_SWAP:
7918 case ISD::ATOMIC_LOAD_ADD:
7919 case ISD::ATOMIC_LOAD_SUB:
7920 case ISD::ATOMIC_LOAD_AND:
7921 case ISD::ATOMIC_LOAD_OR:
7922 case ISD::ATOMIC_LOAD_XOR:
7923 case ISD::ATOMIC_LOAD_NAND:
7924 case ISD::ATOMIC_LOAD_MIN:
7925 case ISD::ATOMIC_LOAD_MAX:
7926 case ISD::ATOMIC_LOAD_UMIN:
7927 case ISD::ATOMIC_LOAD_UMAX:
7928 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7929 fence.getOperand(0),
7930 atomic.getOperand(1), atomic.getOperand(2)),
7931 atomic.getResNo());
7932 default:
7933 return SDValue();
7934 }
7935}
7936
Evan Cheng44f1f092006-04-20 08:56:16 +00007937/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00007938/// an AND to a vector_shuffle with the destination vector and a zero vector.
7939/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00007940/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00007941SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007942 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007943 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007944 SDValue LHS = N->getOperand(0);
7945 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00007946 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007947 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00007948 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007949 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007950 SmallVector<int, 8> Indices;
7951 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00007952 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007953 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007954 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00007955 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00007956
7957 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007958 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007959 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007960 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00007961 else
Dan Gohman475871a2008-07-27 21:46:04 +00007962 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007963 }
7964
7965 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00007966 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007967 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007968 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007969
Dan Gohman7f321562007-06-25 16:23:39 +00007970 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00007971 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007972 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00007973 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00007974 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7975 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007976 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00007977 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007978 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00007979 }
7980 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007981
Dan Gohman475871a2008-07-27 21:46:04 +00007982 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007983}
7984
Dan Gohman7f321562007-06-25 16:23:39 +00007985/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00007986SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007987 // After legalize, the target may be depending on adds and other
7988 // binary ops to provide legal ways to construct constants or other
7989 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00007990 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007991
Bob Wilsond7273432010-12-17 23:06:49 +00007992 assert(N->getValueType(0).isVector() &&
7993 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00007994
Dan Gohman475871a2008-07-27 21:46:04 +00007995 SDValue LHS = N->getOperand(0);
7996 SDValue RHS = N->getOperand(1);
7997 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00007998 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00007999
Dan Gohman7f321562007-06-25 16:23:39 +00008000 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00008001 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00008002 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00008003 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00008004 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00008005 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00008006 SDValue LHSOp = LHS.getOperand(i);
8007 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00008008 // If these two elements can't be folded, bail out.
8009 if ((LHSOp.getOpcode() != ISD::UNDEF &&
8010 LHSOp.getOpcode() != ISD::Constant &&
8011 LHSOp.getOpcode() != ISD::ConstantFP) ||
8012 (RHSOp.getOpcode() != ISD::UNDEF &&
8013 RHSOp.getOpcode() != ISD::Constant &&
8014 RHSOp.getOpcode() != ISD::ConstantFP))
8015 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008016
Evan Cheng7b336a82006-05-31 06:08:35 +00008017 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00008018 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
8019 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00008020 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008021 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00008022 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008023 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00008024 break;
8025 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008026
Bob Wilsond7273432010-12-17 23:06:49 +00008027 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00008028 EVT RVT = RHSOp.getValueType();
8029 if (RVT != VT) {
8030 // Integer BUILD_VECTOR operands may have types larger than the element
8031 // size (e.g., when the element type is not legal). Prior to type
8032 // legalization, the types may not match between the two BUILD_VECTORS.
8033 // Truncate one of the operands to make them match.
8034 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
8035 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
8036 } else {
8037 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
8038 VT = RVT;
8039 }
8040 }
Bob Wilsond7273432010-12-17 23:06:49 +00008041 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00008042 LHSOp, RHSOp);
8043 if (FoldOp.getOpcode() != ISD::UNDEF &&
8044 FoldOp.getOpcode() != ISD::Constant &&
8045 FoldOp.getOpcode() != ISD::ConstantFP)
8046 break;
8047 Ops.push_back(FoldOp);
8048 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00008049 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008050
Bob Wilsond7273432010-12-17 23:06:49 +00008051 if (Ops.size() == LHS.getNumOperands())
8052 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8053 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00008054 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008055
Dan Gohman475871a2008-07-27 21:46:04 +00008056 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00008057}
8058
Bill Wendling836ca7d2009-01-30 23:59:18 +00008059SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
8060 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00008061 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008062
Bill Wendling836ca7d2009-01-30 23:59:18 +00008063 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00008064 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008065
Nate Begemanf845b452005-10-08 00:29:44 +00008066 // If we got a simplified select_cc node back from SimplifySelectCC, then
8067 // break it down into a new SETCC node, and a new SELECT node, and then return
8068 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00008069 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008070 // Check to see if we got a select_cc back (to turn into setcc/select).
8071 // Otherwise, just return whatever node we got back, like fabs.
8072 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008073 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
8074 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008075 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008076 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00008077 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008078 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
8079 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00008080 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008081
Nate Begemanf845b452005-10-08 00:29:44 +00008082 return SCC;
8083 }
Dan Gohman475871a2008-07-27 21:46:04 +00008084 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008085}
8086
Chris Lattner40c62d52005-10-18 06:04:22 +00008087/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
8088/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00008089/// select. Callers of this should assume that TheSelect is deleted if this
8090/// returns true. As such, they should return the appropriate thing (e.g. the
8091/// node) back to the top-level of the DAG combiner loop to avoid it being
8092/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00008093bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00008094 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008095
Nadav Rotemf94fdb62011-02-11 19:57:47 +00008096 // Cannot simplify select with vector condition
8097 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
8098
Chris Lattner40c62d52005-10-18 06:04:22 +00008099 // If this is a select from two identical things, try to pull the operation
8100 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00008101 if (LHS.getOpcode() != RHS.getOpcode() ||
8102 !LHS.hasOneUse() || !RHS.hasOneUse())
8103 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008104
Chris Lattner18061612010-09-21 15:46:59 +00008105 // If this is a load and the token chain is identical, replace the select
8106 // of two loads with a load through a select of the address to load from.
8107 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
8108 // constants have been dropped into the constant pool.
8109 if (LHS.getOpcode() == ISD::LOAD) {
8110 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
8111 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008112
Chris Lattner18061612010-09-21 15:46:59 +00008113 // Token chains must be identical.
8114 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008115 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00008116 LLD->isVolatile() || RLD->isVolatile() ||
8117 // If this is an EXTLOAD, the VT's must match.
8118 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00008119 // If this is an EXTLOAD, the kind of extension must match.
8120 (LLD->getExtensionType() != RLD->getExtensionType() &&
8121 // The only exception is if one of the extensions is anyext.
8122 LLD->getExtensionType() != ISD::EXTLOAD &&
8123 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00008124 // FIXME: this discards src value information. This is
8125 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00008126 // both potential memory locations. Since we are discarding
8127 // src value info, don't do the transformation if the memory
8128 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00008129 LLD->getPointerInfo().getAddrSpace() != 0 ||
8130 RLD->getPointerInfo().getAddrSpace() != 0)
8131 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008132
Chris Lattnerf1658062010-09-21 15:58:55 +00008133 // Check that the select condition doesn't reach either load. If so,
8134 // folding this will induce a cycle into the DAG. If not, this is safe to
8135 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00008136 SDValue Addr;
8137 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00008138 SDNode *CondNode = TheSelect->getOperand(0).getNode();
8139 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
8140 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
8141 return false;
8142 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
8143 LLD->getBasePtr().getValueType(),
8144 TheSelect->getOperand(0), LLD->getBasePtr(),
8145 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00008146 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00008147 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
8148 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
8149
8150 if ((LLD->hasAnyUseOfValue(1) &&
8151 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00008152 (RLD->hasAnyUseOfValue(1) &&
8153 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00008154 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008155
Chris Lattnerf1658062010-09-21 15:58:55 +00008156 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
8157 LLD->getBasePtr().getValueType(),
8158 TheSelect->getOperand(0),
8159 TheSelect->getOperand(1),
8160 LLD->getBasePtr(), RLD->getBasePtr(),
8161 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00008162 }
8163
Chris Lattnerf1658062010-09-21 15:58:55 +00008164 SDValue Load;
8165 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
8166 Load = DAG.getLoad(TheSelect->getValueType(0),
8167 TheSelect->getDebugLoc(),
8168 // FIXME: Discards pointer info.
8169 LLD->getChain(), Addr, MachinePointerInfo(),
8170 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008171 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00008172 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00008173 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
8174 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00008175 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00008176 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00008177 // FIXME: Discards pointer info.
8178 LLD->getChain(), Addr, MachinePointerInfo(),
8179 LLD->getMemoryVT(), LLD->isVolatile(),
8180 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00008181 }
Chris Lattnerf1658062010-09-21 15:58:55 +00008182
8183 // Users of the select now use the result of the load.
8184 CombineTo(TheSelect, Load);
8185
8186 // Users of the old loads now use the new load's chain. We know the
8187 // old-load value is dead now.
8188 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
8189 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
8190 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00008191 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008192
Chris Lattner40c62d52005-10-18 06:04:22 +00008193 return false;
8194}
8195
Chris Lattner600fec32009-03-11 05:08:08 +00008196/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
8197/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00008198SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00008199 SDValue N2, SDValue N3,
8200 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00008201 // (x ? y : y) -> y.
8202 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008203
Owen Andersone50ed302009-08-10 22:56:29 +00008204 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00008205 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
8206 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
8207 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008208
8209 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00008210 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008211 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00008212 if (SCC.getNode()) AddToWorkList(SCC.getNode());
8213 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008214
8215 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00008216 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008217 return N2;
8218 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00008219 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008220 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00008221
Nate Begemanf845b452005-10-08 00:29:44 +00008222 // Check to see if we can simplify the select into an fabs node
8223 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
8224 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00008225 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008226 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
8227 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
8228 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
8229 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008230 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008231
Nate Begemanf845b452005-10-08 00:29:44 +00008232 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
8233 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
8234 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
8235 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008236 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00008237 }
8238 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008239
Chris Lattner600fec32009-03-11 05:08:08 +00008240 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
8241 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
8242 // in it. This is a win when the constant is not otherwise available because
8243 // it replaces two constant pool loads with one. We only do this if the FP
8244 // type is known to be legal, because if it isn't, then we are before legalize
8245 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00008246 // messing with soft float) and if the ConstantFP is not legal, because if
8247 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00008248 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
8249 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
8250 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00008251 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
8252 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00008253 // If both constants have multiple uses, then we won't need to do an
8254 // extra load, they are likely around in registers for other users.
8255 (TV->hasOneUse() || FV->hasOneUse())) {
8256 Constant *Elts[] = {
8257 const_cast<ConstantFP*>(FV->getConstantFPValue()),
8258 const_cast<ConstantFP*>(TV->getConstantFPValue())
8259 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008260 Type *FPTy = Elts[0]->getType();
Chris Lattner600fec32009-03-11 05:08:08 +00008261 const TargetData &TD = *TLI.getTargetData();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008262
Chris Lattner600fec32009-03-11 05:08:08 +00008263 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00008264 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00008265 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
8266 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00008267 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00008268
8269 // Get the offsets to the 0 and 1 element of the array so that we can
8270 // select between them.
8271 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00008272 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00008273 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008274
Chris Lattner600fec32009-03-11 05:08:08 +00008275 SDValue Cond = DAG.getSetCC(DL,
8276 TLI.getSetCCResultType(N0.getValueType()),
8277 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00008278 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008279 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
8280 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00008281 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008282 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
8283 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00008284 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008285 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00008286 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008287 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00008288
8289 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008290 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008291
Nate Begemanf845b452005-10-08 00:29:44 +00008292 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00008293 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00008294 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00008295 (N1C->isNullValue() || // (a < 0) ? b : 0
8296 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00008297 EVT XType = N0.getValueType();
8298 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00008299 if (XType.bitsGE(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00008300 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00008301 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00008302 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
8303 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008304 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00008305 SDValue ShCt = DAG.getConstant(ShCtV,
8306 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00008307 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008308 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00008309 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008310
Duncan Sands8e4eb092008-06-08 20:54:56 +00008311 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008312 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008313 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008314 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008315
8316 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008317 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008318
Bill Wendling9729c5a2009-01-31 03:12:48 +00008319 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008320 XType, N0,
8321 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008322 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00008323 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008324
Duncan Sands8e4eb092008-06-08 20:54:56 +00008325 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008326 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008327 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008328 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008329
8330 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008331 }
8332 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008333
Owen Andersoned1088a2010-09-22 22:58:22 +00008334 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
8335 // where y is has a single bit set.
8336 // A plaintext description would be, we can turn the SELECT_CC into an AND
8337 // when the condition can be materialized as an all-ones register. Any
8338 // single bit-test can be materialized as an all-ones register with
8339 // shift-left and shift-right-arith.
8340 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
8341 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008342 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00008343 N2C && N2C->isNullValue()) {
8344 SDValue AndLHS = N0->getOperand(0);
8345 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
8346 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
8347 // Shift the tested bit over the sign bit.
8348 APInt AndMask = ConstAndRHS->getAPIntValue();
8349 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008350 DAG.getConstant(AndMask.countLeadingZeros(),
8351 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008352 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008353
Owen Andersoned1088a2010-09-22 22:58:22 +00008354 // Now arithmetic right shift it all the way over, so the result is either
8355 // all-ones, or zero.
8356 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008357 DAG.getConstant(AndMask.getBitWidth()-1,
8358 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008359 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008360
Owen Andersoned1088a2010-09-22 22:58:22 +00008361 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
8362 }
8363 }
8364
Nate Begeman07ed4172005-10-10 21:26:48 +00008365 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00008366 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00008367 TLI.getBooleanContents(N0.getValueType().isVector()) ==
8368 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008369
Chris Lattner1eba01e2007-04-11 06:50:51 +00008370 // If the caller doesn't want us to simplify this into a zext of a compare,
8371 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00008372 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00008373 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008374
Nate Begeman07ed4172005-10-10 21:26:48 +00008375 // Get a SetCC of the condition
8376 // FIXME: Should probably make sure that setcc is legal if we ever have a
8377 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00008378 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00008379 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00008380 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008381 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00008382 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00008383 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00008384 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00008385 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00008386 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008387 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008388 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00008389 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00008390 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008391 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008392 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008393
Gabor Greifba36cb52008-08-28 21:40:38 +00008394 AddToWorkList(SCC.getNode());
8395 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00008396
Dan Gohman002e5d02008-03-13 22:13:53 +00008397 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00008398 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008399
Nate Begeman07ed4172005-10-10 21:26:48 +00008400 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00008401 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00008402 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00008403 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00008404 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008405
Nate Begemanf845b452005-10-08 00:29:44 +00008406 // Check to see if this is the equivalent of setcc
8407 // FIXME: Turn all of these into setcc if setcc if setcc is legal
8408 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00008409 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00008410 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00008411 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00008412 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008413 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00008414 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008415 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00008416 return Res;
8417 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008418
Bill Wendling836ca7d2009-01-30 23:59:18 +00008419 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00008420 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008421 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00008422 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008423 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008424 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008425 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00008426 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00008427 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008428 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00008429 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008430 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
8431 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00008432 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00008433 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00008434 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00008435 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008436 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00008437 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008438 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00008439 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008440 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00008441 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008442 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00008443 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00008444 }
8445 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008446
Benjamin Kramercde51102010-07-08 12:09:56 +00008447 // Check to see if this is an integer abs.
8448 // select_cc setg[te] X, 0, X, -X ->
8449 // select_cc setgt X, -1, X, -X ->
8450 // select_cc setl[te] X, 0, -X, X ->
8451 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00008452 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00008453 if (N1C) {
8454 ConstantSDNode *SubC = NULL;
8455 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
8456 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
8457 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
8458 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
8459 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
8460 (N1C->isOne() && CC == ISD::SETLT)) &&
8461 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
8462 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
8463
Owen Andersone50ed302009-08-10 22:56:29 +00008464 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00008465 if (SubC && SubC->isNullValue() && XType.isInteger()) {
8466 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
8467 N0,
8468 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008469 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00008470 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
8471 XType, N0, Shift);
8472 AddToWorkList(Shift.getNode());
8473 AddToWorkList(Add.getNode());
8474 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00008475 }
8476 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008477
Dan Gohman475871a2008-07-27 21:46:04 +00008478 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008479}
8480
Evan Chengfa1eb272007-02-08 22:13:59 +00008481/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00008482SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00008483 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008484 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008485 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00008486 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008487 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00008488}
8489
Nate Begeman69575232005-10-20 02:15:44 +00008490/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
8491/// return a DAG expression to select that will generate the same value by
8492/// multiplying by a magic number. See:
8493/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008494SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008495 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008496 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008497
Andrew Lenharth232c9102006-06-12 16:07:18 +00008498 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008499 ii != ee; ++ii)
8500 AddToWorkList(*ii);
8501 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008502}
8503
8504/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
8505/// return a DAG expression to select that will generate the same value by
8506/// multiplying by a magic number. See:
8507/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008508SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008509 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008510 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00008511
Andrew Lenharth232c9102006-06-12 16:07:18 +00008512 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008513 ii != ee; ++ii)
8514 AddToWorkList(*ii);
8515 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008516}
8517
Nate Begemancc66cdd2009-09-25 06:05:26 +00008518/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00008519// to alias with anything but itself. Provides base object and offset as
8520// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008521static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Dan Gohman46510a72010-04-15 01:51:59 +00008522 const GlobalValue *&GV, void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00008523 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008524 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008525
Jim Laskey71382342006-10-07 23:37:56 +00008526 // If it's an adding a simple constant then integrate the offset.
8527 if (Base.getOpcode() == ISD::ADD) {
8528 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
8529 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008530 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00008531 }
8532 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008533
Nate Begemancc66cdd2009-09-25 06:05:26 +00008534 // Return the underlying GlobalValue, and update the Offset. Return false
8535 // for GlobalAddressSDNode since the same GlobalAddress may be represented
8536 // by multiple nodes with different offsets.
8537 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
8538 GV = G->getGlobal();
8539 Offset += G->getOffset();
8540 return false;
8541 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008542
Nate Begemancc66cdd2009-09-25 06:05:26 +00008543 // Return the underlying Constant value, and update the Offset. Return false
8544 // for ConstantSDNodes since the same constant pool entry may be represented
8545 // by multiple nodes with different offsets.
8546 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
8547 CV = C->isMachineConstantPoolEntry() ? (void *)C->getMachineCPVal()
8548 : (void *)C->getConstVal();
8549 Offset += C->getOffset();
8550 return false;
8551 }
Jim Laskey71382342006-10-07 23:37:56 +00008552 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008553 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00008554}
8555
8556/// isAlias - Return true if there is any possibility that the two addresses
8557/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00008558bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00008559 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008560 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008561 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00008562 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008563 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008564 unsigned SrcValueAlign2,
8565 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00008566 // If they are the same then they must be aliases.
8567 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00008568
Jim Laskey71382342006-10-07 23:37:56 +00008569 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00008570 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00008571 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00008572 const GlobalValue *GV1, *GV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00008573 void *CV1, *CV2;
8574 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
8575 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00008576
Nate Begemancc66cdd2009-09-25 06:05:26 +00008577 // If they have a same base address then check to see if they overlap.
8578 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008579 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008580
Owen Anderson4a9f1502010-09-20 20:39:59 +00008581 // It is possible for different frame indices to alias each other, mostly
8582 // when tail call optimization reuses return address slots for arguments.
8583 // To catch this case, look up the actual index of frame indices to compute
8584 // the real alias relationship.
8585 if (isFrameIndex1 && isFrameIndex2) {
8586 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8587 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
8588 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
8589 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
8590 }
8591
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008592 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00008593 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008594 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
8595 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00008596
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008597 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
8598 // compared to the size and offset of the access, we may be able to prove they
8599 // do not alias. This check is conservative for now to catch cases created by
8600 // splitting vector types.
8601 if ((SrcValueAlign1 == SrcValueAlign2) &&
8602 (SrcValueOffset1 != SrcValueOffset2) &&
8603 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
8604 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
8605 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008606
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008607 // There is no overlap between these relatively aligned accesses of similar
8608 // size, return no alias.
8609 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
8610 return false;
8611 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008612
Jim Laskey07a27092006-10-18 19:08:31 +00008613 if (CombinerGlobalAA) {
8614 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00008615 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
8616 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
8617 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00008618 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008619 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
8620 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00008621 if (AAResult == AliasAnalysis::NoAlias)
8622 return false;
8623 }
Jim Laskey096c22e2006-10-18 12:29:57 +00008624
8625 // Otherwise we have to assume they alias.
8626 return true;
Jim Laskey71382342006-10-07 23:37:56 +00008627}
8628
8629/// FindAliasInfo - Extracts the relevant alias information from the memory
8630/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00008631bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00008632 SDValue &Ptr, int64_t &Size,
8633 const Value *&SrcValue,
8634 int &SrcValueOffset,
8635 unsigned &SrcValueAlign,
8636 const MDNode *&TBAAInfo) const {
8637 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
8638
8639 Ptr = LS->getBasePtr();
8640 Size = LS->getMemoryVT().getSizeInBits() >> 3;
8641 SrcValue = LS->getSrcValue();
8642 SrcValueOffset = LS->getSrcValueOffset();
8643 SrcValueAlign = LS->getOriginalAlignment();
8644 TBAAInfo = LS->getTBAAInfo();
8645 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00008646}
8647
Jim Laskey6ff23e52006-10-04 16:53:27 +00008648/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
8649/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00008650void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
8651 SmallVector<SDValue, 8> &Aliases) {
8652 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008653 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00008654
Jim Laskey279f0532006-09-25 16:29:54 +00008655 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00008656 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008657 int64_t Size;
8658 const Value *SrcValue;
8659 int SrcValueOffset;
8660 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008661 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008662 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008663 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00008664
Jim Laskey6ff23e52006-10-04 16:53:27 +00008665 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00008666 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00008667 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008668
Jim Laskeybc588b82006-10-05 15:07:25 +00008669 // Look at each chain and determine if it is an alias. If so, add it to the
8670 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00008671 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00008672 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008673 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00008674 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008675
8676 // For TokenFactor nodes, look at each operand and only continue up the
8677 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00008678 // find more and revert to original chain since the xform is unlikely to be
8679 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008680 //
8681 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00008682 // chain we found before we hit a tokenfactor rather than the original
8683 // chain.
8684 if (Depth > 6 || Aliases.size() == 2) {
8685 Aliases.clear();
8686 Aliases.push_back(OriginalChain);
8687 break;
8688 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008689
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008690 // Don't bother if we've been before.
8691 if (!Visited.insert(Chain.getNode()))
8692 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008693
Jim Laskeybc588b82006-10-05 15:07:25 +00008694 switch (Chain.getOpcode()) {
8695 case ISD::EntryToken:
8696 // Entry token is ideal chain operand, but handled in FindBetterChain.
8697 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008698
Jim Laskeybc588b82006-10-05 15:07:25 +00008699 case ISD::LOAD:
8700 case ISD::STORE: {
8701 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00008702 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008703 int64_t OpSize;
8704 const Value *OpSrcValue;
8705 int OpSrcValueOffset;
8706 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008707 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00008708 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008709 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008710 OpSrcValueAlign,
8711 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00008712
Jim Laskeybc588b82006-10-05 15:07:25 +00008713 // If chain is alias then stop here.
8714 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008715 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008716 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008717 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008718 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00008719 Aliases.push_back(Chain);
8720 } else {
8721 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00008722 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00008723 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00008724 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008725 break;
8726 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008727
Jim Laskeybc588b82006-10-05 15:07:25 +00008728 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008729 // We have to check each of the operands of the token factor for "small"
8730 // token factors, so we queue them up. Adding the operands to the queue
8731 // (stack) in reverse order maintains the original order and increases the
8732 // likelihood that getNode will find a matching token factor (CSE.)
8733 if (Chain.getNumOperands() > 16) {
8734 Aliases.push_back(Chain);
8735 break;
8736 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008737 for (unsigned n = Chain.getNumOperands(); n;)
8738 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00008739 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00008740 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008741
Jim Laskeybc588b82006-10-05 15:07:25 +00008742 default:
8743 // For all other instructions we will just have to take what we can get.
8744 Aliases.push_back(Chain);
8745 break;
Jim Laskey279f0532006-09-25 16:29:54 +00008746 }
8747 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00008748}
8749
8750/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
8751/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00008752SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
8753 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00008754
Jim Laskey6ff23e52006-10-04 16:53:27 +00008755 // Accumulate all the aliases to this node.
8756 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00008757
Dan Gohman71dc7c92011-05-17 22:20:36 +00008758 // If no operands then chain to entry token.
8759 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008760 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00008761
8762 // If a single operand then chain to it. We don't need to revisit it.
8763 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008764 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008765
Jim Laskey6ff23e52006-10-04 16:53:27 +00008766 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008767 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008768 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00008769}
8770
Nate Begeman1d4d4142005-09-01 00:19:25 +00008771// SelectionDAG::Combine - This is the entry point for the file.
8772//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008773void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00008774 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00008775 /// run - This is the main entry point to this class.
8776 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008777 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00008778}