blob: b5b20284c1d3a3ca4e74bb72c52c73b285112d07 [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());
Nate Begeman1d4d4142005-09-01 00:19:25 +00001083}
1084
Dan Gohman475871a2008-07-27 21:46:04 +00001085SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001086 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001087 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001088 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001089 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001090 case ISD::ADD: return visitADD(N);
1091 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001092 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001093 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001094 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001095 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001096 case ISD::MUL: return visitMUL(N);
1097 case ISD::SDIV: return visitSDIV(N);
1098 case ISD::UDIV: return visitUDIV(N);
1099 case ISD::SREM: return visitSREM(N);
1100 case ISD::UREM: return visitUREM(N);
1101 case ISD::MULHU: return visitMULHU(N);
1102 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001103 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1104 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001105 case ISD::SMULO: return visitSMULO(N);
1106 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001107 case ISD::SDIVREM: return visitSDIVREM(N);
1108 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001109 case ISD::AND: return visitAND(N);
1110 case ISD::OR: return visitOR(N);
1111 case ISD::XOR: return visitXOR(N);
1112 case ISD::SHL: return visitSHL(N);
1113 case ISD::SRA: return visitSRA(N);
1114 case ISD::SRL: return visitSRL(N);
1115 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001116 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001117 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001118 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001119 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001120 case ISD::SELECT: return visitSELECT(N);
1121 case ISD::SELECT_CC: return visitSELECT_CC(N);
1122 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001123 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1124 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001125 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001126 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1127 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001128 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001129 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001130 case ISD::FADD: return visitFADD(N);
1131 case ISD::FSUB: return visitFSUB(N);
1132 case ISD::FMUL: return visitFMUL(N);
1133 case ISD::FDIV: return visitFDIV(N);
1134 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001135 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001136 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1137 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1138 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1139 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1140 case ISD::FP_ROUND: return visitFP_ROUND(N);
1141 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1142 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1143 case ISD::FNEG: return visitFNEG(N);
1144 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001145 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001146 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001147 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001148 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001149 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001150 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001151 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1152 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001153 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001154 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001155 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001156 }
Dan Gohman475871a2008-07-27 21:46:04 +00001157 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001158}
1159
Dan Gohman475871a2008-07-27 21:46:04 +00001160SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001161 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001162
1163 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001164 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001165 assert(N->getOpcode() != ISD::DELETED_NODE &&
1166 "Node was deleted but visit returned NULL!");
1167
1168 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1169 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1170
1171 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001172 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001173 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001174
1175 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1176 }
1177 }
1178
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001179 // If nothing happened still, try promoting the operation.
1180 if (RV.getNode() == 0) {
1181 switch (N->getOpcode()) {
1182 default: break;
1183 case ISD::ADD:
1184 case ISD::SUB:
1185 case ISD::MUL:
1186 case ISD::AND:
1187 case ISD::OR:
1188 case ISD::XOR:
1189 RV = PromoteIntBinOp(SDValue(N, 0));
1190 break;
1191 case ISD::SHL:
1192 case ISD::SRA:
1193 case ISD::SRL:
1194 RV = PromoteIntShiftOp(SDValue(N, 0));
1195 break;
1196 case ISD::SIGN_EXTEND:
1197 case ISD::ZERO_EXTEND:
1198 case ISD::ANY_EXTEND:
1199 RV = PromoteExtend(SDValue(N, 0));
1200 break;
1201 case ISD::LOAD:
1202 if (PromoteLoad(SDValue(N, 0)))
1203 RV = SDValue(N, 0);
1204 break;
1205 }
1206 }
1207
Scott Michelfdc40a02009-02-17 22:15:04 +00001208 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001209 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001210 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001211 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1212 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001213 SDValue N0 = N->getOperand(0);
1214 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001215
Evan Cheng08b11732008-03-22 01:55:50 +00001216 // Constant operands are canonicalized to RHS.
1217 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001218 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001219 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1220 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001221 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001222 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001223 }
1224 }
1225
Dan Gohman389079b2007-10-08 17:57:15 +00001226 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001227}
Dan Gohman389079b2007-10-08 17:57:15 +00001228
Chris Lattner6270f682006-10-08 22:57:01 +00001229/// getInputChainForNode - Given a node, return its input chain if it has one,
1230/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001231static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001232 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001233 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001234 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001235 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001236 return N->getOperand(NumOps-1);
1237 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001238 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001239 return N->getOperand(i);
1240 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001241 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001242}
1243
Dan Gohman475871a2008-07-27 21:46:04 +00001244SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001245 // If N has two operands, where one has an input chain equal to the other,
1246 // the 'other' chain is redundant.
1247 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001248 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001249 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001250 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001251 return N->getOperand(1);
1252 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001253
Chris Lattnerc76d4412007-05-16 06:37:59 +00001254 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001255 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001256 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001257 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001258
Jim Laskey6ff23e52006-10-04 16:53:27 +00001259 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001260 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001261
Jim Laskey71382342006-10-07 23:37:56 +00001262 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001263 // encountered.
1264 for (unsigned i = 0; i < TFs.size(); ++i) {
1265 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001266
Jim Laskey6ff23e52006-10-04 16:53:27 +00001267 // Check each of the operands.
1268 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001269 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001270
Jim Laskey6ff23e52006-10-04 16:53:27 +00001271 switch (Op.getOpcode()) {
1272 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001273 // Entry tokens don't need to be added to the list. They are
1274 // rededundant.
1275 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001276 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001277
Jim Laskey6ff23e52006-10-04 16:53:27 +00001278 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001279 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001280 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001281 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001282 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001283 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001284 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001285 Changed = true;
1286 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001287 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001288 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001289
Jim Laskey6ff23e52006-10-04 16:53:27 +00001290 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001291 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001292 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001293 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001294 else
1295 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001296 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001297 }
1298 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001299 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001300
Dan Gohman475871a2008-07-27 21:46:04 +00001301 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001302
1303 // If we've change things around then replace token factor.
1304 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001305 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001306 // The entry token is the only possible outcome.
1307 Result = DAG.getEntryNode();
1308 } else {
1309 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001310 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001311 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001312 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001313
Jim Laskey274062c2006-10-13 23:32:28 +00001314 // Don't add users to work list.
1315 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001316 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001317
Jim Laskey6ff23e52006-10-04 16:53:27 +00001318 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001319}
1320
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001321/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001322SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001323 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001324 // Replacing results may cause a different MERGE_VALUES to suddenly
1325 // be CSE'd with N, and carry its uses with it. Iterate until no
1326 // uses remain, to ensure that the node can be safely deleted.
1327 do {
1328 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1329 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i),
1330 &DeadNodes);
1331 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001332 removeFromWorkList(N);
1333 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001334 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001335}
1336
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001337static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001338SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1339 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001340 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001341 SDValue N00 = N0.getOperand(0);
1342 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001343 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001344
Gabor Greifba36cb52008-08-28 21:40:38 +00001345 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001346 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001347 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1348 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1349 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1350 N00.getOperand(0), N01),
1351 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1352 N00.getOperand(1), N01));
1353 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001354 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001355
Dan Gohman475871a2008-07-27 21:46:04 +00001356 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001357}
1358
Dan Gohman475871a2008-07-27 21:46:04 +00001359SDValue DAGCombiner::visitADD(SDNode *N) {
1360 SDValue N0 = N->getOperand(0);
1361 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001362 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1363 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001364 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001365
1366 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001367 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001368 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001369 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001370 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001371
Dan Gohman613e0d82007-07-03 14:03:57 +00001372 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001373 if (N0.getOpcode() == ISD::UNDEF)
1374 return N0;
1375 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001376 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001377 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001378 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001379 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001380 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001381 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001382 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001383 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001384 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001385 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001386 // fold (add Sym, c) -> Sym+c
1387 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001388 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001389 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001390 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001391 GA->getOffset() +
1392 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001393 // fold ((c1-A)+c2) -> (c1+c2)-A
1394 if (N1C && N0.getOpcode() == ISD::SUB)
1395 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001396 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001397 DAG.getConstant(N1C->getAPIntValue()+
1398 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001399 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001400 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001401 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001402 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001403 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001404 // fold ((0-A) + B) -> B-A
1405 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1406 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001407 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001408 // fold (A + (0-B)) -> A-B
1409 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1410 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001411 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001412 // fold (A+(B-A)) -> B
1413 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001414 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001415 // fold ((B-A)+A) -> B
1416 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1417 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001418 // fold (A+(B-(A+C))) to (B-C)
1419 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001420 N0 == N1.getOperand(1).getOperand(0))
1421 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001422 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001423 // fold (A+(B-(C+A))) to (B-C)
1424 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001425 N0 == N1.getOperand(1).getOperand(1))
1426 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001427 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001428 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001429 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1430 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001431 N0 == N1.getOperand(0).getOperand(1))
1432 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1433 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001434
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001435 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1436 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1437 SDValue N00 = N0.getOperand(0);
1438 SDValue N01 = N0.getOperand(1);
1439 SDValue N10 = N1.getOperand(0);
1440 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001441
1442 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1443 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1444 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1445 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001446 }
Chris Lattner947c2892006-03-13 06:51:27 +00001447
Dan Gohman475871a2008-07-27 21:46:04 +00001448 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1449 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001450
Chris Lattner947c2892006-03-13 06:51:27 +00001451 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001452 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001453 APInt LHSZero, LHSOne;
1454 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001455 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001456
Dan Gohman948d8ea2008-02-20 16:33:30 +00001457 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001458 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001459
Chris Lattner947c2892006-03-13 06:51:27 +00001460 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1461 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001462 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001463 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001464 }
1465 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001466
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001467 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001468 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001469 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001470 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001471 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001472 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001473 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001474 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001475 }
1476
Dan Gohmancd9e1552010-01-19 23:30:49 +00001477 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1478 if (N1.getOpcode() == ISD::SHL &&
1479 N1.getOperand(0).getOpcode() == ISD::SUB)
1480 if (ConstantSDNode *C =
1481 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1482 if (C->getAPIntValue() == 0)
1483 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1484 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1485 N1.getOperand(0).getOperand(1),
1486 N1.getOperand(1)));
1487 if (N0.getOpcode() == ISD::SHL &&
1488 N0.getOperand(0).getOpcode() == ISD::SUB)
1489 if (ConstantSDNode *C =
1490 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1491 if (C->getAPIntValue() == 0)
1492 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1493 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1494 N0.getOperand(0).getOperand(1),
1495 N0.getOperand(1)));
1496
Owen Andersonbc146b02010-09-21 20:42:50 +00001497 if (N1.getOpcode() == ISD::AND) {
1498 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001499 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001500 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1501 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001502
Owen Andersonbc146b02010-09-21 20:42:50 +00001503 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1504 // and similar xforms where the inner op is either ~0 or 0.
1505 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1506 DebugLoc DL = N->getDebugLoc();
1507 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1508 }
1509 }
1510
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001511 // add (sext i1), X -> sub X, (zext i1)
1512 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1513 N0.getOperand(0).getValueType() == MVT::i1 &&
1514 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1515 DebugLoc DL = N->getDebugLoc();
1516 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1517 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1518 }
1519
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001520 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001521}
1522
Dan Gohman475871a2008-07-27 21:46:04 +00001523SDValue DAGCombiner::visitADDC(SDNode *N) {
1524 SDValue N0 = N->getOperand(0);
1525 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001526 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1527 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001528 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001529
Chris Lattner91153682007-03-04 20:03:15 +00001530 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001531 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001532 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001533 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001534 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001535
Chris Lattner91153682007-03-04 20:03:15 +00001536 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001537 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001538 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001539
Chris Lattnerb6541762007-03-04 20:40:38 +00001540 // fold (addc x, 0) -> x + no carry out
1541 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001542 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001543 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001544
Dale Johannesen874ae252009-06-02 03:12:52 +00001545 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001546 APInt LHSZero, LHSOne;
1547 APInt RHSZero, RHSOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001548 DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001549
Dan Gohman948d8ea2008-02-20 16:33:30 +00001550 if (LHSZero.getBoolValue()) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001551 DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001552
Chris Lattnerb6541762007-03-04 20:40:38 +00001553 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1554 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00001555 if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
Bill Wendling14036c02009-01-30 02:38:00 +00001556 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001557 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001558 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001559 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001560
Dan Gohman475871a2008-07-27 21:46:04 +00001561 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001562}
1563
Dan Gohman475871a2008-07-27 21:46:04 +00001564SDValue DAGCombiner::visitADDE(SDNode *N) {
1565 SDValue N0 = N->getOperand(0);
1566 SDValue N1 = N->getOperand(1);
1567 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001568 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1569 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001570
Chris Lattner91153682007-03-04 20:03:15 +00001571 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001572 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001573 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1574 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001575
Chris Lattnerb6541762007-03-04 20:40:38 +00001576 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001577 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001578 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001579
Dan Gohman475871a2008-07-27 21:46:04 +00001580 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001581}
1582
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001583// Since it may not be valid to emit a fold to zero for vector initializers
1584// check if we can before folding.
1585static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001586 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001587 if (!VT.isVector()) {
1588 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001589 }
1590 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001591 // Produce a vector of zeros.
1592 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1593 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1594 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1595 &Ops[0], Ops.size());
1596 }
1597 return SDValue();
1598}
1599
Dan Gohman475871a2008-07-27 21:46:04 +00001600SDValue DAGCombiner::visitSUB(SDNode *N) {
1601 SDValue N0 = N->getOperand(0);
1602 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001603 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1604 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001605 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1606 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001607 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001608
Dan Gohman7f321562007-06-25 16:23:39 +00001609 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001610 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001611 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001612 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001613 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001614
Chris Lattner854077d2005-10-17 01:07:11 +00001615 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001616 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001617 if (N0 == N1)
1618 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001619 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001620 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001621 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001622 // fold (sub x, c) -> (add x, -c)
1623 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001624 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001625 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001626 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1627 if (N0C && N0C->isAllOnesValue())
1628 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001629 // fold A-(A-B) -> B
1630 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1631 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001632 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001633 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001634 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001635 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001636 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001637 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001638 // fold C2-(A+C1) -> (C2-C1)-A
1639 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
1640 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT);
1641 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
1642 N1.getOperand(0));
1643 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001644 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001645 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001646 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1647 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001648 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001649 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1650 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001651 // fold ((A+(C+B))-B) -> A+C
1652 if (N0.getOpcode() == ISD::ADD &&
1653 N0.getOperand(1).getOpcode() == ISD::ADD &&
1654 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001655 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1656 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001657 // fold ((A-(B-C))-C) -> A-B
1658 if (N0.getOpcode() == ISD::SUB &&
1659 N0.getOperand(1).getOpcode() == ISD::SUB &&
1660 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001661 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1662 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001663
Dan Gohman613e0d82007-07-03 14:03:57 +00001664 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001665 if (N0.getOpcode() == ISD::UNDEF)
1666 return N0;
1667 if (N1.getOpcode() == ISD::UNDEF)
1668 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001669
Dan Gohman6520e202008-10-18 02:06:02 +00001670 // If the relocation model supports it, consider symbol offsets.
1671 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001672 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001673 // fold (sub Sym, c) -> Sym-c
1674 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001675 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001676 GA->getOffset() -
1677 (uint64_t)N1C->getSExtValue());
1678 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1679 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1680 if (GA->getGlobal() == GB->getGlobal())
1681 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1682 VT);
1683 }
1684
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001685 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001686}
1687
Craig Toppercc274522012-01-07 09:06:39 +00001688SDValue DAGCombiner::visitSUBC(SDNode *N) {
1689 SDValue N0 = N->getOperand(0);
1690 SDValue N1 = N->getOperand(1);
1691 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1692 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1693 EVT VT = N0.getValueType();
1694
1695 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001696 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001697 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1698 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1699 MVT::Glue));
1700
1701 // fold (subc x, x) -> 0 + no borrow
1702 if (N0 == N1)
1703 return CombineTo(N, DAG.getConstant(0, VT),
1704 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1705 MVT::Glue));
1706
1707 // fold (subc x, 0) -> x + no borrow
1708 if (N1C && N1C->isNullValue())
1709 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1710 MVT::Glue));
1711
1712 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1713 if (N0C && N0C->isAllOnesValue())
1714 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1715 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1716 MVT::Glue));
1717
1718 return SDValue();
1719}
1720
1721SDValue DAGCombiner::visitSUBE(SDNode *N) {
1722 SDValue N0 = N->getOperand(0);
1723 SDValue N1 = N->getOperand(1);
1724 SDValue CarryIn = N->getOperand(2);
1725
1726 // fold (sube x, y, false) -> (subc x, y)
1727 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1728 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1729
1730 return SDValue();
1731}
1732
Dan Gohman475871a2008-07-27 21:46:04 +00001733SDValue DAGCombiner::visitMUL(SDNode *N) {
1734 SDValue N0 = N->getOperand(0);
1735 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001736 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1737 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001738 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001739
Dan Gohman7f321562007-06-25 16:23:39 +00001740 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001741 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001742 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001743 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001744 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001745
Dan Gohman613e0d82007-07-03 14:03:57 +00001746 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001747 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001748 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001749 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001750 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001751 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001752 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001753 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001754 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001755 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001756 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001757 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001758 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001759 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001760 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1761 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001762 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001763 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001764 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001765 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001766 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001767 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001768 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1769 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001770 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001771 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001772 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1773 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001774 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001775 DAG.getConstant(Log2Val,
1776 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001777 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001778 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001779 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001780 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001781 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1782 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001783 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001784 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1785 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001786 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001787
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001788 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1789 // use.
1790 {
Dan Gohman475871a2008-07-27 21:46:04 +00001791 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001792 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1793 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001794 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001795 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001796 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001797 isa<ConstantSDNode>(N1.getOperand(1)) &&
1798 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001799 Sh = N1; Y = N0;
1800 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001801
Gabor Greifba36cb52008-08-28 21:40:38 +00001802 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001803 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1804 Sh.getOperand(0), Y);
1805 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1806 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001807 }
1808 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001809
Chris Lattnera1deca32006-03-04 23:33:26 +00001810 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001811 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001812 isa<ConstantSDNode>(N0.getOperand(1)))
1813 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1814 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1815 N0.getOperand(0), N1),
1816 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1817 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001818
Nate Begemancd4d58c2006-02-03 06:46:56 +00001819 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001820 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001821 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001822 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001823
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001824 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001825}
1826
Dan Gohman475871a2008-07-27 21:46:04 +00001827SDValue DAGCombiner::visitSDIV(SDNode *N) {
1828 SDValue N0 = N->getOperand(0);
1829 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001830 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1831 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001832 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001833
Dan Gohman7f321562007-06-25 16:23:39 +00001834 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001835 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001836 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001837 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001838 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001839
Nate Begeman1d4d4142005-09-01 00:19:25 +00001840 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001841 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001842 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001843 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001844 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001845 return N0;
1846 // fold (sdiv X, -1) -> 0-X
1847 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001848 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1849 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001850 // If we know the sign bits of both operands are zero, strength reduce to a
1851 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001852 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001853 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001854 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1855 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001856 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001857 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001858 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001859 (N1C->getAPIntValue().isPowerOf2() ||
1860 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001861 // If dividing by powers of two is cheap, then don't perform the following
1862 // fold.
1863 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001864 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001865
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001866 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001867
Chris Lattner8f4880b2006-02-16 08:02:36 +00001868 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001869 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1870 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001871 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001872 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001873
Chris Lattner8f4880b2006-02-16 08:02:36 +00001874 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001875 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1876 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001877 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001878 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001879 AddToWorkList(SRL.getNode());
1880 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001881 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001882 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001883
Nate Begeman405e3ec2005-10-21 00:02:42 +00001884 // If we're dividing by a positive value, we're done. Otherwise, we must
1885 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001886 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001887 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001888
Gabor Greifba36cb52008-08-28 21:40:38 +00001889 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001890 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1891 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001892 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001893
Nate Begeman69575232005-10-20 02:15:44 +00001894 // if integer divide is expensive and we satisfy the requirements, emit an
1895 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001896 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001897 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001898 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001899 }
Dan Gohman7f321562007-06-25 16:23:39 +00001900
Dan Gohman613e0d82007-07-03 14:03:57 +00001901 // undef / X -> 0
1902 if (N0.getOpcode() == ISD::UNDEF)
1903 return DAG.getConstant(0, VT);
1904 // X / undef -> undef
1905 if (N1.getOpcode() == ISD::UNDEF)
1906 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001907
Dan Gohman475871a2008-07-27 21:46:04 +00001908 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001909}
1910
Dan Gohman475871a2008-07-27 21:46:04 +00001911SDValue DAGCombiner::visitUDIV(SDNode *N) {
1912 SDValue N0 = N->getOperand(0);
1913 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001914 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1915 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001916 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001917
Dan Gohman7f321562007-06-25 16:23:39 +00001918 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001919 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001920 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001921 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001922 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001923
Nate Begeman1d4d4142005-09-01 00:19:25 +00001924 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001925 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001926 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001927 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001928 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001929 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001930 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001931 getShiftAmountTy(N0.getValueType())));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001932 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1933 if (N1.getOpcode() == ISD::SHL) {
1934 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001935 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001936 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001937 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1938 N1.getOperand(1),
1939 DAG.getConstant(SHC->getAPIntValue()
1940 .logBase2(),
1941 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001942 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001943 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001944 }
1945 }
1946 }
Nate Begeman69575232005-10-20 02:15:44 +00001947 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001948 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001949 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001950 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001951 }
Dan Gohman7f321562007-06-25 16:23:39 +00001952
Dan Gohman613e0d82007-07-03 14:03:57 +00001953 // undef / X -> 0
1954 if (N0.getOpcode() == ISD::UNDEF)
1955 return DAG.getConstant(0, VT);
1956 // X / undef -> undef
1957 if (N1.getOpcode() == ISD::UNDEF)
1958 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001959
Dan Gohman475871a2008-07-27 21:46:04 +00001960 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001961}
1962
Dan Gohman475871a2008-07-27 21:46:04 +00001963SDValue DAGCombiner::visitSREM(SDNode *N) {
1964 SDValue N0 = N->getOperand(0);
1965 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001966 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1967 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001968 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001969
Nate Begeman1d4d4142005-09-01 00:19:25 +00001970 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001971 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001972 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001973 // If we know the sign bits of both operands are zero, strength reduce to a
1974 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001975 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001976 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001977 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001978 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001979
Dan Gohman77003042007-11-26 23:46:11 +00001980 // If X/C can be simplified by the division-by-constant logic, lower
1981 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001982 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001983 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001984 AddToWorkList(Div.getNode());
1985 SDValue OptimizedDiv = combine(Div.getNode());
1986 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001987 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1988 OptimizedDiv, N1);
1989 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00001990 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00001991 return Sub;
1992 }
Chris Lattner26d29902006-10-12 20:58:32 +00001993 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001994
Dan Gohman613e0d82007-07-03 14:03:57 +00001995 // undef % X -> 0
1996 if (N0.getOpcode() == ISD::UNDEF)
1997 return DAG.getConstant(0, VT);
1998 // X % undef -> undef
1999 if (N1.getOpcode() == ISD::UNDEF)
2000 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002001
Dan Gohman475871a2008-07-27 21:46:04 +00002002 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002003}
2004
Dan Gohman475871a2008-07-27 21:46:04 +00002005SDValue DAGCombiner::visitUREM(SDNode *N) {
2006 SDValue N0 = N->getOperand(0);
2007 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002008 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2009 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002010 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002011
Nate Begeman1d4d4142005-09-01 00:19:25 +00002012 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002013 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002014 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002015 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002016 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002017 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002018 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002019 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2020 if (N1.getOpcode() == ISD::SHL) {
2021 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002022 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002023 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002024 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002025 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002026 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002027 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002028 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002029 }
2030 }
2031 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002032
Dan Gohman77003042007-11-26 23:46:11 +00002033 // If X/C can be simplified by the division-by-constant logic, lower
2034 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002035 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002036 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002037 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002038 SDValue OptimizedDiv = combine(Div.getNode());
2039 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002040 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2041 OptimizedDiv, N1);
2042 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002043 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002044 return Sub;
2045 }
Chris Lattner26d29902006-10-12 20:58:32 +00002046 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002047
Dan Gohman613e0d82007-07-03 14:03:57 +00002048 // undef % X -> 0
2049 if (N0.getOpcode() == ISD::UNDEF)
2050 return DAG.getConstant(0, VT);
2051 // X % undef -> undef
2052 if (N1.getOpcode() == ISD::UNDEF)
2053 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002054
Dan Gohman475871a2008-07-27 21:46:04 +00002055 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002056}
2057
Dan Gohman475871a2008-07-27 21:46:04 +00002058SDValue DAGCombiner::visitMULHS(SDNode *N) {
2059 SDValue N0 = N->getOperand(0);
2060 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002061 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002062 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002063 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002064
Nate Begeman1d4d4142005-09-01 00:19:25 +00002065 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002066 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002067 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002068 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002069 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002070 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2071 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002072 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002073 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002074 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002075 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002076
Chris Lattnerde1c3602010-12-13 08:39:01 +00002077 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2078 // plus a shift.
2079 if (VT.isSimple() && !VT.isVector()) {
2080 MVT Simple = VT.getSimpleVT();
2081 unsigned SimpleSize = Simple.getSizeInBits();
2082 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2083 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2084 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2085 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2086 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002087 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002088 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002089 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2090 }
2091 }
Owen Anderson95771af2011-02-25 21:41:48 +00002092
Dan Gohman475871a2008-07-27 21:46:04 +00002093 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002094}
2095
Dan Gohman475871a2008-07-27 21:46:04 +00002096SDValue DAGCombiner::visitMULHU(SDNode *N) {
2097 SDValue N0 = N->getOperand(0);
2098 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002099 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002100 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002101 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002102
Nate Begeman1d4d4142005-09-01 00:19:25 +00002103 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002104 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002105 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002106 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002107 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002108 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002109 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002110 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002111 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002112
Chris Lattnerde1c3602010-12-13 08:39:01 +00002113 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2114 // plus a shift.
2115 if (VT.isSimple() && !VT.isVector()) {
2116 MVT Simple = VT.getSimpleVT();
2117 unsigned SimpleSize = Simple.getSizeInBits();
2118 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2119 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2120 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2121 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2122 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2123 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002124 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002125 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2126 }
2127 }
Owen Anderson95771af2011-02-25 21:41:48 +00002128
Dan Gohman475871a2008-07-27 21:46:04 +00002129 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002130}
2131
Dan Gohman389079b2007-10-08 17:57:15 +00002132/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2133/// compute two values. LoOp and HiOp give the opcodes for the two computations
2134/// that are being performed. Return true if a simplification was made.
2135///
Scott Michelfdc40a02009-02-17 22:15:04 +00002136SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002137 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002138 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002139 bool HiExists = N->hasAnyUseOfValue(1);
2140 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002141 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002142 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002143 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2144 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002145 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002146 }
2147
2148 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002149 bool LoExists = N->hasAnyUseOfValue(0);
2150 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002151 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002152 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002153 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2154 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002155 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002156 }
2157
Evan Cheng44711942007-11-08 09:25:29 +00002158 // If both halves are used, return as it is.
2159 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002160 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002161
2162 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002163 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002164 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2165 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002166 AddToWorkList(Lo.getNode());
2167 SDValue LoOpt = combine(Lo.getNode());
2168 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002169 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002170 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002171 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002172 }
2173
Evan Cheng44711942007-11-08 09:25:29 +00002174 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002175 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002176 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002177 AddToWorkList(Hi.getNode());
2178 SDValue HiOpt = combine(Hi.getNode());
2179 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002180 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002181 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002182 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002183 }
Bill Wendling826d1142009-01-30 03:08:40 +00002184
Dan Gohman475871a2008-07-27 21:46:04 +00002185 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002186}
2187
Dan Gohman475871a2008-07-27 21:46:04 +00002188SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2189 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002190 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002191
Chris Lattner33e77d32010-12-15 06:04:19 +00002192 EVT VT = N->getValueType(0);
2193 DebugLoc DL = N->getDebugLoc();
2194
2195 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2196 // plus a shift.
2197 if (VT.isSimple() && !VT.isVector()) {
2198 MVT Simple = VT.getSimpleVT();
2199 unsigned SimpleSize = Simple.getSizeInBits();
2200 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2201 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2202 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2203 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2204 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2205 // Compute the high part as N1.
2206 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002207 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002208 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2209 // Compute the low part as N0.
2210 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2211 return CombineTo(N, Lo, Hi);
2212 }
2213 }
Owen Anderson95771af2011-02-25 21:41:48 +00002214
Dan Gohman475871a2008-07-27 21:46:04 +00002215 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002216}
2217
Dan Gohman475871a2008-07-27 21:46:04 +00002218SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2219 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002220 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002221
Chris Lattner33e77d32010-12-15 06:04:19 +00002222 EVT VT = N->getValueType(0);
2223 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002224
Chris Lattner33e77d32010-12-15 06:04:19 +00002225 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2226 // plus a shift.
2227 if (VT.isSimple() && !VT.isVector()) {
2228 MVT Simple = VT.getSimpleVT();
2229 unsigned SimpleSize = Simple.getSizeInBits();
2230 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2231 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2232 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2233 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2234 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2235 // Compute the high part as N1.
2236 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002237 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002238 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2239 // Compute the low part as N0.
2240 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2241 return CombineTo(N, Lo, Hi);
2242 }
2243 }
Owen Anderson95771af2011-02-25 21:41:48 +00002244
Dan Gohman475871a2008-07-27 21:46:04 +00002245 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002246}
2247
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002248SDValue DAGCombiner::visitSMULO(SDNode *N) {
2249 // (smulo x, 2) -> (saddo x, x)
2250 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2251 if (C2->getAPIntValue() == 2)
2252 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2253 N->getOperand(0), N->getOperand(0));
2254
2255 return SDValue();
2256}
2257
2258SDValue DAGCombiner::visitUMULO(SDNode *N) {
2259 // (umulo x, 2) -> (uaddo x, x)
2260 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2261 if (C2->getAPIntValue() == 2)
2262 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2263 N->getOperand(0), N->getOperand(0));
2264
2265 return SDValue();
2266}
2267
Dan Gohman475871a2008-07-27 21:46:04 +00002268SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2269 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002270 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002271
Dan Gohman475871a2008-07-27 21:46:04 +00002272 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002273}
2274
Dan Gohman475871a2008-07-27 21:46:04 +00002275SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2276 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002277 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002278
Dan Gohman475871a2008-07-27 21:46:04 +00002279 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002280}
2281
Chris Lattner35e5c142006-05-05 05:51:50 +00002282/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2283/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002284SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2285 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002286 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002287 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002288
Dan Gohmanff00a552010-01-14 03:08:49 +00002289 // Bail early if none of these transforms apply.
2290 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2291
Chris Lattner540121f2006-05-05 06:31:05 +00002292 // For each of OP in AND/OR/XOR:
2293 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2294 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2295 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002296 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002297 //
2298 // do not sink logical op inside of a vector extend, since it may combine
2299 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002300 EVT Op0VT = N0.getOperand(0).getValueType();
2301 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002302 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002303 // Avoid infinite looping with PromoteIntBinOp.
2304 (N0.getOpcode() == ISD::ANY_EXTEND &&
2305 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002306 (N0.getOpcode() == ISD::TRUNCATE &&
2307 (!TLI.isZExtFree(VT, Op0VT) ||
2308 !TLI.isTruncateFree(Op0VT, VT)) &&
2309 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002310 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002311 Op0VT == N1.getOperand(0).getValueType() &&
2312 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002313 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2314 N0.getOperand(0).getValueType(),
2315 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002316 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002317 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002318 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002319
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002320 // For each of OP in SHL/SRL/SRA/AND...
2321 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2322 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2323 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002324 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002325 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002326 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002327 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2328 N0.getOperand(0).getValueType(),
2329 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002330 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002331 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2332 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002333 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002334
Nadav Rotem4ac90812012-04-01 19:31:22 +00002335 // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2336 // Only perform this optimization after type legalization and before
2337 // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2338 // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2339 // we don't want to undo this promotion.
2340 // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2341 // on scalars.
2342 if ((N0.getOpcode() == ISD::BITCAST || N0.getOpcode() == ISD::SCALAR_TO_VECTOR)
2343 && Level == AfterLegalizeVectorOps) {
2344 SDValue In0 = N0.getOperand(0);
2345 SDValue In1 = N1.getOperand(0);
2346 EVT In0Ty = In0.getValueType();
2347 EVT In1Ty = In1.getValueType();
2348 // If both incoming values are integers, and the original types are the same.
2349 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
2350 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), In0Ty, In0, In1);
2351 SDValue BC = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, Op);
2352 AddToWorkList(Op.getNode());
2353 return BC;
2354 }
2355 }
2356
2357 // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2358 // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2359 // If both shuffles use the same mask, and both shuffle within a single
2360 // vector, then it is worthwhile to move the swizzle after the operation.
2361 // The type-legalizer generates this pattern when loading illegal
2362 // vector types from memory. In many cases this allows additional shuffle
2363 // optimizations.
Craig Topperf9204232012-04-09 07:19:09 +00002364 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2365 N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2366 N1.getOperand(1).getOpcode() == ISD::UNDEF) {
Nadav Rotem4ac90812012-04-01 19:31:22 +00002367 ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2368 ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
Craig Topperf9204232012-04-09 07:19:09 +00002369
2370 assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2371 "Inputs to shuffles are not the same type");
Nadav Rotem4ac90812012-04-01 19:31:22 +00002372
2373 unsigned NumElts = VT.getVectorNumElements();
Nadav Rotem4ac90812012-04-01 19:31:22 +00002374
2375 // Check that both shuffles use the same mask. The masks are known to be of
2376 // the same length because the result vector type is the same.
2377 bool SameMask = true;
2378 for (unsigned i = 0; i != NumElts; ++i) {
2379 int Idx0 = SVN0->getMaskElt(i);
2380 int Idx1 = SVN1->getMaskElt(i);
2381 if (Idx0 != Idx1) {
2382 SameMask = false;
2383 break;
2384 }
2385 }
2386
Craig Topperf9204232012-04-09 07:19:09 +00002387 if (SameMask) {
2388 SDValue Op = DAG.getNode(N->getOpcode(), N->getDebugLoc(), VT,
2389 N0.getOperand(0), N1.getOperand(0));
Nadav Rotem4ac90812012-04-01 19:31:22 +00002390 AddToWorkList(Op.getNode());
Craig Topperf9204232012-04-09 07:19:09 +00002391 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Op,
2392 DAG.getUNDEF(VT), &SVN0->getMask()[0]);
Nadav Rotem4ac90812012-04-01 19:31:22 +00002393 }
2394 }
Craig Topperf9204232012-04-09 07:19:09 +00002395
Dan Gohman475871a2008-07-27 21:46:04 +00002396 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002397}
2398
Dan Gohman475871a2008-07-27 21:46:04 +00002399SDValue DAGCombiner::visitAND(SDNode *N) {
2400 SDValue N0 = N->getOperand(0);
2401 SDValue N1 = N->getOperand(1);
2402 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002403 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2404 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002405 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002406 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002407
Dan Gohman7f321562007-06-25 16:23:39 +00002408 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002409 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002410 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002411 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002412 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002413
Dan Gohman613e0d82007-07-03 14:03:57 +00002414 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002415 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002416 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002417 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002418 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002419 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002420 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002421 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002422 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002423 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002424 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002425 return N0;
2426 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002427 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002428 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002429 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002430 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002431 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002432 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002433 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002434 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002435 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002436 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002437 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002438 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002439 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2440 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002441 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002442 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002443 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002444 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002445 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2446 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002447
Chris Lattner1ec05d12006-03-01 21:47:21 +00002448 // Replace uses of the AND with uses of the Zero extend node.
2449 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002450
Chris Lattner3603cd62006-02-02 07:17:31 +00002451 // We actually want to replace all uses of the any_extend with the
2452 // zero_extend, to avoid duplicating things. This will later cause this
2453 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002454 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002455 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002456 }
2457 }
James Molloy6259dcd2012-02-20 12:02:38 +00002458 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2459 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2460 // already be zero by virtue of the width of the base type of the load.
2461 //
2462 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2463 // more cases.
2464 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2465 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2466 N0.getOpcode() == ISD::LOAD) {
2467 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2468 N0 : N0.getOperand(0) );
2469
2470 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2471 // This can be a pure constant or a vector splat, in which case we treat the
2472 // vector as a scalar and use the splat value.
2473 APInt Constant = APInt::getNullValue(1);
2474 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2475 Constant = C->getAPIntValue();
2476 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2477 APInt SplatValue, SplatUndef;
2478 unsigned SplatBitSize;
2479 bool HasAnyUndefs;
2480 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2481 SplatBitSize, HasAnyUndefs);
2482 if (IsSplat) {
2483 // Undef bits can contribute to a possible optimisation if set, so
2484 // set them.
2485 SplatValue |= SplatUndef;
2486
2487 // The splat value may be something like "0x00FFFFFF", which means 0 for
2488 // the first vector value and FF for the rest, repeating. We need a mask
2489 // that will apply equally to all members of the vector, so AND all the
2490 // lanes of the constant together.
2491 EVT VT = Vector->getValueType(0);
2492 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
2493 Constant = APInt::getAllOnesValue(BitWidth);
2494 for (unsigned i = 0, n = VT.getVectorNumElements(); i < n; ++i)
2495 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2496 }
2497 }
2498
2499 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2500 // actually legal and isn't going to get expanded, else this is a false
2501 // optimisation.
2502 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2503 Load->getMemoryVT());
2504
2505 // Resize the constant to the same size as the original memory access before
2506 // extension. If it is still the AllOnesValue then this AND is completely
2507 // unneeded.
2508 Constant =
2509 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2510
2511 bool B;
2512 switch (Load->getExtensionType()) {
2513 default: B = false; break;
2514 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2515 case ISD::ZEXTLOAD:
2516 case ISD::NON_EXTLOAD: B = true; break;
2517 }
2518
2519 if (B && Constant.isAllOnesValue()) {
2520 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2521 // preserve semantics once we get rid of the AND.
2522 SDValue NewLoad(Load, 0);
2523 if (Load->getExtensionType() == ISD::EXTLOAD) {
2524 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2525 Load->getValueType(0), Load->getDebugLoc(),
2526 Load->getChain(), Load->getBasePtr(),
2527 Load->getOffset(), Load->getMemoryVT(),
2528 Load->getMemOperand());
2529 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
2530 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2531 }
2532
2533 // Fold the AND away, taking care not to fold to the old load node if we
2534 // replaced it.
2535 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2536
2537 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2538 }
2539 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002540 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2541 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2542 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2543 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002544
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002545 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002546 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002547 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002548 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002549 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2550 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002551 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002552 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002553 }
Bill Wendling2627a882009-01-30 20:43:18 +00002554 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002555 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002556 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2557 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002558 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002559 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002560 }
Bill Wendling2627a882009-01-30 20:43:18 +00002561 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002562 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002563 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2564 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002565 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002566 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002567 }
2568 }
2569 // canonicalize equivalent to ll == rl
2570 if (LL == RR && LR == RL) {
2571 Op1 = ISD::getSetCCSwappedOperands(Op1);
2572 std::swap(RL, RR);
2573 }
2574 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002575 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002576 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002577 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002578 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002579 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2580 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002581 }
2582 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002583
Bill Wendling2627a882009-01-30 20:43:18 +00002584 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002585 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002586 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002587 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002588 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002589
Nate Begemande996292006-02-03 22:24:05 +00002590 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2591 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002592 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002593 SimplifyDemandedBits(SDValue(N, 0)))
2594 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002595
Nate Begemanded49632005-10-13 03:11:28 +00002596 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002597 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002598 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002599 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002600 // If we zero all the possible extended bits, then we can turn this into
2601 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002602 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002603 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002604 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002605 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002606 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002607 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002608 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002609 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002610 LN0->isVolatile(), LN0->isNonTemporal(),
2611 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002612 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002613 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002614 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002615 }
2616 }
2617 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002618 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002619 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002620 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002621 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002622 // If we zero all the possible extended bits, then we can turn this into
2623 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002624 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002625 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002626 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002627 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002628 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002629 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002630 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002631 LN0->getBasePtr(), LN0->getPointerInfo(),
2632 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002633 LN0->isVolatile(), LN0->isNonTemporal(),
2634 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002635 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002636 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002637 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002638 }
2639 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002640
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002641 // fold (and (load x), 255) -> (zextload x, i8)
2642 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002643 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2644 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2645 (N0.getOpcode() == ISD::ANY_EXTEND &&
2646 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2647 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2648 LoadSDNode *LN0 = HasAnyExt
2649 ? cast<LoadSDNode>(N0.getOperand(0))
2650 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002651 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002652 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002653 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002654 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2655 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2656 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002657
Evan Chengd40d03e2010-01-06 19:38:29 +00002658 if (ExtVT == LoadedVT &&
2659 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002660 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002661
2662 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002663 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002664 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002665 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002666 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2667 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002668 AddToWorkList(N);
2669 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2670 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2671 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002672
Chris Lattneref7634c2010-01-07 21:53:27 +00002673 // Do not change the width of a volatile load.
2674 // Do not generate loads of non-round integer types since these can
2675 // be expensive (and would be wrong if the type is not byte sized).
2676 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2677 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2678 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002679
Chris Lattneref7634c2010-01-07 21:53:27 +00002680 unsigned Alignment = LN0->getAlignment();
2681 SDValue NewPtr = LN0->getBasePtr();
2682
2683 // For big endian targets, we need to add an offset to the pointer
2684 // to load the correct bytes. For little endian systems, we merely
2685 // need to read fewer bytes from the same pointer.
2686 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002687 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2688 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2689 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002690 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2691 NewPtr, DAG.getConstant(PtrOff, PtrType));
2692 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002693 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002694
2695 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002696
Chris Lattneref7634c2010-01-07 21:53:27 +00002697 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2698 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002699 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002700 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002701 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002702 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2703 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002704 AddToWorkList(N);
2705 CombineTo(LN0, Load, Load.getValue(1));
2706 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002707 }
Evan Cheng466685d2006-10-09 20:57:25 +00002708 }
Chris Lattner15045b62006-02-28 06:35:35 +00002709 }
2710 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002711
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002712 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002713}
2714
Evan Cheng9568e5c2011-06-21 06:01:08 +00002715/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2716///
2717SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2718 bool DemandHighBits) {
2719 if (!LegalOperations)
2720 return SDValue();
2721
2722 EVT VT = N->getValueType(0);
2723 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2724 return SDValue();
2725 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2726 return SDValue();
2727
2728 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2729 bool LookPassAnd0 = false;
2730 bool LookPassAnd1 = false;
2731 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2732 std::swap(N0, N1);
2733 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2734 std::swap(N0, N1);
2735 if (N0.getOpcode() == ISD::AND) {
2736 if (!N0.getNode()->hasOneUse())
2737 return SDValue();
2738 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2739 if (!N01C || N01C->getZExtValue() != 0xFF00)
2740 return SDValue();
2741 N0 = N0.getOperand(0);
2742 LookPassAnd0 = true;
2743 }
2744
2745 if (N1.getOpcode() == ISD::AND) {
2746 if (!N1.getNode()->hasOneUse())
2747 return SDValue();
2748 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2749 if (!N11C || N11C->getZExtValue() != 0xFF)
2750 return SDValue();
2751 N1 = N1.getOperand(0);
2752 LookPassAnd1 = true;
2753 }
2754
2755 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2756 std::swap(N0, N1);
2757 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2758 return SDValue();
2759 if (!N0.getNode()->hasOneUse() ||
2760 !N1.getNode()->hasOneUse())
2761 return SDValue();
2762
2763 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2764 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2765 if (!N01C || !N11C)
2766 return SDValue();
2767 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2768 return SDValue();
2769
2770 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2771 SDValue N00 = N0->getOperand(0);
2772 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2773 if (!N00.getNode()->hasOneUse())
2774 return SDValue();
2775 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2776 if (!N001C || N001C->getZExtValue() != 0xFF)
2777 return SDValue();
2778 N00 = N00.getOperand(0);
2779 LookPassAnd0 = true;
2780 }
2781
2782 SDValue N10 = N1->getOperand(0);
2783 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2784 if (!N10.getNode()->hasOneUse())
2785 return SDValue();
2786 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2787 if (!N101C || N101C->getZExtValue() != 0xFF00)
2788 return SDValue();
2789 N10 = N10.getOperand(0);
2790 LookPassAnd1 = true;
2791 }
2792
2793 if (N00 != N10)
2794 return SDValue();
2795
2796 // Make sure everything beyond the low halfword is zero since the SRL 16
2797 // will clear the top bits.
2798 unsigned OpSizeInBits = VT.getSizeInBits();
2799 if (DemandHighBits && OpSizeInBits > 16 &&
2800 (!LookPassAnd0 || !LookPassAnd1) &&
2801 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2802 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002803
Evan Cheng9568e5c2011-06-21 06:01:08 +00002804 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2805 if (OpSizeInBits > 16)
2806 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2807 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2808 return Res;
2809}
2810
2811/// isBSwapHWordElement - Return true if the specified node is an element
2812/// that makes up a 32-bit packed halfword byteswap. i.e.
2813/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2814static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2815 if (!N.getNode()->hasOneUse())
2816 return false;
2817
2818 unsigned Opc = N.getOpcode();
2819 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2820 return false;
2821
2822 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2823 if (!N1C)
2824 return false;
2825
2826 unsigned Num;
2827 switch (N1C->getZExtValue()) {
2828 default:
2829 return false;
2830 case 0xFF: Num = 0; break;
2831 case 0xFF00: Num = 1; break;
2832 case 0xFF0000: Num = 2; break;
2833 case 0xFF000000: Num = 3; break;
2834 }
2835
2836 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2837 SDValue N0 = N.getOperand(0);
2838 if (Opc == ISD::AND) {
2839 if (Num == 0 || Num == 2) {
2840 // (x >> 8) & 0xff
2841 // (x >> 8) & 0xff0000
2842 if (N0.getOpcode() != ISD::SRL)
2843 return false;
2844 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2845 if (!C || C->getZExtValue() != 8)
2846 return false;
2847 } else {
2848 // (x << 8) & 0xff00
2849 // (x << 8) & 0xff000000
2850 if (N0.getOpcode() != ISD::SHL)
2851 return false;
2852 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2853 if (!C || C->getZExtValue() != 8)
2854 return false;
2855 }
2856 } else if (Opc == ISD::SHL) {
2857 // (x & 0xff) << 8
2858 // (x & 0xff0000) << 8
2859 if (Num != 0 && Num != 2)
2860 return false;
2861 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2862 if (!C || C->getZExtValue() != 8)
2863 return false;
2864 } else { // Opc == ISD::SRL
2865 // (x & 0xff00) >> 8
2866 // (x & 0xff000000) >> 8
2867 if (Num != 1 && Num != 3)
2868 return false;
2869 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2870 if (!C || C->getZExtValue() != 8)
2871 return false;
2872 }
2873
2874 if (Parts[Num])
2875 return false;
2876
2877 Parts[Num] = N0.getOperand(0).getNode();
2878 return true;
2879}
2880
2881/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2882/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2883/// => (rotl (bswap x), 16)
2884SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2885 if (!LegalOperations)
2886 return SDValue();
2887
2888 EVT VT = N->getValueType(0);
2889 if (VT != MVT::i32)
2890 return SDValue();
2891 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2892 return SDValue();
2893
2894 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2895 // Look for either
2896 // (or (or (and), (and)), (or (and), (and)))
2897 // (or (or (or (and), (and)), (and)), (and))
2898 if (N0.getOpcode() != ISD::OR)
2899 return SDValue();
2900 SDValue N00 = N0.getOperand(0);
2901 SDValue N01 = N0.getOperand(1);
2902
2903 if (N1.getOpcode() == ISD::OR) {
2904 // (or (or (and), (and)), (or (and), (and)))
2905 SDValue N000 = N00.getOperand(0);
2906 if (!isBSwapHWordElement(N000, Parts))
2907 return SDValue();
2908
2909 SDValue N001 = N00.getOperand(1);
2910 if (!isBSwapHWordElement(N001, Parts))
2911 return SDValue();
2912 SDValue N010 = N01.getOperand(0);
2913 if (!isBSwapHWordElement(N010, Parts))
2914 return SDValue();
2915 SDValue N011 = N01.getOperand(1);
2916 if (!isBSwapHWordElement(N011, Parts))
2917 return SDValue();
2918 } else {
2919 // (or (or (or (and), (and)), (and)), (and))
2920 if (!isBSwapHWordElement(N1, Parts))
2921 return SDValue();
2922 if (!isBSwapHWordElement(N01, Parts))
2923 return SDValue();
2924 if (N00.getOpcode() != ISD::OR)
2925 return SDValue();
2926 SDValue N000 = N00.getOperand(0);
2927 if (!isBSwapHWordElement(N000, Parts))
2928 return SDValue();
2929 SDValue N001 = N00.getOperand(1);
2930 if (!isBSwapHWordElement(N001, Parts))
2931 return SDValue();
2932 }
2933
2934 // Make sure the parts are all coming from the same node.
2935 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2936 return SDValue();
2937
2938 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2939 SDValue(Parts[0],0));
2940
2941 // Result of the bswap should be rotated by 16. If it's not legal, than
2942 // do (x << 16) | (x >> 16).
2943 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
2944 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
2945 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
2946 else if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
2947 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
2948 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
2949 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
2950 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
2951}
2952
Dan Gohman475871a2008-07-27 21:46:04 +00002953SDValue DAGCombiner::visitOR(SDNode *N) {
2954 SDValue N0 = N->getOperand(0);
2955 SDValue N1 = N->getOperand(1);
2956 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002957 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2958 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002959 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002960
Dan Gohman7f321562007-06-25 16:23:39 +00002961 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002962 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002963 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002964 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002965 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002966
Dan Gohman613e0d82007-07-03 14:03:57 +00002967 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00002968 if (!LegalOperations &&
2969 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00002970 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
2971 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
2972 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00002973 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002974 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002975 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002976 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002977 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00002978 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002979 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002980 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002981 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002982 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002983 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002984 return N1;
2985 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002986 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002987 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00002988
2989 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
2990 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
2991 if (BSwap.getNode() != 0)
2992 return BSwap;
2993 BSwap = MatchBSwapHWordLow(N, N0, N1);
2994 if (BSwap.getNode() != 0)
2995 return BSwap;
2996
Nate Begemancd4d58c2006-02-03 06:46:56 +00002997 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00002998 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002999 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003000 return ROR;
3001 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003002 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00003003 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00003004 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00003005 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00003006 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00003007 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
3008 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3009 N0.getOperand(0), N1),
3010 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00003011 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003012 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3013 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3014 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3015 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003016
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003017 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003018 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00003019 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3020 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00003021 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003022 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003023 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
3024 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003025 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003026 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003027 }
Bill Wendling09025642009-01-30 20:59:34 +00003028 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3029 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00003030 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003031 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00003032 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
3033 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00003034 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00003035 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003036 }
3037 }
3038 // canonicalize equivalent to ll == rl
3039 if (LL == RR && LR == RL) {
3040 Op1 = ISD::getSetCCSwappedOperands(Op1);
3041 std::swap(RL, RR);
3042 }
3043 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003044 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003045 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00003046 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00003047 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00003048 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
3049 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003050 }
3051 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003052
Bill Wendling09025642009-01-30 20:59:34 +00003053 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00003054 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003055 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003056 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003057 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003058
Bill Wendling09025642009-01-30 20:59:34 +00003059 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003060 if (N0.getOpcode() == ISD::AND &&
3061 N1.getOpcode() == ISD::AND &&
3062 N0.getOperand(1).getOpcode() == ISD::Constant &&
3063 N1.getOperand(1).getOpcode() == ISD::Constant &&
3064 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003065 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003066 // We can only do this xform if we know that bits from X that are set in C2
3067 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003068 const APInt &LHSMask =
3069 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3070 const APInt &RHSMask =
3071 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003072
Dan Gohmanea859be2007-06-22 14:59:07 +00003073 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3074 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003075 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3076 N0.getOperand(0), N1.getOperand(0));
3077 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3078 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003079 }
3080 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003081
Chris Lattner516b9622006-09-14 20:50:57 +00003082 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003083 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003084 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003085
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003086 // Simplify the operands using demanded-bits information.
3087 if (!VT.isVector() &&
3088 SimplifyDemandedBits(SDValue(N, 0)))
3089 return SDValue(N, 0);
3090
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003091 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003092}
3093
Chris Lattner516b9622006-09-14 20:50:57 +00003094/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003095static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003096 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003097 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003098 Mask = Op.getOperand(1);
3099 Op = Op.getOperand(0);
3100 } else {
3101 return false;
3102 }
3103 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003104
Chris Lattner516b9622006-09-14 20:50:57 +00003105 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3106 Shift = Op;
3107 return true;
3108 }
Bill Wendling09025642009-01-30 20:59:34 +00003109
Scott Michelfdc40a02009-02-17 22:15:04 +00003110 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003111}
3112
Chris Lattner516b9622006-09-14 20:50:57 +00003113// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3114// idioms for rotate, and if the target supports rotation instructions, generate
3115// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003116SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003117 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003118 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003119 if (!TLI.isTypeLegal(VT)) return 0;
3120
3121 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003122 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3123 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003124 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003125
Chris Lattner516b9622006-09-14 20:50:57 +00003126 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003127 SDValue LHSShift; // The shift.
3128 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003129 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3130 return 0; // Not part of a rotate.
3131
Dan Gohman475871a2008-07-27 21:46:04 +00003132 SDValue RHSShift; // The shift.
3133 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003134 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3135 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003136
Chris Lattner516b9622006-09-14 20:50:57 +00003137 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3138 return 0; // Not shifting the same value.
3139
3140 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3141 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003142
Chris Lattner516b9622006-09-14 20:50:57 +00003143 // Canonicalize shl to left side in a shl/srl pair.
3144 if (RHSShift.getOpcode() == ISD::SHL) {
3145 std::swap(LHS, RHS);
3146 std::swap(LHSShift, RHSShift);
3147 std::swap(LHSMask , RHSMask );
3148 }
3149
Duncan Sands83ec4b62008-06-06 12:08:01 +00003150 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003151 SDValue LHSShiftArg = LHSShift.getOperand(0);
3152 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3153 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003154
3155 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3156 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003157 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3158 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003159 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3160 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003161 if ((LShVal + RShVal) != OpSizeInBits)
3162 return 0;
3163
Dan Gohman475871a2008-07-27 21:46:04 +00003164 SDValue Rot;
Chris Lattner516b9622006-09-14 20:50:57 +00003165 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003166 Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00003167 else
Bill Wendling317bd702009-01-30 21:14:50 +00003168 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003169
Chris Lattner516b9622006-09-14 20:50:57 +00003170 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003171 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003172 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003173
Gabor Greifba36cb52008-08-28 21:40:38 +00003174 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003175 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3176 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003177 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003178 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003179 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3180 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003181 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003182
Bill Wendling317bd702009-01-30 21:14:50 +00003183 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003184 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003185
Gabor Greifba36cb52008-08-28 21:40:38 +00003186 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003187 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003188
Chris Lattner516b9622006-09-14 20:50:57 +00003189 // If there is a mask here, and we have a variable shift, we can't be sure
3190 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003191 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003192 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003193
Chris Lattner516b9622006-09-14 20:50:57 +00003194 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3195 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003196 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3197 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003198 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003199 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003200 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00003201 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003202 return DAG.getNode(ISD::ROTL, DL, VT,
3203 LHSShiftArg, LHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003204 else
Bill Wendling317bd702009-01-30 21:14:50 +00003205 return DAG.getNode(ISD::ROTR, DL, VT,
3206 LHSShiftArg, RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003207 }
Chris Lattner516b9622006-09-14 20:50:57 +00003208 }
3209 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003210
Chris Lattner516b9622006-09-14 20:50:57 +00003211 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3212 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003213 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3214 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003215 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003216 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003217 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling2692d592008-08-31 01:13:31 +00003218 if (HasROTR)
Bill Wendling317bd702009-01-30 21:14:50 +00003219 return DAG.getNode(ISD::ROTR, DL, VT,
3220 LHSShiftArg, RHSShiftAmt).getNode();
Bill Wendling2692d592008-08-31 01:13:31 +00003221 else
Bill Wendling317bd702009-01-30 21:14:50 +00003222 return DAG.getNode(ISD::ROTL, DL, VT,
3223 LHSShiftArg, LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003224 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003225 }
3226 }
3227
Dan Gohman74feef22008-10-17 01:23:35 +00003228 // Look for sign/zext/any-extended or truncate cases:
Scott Michelc9dc1142007-04-02 21:36:32 +00003229 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3230 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003231 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3232 || LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
Scott Michelc9dc1142007-04-02 21:36:32 +00003233 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3234 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003235 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3236 || RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003237 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3238 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003239 if (RExtOp0.getOpcode() == ISD::SUB &&
3240 RExtOp0.getOperand(1) == LExtOp0) {
3241 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003242 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003243 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003244 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003245 if (ConstantSDNode *SUBC =
3246 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003247 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003248 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3249 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003250 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003251 }
3252 }
3253 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3254 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003255 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003256 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003257 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003258 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003259 if (ConstantSDNode *SUBC =
3260 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003261 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003262 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3263 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003264 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003265 }
3266 }
Chris Lattner516b9622006-09-14 20:50:57 +00003267 }
3268 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003269
Chris Lattner516b9622006-09-14 20:50:57 +00003270 return 0;
3271}
3272
Dan Gohman475871a2008-07-27 21:46:04 +00003273SDValue DAGCombiner::visitXOR(SDNode *N) {
3274 SDValue N0 = N->getOperand(0);
3275 SDValue N1 = N->getOperand(1);
3276 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003277 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3278 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003279 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003280
Dan Gohman7f321562007-06-25 16:23:39 +00003281 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003282 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003283 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003284 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003285 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003286
Evan Cheng26471c42008-03-25 20:08:07 +00003287 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3288 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3289 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003290 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003291 if (N0.getOpcode() == ISD::UNDEF)
3292 return N0;
3293 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003294 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003295 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003296 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003297 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003298 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003299 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003300 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003301 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003302 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003303 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003304 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003305 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003306 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003307 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003308
Nate Begeman1d4d4142005-09-01 00:19:25 +00003309 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003310 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003311 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003312 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3313 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003314
Duncan Sands25cf2272008-11-24 14:53:14 +00003315 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003316 switch (N0.getOpcode()) {
3317 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003318 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003319 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003320 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003321 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003322 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003323 N0.getOperand(3), NotCC);
3324 }
3325 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003326 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003327
Chris Lattner61c5ff42007-09-10 21:39:07 +00003328 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003329 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003330 N0.getNode()->hasOneUse() &&
3331 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003332 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003333 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003334 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003335 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003336 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003337 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003338
Bill Wendling317bd702009-01-30 21:14:50 +00003339 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003340 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003341 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003342 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003343 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3344 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003345 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3346 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003347 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003348 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003349 }
3350 }
Bill Wendling317bd702009-01-30 21:14:50 +00003351 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003352 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003353 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003354 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003355 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3356 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003357 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3358 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003359 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003360 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003361 }
3362 }
Bill Wendling317bd702009-01-30 21:14:50 +00003363 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003364 if (N1C && N0.getOpcode() == ISD::XOR) {
3365 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3366 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3367 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003368 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3369 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003370 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003371 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003372 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3373 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003374 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003375 }
3376 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003377 if (N0 == N1)
3378 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003379
Chris Lattner35e5c142006-05-05 05:51:50 +00003380 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3381 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003382 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003383 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003384 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003385
Chris Lattner3e104b12006-04-08 04:15:24 +00003386 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003387 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003388 SimplifyDemandedBits(SDValue(N, 0)))
3389 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003390
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003391 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003392}
3393
Chris Lattnere70da202007-12-06 07:33:36 +00003394/// visitShiftByConstant - Handle transforms common to the three shifts, when
3395/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003396SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003397 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003398 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003399
Chris Lattnere70da202007-12-06 07:33:36 +00003400 // We want to pull some binops through shifts, so that we have (and (shift))
3401 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3402 // thing happens with address calculations, so it's important to canonicalize
3403 // it.
3404 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003405
Chris Lattnere70da202007-12-06 07:33:36 +00003406 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003407 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003408 case ISD::OR:
3409 case ISD::XOR:
3410 HighBitSet = false; // We can only transform sra if the high bit is clear.
3411 break;
3412 case ISD::AND:
3413 HighBitSet = true; // We can only transform sra if the high bit is set.
3414 break;
3415 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003416 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003417 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003418 HighBitSet = false; // We can only transform sra if the high bit is clear.
3419 break;
3420 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003421
Chris Lattnere70da202007-12-06 07:33:36 +00003422 // We require the RHS of the binop to be a constant as well.
3423 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003424 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003425
3426 // FIXME: disable this unless the input to the binop is a shift by a constant.
3427 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003428 //
Bill Wendling88103372009-01-30 21:37:17 +00003429 // void foo(int *X, int i) { X[i & 1235] = 1; }
3430 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003431 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003432 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003433 BinOpLHSVal->getOpcode() != ISD::SRA &&
3434 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3435 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003436 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003437
Owen Andersone50ed302009-08-10 22:56:29 +00003438 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003439
Bill Wendling88103372009-01-30 21:37:17 +00003440 // If this is a signed shift right, and the high bit is modified by the
3441 // logical operation, do not perform the transformation. The highBitSet
3442 // boolean indicates the value of the high bit of the constant which would
3443 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003444 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003445 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3446 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003447 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003448 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003449
Chris Lattnere70da202007-12-06 07:33:36 +00003450 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003451 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3452 N->getValueType(0),
3453 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003454
3455 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003456 SDValue NewShift = DAG.getNode(N->getOpcode(),
3457 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003458 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003459
3460 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003461 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003462}
3463
Dan Gohman475871a2008-07-27 21:46:04 +00003464SDValue DAGCombiner::visitSHL(SDNode *N) {
3465 SDValue N0 = N->getOperand(0);
3466 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003467 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3468 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003469 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003470 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003471
Nate Begeman1d4d4142005-09-01 00:19:25 +00003472 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003473 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003474 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003475 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003476 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003477 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003478 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003479 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003480 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003481 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003482 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003483 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003484 // fold (shl undef, x) -> 0
3485 if (N0.getOpcode() == ISD::UNDEF)
3486 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003487 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003488 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003489 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003490 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003491 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003492 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003493 N1.getOperand(0).getOpcode() == ISD::AND &&
3494 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003495 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003496 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003497 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003498 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003499 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003500 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003501 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003502 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3503 DAG.getNode(ISD::TRUNCATE,
3504 N->getDebugLoc(),
3505 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003506 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003507 }
3508 }
3509
Dan Gohman475871a2008-07-27 21:46:04 +00003510 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3511 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003512
3513 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003514 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003515 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003516 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3517 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003518 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003519 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003520 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003521 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003522 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003523
3524 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3525 // For this to be valid, the second form must not preserve any of the bits
3526 // that are shifted out by the inner shift in the first form. This means
3527 // the outer shift size must be >= the number of bits added by the ext.
3528 // As a corollary, we don't care what kind of ext it is.
3529 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3530 N0.getOpcode() == ISD::ANY_EXTEND ||
3531 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3532 N0.getOperand(0).getOpcode() == ISD::SHL &&
3533 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003534 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003535 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3536 uint64_t c2 = N1C->getZExtValue();
3537 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3538 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3539 if (c2 >= OpSizeInBits - InnerShiftSize) {
3540 if (c1 + c2 >= OpSizeInBits)
3541 return DAG.getConstant(0, VT);
3542 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3543 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3544 N0.getOperand(0)->getOperand(0)),
3545 DAG.getConstant(c1 + c2, N1.getValueType()));
3546 }
3547 }
3548
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003549 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3550 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003551 // Only fold this if the inner shift has no other uses -- if it does, folding
3552 // this will increase the total number of instructions.
3553 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003554 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003555 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003556 if (c1 < VT.getSizeInBits()) {
3557 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003558 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3559 VT.getSizeInBits() - c1);
3560 SDValue Shift;
3561 if (c2 > c1) {
3562 Mask = Mask.shl(c2-c1);
3563 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3564 DAG.getConstant(c2-c1, N1.getValueType()));
3565 } else {
3566 Mask = Mask.lshr(c1-c2);
3567 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3568 DAG.getConstant(c1-c2, N1.getValueType()));
3569 }
3570 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3571 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003572 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003573 }
Bill Wendling88103372009-01-30 21:37:17 +00003574 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003575 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3576 SDValue HiBitsMask =
3577 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3578 VT.getSizeInBits() -
3579 N1C->getZExtValue()),
3580 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003581 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003582 HiBitsMask);
3583 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003584
Evan Chenge5b51ac2010-04-17 06:13:15 +00003585 if (N1C) {
3586 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3587 if (NewSHL.getNode())
3588 return NewSHL;
3589 }
3590
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003591 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003592}
3593
Dan Gohman475871a2008-07-27 21:46:04 +00003594SDValue DAGCombiner::visitSRA(SDNode *N) {
3595 SDValue N0 = N->getOperand(0);
3596 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003597 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3598 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003599 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003600 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003601
Bill Wendling88103372009-01-30 21:37:17 +00003602 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003603 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003604 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003605 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003606 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003607 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003608 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003609 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003610 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003611 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003612 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003613 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003614 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003615 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003616 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003617 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3618 // sext_inreg.
3619 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003620 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003621 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3622 if (VT.isVector())
3623 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3624 ExtVT, VT.getVectorNumElements());
3625 if ((!LegalOperations ||
3626 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003627 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003628 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003629 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003630
Bill Wendling88103372009-01-30 21:37:17 +00003631 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003632 if (N1C && N0.getOpcode() == ISD::SRA) {
3633 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003634 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003635 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003636 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003637 DAG.getConstant(Sum, N1C->getValueType(0)));
3638 }
3639 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003640
Bill Wendling88103372009-01-30 21:37:17 +00003641 // fold (sra (shl X, m), (sub result_size, n))
3642 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003643 // result_size - n != m.
3644 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003645 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003646 if (N0.getOpcode() == ISD::SHL) {
3647 // Get the two constanst of the shifts, CN0 = m, CN = n.
3648 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3649 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003650 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003651 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003652 EVT::getIntegerVT(*DAG.getContext(),
3653 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003654 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003655 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003656
Scott Michelfdc40a02009-02-17 22:15:04 +00003657 // If the shift is not a no-op (in which case this should be just a sign
3658 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003659 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003660 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003661 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003662 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3663 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003664 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003665
Owen Anderson95771af2011-02-25 21:41:48 +00003666 SDValue Amt = DAG.getConstant(ShiftAmt,
3667 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003668 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3669 N0.getOperand(0), Amt);
3670 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3671 Shift);
3672 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3673 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003674 }
3675 }
3676 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003677
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003678 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003679 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003680 N1.getOperand(0).getOpcode() == ISD::AND &&
3681 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003682 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003683 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003684 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003685 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003686 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003687 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003688 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003689 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003690 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003691 DAG.getNode(ISD::TRUNCATE,
3692 N->getDebugLoc(),
3693 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003694 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003695 }
3696 }
3697
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003698 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3699 // if c1 is equal to the number of bits the trunc removes
3700 if (N0.getOpcode() == ISD::TRUNCATE &&
3701 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3702 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3703 N0.getOperand(0).hasOneUse() &&
3704 N0.getOperand(0).getOperand(1).hasOneUse() &&
3705 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3706 EVT LargeVT = N0.getOperand(0).getValueType();
3707 ConstantSDNode *LargeShiftAmt =
3708 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3709
3710 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3711 LargeShiftAmt->getZExtValue()) {
3712 SDValue Amt =
3713 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003714 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003715 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3716 N0.getOperand(0).getOperand(0), Amt);
3717 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3718 }
3719 }
3720
Scott Michelfdc40a02009-02-17 22:15:04 +00003721 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003722 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3723 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003724
3725
Nate Begeman1d4d4142005-09-01 00:19:25 +00003726 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003727 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003728 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003729
Evan Chenge5b51ac2010-04-17 06:13:15 +00003730 if (N1C) {
3731 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3732 if (NewSRA.getNode())
3733 return NewSRA;
3734 }
3735
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003736 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003737}
3738
Dan Gohman475871a2008-07-27 21:46:04 +00003739SDValue DAGCombiner::visitSRL(SDNode *N) {
3740 SDValue N0 = N->getOperand(0);
3741 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003742 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3743 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003744 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003745 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003746
Nate Begeman1d4d4142005-09-01 00:19:25 +00003747 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003748 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003749 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003750 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003751 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003752 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003753 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003754 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003755 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003756 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003757 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003758 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003759 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003760 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003761 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003762 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003763
Bill Wendling88103372009-01-30 21:37:17 +00003764 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003765 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003766 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003767 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3768 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003769 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003770 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003771 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003772 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003773 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003774
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003775 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003776 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3777 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003778 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003779 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003780 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3781 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003782 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3783 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003784 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003785 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003786 if (c1 + OpSizeInBits == InnerShiftSize) {
3787 if (c1 + c2 >= InnerShiftSize)
3788 return DAG.getConstant(0, VT);
3789 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003790 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003791 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003792 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003793 }
3794 }
3795
Chris Lattnerefcddc32010-04-15 05:28:43 +00003796 // fold (srl (shl x, c), c) -> (and x, cst2)
3797 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3798 N0.getValueSizeInBits() <= 64) {
3799 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3800 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3801 DAG.getConstant(~0ULL >> ShAmt, VT));
3802 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003803
Scott Michelfdc40a02009-02-17 22:15:04 +00003804
Chris Lattner06afe072006-05-05 22:53:17 +00003805 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3806 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3807 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003808 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003809 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003810 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003811
Evan Chenge5b51ac2010-04-17 06:13:15 +00003812 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003813 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003814 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003815 N0.getOperand(0),
3816 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003817 AddToWorkList(SmallShift.getNode());
3818 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3819 }
Chris Lattner06afe072006-05-05 22:53:17 +00003820 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003821
Chris Lattner3657ffe2006-10-12 20:23:19 +00003822 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3823 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003824 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003825 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003826 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003827 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003828
Chris Lattner350bec02006-04-02 06:11:11 +00003829 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003830 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003831 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003832 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003833 DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003834
Chris Lattner350bec02006-04-02 06:11:11 +00003835 // If any of the input bits are KnownOne, then the input couldn't be all
3836 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003837 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003838
Chris Lattner350bec02006-04-02 06:11:11 +00003839 // If all of the bits input the to ctlz node are known to be zero, then
3840 // the result of the ctlz is "32" and the result of the shift is one.
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00003841 APInt UnknownBits = ~KnownZero;
Chris Lattner350bec02006-04-02 06:11:11 +00003842 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003843
Chris Lattner350bec02006-04-02 06:11:11 +00003844 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003845 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003846 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003847 // could be set on input to the CTLZ node. If this bit is set, the SRL
3848 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3849 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003850 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003851 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003852
Chris Lattner350bec02006-04-02 06:11:11 +00003853 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003854 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003855 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003856 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003857 }
Bill Wendling88103372009-01-30 21:37:17 +00003858
3859 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3860 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003861 }
3862 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003863
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003864 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003865 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003866 N1.getOperand(0).getOpcode() == ISD::AND &&
3867 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003868 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003869 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003870 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003871 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003872 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003873 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003874 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003875 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003876 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003877 DAG.getNode(ISD::TRUNCATE,
3878 N->getDebugLoc(),
3879 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003880 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003881 }
3882 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003883
Chris Lattner61a4c072007-04-18 03:06:49 +00003884 // fold operands of srl based on knowledge that the low bits are not
3885 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003886 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3887 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003888
Evan Cheng9ab2b982009-12-18 21:31:31 +00003889 if (N1C) {
3890 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3891 if (NewSRL.getNode())
3892 return NewSRL;
3893 }
3894
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003895 // Attempt to convert a srl of a load into a narrower zero-extending load.
3896 SDValue NarrowLoad = ReduceLoadWidth(N);
3897 if (NarrowLoad.getNode())
3898 return NarrowLoad;
3899
Evan Cheng9ab2b982009-12-18 21:31:31 +00003900 // Here is a common situation. We want to optimize:
3901 //
3902 // %a = ...
3903 // %b = and i32 %a, 2
3904 // %c = srl i32 %b, 1
3905 // brcond i32 %c ...
3906 //
3907 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003908 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003909 // %a = ...
3910 // %b = and %a, 2
3911 // %c = setcc eq %b, 0
3912 // brcond %c ...
3913 //
3914 // However when after the source operand of SRL is optimized into AND, the SRL
3915 // itself may not be optimized further. Look for it and add the BRCOND into
3916 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003917 if (N->hasOneUse()) {
3918 SDNode *Use = *N->use_begin();
3919 if (Use->getOpcode() == ISD::BRCOND)
3920 AddToWorkList(Use);
3921 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3922 // Also look pass the truncate.
3923 Use = *Use->use_begin();
3924 if (Use->getOpcode() == ISD::BRCOND)
3925 AddToWorkList(Use);
3926 }
3927 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003928
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003929 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003930}
3931
Dan Gohman475871a2008-07-27 21:46:04 +00003932SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3933 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003934 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003935
3936 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003937 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003938 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003939 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003940}
3941
Chandler Carruth63974b22011-12-13 01:56:10 +00003942SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3943 SDValue N0 = N->getOperand(0);
3944 EVT VT = N->getValueType(0);
3945
3946 // fold (ctlz_zero_undef c1) -> c2
3947 if (isa<ConstantSDNode>(N0))
3948 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3949 return SDValue();
3950}
3951
Dan Gohman475871a2008-07-27 21:46:04 +00003952SDValue DAGCombiner::visitCTTZ(SDNode *N) {
3953 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003954 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003955
Nate Begeman1d4d4142005-09-01 00:19:25 +00003956 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003957 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003958 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003959 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003960}
3961
Chandler Carruth63974b22011-12-13 01:56:10 +00003962SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
3963 SDValue N0 = N->getOperand(0);
3964 EVT VT = N->getValueType(0);
3965
3966 // fold (cttz_zero_undef c1) -> c2
3967 if (isa<ConstantSDNode>(N0))
3968 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3969 return SDValue();
3970}
3971
Dan Gohman475871a2008-07-27 21:46:04 +00003972SDValue DAGCombiner::visitCTPOP(SDNode *N) {
3973 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003974 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003975
Nate Begeman1d4d4142005-09-01 00:19:25 +00003976 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003977 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003978 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003979 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003980}
3981
Dan Gohman475871a2008-07-27 21:46:04 +00003982SDValue DAGCombiner::visitSELECT(SDNode *N) {
3983 SDValue N0 = N->getOperand(0);
3984 SDValue N1 = N->getOperand(1);
3985 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003986 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3987 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3988 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00003989 EVT VT = N->getValueType(0);
3990 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00003991
Bill Wendling34584e62009-01-30 22:02:18 +00003992 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003993 if (N1 == N2)
3994 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003995 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003996 if (N0C && !N0C->isNullValue())
3997 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003998 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00003999 if (N0C && N0C->isNullValue())
4000 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00004001 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004002 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00004003 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4004 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00004005 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00004006 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00004007 (VT0.isInteger() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00004008 TLI.getBooleanContents(false) == TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004009 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004010 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00004011 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00004012 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
4013 N0, DAG.getConstant(1, VT0));
4014 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
4015 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00004016 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00004017 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00004018 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
4019 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00004020 }
Bill Wendling34584e62009-01-30 22:02:18 +00004021 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004022 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00004023 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004024 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004025 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004026 }
Bill Wendling34584e62009-01-30 22:02:18 +00004027 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004028 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00004029 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00004030 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00004031 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004032 }
Bill Wendling34584e62009-01-30 22:02:18 +00004033 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00004034 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00004035 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
4036 // fold (select X, X, Y) -> (or X, Y)
4037 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004038 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00004039 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
4040 // fold (select X, Y, X) -> (and X, Y)
4041 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00004042 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00004043 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004044
Chris Lattner40c62d52005-10-18 06:04:22 +00004045 // If we can fold this based on the true/false value, do so.
4046 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00004047 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004048
Nate Begeman44728a72005-09-19 22:34:01 +00004049 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004050 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004051 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00004052 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00004053 // having to say they don't support SELECT_CC on every type the DAG knows
4054 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004055 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004056 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004057 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4058 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004059 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004060 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004061 }
Bill Wendling34584e62009-01-30 22:02:18 +00004062
Dan Gohman475871a2008-07-27 21:46:04 +00004063 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004064}
4065
Dan Gohman475871a2008-07-27 21:46:04 +00004066SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4067 SDValue N0 = N->getOperand(0);
4068 SDValue N1 = N->getOperand(1);
4069 SDValue N2 = N->getOperand(2);
4070 SDValue N3 = N->getOperand(3);
4071 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004072 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004073
Nate Begeman44728a72005-09-19 22:34:01 +00004074 // fold select_cc lhs, rhs, x, x, cc -> x
4075 if (N2 == N3)
4076 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004077
Chris Lattner5f42a242006-09-20 06:19:26 +00004078 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004079 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004080 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004081 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004082
Gabor Greifba36cb52008-08-28 21:40:38 +00004083 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004084 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004085 return N2; // cond always true -> true val
4086 else
4087 return N3; // cond always false -> false val
4088 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004089
Chris Lattner5f42a242006-09-20 06:19:26 +00004090 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004091 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004092 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4093 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004094 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004095
Chris Lattner40c62d52005-10-18 06:04:22 +00004096 // If we can fold this based on the true/false value, do so.
4097 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004098 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004099
Nate Begeman44728a72005-09-19 22:34:01 +00004100 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004101 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004102}
4103
Dan Gohman475871a2008-07-27 21:46:04 +00004104SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004105 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004106 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4107 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004108}
4109
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004110// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004111// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004112// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004113// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004114static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004115 unsigned ExtOpc,
4116 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004117 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004118 bool HasCopyToRegUses = false;
4119 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004120 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4121 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004122 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004123 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004124 if (User == N)
4125 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004126 if (UI.getUse().getResNo() != N0.getResNo())
4127 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004128 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004129 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004130 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4131 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4132 // Sign bits will be lost after a zext.
4133 return false;
4134 bool Add = false;
4135 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004136 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004137 if (UseOp == N0)
4138 continue;
4139 if (!isa<ConstantSDNode>(UseOp))
4140 return false;
4141 Add = true;
4142 }
4143 if (Add)
4144 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004145 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004146 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004147 // If truncates aren't free and there are users we can't
4148 // extend, it isn't worthwhile.
4149 if (!isTruncFree)
4150 return false;
4151 // Remember if this value is live-out.
4152 if (User->getOpcode() == ISD::CopyToReg)
4153 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004154 }
4155
4156 if (HasCopyToRegUses) {
4157 bool BothLiveOut = false;
4158 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4159 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004160 SDUse &Use = UI.getUse();
4161 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4162 BothLiveOut = true;
4163 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004164 }
4165 }
4166 if (BothLiveOut)
4167 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004168 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004169 return ExtendNodes.size();
4170 }
4171 return true;
4172}
4173
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004174void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4175 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4176 ISD::NodeType ExtType) {
4177 // Extend SetCC uses if necessary.
4178 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4179 SDNode *SetCC = SetCCs[i];
4180 SmallVector<SDValue, 4> Ops;
4181
4182 for (unsigned j = 0; j != 2; ++j) {
4183 SDValue SOp = SetCC->getOperand(j);
4184 if (SOp == Trunc)
4185 Ops.push_back(ExtLoad);
4186 else
4187 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4188 }
4189
4190 Ops.push_back(SetCC->getOperand(2));
4191 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4192 &Ops[0], Ops.size()));
4193 }
4194}
4195
Dan Gohman475871a2008-07-27 21:46:04 +00004196SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4197 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004198 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004199
Nate Begeman1d4d4142005-09-01 00:19:25 +00004200 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004201 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004202 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004203
Nate Begeman1d4d4142005-09-01 00:19:25 +00004204 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004205 // fold (sext (aext x)) -> (sext x)
4206 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004207 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4208 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004209
Chris Lattner22558872007-02-26 03:13:59 +00004210 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004211 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4212 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004213 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4214 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004215 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4216 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004217 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004218 // CombineTo deleted the truncate, if needed, but not what's under it.
4219 AddToWorkList(oye);
4220 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004221 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004222 }
Evan Chengc88138f2007-03-22 01:54:19 +00004223
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004224 // See if the value being truncated is already sign extended. If so, just
4225 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004226 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004227 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4228 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4229 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004230 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004231
Chris Lattner22558872007-02-26 03:13:59 +00004232 if (OpBits == DestBits) {
4233 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4234 // bits, it is already ready.
4235 if (NumSignBits > DestBits-MidBits)
4236 return Op;
4237 } else if (OpBits < DestBits) {
4238 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4239 // bits, just sext from i32.
4240 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004241 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004242 } else {
4243 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4244 // bits, just truncate to i32.
4245 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004246 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004247 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004248
Chris Lattner22558872007-02-26 03:13:59 +00004249 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004250 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4251 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004252 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004253 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004254 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004255 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4256 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004257 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004258 }
Chris Lattner6007b842006-09-21 06:00:20 +00004259 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004260
Evan Cheng110dec22005-12-14 02:19:23 +00004261 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004262 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004263 // on vectors in one instruction. We only perform this transformation on
4264 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004265 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004266 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004267 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004268 bool DoXform = true;
4269 SmallVector<SDNode*, 4> SetCCs;
4270 if (!N0.hasOneUse())
4271 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4272 if (DoXform) {
4273 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004274 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004275 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004276 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004277 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004278 LN0->isVolatile(), LN0->isNonTemporal(),
4279 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004280 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004281 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4282 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004283 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004284 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4285 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004286 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004287 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004288 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004289
4290 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4291 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004292 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4293 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004294 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004295 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004296 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004297 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004298 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004299 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004300 LN0->getBasePtr(), LN0->getPointerInfo(),
4301 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004302 LN0->isVolatile(), LN0->isNonTemporal(),
4303 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004304 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004305 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004306 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4307 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004308 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004309 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004310 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004311 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004312
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004313 // fold (sext (and/or/xor (load x), cst)) ->
4314 // (and/or/xor (sextload x), (sext cst))
4315 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4316 N0.getOpcode() == ISD::XOR) &&
4317 isa<LoadSDNode>(N0.getOperand(0)) &&
4318 N0.getOperand(1).getOpcode() == ISD::Constant &&
4319 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4320 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4321 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4322 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4323 bool DoXform = true;
4324 SmallVector<SDNode*, 4> SetCCs;
4325 if (!N0.hasOneUse())
4326 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4327 SetCCs, TLI);
4328 if (DoXform) {
4329 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4330 LN0->getChain(), LN0->getBasePtr(),
4331 LN0->getPointerInfo(),
4332 LN0->getMemoryVT(),
4333 LN0->isVolatile(),
4334 LN0->isNonTemporal(),
4335 LN0->getAlignment());
4336 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4337 Mask = Mask.sext(VT.getSizeInBits());
4338 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4339 ExtLoad, DAG.getConstant(Mask, VT));
4340 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4341 N0.getOperand(0).getDebugLoc(),
4342 N0.getOperand(0).getValueType(), ExtLoad);
4343 CombineTo(N, And);
4344 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4345 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4346 ISD::SIGN_EXTEND);
4347 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4348 }
4349 }
4350 }
4351
Chris Lattner20a35c32007-04-11 05:32:27 +00004352 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004353 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004354 // Only do this before legalize for now.
4355 if (VT.isVector() && !LegalOperations) {
4356 EVT N0VT = N0.getOperand(0).getValueType();
Chris Lattner2b7a2712009-07-08 00:31:33 +00004357 // We know that the # elements of the results is the same as the
4358 // # elements of the compare (and the # elements of the compare result
4359 // for that matter). Check to see that they are the same size. If so,
4360 // we know that the element size of the sext'd result matches the
4361 // element size of the compare operands.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004362 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004363 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004364 N0.getOperand(1),
4365 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004366 // If the desired elements are smaller or larger than the source
4367 // elements we can use a matching integer vector type and then
4368 // truncate/sign extend
4369 else {
Duncan Sands34727662010-07-12 08:16:59 +00004370 EVT MatchingElementType =
4371 EVT::getIntegerVT(*DAG.getContext(),
4372 N0VT.getScalarType().getSizeInBits());
4373 EVT MatchingVectorType =
4374 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4375 N0VT.getVectorNumElements());
4376 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004377 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004378 N0.getOperand(1),
4379 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4380 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004381 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004382 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004383
Chris Lattner2b7a2712009-07-08 00:31:33 +00004384 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004385 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004386 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004387 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004388 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004389 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004390 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004391 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004392 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004393 if (!LegalOperations ||
4394 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4395 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4396 DAG.getSetCC(N->getDebugLoc(),
4397 TLI.getSetCCResultType(VT),
4398 N0.getOperand(0), N0.getOperand(1),
4399 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4400 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004401 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004402
Dan Gohman8f0ad582008-04-28 16:58:24 +00004403 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004404 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004405 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004406 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004407
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004408 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004409}
4410
Rafael Espindoladecbc432012-04-09 16:06:03 +00004411// isTruncateOf - If N is a truncate of some other value, return true, record
4412// the value being truncated in Op and which of Op's bits are zero in KnownZero.
4413// This function computes KnownZero to avoid a duplicated call to
4414// ComputeMaskedBits in the caller.
4415static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4416 APInt &KnownZero) {
4417 APInt KnownOne;
4418 if (N->getOpcode() == ISD::TRUNCATE) {
4419 Op = N->getOperand(0);
4420 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4421 return true;
4422 }
4423
4424 if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4425 cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4426 return false;
4427
4428 SDValue Op0 = N->getOperand(0);
4429 SDValue Op1 = N->getOperand(1);
4430 assert(Op0.getValueType() == Op1.getValueType());
4431
4432 ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4433 ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004434 if (COp0 && COp0->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004435 Op = Op1;
Rafael Espindolafdb230a2012-04-10 00:16:22 +00004436 else if (COp1 && COp1->isNullValue())
Rafael Espindoladecbc432012-04-09 16:06:03 +00004437 Op = Op0;
4438 else
4439 return false;
4440
4441 DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4442
4443 if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4444 return false;
4445
4446 return true;
4447}
4448
Dan Gohman475871a2008-07-27 21:46:04 +00004449SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4450 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004451 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004452
Nate Begeman1d4d4142005-09-01 00:19:25 +00004453 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004454 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004455 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004456 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004457 // fold (zext (aext x)) -> (zext x)
4458 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004459 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4460 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004461
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004462 // fold (zext (truncate x)) -> (zext x) or
4463 // (zext (truncate x)) -> (truncate x)
4464 // This is valid when the truncated bits of x are already zero.
4465 // FIXME: We should extend this to work for vectors too.
Rafael Espindoladecbc432012-04-09 16:06:03 +00004466 SDValue Op;
4467 APInt KnownZero;
4468 if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4469 APInt TruncatedBits =
4470 (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4471 APInt(Op.getValueSizeInBits(), 0) :
4472 APInt::getBitsSet(Op.getValueSizeInBits(),
4473 N0.getValueSizeInBits(),
4474 std::min(Op.getValueSizeInBits(),
4475 VT.getSizeInBits()));
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00004476 if (TruncatedBits == (KnownZero & TruncatedBits)) {
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004477 if (VT.bitsGT(Op.getValueType()))
4478 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4479 if (VT.bitsLT(Op.getValueType()))
4480 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4481
4482 return Op;
4483 }
4484 }
4485
Evan Chengc88138f2007-03-22 01:54:19 +00004486 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4487 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004488 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004489 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4490 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004491 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4492 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004493 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004494 // CombineTo deleted the truncate, if needed, but not what's under it.
4495 AddToWorkList(oye);
4496 }
Eli Friedmane545d382011-04-16 23:25:34 +00004497 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004498 }
Evan Chengc88138f2007-03-22 01:54:19 +00004499 }
4500
Chris Lattner6007b842006-09-21 06:00:20 +00004501 // fold (zext (truncate x)) -> (and x, mask)
4502 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004503 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004504
4505 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4506 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4507 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4508 if (NarrowLoad.getNode()) {
4509 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4510 if (NarrowLoad.getNode() != N0.getNode()) {
4511 CombineTo(N0.getNode(), NarrowLoad);
4512 // CombineTo deleted the truncate, if needed, but not what's under it.
4513 AddToWorkList(oye);
4514 }
4515 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4516 }
4517
Dan Gohman475871a2008-07-27 21:46:04 +00004518 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004519 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004520 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004521 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004522 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004523 }
Dan Gohman87862e72009-12-11 21:31:27 +00004524 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4525 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004526 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004527
Dan Gohman97121ba2009-04-08 00:15:30 +00004528 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4529 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004530 if (N0.getOpcode() == ISD::AND &&
4531 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004532 N0.getOperand(1).getOpcode() == ISD::Constant &&
4533 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4534 N0.getValueType()) ||
4535 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004536 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004537 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004538 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004539 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004540 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004541 }
Dan Gohman220a8232008-03-03 23:51:38 +00004542 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004543 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004544 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4545 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004546 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004547
Evan Cheng110dec22005-12-14 02:19:23 +00004548 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004549 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004550 // on vectors in one instruction. We only perform this transformation on
4551 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004552 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004553 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004554 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004555 bool DoXform = true;
4556 SmallVector<SDNode*, 4> SetCCs;
4557 if (!N0.hasOneUse())
4558 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4559 if (DoXform) {
4560 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004561 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004562 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004563 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004564 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004565 LN0->isVolatile(), LN0->isNonTemporal(),
4566 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004567 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004568 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4569 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004570 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004571
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004572 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4573 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004574 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004575 }
Evan Cheng110dec22005-12-14 02:19:23 +00004576 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004577
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004578 // fold (zext (and/or/xor (load x), cst)) ->
4579 // (and/or/xor (zextload x), (zext cst))
4580 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4581 N0.getOpcode() == ISD::XOR) &&
4582 isa<LoadSDNode>(N0.getOperand(0)) &&
4583 N0.getOperand(1).getOpcode() == ISD::Constant &&
4584 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4585 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4586 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4587 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4588 bool DoXform = true;
4589 SmallVector<SDNode*, 4> SetCCs;
4590 if (!N0.hasOneUse())
4591 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4592 SetCCs, TLI);
4593 if (DoXform) {
4594 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4595 LN0->getChain(), LN0->getBasePtr(),
4596 LN0->getPointerInfo(),
4597 LN0->getMemoryVT(),
4598 LN0->isVolatile(),
4599 LN0->isNonTemporal(),
4600 LN0->getAlignment());
4601 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4602 Mask = Mask.zext(VT.getSizeInBits());
4603 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4604 ExtLoad, DAG.getConstant(Mask, VT));
4605 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4606 N0.getOperand(0).getDebugLoc(),
4607 N0.getOperand(0).getValueType(), ExtLoad);
4608 CombineTo(N, And);
4609 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4610 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4611 ISD::ZERO_EXTEND);
4612 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4613 }
4614 }
4615 }
4616
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004617 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4618 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004619 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4620 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004621 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004622 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004623 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004624 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004625 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004626 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004627 LN0->getBasePtr(), LN0->getPointerInfo(),
4628 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004629 LN0->isVolatile(), LN0->isNonTemporal(),
4630 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004631 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004632 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004633 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4634 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004635 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004636 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004637 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004638 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004639
Chris Lattner20a35c32007-04-11 05:32:27 +00004640 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004641 if (!LegalOperations && VT.isVector()) {
4642 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4643 // Only do this before legalize for now.
4644 EVT N0VT = N0.getOperand(0).getValueType();
4645 EVT EltVT = VT.getVectorElementType();
4646 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4647 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004648 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004649 // We know that the # elements of the results is the same as the
4650 // # elements of the compare (and the # elements of the compare result
4651 // for that matter). Check to see that they are the same size. If so,
4652 // we know that the element size of the sext'd result matches the
4653 // element size of the compare operands.
4654 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004655 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004656 N0.getOperand(1),
4657 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4658 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4659 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004660
4661 // If the desired elements are smaller or larger than the source
4662 // elements we can use a matching integer vector type and then
4663 // truncate/sign extend
4664 EVT MatchingElementType =
4665 EVT::getIntegerVT(*DAG.getContext(),
4666 N0VT.getScalarType().getSizeInBits());
4667 EVT MatchingVectorType =
4668 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4669 N0VT.getVectorNumElements());
4670 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004671 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004672 N0.getOperand(1),
4673 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4674 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4675 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4676 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4677 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004678 }
4679
4680 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004681 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004682 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004683 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004684 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004685 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004686 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004687
Evan Cheng9818c042009-12-15 03:00:32 +00004688 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004689 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004690 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004691 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4692 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004693 SDValue ShAmt = N0.getOperand(1);
4694 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004695 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004696 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004697 // If the original shl may be shifting out bits, do not perform this
4698 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004699 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4700 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4701 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004702 return SDValue();
4703 }
Chris Lattnere0751182011-02-13 19:09:16 +00004704
4705 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004706
4707 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004708 if (VT.getSizeInBits() >= 256)
4709 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004710
Chris Lattnere0751182011-02-13 19:09:16 +00004711 return DAG.getNode(N0.getOpcode(), DL, VT,
4712 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4713 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004714 }
4715
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004716 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004717}
4718
Dan Gohman475871a2008-07-27 21:46:04 +00004719SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4720 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004721 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004722
Chris Lattner5ffc0662006-05-05 05:58:59 +00004723 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004724 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004725 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004726 // fold (aext (aext x)) -> (aext x)
4727 // fold (aext (zext x)) -> (zext x)
4728 // fold (aext (sext x)) -> (sext x)
4729 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4730 N0.getOpcode() == ISD::ZERO_EXTEND ||
4731 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004732 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004733
Evan Chengc88138f2007-03-22 01:54:19 +00004734 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4735 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4736 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004737 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4738 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004739 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4740 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004741 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004742 // CombineTo deleted the truncate, if needed, but not what's under it.
4743 AddToWorkList(oye);
4744 }
Eli Friedmane545d382011-04-16 23:25:34 +00004745 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004746 }
Evan Chengc88138f2007-03-22 01:54:19 +00004747 }
4748
Chris Lattner84750582006-09-20 06:29:17 +00004749 // fold (aext (truncate x))
4750 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004751 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004752 if (TruncOp.getValueType() == VT)
4753 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004754 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004755 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4756 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004757 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004758
Dan Gohman97121ba2009-04-08 00:15:30 +00004759 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4760 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004761 if (N0.getOpcode() == ISD::AND &&
4762 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004763 N0.getOperand(1).getOpcode() == ISD::Constant &&
4764 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4765 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004766 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004767 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004768 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004769 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004770 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004771 }
Dan Gohman220a8232008-03-03 23:51:38 +00004772 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004773 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004774 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4775 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004776 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004777
Chris Lattner5ffc0662006-05-05 05:58:59 +00004778 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004779 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004780 // on vectors in one instruction. We only perform this transformation on
4781 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004782 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004783 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004784 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004785 bool DoXform = true;
4786 SmallVector<SDNode*, 4> SetCCs;
4787 if (!N0.hasOneUse())
4788 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4789 if (DoXform) {
4790 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004791 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004792 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004793 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004794 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004795 LN0->isVolatile(), LN0->isNonTemporal(),
4796 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004797 CombineTo(N, ExtLoad);
4798 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4799 N0.getValueType(), ExtLoad);
4800 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004801 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4802 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004803 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4804 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004805 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004806
Chris Lattner5ffc0662006-05-05 05:58:59 +00004807 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4808 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4809 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004810 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004811 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004812 N0.hasOneUse()) {
4813 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004814 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004815 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4816 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004817 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004818 LN0->isVolatile(), LN0->isNonTemporal(),
4819 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004820 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004821 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004822 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4823 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004824 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004825 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004826 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004827
Chris Lattner20a35c32007-04-11 05:32:27 +00004828 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004829 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4830 // Only do this before legalize for now.
4831 if (VT.isVector() && !LegalOperations) {
4832 EVT N0VT = N0.getOperand(0).getValueType();
4833 // We know that the # elements of the results is the same as the
4834 // # elements of the compare (and the # elements of the compare result
4835 // for that matter). Check to see that they are the same size. If so,
4836 // we know that the element size of the sext'd result matches the
4837 // element size of the compare operands.
4838 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004839 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004840 N0.getOperand(1),
4841 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004842 // If the desired elements are smaller or larger than the source
4843 // elements we can use a matching integer vector type and then
4844 // truncate/sign extend
4845 else {
Duncan Sands34727662010-07-12 08:16:59 +00004846 EVT MatchingElementType =
4847 EVT::getIntegerVT(*DAG.getContext(),
4848 N0VT.getScalarType().getSizeInBits());
4849 EVT MatchingVectorType =
4850 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4851 N0VT.getVectorNumElements());
4852 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004853 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004854 N0.getOperand(1),
4855 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4856 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004857 }
4858 }
4859
4860 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004861 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004862 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004863 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004864 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004865 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004866 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004867 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004868
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004869 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004870}
4871
Chris Lattner2b4c2792007-10-13 06:35:54 +00004872/// GetDemandedBits - See if the specified operand can be simplified with the
4873/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004874/// simpler operand, otherwise return a null SDValue.
4875SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004876 switch (V.getOpcode()) {
4877 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004878 case ISD::Constant: {
4879 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4880 assert(CV != 0 && "Const value should be ConstSDNode.");
4881 const APInt &CVal = CV->getAPIntValue();
4882 APInt NewVal = CVal & Mask;
4883 if (NewVal != CVal) {
4884 return DAG.getConstant(NewVal, V.getValueType());
4885 }
4886 break;
4887 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004888 case ISD::OR:
4889 case ISD::XOR:
4890 // If the LHS or RHS don't contribute bits to the or, drop them.
4891 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4892 return V.getOperand(1);
4893 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4894 return V.getOperand(0);
4895 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004896 case ISD::SRL:
4897 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004898 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004899 break;
4900 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4901 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004902 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004903
Dan Gohmancc91d632009-01-03 19:22:06 +00004904 // Watch out for shift count overflow though.
4905 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004906 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004907 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004908 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004909 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004910 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004911 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004912 }
Dan Gohman475871a2008-07-27 21:46:04 +00004913 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004914}
4915
Evan Chengc88138f2007-03-22 01:54:19 +00004916/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4917/// bits and then truncated to a narrower type and where N is a multiple
4918/// of number of bits of the narrower type, transform it to a narrower load
4919/// from address + N / num of bits of new type. If the result is to be
4920/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004921SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004922 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004923
Evan Chengc88138f2007-03-22 01:54:19 +00004924 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004925 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004926 EVT VT = N->getValueType(0);
4927 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004928
Dan Gohman7f8613e2008-08-14 20:04:46 +00004929 // This transformation isn't valid for vector loads.
4930 if (VT.isVector())
4931 return SDValue();
4932
Dan Gohmand1996362010-01-09 02:13:55 +00004933 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004934 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004935 if (Opc == ISD::SIGN_EXTEND_INREG) {
4936 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004937 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004938 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004939 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004940 ExtType = ISD::ZEXTLOAD;
4941 N0 = SDValue(N, 0);
4942 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4943 if (!N01) return SDValue();
4944 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
4945 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00004946 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00004947 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
4948 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004949
Owen Andersone50ed302009-08-10 22:56:29 +00004950 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00004951
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004952 // Do not generate loads of non-round integer types since these can
4953 // be expensive (and would be wrong if the type is not byte sized).
4954 if (!ExtVT.isRound())
4955 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004956
Evan Chengc88138f2007-03-22 01:54:19 +00004957 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004958 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00004959 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004960 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004961 // Is the shift amount a multiple of size of VT?
4962 if ((ShAmt & (EVTBits-1)) == 0) {
4963 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00004964 // Is the load width a multiple of size of VT?
4965 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00004966 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004967 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004968
Chris Lattnercbf68df2010-12-22 08:02:57 +00004969 // At this point, we must have a load or else we can't do the transform.
4970 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004971
Chris Lattner2831a192010-10-01 05:36:09 +00004972 // If the shift amount is larger than the input type then we're not
4973 // accessing any of the loaded bytes. If the load was a zextload/extload
4974 // then the result of the shift+trunc is zero/undef (handled elsewhere).
4975 // If the load was a sextload then the result is a splat of the sign bit
4976 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00004977 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00004978 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004979 }
4980 }
4981
Dan Gohman394d6292010-11-03 01:47:46 +00004982 // If the load is shifted left (and the result isn't shifted back right),
4983 // we can fold the truncate through the shift.
4984 unsigned ShLeftAmt = 0;
4985 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00004986 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00004987 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
4988 ShLeftAmt = N01->getZExtValue();
4989 N0 = N0.getOperand(0);
4990 }
4991 }
Owen Anderson95771af2011-02-25 21:41:48 +00004992
Chris Lattner4c32bc22010-12-22 07:36:50 +00004993 // If we haven't found a load, we can't narrow it. Don't transform one with
4994 // multiple uses, this would require adding a new load.
4995 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
4996 // Don't change the width of a volatile load.
4997 cast<LoadSDNode>(N0)->isVolatile())
4998 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004999
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005000 // Verify that we are actually reducing a load width here.
5001 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00005002 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00005003
Chris Lattner4c32bc22010-12-22 07:36:50 +00005004 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5005 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00005006
Chris Lattner4c32bc22010-12-22 07:36:50 +00005007 // For big endian targets, we need to adjust the offset to the pointer to
5008 // load the correct bytes.
5009 if (TLI.isBigEndian()) {
5010 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5011 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5012 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00005013 }
5014
Chris Lattner4c32bc22010-12-22 07:36:50 +00005015 uint64_t PtrOff = ShAmt / 8;
5016 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5017 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
5018 PtrType, LN0->getBasePtr(),
5019 DAG.getConstant(PtrOff, PtrType));
5020 AddToWorkList(NewPtr.getNode());
5021
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005022 SDValue Load;
5023 if (ExtType == ISD::NON_EXTLOAD)
5024 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
5025 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005026 LN0->isVolatile(), LN0->isNonTemporal(),
5027 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005028 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00005029 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00005030 LN0->getPointerInfo().getWithOffset(PtrOff),
5031 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5032 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00005033
5034 // Replace the old load's chain with the new load's chain.
5035 WorkListRemover DeadNodes(*this);
5036 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1),
5037 &DeadNodes);
5038
5039 // Shift the result left, if we've swallowed a left shift.
5040 SDValue Result = Load;
5041 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00005042 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00005043 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5044 ShImmTy = VT;
5045 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
5046 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5047 }
5048
5049 // Return the new loaded value.
5050 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00005051}
5052
Dan Gohman475871a2008-07-27 21:46:04 +00005053SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5054 SDValue N0 = N->getOperand(0);
5055 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005056 EVT VT = N->getValueType(0);
5057 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00005058 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00005059 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005060
Nate Begeman1d4d4142005-09-01 00:19:25 +00005061 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00005062 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00005063 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005064
Chris Lattner541a24f2006-05-06 22:43:44 +00005065 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00005066 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00005067 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00005068
Nate Begeman646d7e22005-09-02 21:18:40 +00005069 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5070 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00005071 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00005072 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5073 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00005074 }
Chris Lattner4b37e872006-05-08 21:18:59 +00005075
Dan Gohman75dcf082008-07-31 00:50:31 +00005076 // fold (sext_in_reg (sext x)) -> (sext x)
5077 // fold (sext_in_reg (aext x)) -> (sext x)
5078 // if x is small enough.
5079 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5080 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00005081 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5082 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00005083 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00005084 }
5085
Chris Lattner95a5e052007-04-17 19:03:21 +00005086 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00005087 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005088 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005089
Chris Lattner95a5e052007-04-17 19:03:21 +00005090 // fold operands of sext_in_reg based on knowledge that the top bits are not
5091 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00005092 if (SimplifyDemandedBits(SDValue(N, 0)))
5093 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005094
Evan Chengc88138f2007-03-22 01:54:19 +00005095 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5096 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005097 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005098 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005099 return NarrowLoad;
5100
Bill Wendling8509c902009-01-30 22:33:24 +00005101 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
5102 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005103 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5104 if (N0.getOpcode() == ISD::SRL) {
5105 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005106 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Chris Lattner4b37e872006-05-08 21:18:59 +00005107 // We can turn this into an SRA iff the input to the SRL is already sign
5108 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005109 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005110 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005111 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5112 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005113 }
5114 }
Evan Chengc88138f2007-03-22 01:54:19 +00005115
Nate Begemanded49632005-10-13 03:11:28 +00005116 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005117 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005118 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005119 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005120 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005121 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005122 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005123 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005124 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005125 LN0->getBasePtr(), LN0->getPointerInfo(),
5126 EVT,
David Greene1e559442010-02-15 17:00:31 +00005127 LN0->isVolatile(), LN0->isNonTemporal(),
5128 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005129 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005130 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005131 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005132 }
5133 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005134 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005135 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005136 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005137 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005138 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005139 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005140 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005141 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005142 LN0->getBasePtr(), LN0->getPointerInfo(),
5143 EVT,
David Greene1e559442010-02-15 17:00:31 +00005144 LN0->isVolatile(), LN0->isNonTemporal(),
5145 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005146 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005147 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005148 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005149 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005150
5151 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5152 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5153 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5154 N0.getOperand(1), false);
5155 if (BSwap.getNode() != 0)
5156 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5157 BSwap, N1);
5158 }
5159
Dan Gohman475871a2008-07-27 21:46:04 +00005160 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005161}
5162
Dan Gohman475871a2008-07-27 21:46:04 +00005163SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5164 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005165 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005166 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005167
5168 // noop truncate
5169 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005170 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005171 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005172 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005173 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005174 // fold (truncate (truncate x)) -> (truncate x)
5175 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005176 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005177 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005178 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5179 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005180 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005181 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005182 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005183 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5184 N0.getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005185 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005186 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005187 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005188 else
5189 // if the source and dest are the same type, we can drop both the extend
Evan Chengd40d03e2010-01-06 19:38:29 +00005190 // and the truncate.
Nate Begeman83e75ec2005-09-06 04:43:02 +00005191 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005192 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005193
Nadav Rotemcc870a82012-02-05 11:39:23 +00005194 // Fold extract-and-trunc into a narrow extract. For example:
5195 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5196 // i32 y = TRUNCATE(i64 x)
5197 // -- becomes --
5198 // v16i8 b = BITCAST (v2i64 val)
5199 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5200 //
5201 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005202 // creates this pattern) and before operation legalization after which
5203 // we need to be more careful about the vector instructions that we generate.
5204 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5205 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5206
5207 EVT VecTy = N0.getOperand(0).getValueType();
5208 EVT ExTy = N0.getValueType();
5209 EVT TrTy = N->getValueType(0);
5210
5211 unsigned NumElem = VecTy.getVectorNumElements();
5212 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5213
5214 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5215 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5216
5217 SDValue EltNo = N0->getOperand(1);
5218 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5219 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5220
5221 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5222
5223 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5224 NVT, N0.getOperand(0));
5225
5226 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5227 N->getDebugLoc(), TrTy, V,
5228 DAG.getConstant(Index, MVT::i32));
5229 }
5230 }
5231
Chris Lattner2b4c2792007-10-13 06:35:54 +00005232 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005233 // only the low bits are being used.
5234 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005235 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005236 // may have different active low bits.
5237 if (!VT.isVector()) {
5238 SDValue Shorter =
5239 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5240 VT.getSizeInBits()));
5241 if (Shorter.getNode())
5242 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5243 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005244 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005245 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005246 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5247 SDValue Reduced = ReduceLoadWidth(N);
5248 if (Reduced.getNode())
5249 return Reduced;
5250 }
5251
5252 // Simplify the operands using demanded-bits information.
5253 if (!VT.isVector() &&
5254 SimplifyDemandedBits(SDValue(N, 0)))
5255 return SDValue(N, 0);
5256
Evan Chenge5b51ac2010-04-17 06:13:15 +00005257 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005258}
5259
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005260static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005261 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005262 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005263 return Elt.getNode();
5264 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005265}
5266
5267/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005268/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005269SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005270 assert(N->getOpcode() == ISD::BUILD_PAIR);
5271
Nate Begemanabc01992009-06-05 21:37:30 +00005272 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5273 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005274 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5275 LD1->getPointerInfo().getAddrSpace() !=
5276 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005277 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005278 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005279
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005280 if (ISD::isNON_EXTLoad(LD2) &&
5281 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005282 // If both are volatile this would reduce the number of volatile loads.
5283 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005284 !LD1->isVolatile() &&
5285 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005286 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005287 unsigned Align = LD1->getAlignment();
Dan Gohman6448d912008-09-04 15:39:15 +00005288 unsigned NewAlign = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005289 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005290
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005291 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005292 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005293 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005294 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005295 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005296 }
Bill Wendling67a67682009-01-30 22:44:24 +00005297
Dan Gohman475871a2008-07-27 21:46:04 +00005298 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005299}
5300
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005301SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005302 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005303 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005304
Dan Gohman7f321562007-06-25 16:23:39 +00005305 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5306 // Only do this before legalize, since afterward the target may be depending
5307 // on the bitconvert.
5308 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005309 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005310 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005311 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005312 bool isSimple = true;
5313 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5314 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5315 N0.getOperand(i).getOpcode() != ISD::Constant &&
5316 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005317 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005318 break;
5319 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005320
Owen Andersone50ed302009-08-10 22:56:29 +00005321 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005322 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005323 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005324 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005325 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005326 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005327
Dan Gohman3dd168d2008-09-05 01:58:21 +00005328 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005329 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005330 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005331 if (Res.getNode() != N) {
5332 if (!LegalOperations ||
5333 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5334 return Res;
5335
5336 // Folding it resulted in an illegal node, and it's too late to
5337 // do that. Clean up the old node and forego the transformation.
5338 // Ideally this won't happen very often, because instcombine
5339 // and the earlier dagcombine runs (where illegal nodes are
5340 // permitted) should have folded most of them already.
5341 DAG.DeleteNode(Res.getNode());
5342 }
Chris Lattner94683772005-12-23 05:30:37 +00005343 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005344
Bill Wendling67a67682009-01-30 22:44:24 +00005345 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005346 if (N0.getOpcode() == ISD::BITCAST)
5347 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005348 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005349
Chris Lattner57104102005-12-23 05:44:41 +00005350 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005351 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005352 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005353 // Do not change the width of a volatile load.
5354 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005355 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005356 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman6448d912008-09-04 15:39:15 +00005357 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005358 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005359 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005360
Evan Cheng59d5b682007-05-07 21:27:48 +00005361 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005362 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005363 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005364 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005365 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005366 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005367 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005368 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005369 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005370 Load.getValue(1));
5371 return Load;
5372 }
Chris Lattner57104102005-12-23 05:44:41 +00005373 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005374
Bill Wendling67a67682009-01-30 22:44:24 +00005375 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5376 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005377 // This often reduces constant pool loads.
Owen Anderson29f60f32012-04-02 22:10:29 +00005378 if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(VT)) ||
5379 (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(VT))) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005380 N0.getNode()->hasOneUse() && VT.isInteger() && !VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005381 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005382 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005383 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005384
Duncan Sands83ec4b62008-06-06 12:08:01 +00005385 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005386 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005387 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5388 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005389 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005390 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5391 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005392 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005393
Bill Wendling67a67682009-01-30 22:44:24 +00005394 // fold (bitconvert (fcopysign cst, x)) ->
5395 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5396 // Note that we don't handle (copysign x, cst) because this can always be
5397 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005398 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005399 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005400 VT.isInteger() && !VT.isVector()) {
5401 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005402 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005403 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005404 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005405 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005406 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005407
Duncan Sands25cf2272008-11-24 14:53:14 +00005408 // If X has a different width than the result/lhs, sext it or truncate it.
5409 unsigned VTWidth = VT.getSizeInBits();
5410 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005411 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005412 AddToWorkList(X.getNode());
5413 } else if (OrigXWidth > VTWidth) {
5414 // To get the sign bit in the right place, we have to shift it right
5415 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005416 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005417 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005418 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5419 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005420 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005421 AddToWorkList(X.getNode());
5422 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005423
Duncan Sands25cf2272008-11-24 14:53:14 +00005424 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005425 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005426 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005427 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005428
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005429 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005430 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005431 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005432 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005433 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005434
Bill Wendling67a67682009-01-30 22:44:24 +00005435 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005436 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005437 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005438
Scott Michelfdc40a02009-02-17 22:15:04 +00005439 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005440 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005441 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5442 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005443 return CombineLD;
5444 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005445
Dan Gohman475871a2008-07-27 21:46:04 +00005446 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005447}
5448
Dan Gohman475871a2008-07-27 21:46:04 +00005449SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005450 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005451 return CombineConsecutiveLoads(N, VT);
5452}
5453
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005454/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005455/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005456/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005457SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005458ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005459 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005460
Chris Lattner6258fb22006-04-02 02:53:43 +00005461 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005462 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005463
Duncan Sands83ec4b62008-06-06 12:08:01 +00005464 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5465 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005466
Chris Lattner6258fb22006-04-02 02:53:43 +00005467 // If this is a conversion of N elements of one type to N elements of another
5468 // type, convert each element. This handles FP<->INT cases.
5469 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005470 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5471 BV->getValueType(0).getVectorNumElements());
5472
5473 // Due to the FP element handling below calling this routine recursively,
5474 // we can end up with a scalar-to-vector node here.
5475 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005476 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5477 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005478 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005479
Dan Gohman475871a2008-07-27 21:46:04 +00005480 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005481 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005482 SDValue Op = BV->getOperand(i);
5483 // If the vector element type is not legal, the BUILD_VECTOR operands
5484 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005485 if (Op.getValueType() != SrcEltVT)
5486 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005487 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005488 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005489 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005490 }
Evan Chenga87008d2009-02-25 22:49:59 +00005491 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5492 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005493 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005494
Chris Lattner6258fb22006-04-02 02:53:43 +00005495 // Otherwise, we're growing or shrinking the elements. To avoid having to
5496 // handle annoying details of growing/shrinking FP values, we convert them to
5497 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005498 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005499 // Convert the input float vector to a int vector where the elements are the
5500 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005501 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005502 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005503 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005504 SrcEltVT = IntVT;
5505 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005506
Chris Lattner6258fb22006-04-02 02:53:43 +00005507 // Now we know the input is an integer vector. If the output is a FP type,
5508 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005509 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005510 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005511 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005512 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005513
Chris Lattner6258fb22006-04-02 02:53:43 +00005514 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005515 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005516 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005517
Chris Lattner6258fb22006-04-02 02:53:43 +00005518 // Okay, we know the src/dst types are both integers of differing types.
5519 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005520 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005521 if (SrcBitSize < DstBitSize) {
5522 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005523
Dan Gohman475871a2008-07-27 21:46:04 +00005524 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005525 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005526 i += NumInputsPerOutput) {
5527 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005528 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005529 bool EltIsUndef = true;
5530 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5531 // Shift the previously computed bits over.
5532 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005533 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005534 if (Op.getOpcode() == ISD::UNDEF) continue;
5535 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005536
Jay Foad40f8f622010-12-07 08:25:19 +00005537 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005538 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005539 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005540
Chris Lattner6258fb22006-04-02 02:53:43 +00005541 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005542 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005543 else
5544 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5545 }
5546
Owen Anderson23b9b192009-08-12 00:36:31 +00005547 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005548 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5549 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005550 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005551
Chris Lattner6258fb22006-04-02 02:53:43 +00005552 // Finally, this must be the case where we are shrinking elements: each input
5553 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005554 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005555 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005556 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5557 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005558 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005559
Dan Gohman7f321562007-06-25 16:23:39 +00005560 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005561 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5562 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005563 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005564 continue;
5565 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005566
Jay Foad40f8f622010-12-07 08:25:19 +00005567 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5568 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005569
Chris Lattner6258fb22006-04-02 02:53:43 +00005570 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005571 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005572 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005573 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005574 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005575 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5576 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005577 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005578 }
5579
5580 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005581 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005582 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5583 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005584
Evan Chenga87008d2009-02-25 22:49:59 +00005585 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5586 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005587}
5588
Dan Gohman475871a2008-07-27 21:46:04 +00005589SDValue DAGCombiner::visitFADD(SDNode *N) {
5590 SDValue N0 = N->getOperand(0);
5591 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005592 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5593 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005594 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005595
Dan Gohman7f321562007-06-25 16:23:39 +00005596 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005597 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005598 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005599 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005600 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005601
Bill Wendlingb0162f52009-01-30 22:53:48 +00005602 // fold (fadd c1, c2) -> (fadd c1, c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005603 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005604 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005605 // canonicalize constant to RHS
5606 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005607 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5608 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005609 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5610 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005611 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005612 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005613 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5614 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005615 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005616 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005617 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005618 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5619 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005620 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005621 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005622
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005623 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005624 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5625 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5626 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005627 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005628 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5629 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005630
Dan Gohman475871a2008-07-27 21:46:04 +00005631 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005632}
5633
Dan Gohman475871a2008-07-27 21:46:04 +00005634SDValue DAGCombiner::visitFSUB(SDNode *N) {
5635 SDValue N0 = N->getOperand(0);
5636 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005637 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5638 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005639 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005640
Dan Gohman7f321562007-06-25 16:23:39 +00005641 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005642 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005643 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005644 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005645 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005646
Nate Begemana0e221d2005-10-18 00:28:13 +00005647 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005648 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005649 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005650 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005651 if (DAG.getTarget().Options.UnsafeFPMath &&
5652 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005653 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005654 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005655 if (DAG.getTarget().Options.UnsafeFPMath &&
5656 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005657 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005658 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005659 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005660 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005661 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005662 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005663 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005664 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005665 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005666
Bill Wendling5a894342012-03-15 05:12:00 +00005667 // If 'unsafe math' is enabled, fold
5668 // (fsub x, (fadd x, y)) -> (fneg y) &
5669 // (fsub x, (fadd y, x)) -> (fneg y)
5670 if (DAG.getTarget().Options.UnsafeFPMath) {
5671 if (N1.getOpcode() == ISD::FADD) {
5672 SDValue N10 = N1->getOperand(0);
5673 SDValue N11 = N1->getOperand(1);
5674
5675 if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
5676 &DAG.getTarget().Options))
5677 return GetNegatedExpression(N11, DAG, LegalOperations);
5678 else if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
5679 &DAG.getTarget().Options))
5680 return GetNegatedExpression(N10, DAG, LegalOperations);
5681 }
5682 }
5683
Dan Gohman475871a2008-07-27 21:46:04 +00005684 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005685}
5686
Dan Gohman475871a2008-07-27 21:46:04 +00005687SDValue DAGCombiner::visitFMUL(SDNode *N) {
5688 SDValue N0 = N->getOperand(0);
5689 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005690 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5691 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005692 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005693 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005694
Dan Gohman7f321562007-06-25 16:23:39 +00005695 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005696 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005697 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005698 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005699 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005700
Nate Begeman11af4ea2005-10-17 20:40:11 +00005701 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005702 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005703 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005704 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005705 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005706 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5707 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005708 if (DAG.getTarget().Options.UnsafeFPMath &&
5709 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005710 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005711 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005712 if (DAG.getTarget().Options.UnsafeFPMath &&
5713 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005714 return N1;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005715 // fold (fmul X, 2.0) -> (fadd X, X)
5716 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005717 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00005718 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00005719 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00005720 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005721 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005722
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005723 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005724 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005725 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005726 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005727 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005728 // Both can be negated for free, check to see if at least one is cheaper
5729 // negated.
5730 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005731 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005732 GetNegatedExpression(N0, DAG, LegalOperations),
5733 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005734 }
5735 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005736
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005737 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005738 if (DAG.getTarget().Options.UnsafeFPMath &&
5739 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005740 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005741 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00005742 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00005743 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005744
Dan Gohman475871a2008-07-27 21:46:04 +00005745 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005746}
5747
Dan Gohman475871a2008-07-27 21:46:04 +00005748SDValue DAGCombiner::visitFDIV(SDNode *N) {
5749 SDValue N0 = N->getOperand(0);
5750 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005751 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5752 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005753 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005754 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005755
Dan Gohman7f321562007-06-25 16:23:39 +00005756 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005757 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005758 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005759 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005760 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005761
Nate Begemana148d982006-01-18 22:35:16 +00005762 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005763 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005764 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005765
Duncan Sands3ef3fcf2012-04-08 18:08:12 +00005766 // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
5767 if (N1CFP && VT != MVT::ppcf128 && DAG.getTarget().Options.UnsafeFPMath) {
Duncan Sands961d6662012-04-07 20:04:00 +00005768 // Compute the reciprocal 1.0 / c2.
5769 APFloat N1APF = N1CFP->getValueAPF();
5770 APFloat Recip(N1APF.getSemantics(), 1); // 1.0
5771 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
Anton Korobeynikov999821c2012-04-10 13:22:49 +00005772 // Only do the transform if the reciprocal is not too horrible (eg not NaN)
5773 // and the reciprocal is a legal fp imm.
5774 if ((st == APFloat::opOK || st == APFloat::opInexact) &&
5775 (!LegalOperations ||
5776 // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
5777 // backend)... we should handle this gracefully after Legalize.
5778 // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
5779 TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
5780 TLI.isFPImmLegal(Recip, VT)))
Duncan Sands961d6662012-04-07 20:04:00 +00005781 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0,
5782 DAG.getConstantFP(Recip, VT));
5783 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005784
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005785 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005786 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005787 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005788 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005789 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005790 // Both can be negated for free, check to see if at least one is cheaper
5791 // negated.
5792 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00005793 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005794 GetNegatedExpression(N0, DAG, LegalOperations),
5795 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005796 }
5797 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005798
Dan Gohman475871a2008-07-27 21:46:04 +00005799 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005800}
5801
Dan Gohman475871a2008-07-27 21:46:04 +00005802SDValue DAGCombiner::visitFREM(SDNode *N) {
5803 SDValue N0 = N->getOperand(0);
5804 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005805 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5806 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005807 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00005808
Nate Begemana148d982006-01-18 22:35:16 +00005809 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005810 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005811 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00005812
Dan Gohman475871a2008-07-27 21:46:04 +00005813 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005814}
5815
Dan Gohman475871a2008-07-27 21:46:04 +00005816SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
5817 SDValue N0 = N->getOperand(0);
5818 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00005819 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5820 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005821 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00005822
Owen Anderson825b72b2009-08-11 20:47:22 +00005823 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005824 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005825
Chris Lattner12d83032006-03-05 05:30:57 +00005826 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00005827 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00005828 // copysign(x, c1) -> fabs(x) iff ispos(c1)
5829 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00005830 if (!V.isNegative()) {
5831 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005832 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00005833 } else {
5834 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005835 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00005836 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00005837 }
Chris Lattner12d83032006-03-05 05:30:57 +00005838 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005839
Chris Lattner12d83032006-03-05 05:30:57 +00005840 // copysign(fabs(x), y) -> copysign(x, y)
5841 // copysign(fneg(x), y) -> copysign(x, y)
5842 // copysign(copysign(x,z), y) -> copysign(x, y)
5843 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
5844 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005845 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5846 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00005847
5848 // copysign(x, abs(y)) -> abs(x)
5849 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005850 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005851
Chris Lattner12d83032006-03-05 05:30:57 +00005852 // copysign(x, copysign(y,z)) -> copysign(x, z)
5853 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005854 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5855 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005856
Chris Lattner12d83032006-03-05 05:30:57 +00005857 // copysign(x, fp_extend(y)) -> copysign(x, y)
5858 // copysign(x, fp_round(y)) -> copysign(x, y)
5859 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005860 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5861 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005862
Dan Gohman475871a2008-07-27 21:46:04 +00005863 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00005864}
5865
Dan Gohman475871a2008-07-27 21:46:04 +00005866SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
5867 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005868 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005869 EVT VT = N->getValueType(0);
5870 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00005871
Nate Begeman1d4d4142005-09-01 00:19:25 +00005872 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005873 if (N0C && OpVT != MVT::ppcf128 &&
5874 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005875 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005876 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005877 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005878
Chris Lattnercda88752008-06-26 00:16:49 +00005879 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
5880 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005881 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
5882 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005883 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005884 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005885 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005886 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005887
Dan Gohman475871a2008-07-27 21:46:04 +00005888 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005889}
5890
Dan Gohman475871a2008-07-27 21:46:04 +00005891SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
5892 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005893 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005894 EVT VT = N->getValueType(0);
5895 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00005896
Nate Begeman1d4d4142005-09-01 00:19:25 +00005897 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005898 if (N0C && OpVT != MVT::ppcf128 &&
5899 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005900 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005901 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005902 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005903
Chris Lattnercda88752008-06-26 00:16:49 +00005904 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
5905 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005906 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
5907 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005908 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005909 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005910 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005911 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005912
Dan Gohman475871a2008-07-27 21:46:04 +00005913 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005914}
5915
Dan Gohman475871a2008-07-27 21:46:04 +00005916SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
5917 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005918 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005919 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005920
Nate Begeman1d4d4142005-09-01 00:19:25 +00005921 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00005922 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005923 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
5924
Dan Gohman475871a2008-07-27 21:46:04 +00005925 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005926}
5927
Dan Gohman475871a2008-07-27 21:46:04 +00005928SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
5929 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005930 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005931 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005932
Nate Begeman1d4d4142005-09-01 00:19:25 +00005933 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00005934 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005935 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
5936
Dan Gohman475871a2008-07-27 21:46:04 +00005937 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005938}
5939
Dan Gohman475871a2008-07-27 21:46:04 +00005940SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
5941 SDValue N0 = N->getOperand(0);
5942 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005943 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005944 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005945
Nate Begeman1d4d4142005-09-01 00:19:25 +00005946 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00005947 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005948 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005949
Chris Lattner79dbea52006-03-13 06:26:26 +00005950 // fold (fp_round (fp_extend x)) -> x
5951 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
5952 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005953
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005954 // fold (fp_round (fp_round x)) -> (fp_round x)
5955 if (N0.getOpcode() == ISD::FP_ROUND) {
5956 // This is a value preserving truncation if both round's are.
5957 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005958 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00005959 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005960 DAG.getIntPtrConstant(IsTrunc));
5961 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005962
Chris Lattner79dbea52006-03-13 06:26:26 +00005963 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00005964 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00005965 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
5966 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00005967 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00005968 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5969 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00005970 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005971
Dan Gohman475871a2008-07-27 21:46:04 +00005972 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005973}
5974
Dan Gohman475871a2008-07-27 21:46:04 +00005975SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
5976 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005977 EVT VT = N->getValueType(0);
5978 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00005979 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005980
Nate Begeman1d4d4142005-09-01 00:19:25 +00005981 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00005982 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005983 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00005984 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005985 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005986
Dan Gohman475871a2008-07-27 21:46:04 +00005987 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005988}
5989
Dan Gohman475871a2008-07-27 21:46:04 +00005990SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
5991 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005992 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005993 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005994
Chris Lattner5938bef2007-12-29 06:55:23 +00005995 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00005996 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00005997 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00005998 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00005999
Nate Begeman1d4d4142005-09-01 00:19:25 +00006000 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00006001 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00006002 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006003
6004 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6005 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00006006 if (N0.getOpcode() == ISD::FP_ROUND
6007 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00006008 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00006009 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006010 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00006011 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
6012 In, N0.getOperand(1));
6013 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00006014 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006015
Chris Lattner0bd48932008-01-17 07:00:52 +00006016 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00006017 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006018 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00006019 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00006020 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00006021 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00006022 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00006023 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00006024 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00006025 LN0->isVolatile(), LN0->isNonTemporal(),
6026 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00006027 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00006028 CombineTo(N0.getNode(),
6029 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
6030 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00006031 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006032 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00006033 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006034
Dan Gohman475871a2008-07-27 21:46:04 +00006035 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006036}
6037
Dan Gohman475871a2008-07-27 21:46:04 +00006038SDValue DAGCombiner::visitFNEG(SDNode *N) {
6039 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006040 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00006041
Owen Andersonafd3d562012-03-06 00:29:31 +00006042 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6043 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00006044 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00006045
Chris Lattner3bd39d42008-01-27 17:42:27 +00006046 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6047 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006048 if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006049 !VT.isVector() &&
6050 N0.getNode()->hasOneUse() &&
6051 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006052 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006053 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006054 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006055 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
6056 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006057 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006058 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00006059 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006060 }
6061 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006062
Dan Gohman475871a2008-07-27 21:46:04 +00006063 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006064}
6065
Dan Gohman475871a2008-07-27 21:46:04 +00006066SDValue DAGCombiner::visitFABS(SDNode *N) {
6067 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00006068 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00006069 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00006070
Nate Begeman1d4d4142005-09-01 00:19:25 +00006071 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00006072 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006073 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006074 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006075 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00006076 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00006077 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00006078 // fold (fabs (fcopysign x, y)) -> (fabs x)
6079 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006080 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00006081
Chris Lattner3bd39d42008-01-27 17:42:27 +00006082 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6083 // constant pool values.
Owen Anderson29f60f32012-04-02 22:10:29 +00006084 if (!TLI.isFAbsFree(VT) &&
6085 N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00006086 N0.getOperand(0).getValueType().isInteger() &&
6087 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006088 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00006089 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006090 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006091 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006092 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00006093 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006094 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00006095 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00006096 }
6097 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006098
Dan Gohman475871a2008-07-27 21:46:04 +00006099 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00006100}
6101
Dan Gohman475871a2008-07-27 21:46:04 +00006102SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6103 SDValue Chain = N->getOperand(0);
6104 SDValue N1 = N->getOperand(1);
6105 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00006106
Dan Gohmane0f06c72009-11-17 00:47:23 +00006107 // If N is a constant we could fold this into a fallthrough or unconditional
6108 // branch. However that doesn't happen very often in normal code, because
6109 // Instcombine/SimplifyCFG should have handled the available opportunities.
6110 // If we did this folding here, it would be necessary to update the
6111 // MachineBasicBlock CFG, which is awkward.
6112
Nate Begeman750ac1b2006-02-01 07:19:44 +00006113 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6114 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00006115 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006116 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
6117 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006118 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00006119 N1.getOperand(0), N1.getOperand(1), N2);
6120 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006121
Evan Cheng2a135ae2010-10-04 22:41:01 +00006122 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6123 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6124 (N1.getOperand(0).hasOneUse() &&
6125 N1.getOperand(0).getOpcode() == ISD::SRL))) {
6126 SDNode *Trunc = 0;
6127 if (N1.getOpcode() == ISD::TRUNCATE) {
6128 // Look pass the truncate.
6129 Trunc = N1.getNode();
6130 N1 = N1.getOperand(0);
6131 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006132
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006133 // Match this pattern so that we can generate simpler code:
6134 //
6135 // %a = ...
6136 // %b = and i32 %a, 2
6137 // %c = srl i32 %b, 1
6138 // brcond i32 %c ...
6139 //
6140 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006141 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006142 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006143 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006144 // %c = setcc eq %b, 0
6145 // brcond %c ...
6146 //
6147 // This applies only when the AND constant value has one bit set and the
6148 // SRL constant is equal to the log2 of the AND constant. The back-end is
6149 // smart enough to convert the result into a TEST/JMP sequence.
6150 SDValue Op0 = N1.getOperand(0);
6151 SDValue Op1 = N1.getOperand(1);
6152
6153 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006154 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006155 SDValue AndOp1 = Op0.getOperand(1);
6156
6157 if (AndOp1.getOpcode() == ISD::Constant) {
6158 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6159
6160 if (AndConst.isPowerOf2() &&
6161 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6162 SDValue SetCC =
6163 DAG.getSetCC(N->getDebugLoc(),
6164 TLI.getSetCCResultType(Op0.getValueType()),
6165 Op0, DAG.getConstant(0, Op0.getValueType()),
6166 ISD::SETNE);
6167
Evan Chengd40d03e2010-01-06 19:38:29 +00006168 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6169 MVT::Other, Chain, SetCC, N2);
6170 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6171 // will convert it back to (X & C1) >> C2.
6172 CombineTo(N, NewBRCond, false);
6173 // Truncate is dead.
6174 if (Trunc) {
6175 removeFromWorkList(Trunc);
6176 DAG.DeleteNode(Trunc);
6177 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006178 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006179 WorkListRemover DeadNodes(*this);
6180 DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006181 removeFromWorkList(N1.getNode());
6182 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006183 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006184 }
6185 }
6186 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006187
6188 if (Trunc)
6189 // Restore N1 if the above transformation doesn't match.
6190 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006191 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006192
Evan Cheng2c755ba2010-02-27 07:36:59 +00006193 // Transform br(xor(x, y)) -> br(x != y)
6194 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6195 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6196 SDNode *TheXor = N1.getNode();
6197 SDValue Op0 = TheXor->getOperand(0);
6198 SDValue Op1 = TheXor->getOperand(1);
6199 if (Op0.getOpcode() == Op1.getOpcode()) {
6200 // Avoid missing important xor optimizations.
6201 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006202 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006203 DEBUG(dbgs() << "\nReplacing.8 ";
6204 TheXor->dump(&DAG);
6205 dbgs() << "\nWith: ";
6206 Tmp.getNode()->dump(&DAG);
6207 dbgs() << '\n');
6208 WorkListRemover DeadNodes(*this);
6209 DAG.ReplaceAllUsesOfValueWith(N1, Tmp, &DeadNodes);
6210 removeFromWorkList(TheXor);
6211 DAG.DeleteNode(TheXor);
6212 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6213 MVT::Other, Chain, Tmp, N2);
6214 }
6215 }
6216
6217 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6218 bool Equal = false;
6219 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6220 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6221 Op0.getOpcode() == ISD::XOR) {
6222 TheXor = Op0.getNode();
6223 Equal = true;
6224 }
6225
Evan Cheng2a135ae2010-10-04 22:41:01 +00006226 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006227 if (LegalTypes)
6228 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6229 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6230 SetCCVT,
6231 Op0, Op1,
6232 Equal ? ISD::SETEQ : ISD::SETNE);
6233 // Replace the uses of XOR with SETCC
6234 WorkListRemover DeadNodes(*this);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006235 DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
6236 removeFromWorkList(N1.getNode());
6237 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006238 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6239 MVT::Other, Chain, SetCC, N2);
6240 }
6241 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006242
Dan Gohman475871a2008-07-27 21:46:04 +00006243 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006244}
6245
Chris Lattner3ea0b472005-10-05 06:47:48 +00006246// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6247//
Dan Gohman475871a2008-07-27 21:46:04 +00006248SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006249 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006250 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006251
Dan Gohmane0f06c72009-11-17 00:47:23 +00006252 // If N is a constant we could fold this into a fallthrough or unconditional
6253 // branch. However that doesn't happen very often in normal code, because
6254 // Instcombine/SimplifyCFG should have handled the available opportunities.
6255 // If we did this folding here, it would be necessary to update the
6256 // MachineBasicBlock CFG, which is awkward.
6257
Duncan Sands8eab8a22008-06-09 11:32:28 +00006258 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006259 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006260 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6261 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006262 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006263
Nate Begemane17daeb2005-10-05 21:43:42 +00006264 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006265 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006266 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006267 N->getOperand(0), Simp.getOperand(2),
6268 Simp.getOperand(0), Simp.getOperand(1),
6269 N->getOperand(4));
6270
Dan Gohman475871a2008-07-27 21:46:04 +00006271 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006272}
6273
Evan Chengc4b527a2012-01-13 01:37:24 +00006274/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6275/// uses N as its base pointer and that N may be folded in the load / store
Evan Cheng03be3622012-03-06 23:33:32 +00006276/// addressing mode.
Evan Chengc4b527a2012-01-13 01:37:24 +00006277static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6278 SelectionDAG &DAG,
6279 const TargetLowering &TLI) {
6280 EVT VT;
6281 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6282 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6283 return false;
6284 VT = Use->getValueType(0);
6285 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6286 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6287 return false;
6288 VT = ST->getValue().getValueType();
6289 } else
6290 return false;
6291
6292 TargetLowering::AddrMode AM;
6293 if (N->getOpcode() == ISD::ADD) {
6294 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6295 if (Offset)
Evan Cheng03be3622012-03-06 23:33:32 +00006296 // [reg +/- imm]
Evan Chengc4b527a2012-01-13 01:37:24 +00006297 AM.BaseOffs = Offset->getSExtValue();
6298 else
Evan Cheng03be3622012-03-06 23:33:32 +00006299 // [reg +/- reg]
6300 AM.Scale = 1;
Evan Chengc4b527a2012-01-13 01:37:24 +00006301 } else if (N->getOpcode() == ISD::SUB) {
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
6310 return false;
6311
6312 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6313}
6314
Duncan Sandsec87aa82008-06-15 20:12:31 +00006315/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6316/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006317/// and it has other uses besides the load / store. After the
6318/// transformation, the new indexed load / store has effectively folded
6319/// the add / subtract in and all of its other uses are redirected to the
6320/// new load / store.
6321bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006322 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006323 return false;
6324
6325 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006326 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006327 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006328 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006329 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006330 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006331 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006332 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006333 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6334 return false;
6335 Ptr = LD->getBasePtr();
6336 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006337 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006338 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006339 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006340 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6341 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6342 return false;
6343 Ptr = ST->getBasePtr();
6344 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006345 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006346 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006347 }
Chris Lattner448f2192006-11-11 00:39:41 +00006348
Chris Lattner9f1794e2006-11-11 00:56:29 +00006349 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6350 // out. There is no reason to make this a preinc/predec.
6351 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006352 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006353 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006354
Chris Lattner9f1794e2006-11-11 00:56:29 +00006355 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006356 SDValue BasePtr;
6357 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006358 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6359 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6360 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006361 // Don't create a indexed load / store with zero offset.
6362 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006363 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006364 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006365
Chris Lattner41e53fd2006-11-11 01:00:15 +00006366 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006367 // 1) The new base ptr is a frame index.
6368 // 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 +00006369 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006370 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006371 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006372 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006373
Chris Lattner41e53fd2006-11-11 01:00:15 +00006374 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6375 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006376 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006377 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006378
Chris Lattner41e53fd2006-11-11 01:00:15 +00006379 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006380 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006381 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006382 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006383 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006384 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006385
Evan Chengc843abe2007-05-24 02:35:39 +00006386 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006387 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006388
6389 // Caches for hasPredecessorHelper
6390 SmallPtrSet<const SDNode *, 32> Visited;
6391 SmallVector<const SDNode *, 16> Worklist;
6392
Gabor Greifba36cb52008-08-28 21:40:38 +00006393 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6394 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006395 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006396 if (Use == N)
6397 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006398 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006399 return false;
6400
Evan Chengc4b527a2012-01-13 01:37:24 +00006401 // If Ptr may be folded in addressing mode of other use, then it's
6402 // not profitable to do this transformation.
6403 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006404 RealUse = true;
6405 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006406
Chris Lattner9f1794e2006-11-11 00:56:29 +00006407 if (!RealUse)
6408 return false;
6409
Dan Gohman475871a2008-07-27 21:46:04 +00006410 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006411 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006412 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6413 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006414 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006415 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6416 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006417 ++PreIndexedNodes;
6418 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006419 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006420 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006421 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006422 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006423 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006424 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006425 if (isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006426 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006427 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006428 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006429 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006430 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006431 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006432 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006433 }
6434
Chris Lattner9f1794e2006-11-11 00:56:29 +00006435 // Finally, since the node is now dead, remove it from the graph.
6436 DAG.DeleteNode(N);
6437
6438 // Replace the uses of Ptr with uses of the updated base value.
6439 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006440 &DeadNodes);
Gabor Greifba36cb52008-08-28 21:40:38 +00006441 removeFromWorkList(Ptr.getNode());
6442 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006443
6444 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006445}
6446
Duncan Sandsec87aa82008-06-15 20:12:31 +00006447/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006448/// add / sub of the base pointer node into a post-indexed load / store.
6449/// The transformation folded the add / subtract into the new indexed
6450/// load / store effectively and all of its uses are redirected to the
6451/// new load / store.
6452bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006453 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006454 return false;
6455
6456 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006457 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006458 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006459 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006460 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006461 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006462 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006463 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6464 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6465 return false;
6466 Ptr = LD->getBasePtr();
6467 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006468 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006469 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006470 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006471 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6472 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6473 return false;
6474 Ptr = ST->getBasePtr();
6475 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006476 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006477 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006478 }
Chris Lattner448f2192006-11-11 00:39:41 +00006479
Gabor Greifba36cb52008-08-28 21:40:38 +00006480 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006481 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006482
Gabor Greifba36cb52008-08-28 21:40:38 +00006483 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6484 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006485 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006486 if (Op == N ||
6487 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6488 continue;
6489
Dan Gohman475871a2008-07-27 21:46:04 +00006490 SDValue BasePtr;
6491 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006492 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6493 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006494 // Don't create a indexed load / store with zero offset.
6495 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006496 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006497 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006498
Chris Lattner9f1794e2006-11-11 00:56:29 +00006499 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006500 // 1) All uses are load / store ops that use it as base ptr (and
6501 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006502 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6503 // nor a successor of N. Otherwise, if Op is folded that would
6504 // create a cycle.
6505
Evan Chengcaab1292009-05-06 18:25:01 +00006506 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6507 continue;
6508
Chris Lattner9f1794e2006-11-11 00:56:29 +00006509 // Check for #1.
6510 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006511 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6512 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006513 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006514 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006515 continue;
6516
Chris Lattner9f1794e2006-11-11 00:56:29 +00006517 // If all the uses are load / store addresses, then don't do the
6518 // transformation.
6519 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6520 bool RealUse = false;
6521 for (SDNode::use_iterator III = Use->use_begin(),
6522 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006523 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006524 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006525 RealUse = true;
6526 }
Chris Lattner448f2192006-11-11 00:39:41 +00006527
Chris Lattner9f1794e2006-11-11 00:56:29 +00006528 if (!RealUse) {
6529 TryNext = true;
6530 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006531 }
6532 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006533 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006534
Chris Lattner9f1794e2006-11-11 00:56:29 +00006535 if (TryNext)
6536 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006537
Chris Lattner9f1794e2006-11-11 00:56:29 +00006538 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00006539 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006540 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00006541 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6542 BasePtr, Offset, AM)
6543 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6544 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006545 ++PostIndexedNodes;
6546 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006547 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006548 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006549 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006550 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006551 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006552 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006553 if (isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006554 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006555 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006556 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006557 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006558 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006559 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006560 &DeadNodes);
Chris Lattner448f2192006-11-11 00:39:41 +00006561 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006562
Chris Lattner9f1794e2006-11-11 00:56:29 +00006563 // Finally, since the node is now dead, remove it from the graph.
6564 DAG.DeleteNode(N);
6565
6566 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00006567 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Chris Lattner9f1794e2006-11-11 00:56:29 +00006568 Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006569 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006570 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006571 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006572 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006573 }
6574 }
6575 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006576
Chris Lattner448f2192006-11-11 00:39:41 +00006577 return false;
6578}
6579
Dan Gohman475871a2008-07-27 21:46:04 +00006580SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00006581 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006582 SDValue Chain = LD->getChain();
6583 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006584
Evan Cheng45a7ca92007-05-01 00:38:21 +00006585 // If load is not volatile and there are no uses of the loaded value (and
6586 // the updated indexed value in case of indexed loads), change uses of the
6587 // chain value into uses of the chain input (i.e. delete the dead load).
6588 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006589 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00006590 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00006591 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00006592 // It's not safe to use the two value CombineTo variant here. e.g.
6593 // v1, chain2 = load chain1, loc
6594 // v2, chain3 = load chain2, loc
6595 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00006596 // Now we replace use of chain2 with chain1. This makes the second load
6597 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00006598 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006599 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006600 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006601 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006602 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006603 WorkListRemover DeadNodes(*this);
Dan Gohman475871a2008-07-27 21:46:04 +00006604 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain, &DeadNodes);
Bill Wendlingc0debad2009-01-30 23:27:35 +00006605
Chris Lattner125991a2008-01-24 07:57:06 +00006606 if (N->use_empty()) {
6607 removeFromWorkList(N);
6608 DAG.DeleteNode(N);
6609 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006610
Dan Gohman475871a2008-07-27 21:46:04 +00006611 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00006612 }
Evan Cheng498f5592007-05-01 08:53:39 +00006613 } else {
6614 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00006615 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00006616 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00006617 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00006618 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006619 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006620 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006621 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006622 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006623 WorkListRemover DeadNodes(*this);
Dan Gohman475871a2008-07-27 21:46:04 +00006624 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef, &DeadNodes);
6625 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Dale Johannesene8d72302009-02-06 23:05:02 +00006626 DAG.getUNDEF(N->getValueType(1)),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006627 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006628 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain, &DeadNodes);
Evan Cheng02c42852008-01-16 23:11:54 +00006629 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00006630 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006631 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00006632 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00006633 }
6634 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006635
Chris Lattner01a22022005-10-10 22:04:48 +00006636 // If this load is directly stored, replace the load value with the stored
6637 // value.
6638 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006639 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00006640 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00006641 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006642 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
6643 if (PrevST->getBasePtr() == Ptr &&
6644 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006645 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00006646 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006647 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006648
Evan Cheng255f20f2010-04-01 06:04:33 +00006649 // Try to infer better alignment information than the load already has.
6650 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00006651 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6652 if (Align > LD->getAlignment())
6653 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
6654 LD->getValueType(0),
6655 Chain, Ptr, LD->getPointerInfo(),
6656 LD->getMemoryVT(),
6657 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00006658 }
6659 }
6660
Jim Laskey7ca56af2006-10-11 13:47:09 +00006661 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00006662 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00006663 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00006664
Jim Laskey6ff23e52006-10-04 16:53:27 +00006665 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00006666 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00006667 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006668
Jim Laskey279f0532006-09-25 16:29:54 +00006669 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006670 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00006671 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00006672 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006673 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006674 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006675 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00006676 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
6677 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00006678 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006679 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006680 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006681 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00006682 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006683 }
Jim Laskey279f0532006-09-25 16:29:54 +00006684
Jim Laskey6ff23e52006-10-04 16:53:27 +00006685 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00006686 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006687 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006688
Nate Begemanb6aef5c2009-09-15 00:18:30 +00006689 // Make sure the new and old chains are cleaned up.
6690 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006691
Jim Laskey274062c2006-10-13 23:32:28 +00006692 // Replace uses with load result and token factor. Don't add users
6693 // to work list.
6694 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00006695 }
6696 }
6697
Evan Cheng7fc033a2006-11-03 03:06:21 +00006698 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00006699 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00006700 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00006701
Dan Gohman475871a2008-07-27 21:46:04 +00006702 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00006703}
6704
Chris Lattner2392ae72010-04-15 04:48:01 +00006705/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
6706/// load is having specific bytes cleared out. If so, return the byte size
6707/// being masked out and the shift amount.
6708static std::pair<unsigned, unsigned>
6709CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
6710 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006711
Chris Lattner2392ae72010-04-15 04:48:01 +00006712 // Check for the structure we're looking for.
6713 if (V->getOpcode() != ISD::AND ||
6714 !isa<ConstantSDNode>(V->getOperand(1)) ||
6715 !ISD::isNormalLoad(V->getOperand(0).getNode()))
6716 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006717
Chris Lattnere6987582010-04-15 06:10:49 +00006718 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00006719 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00006720 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006721
Chris Lattnere6987582010-04-15 06:10:49 +00006722 // The store should be chained directly to the load or be an operand of a
6723 // tokenfactor.
6724 if (LD == Chain.getNode())
6725 ; // ok.
6726 else if (Chain->getOpcode() != ISD::TokenFactor)
6727 return Result; // Fail.
6728 else {
6729 bool isOk = false;
6730 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
6731 if (Chain->getOperand(i).getNode() == LD) {
6732 isOk = true;
6733 break;
6734 }
6735 if (!isOk) return Result;
6736 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006737
Chris Lattner2392ae72010-04-15 04:48:01 +00006738 // This only handles simple types.
6739 if (V.getValueType() != MVT::i16 &&
6740 V.getValueType() != MVT::i32 &&
6741 V.getValueType() != MVT::i64)
6742 return Result;
6743
6744 // Check the constant mask. Invert it so that the bits being masked out are
6745 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
6746 // follow the sign bit for uniformity.
6747 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
6748 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
6749 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
6750 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
6751 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
6752 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006753
Chris Lattner2392ae72010-04-15 04:48:01 +00006754 // See if we have a continuous run of bits. If so, we have 0*1+0*
6755 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
6756 return Result;
6757
6758 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
6759 if (V.getValueType() != MVT::i64 && NotMaskLZ)
6760 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006761
Chris Lattner2392ae72010-04-15 04:48:01 +00006762 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
6763 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006764 case 1:
6765 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00006766 case 4: break;
6767 default: return Result; // All one mask, or 5-byte mask.
6768 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006769
Chris Lattner2392ae72010-04-15 04:48:01 +00006770 // Verify that the first bit starts at a multiple of mask so that the access
6771 // is aligned the same as the access width.
6772 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006773
Chris Lattner2392ae72010-04-15 04:48:01 +00006774 Result.first = MaskedBytes;
6775 Result.second = NotMaskTZ/8;
6776 return Result;
6777}
6778
6779
6780/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
6781/// provides a value as specified by MaskInfo. If so, replace the specified
6782/// store with a narrower store of truncated IVal.
6783static SDNode *
6784ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
6785 SDValue IVal, StoreSDNode *St,
6786 DAGCombiner *DC) {
6787 unsigned NumBytes = MaskInfo.first;
6788 unsigned ByteShift = MaskInfo.second;
6789 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006790
Chris Lattner2392ae72010-04-15 04:48:01 +00006791 // Check to see if IVal is all zeros in the part being masked in by the 'or'
6792 // that uses this. If not, this is not a replacement.
6793 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
6794 ByteShift*8, (ByteShift+NumBytes)*8);
6795 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006796
Chris Lattner2392ae72010-04-15 04:48:01 +00006797 // Check that it is legal on the target to do this. It is legal if the new
6798 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
6799 // legalization.
6800 MVT VT = MVT::getIntegerVT(NumBytes*8);
6801 if (!DC->isTypeLegal(VT))
6802 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006803
Chris Lattner2392ae72010-04-15 04:48:01 +00006804 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
6805 // shifted by ByteShift and truncated down to NumBytes.
6806 if (ByteShift)
6807 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00006808 DAG.getConstant(ByteShift*8,
6809 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00006810
6811 // Figure out the offset for the store and the alignment of the access.
6812 unsigned StOffset;
6813 unsigned NewAlign = St->getAlignment();
6814
6815 if (DAG.getTargetLoweringInfo().isLittleEndian())
6816 StOffset = ByteShift;
6817 else
6818 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006819
Chris Lattner2392ae72010-04-15 04:48:01 +00006820 SDValue Ptr = St->getBasePtr();
6821 if (StOffset) {
6822 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
6823 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
6824 NewAlign = MinAlign(NewAlign, StOffset);
6825 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006826
Chris Lattner2392ae72010-04-15 04:48:01 +00006827 // Truncate down to the new size.
6828 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006829
Chris Lattner2392ae72010-04-15 04:48:01 +00006830 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006831 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006832 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00006833 false, false, NewAlign).getNode();
6834}
6835
Evan Cheng8b944d32009-05-28 00:35:15 +00006836
6837/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
6838/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
6839/// of the loaded bits, try narrowing the load and store if it would end up
6840/// being a win for performance or code size.
6841SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
6842 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00006843 if (ST->isVolatile())
6844 return SDValue();
6845
Evan Cheng8b944d32009-05-28 00:35:15 +00006846 SDValue Chain = ST->getChain();
6847 SDValue Value = ST->getValue();
6848 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00006849 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00006850
6851 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00006852 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006853
6854 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006855
Chris Lattner2392ae72010-04-15 04:48:01 +00006856 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
6857 // is a byte mask indicating a consecutive number of bytes, check to see if
6858 // Y is known to provide just those bytes. If so, we try to replace the
6859 // load + replace + store sequence with a single (narrower) store, which makes
6860 // the load dead.
6861 if (Opc == ISD::OR) {
6862 std::pair<unsigned, unsigned> MaskedLoad;
6863 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
6864 if (MaskedLoad.first)
6865 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6866 Value.getOperand(1), ST,this))
6867 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006868
Chris Lattner2392ae72010-04-15 04:48:01 +00006869 // Or is commutative, so try swapping X and Y.
6870 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
6871 if (MaskedLoad.first)
6872 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6873 Value.getOperand(0), ST,this))
6874 return SDValue(NewST, 0);
6875 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006876
Evan Cheng8b944d32009-05-28 00:35:15 +00006877 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
6878 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00006879 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006880
6881 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00006882 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
6883 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00006884 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00006885 if (LD->getBasePtr() != Ptr ||
6886 LD->getPointerInfo().getAddrSpace() !=
6887 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00006888 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006889
6890 // Find the type to narrow it the load / op / store to.
6891 SDValue N1 = Value.getOperand(1);
6892 unsigned BitWidth = N1.getValueSizeInBits();
6893 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
6894 if (Opc == ISD::AND)
6895 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00006896 if (Imm == 0 || Imm.isAllOnesValue())
6897 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006898 unsigned ShAmt = Imm.countTrailingZeros();
6899 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
6900 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00006901 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006902 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00006903 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00006904 TLI.isNarrowingProfitable(VT, NewVT))) {
6905 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00006906 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006907 }
Evan Chengcdcecc02009-05-28 18:41:02 +00006908 if (NewBW >= BitWidth)
6909 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006910
6911 // If the lsb changed does not start at the type bitwidth boundary,
6912 // start at the previous one.
6913 if (ShAmt % NewBW)
6914 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
6915 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
6916 if ((Imm & Mask) == Imm) {
6917 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
6918 if (Opc == ISD::AND)
6919 NewImm ^= APInt::getAllOnesValue(NewBW);
6920 uint64_t PtrOff = ShAmt / 8;
6921 // For big endian targets, we need to adjust the offset to the pointer to
6922 // load the correct bytes.
6923 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00006924 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00006925
6926 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006927 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Chris Lattner2392ae72010-04-15 04:48:01 +00006928 if (NewAlign < TLI.getTargetData()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00006929 return SDValue();
6930
Evan Cheng8b944d32009-05-28 00:35:15 +00006931 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
6932 Ptr.getValueType(), Ptr,
6933 DAG.getConstant(PtrOff, Ptr.getValueType()));
6934 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
6935 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006936 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006937 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006938 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006939 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
6940 DAG.getConstant(NewImm, NewVT));
6941 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
6942 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006943 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006944 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006945
6946 AddToWorkList(NewPtr.getNode());
6947 AddToWorkList(NewLD.getNode());
6948 AddToWorkList(NewVal.getNode());
6949 WorkListRemover DeadNodes(*this);
6950 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1),
6951 &DeadNodes);
6952 ++OpsNarrowed;
6953 return NewST;
6954 }
6955 }
6956
Evan Chengcdcecc02009-05-28 18:41:02 +00006957 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006958}
6959
Evan Cheng31959b12011-02-02 01:06:55 +00006960/// TransformFPLoadStorePair - For a given floating point load / store pair,
6961/// if the load value isn't used by any other operations, then consider
6962/// transforming the pair to integer load / store operations if the target
6963/// deems the transformation profitable.
6964SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
6965 StoreSDNode *ST = cast<StoreSDNode>(N);
6966 SDValue Chain = ST->getChain();
6967 SDValue Value = ST->getValue();
6968 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
6969 Value.hasOneUse() &&
6970 Chain == SDValue(Value.getNode(), 1)) {
6971 LoadSDNode *LD = cast<LoadSDNode>(Value);
6972 EVT VT = LD->getMemoryVT();
6973 if (!VT.isFloatingPoint() ||
6974 VT != ST->getMemoryVT() ||
6975 LD->isNonTemporal() ||
6976 ST->isNonTemporal() ||
6977 LD->getPointerInfo().getAddrSpace() != 0 ||
6978 ST->getPointerInfo().getAddrSpace() != 0)
6979 return SDValue();
6980
6981 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
6982 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
6983 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
6984 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
6985 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
6986 return SDValue();
6987
6988 unsigned LDAlign = LD->getAlignment();
6989 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006990 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Evan Cheng31959b12011-02-02 01:06:55 +00006991 unsigned ABIAlign = TLI.getTargetData()->getABITypeAlignment(IntVTTy);
6992 if (LDAlign < ABIAlign || STAlign < ABIAlign)
6993 return SDValue();
6994
6995 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
6996 LD->getChain(), LD->getBasePtr(),
6997 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006998 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00006999
7000 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
7001 NewLD, ST->getBasePtr(),
7002 ST->getPointerInfo(),
7003 false, false, STAlign);
7004
7005 AddToWorkList(NewLD.getNode());
7006 AddToWorkList(NewST.getNode());
7007 WorkListRemover DeadNodes(*this);
7008 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1),
7009 &DeadNodes);
7010 ++LdStFP2Int;
7011 return NewST;
7012 }
7013
7014 return SDValue();
7015}
7016
Dan Gohman475871a2008-07-27 21:46:04 +00007017SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00007018 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00007019 SDValue Chain = ST->getChain();
7020 SDValue Value = ST->getValue();
7021 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00007022
Evan Cheng59d5b682007-05-07 21:27:48 +00007023 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00007024 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007025 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007026 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00007027 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00007028 EVT SVT = Value.getOperand(0).getValueType();
Dan Gohman1ba519b2009-02-20 23:29:13 +00007029 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00007030 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007031 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00007032 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007033 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00007034 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00007035 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007036 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00007037 }
Owen Andersona34d9362011-04-14 17:30:49 +00007038
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007039 // Turn 'store undef, Ptr' -> nothing.
7040 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
7041 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007042
Nate Begeman2cbba892006-12-11 02:23:46 +00007043 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00007044 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007045 // NOTE: If the original store is volatile, this transform must not increase
7046 // the number of stores. For example, on x86-32 an f64 can be stored in one
7047 // processor operation but an i64 (which is not legal) requires two. So the
7048 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00007049 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00007050 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00007051 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007052 default: llvm_unreachable("Unknown FP type");
Owen Anderson825b72b2009-08-11 20:47:22 +00007053 case MVT::f80: // We don't do this for these yet.
7054 case MVT::f128:
7055 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00007056 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007057 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00007058 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007059 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00007060 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00007061 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00007062 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007063 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007064 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00007065 }
7066 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007067 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00007068 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007069 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007070 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00007071 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00007072 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00007073 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007074 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00007075 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007076 }
Owen Andersona34d9362011-04-14 17:30:49 +00007077
Chris Lattnerb3452ea2011-04-09 02:32:02 +00007078 if (!ST->isVolatile() &&
7079 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00007080 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00007081 // argument passing. Since this is so common, custom legalize the
7082 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00007083 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007084 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
7085 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00007086 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00007087
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007088 unsigned Alignment = ST->getAlignment();
7089 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00007090 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00007091
Bill Wendlingc144a572009-01-30 23:36:47 +00007092 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007093 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007094 isVolatile, isNonTemporal,
7095 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00007096 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00007097 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00007098 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00007099 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007100 Ptr, ST->getPointerInfo().getWithOffset(4),
7101 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00007102 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00007103 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00007104 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00007105 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007106
Chris Lattner62be1a72006-12-12 04:16:14 +00007107 break;
Evan Cheng25ece662006-12-11 17:25:19 +00007108 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007109 }
Nate Begeman2cbba892006-12-11 02:23:46 +00007110 }
7111
Evan Cheng255f20f2010-04-01 06:04:33 +00007112 // Try to infer better alignment information than the store already has.
7113 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00007114 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7115 if (Align > ST->getAlignment())
7116 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
7117 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
7118 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00007119 }
7120 }
7121
Evan Cheng31959b12011-02-02 01:06:55 +00007122 // Try transforming a pair floating point load / store ops to integer
7123 // load / store ops.
7124 SDValue NewST = TransformFPLoadStorePair(N);
7125 if (NewST.getNode())
7126 return NewST;
7127
Scott Michelfdc40a02009-02-17 22:15:04 +00007128 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00007129 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007130 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00007131
Jim Laskey6ff23e52006-10-04 16:53:27 +00007132 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00007133 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007134 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007135
7136 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007137 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007138 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007139 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007140 ST->getMemoryVT(), ST->isVolatile(),
7141 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007142 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00007143 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007144 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007145 ST->isVolatile(), ST->isNonTemporal(),
7146 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007147 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007148
Jim Laskey279f0532006-09-25 16:29:54 +00007149 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00007150 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007151 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00007152
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007153 // Make sure the new and old chains are cleaned up.
7154 AddToWorkList(Token.getNode());
7155
Jim Laskey274062c2006-10-13 23:32:28 +00007156 // Don't add users to work list.
7157 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007158 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00007159 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007160
Evan Cheng33dbedc2006-11-05 09:31:14 +00007161 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007162 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007163 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00007164
Chris Lattner3c872852007-12-29 06:26:16 +00007165 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00007166 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00007167 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00007168 // See if we can simplify the input to this truncstore with knowledge that
7169 // only the low bits are being used. For example:
7170 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00007171 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007172 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00007173 APInt::getLowBitsSet(
7174 Value.getValueType().getScalarType().getSizeInBits(),
7175 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00007176 AddToWorkList(Value.getNode());
7177 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00007178 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007179 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007180 ST->isVolatile(), ST->isNonTemporal(),
7181 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00007182
Chris Lattnere33544c2007-10-13 06:58:48 +00007183 // Otherwise, see if we can simplify the operation with
7184 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00007185 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00007186 APInt::getLowBitsSet(
7187 Value.getValueType().getScalarType().getSizeInBits(),
7188 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00007189 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00007190 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007191
Chris Lattner3c872852007-12-29 06:26:16 +00007192 // If this is a load followed by a store to the same location, then the store
7193 // is dead/noop.
7194 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007195 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007196 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00007197 // There can't be any side effects between the load and store, such as
7198 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00007199 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00007200 // The store is dead, remove it.
7201 return Chain;
7202 }
7203 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007204
Chris Lattnerddf89562008-01-17 19:59:44 +00007205 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
7206 // truncating store. We can do this even if this is already a truncstore.
7207 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00007208 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007209 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007210 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007211 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007212 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007213 ST->isVolatile(), ST->isNonTemporal(),
7214 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00007215 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007216
Evan Cheng8b944d32009-05-28 00:35:15 +00007217 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00007218}
7219
Dan Gohman475871a2008-07-27 21:46:04 +00007220SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
7221 SDValue InVec = N->getOperand(0);
7222 SDValue InVal = N->getOperand(1);
7223 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00007224 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00007225
Bob Wilson492fd452010-05-19 23:42:58 +00007226 // If the inserted element is an UNDEF, just use the input vector.
7227 if (InVal.getOpcode() == ISD::UNDEF)
7228 return InVec;
7229
Nadav Rotem609d54e2011-02-12 14:40:33 +00007230 EVT VT = InVec.getValueType();
7231
Owen Anderson95771af2011-02-25 21:41:48 +00007232 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00007233 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
7234 return SDValue();
7235
Eli Friedman9db817f2011-09-09 21:04:06 +00007236 // Check that we know which element is being inserted
7237 if (!isa<ConstantSDNode>(EltNo))
7238 return SDValue();
7239 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007240
Eli Friedman9db817f2011-09-09 21:04:06 +00007241 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
7242 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
7243 // vector elements.
7244 SmallVector<SDValue, 8> Ops;
7245 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
7246 Ops.append(InVec.getNode()->op_begin(),
7247 InVec.getNode()->op_end());
7248 } else if (InVec.getOpcode() == ISD::UNDEF) {
7249 unsigned NElts = VT.getVectorNumElements();
7250 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
7251 } else {
7252 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007253 }
Eli Friedman9db817f2011-09-09 21:04:06 +00007254
7255 // Insert the element
7256 if (Elt < Ops.size()) {
7257 // All the operands of BUILD_VECTOR must have the same type;
7258 // we enforce that here.
7259 EVT OpVT = Ops[0].getValueType();
7260 if (InVal.getValueType() != OpVT)
7261 InVal = OpVT.bitsGT(InVal.getValueType()) ?
7262 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
7263 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
7264 Ops[Elt] = InVal;
7265 }
7266
7267 // Return the new vector
7268 return DAG.getNode(ISD::BUILD_VECTOR, dl,
7269 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00007270}
7271
Dan Gohman475871a2008-07-27 21:46:04 +00007272SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007273 // (vextract (scalar_to_vector val, 0) -> val
7274 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00007275 EVT VT = InVec.getValueType();
7276 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007277
Duncan Sandsc356f332011-05-09 08:03:33 +00007278 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
7279 // Check if the result type doesn't match the inserted element type. A
7280 // SCALAR_TO_VECTOR may truncate the inserted element and the
7281 // EXTRACT_VECTOR_ELT may widen the extracted vector.
7282 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00007283 if (InOp.getValueType() != NVT) {
7284 assert(InOp.getValueType().isInteger() && NVT.isInteger());
7285 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
7286 }
7287 return InOp;
7288 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007289
Nadav Rotemba05c912012-01-17 21:44:01 +00007290 SDValue EltNo = N->getOperand(1);
7291 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
7292
7293 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
7294 // We only perform this optimization before the op legalization phase because
7295 // we may introduce new vector instructions which are not backed by TD patterns.
7296 // For example on AVX, extracting elements from a wide vector without using
7297 // extract_subvector.
7298 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
7299 && ConstEltNo && !LegalOperations) {
7300 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
7301 int NumElem = VT.getVectorNumElements();
7302 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
7303 // Find the new index to extract from.
7304 int OrigElt = SVOp->getMaskElt(Elt);
7305
7306 // Extracting an undef index is undef.
7307 if (OrigElt == -1)
7308 return DAG.getUNDEF(NVT);
7309
7310 // Select the right vector half to extract from.
7311 if (OrigElt < NumElem) {
7312 InVec = InVec->getOperand(0);
7313 } else {
7314 InVec = InVec->getOperand(1);
7315 OrigElt -= NumElem;
7316 }
7317
7318 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
7319 InVec, DAG.getConstant(OrigElt, MVT::i32));
7320 }
7321
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007322 // Perform only after legalization to ensure build_vector / vector_shuffle
7323 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00007324 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007325
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007326 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
7327 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
7328 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00007329
Nadav Rotemba05c912012-01-17 21:44:01 +00007330 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00007331 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00007332 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00007333 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00007334 EVT ExtVT = VT.getVectorElementType();
7335 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00007336
Evan Cheng84387ea2012-03-13 22:00:52 +00007337 // If the result of load has to be truncated, then it's not necessarily
7338 // profitable.
Evan Chenga03d3662012-03-13 22:16:11 +00007339 if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
Evan Cheng84387ea2012-03-13 22:00:52 +00007340 return SDValue();
7341
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007342 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007343 // Don't duplicate a load with other uses.
7344 if (!InVec.hasOneUse())
7345 return SDValue();
7346
Owen Andersone50ed302009-08-10 22:56:29 +00007347 EVT BCVT = InVec.getOperand(0).getValueType();
7348 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007349 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00007350 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
7351 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007352 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00007353 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007354 NewLoad = true;
7355 }
Evan Cheng513da432007-10-06 08:19:55 +00007356
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007357 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00007358 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00007359 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007360 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00007361 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00007362 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00007363 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007364 // Don't duplicate a load with other uses.
7365 if (!InVec.hasOneUse())
7366 return SDValue();
7367
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007368 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00007369 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007370 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
7371 // =>
7372 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00007373
Eli Friedmand6e25602011-12-26 22:49:32 +00007374 // Don't duplicate a load with other uses.
7375 if (!InVec.hasOneUse())
7376 return SDValue();
7377
Mon P Wanga60b5232008-12-11 00:26:16 +00007378 // If the bit convert changed the number of elements, it is unsafe
7379 // to examine the mask.
7380 if (BCNumEltsChanged)
7381 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00007382
7383 // Select the input vector, guarding against out of range extract vector.
7384 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00007385 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00007386 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
7387
Eli Friedmand6e25602011-12-26 22:49:32 +00007388 if (InVec.getOpcode() == ISD::BITCAST) {
7389 // Don't duplicate a load with other uses.
7390 if (!InVec.hasOneUse())
7391 return SDValue();
7392
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007393 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00007394 }
Gabor Greifba36cb52008-08-28 21:40:38 +00007395 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007396 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00007397 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00007398 }
7399 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007400
Eli Friedmand6e25602011-12-26 22:49:32 +00007401 // Make sure we found a non-volatile load and the extractelement is
7402 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00007403 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00007404 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007405
Eric Christopherd81f17a2010-11-03 20:44:42 +00007406 // If Idx was -1 above, Elt is going to be -1, so just return undef.
7407 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00007408 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00007409
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007410 unsigned Align = LN0->getAlignment();
7411 if (NewLoad) {
7412 // Check the resultant load doesn't need a higher alignment than the
7413 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00007414 unsigned NewAlign =
Eric Christopher503a64d2010-12-09 04:48:06 +00007415 TLI.getTargetData()
7416 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00007417
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007418 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007419 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00007420
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007421 Align = NewAlign;
7422 }
7423
Dan Gohman475871a2008-07-27 21:46:04 +00007424 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00007425 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007426
Eric Christopherd81f17a2010-11-03 20:44:42 +00007427 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00007428 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007429 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007430 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007431 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00007432 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007433 DAG.getConstant(PtrOff, PtrType));
7434 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007435
Eli Friedman4db4add2011-11-16 23:50:22 +00007436 // The replacement we need to do here is a little tricky: we need to
7437 // replace an extractelement of a load with a load.
7438 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00007439 // Note that this replacement assumes that the extractvalue is the only
7440 // use of the load; that's okay because we don't want to perform this
7441 // transformation in other cases anyway.
Evan Cheng84387ea2012-03-13 22:00:52 +00007442 SDValue Load;
Evan Chenga03d3662012-03-13 22:16:11 +00007443 SDValue Chain;
Evan Cheng84387ea2012-03-13 22:00:52 +00007444 if (NVT.bitsGT(LVT)) {
7445 // If the result type of vextract is wider than the load, then issue an
7446 // extending load instead.
7447 ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
7448 ? ISD::ZEXTLOAD : ISD::EXTLOAD;
7449 Load = DAG.getExtLoad(ExtType, N->getDebugLoc(), NVT, LN0->getChain(),
7450 NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
7451 LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007452 Chain = Load.getValue(1);
7453 } else {
Evan Cheng84387ea2012-03-13 22:00:52 +00007454 Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
7455 LN0->getPointerInfo().getWithOffset(PtrOff),
7456 LN0->isVolatile(), LN0->isNonTemporal(),
7457 LN0->isInvariant(), Align);
Evan Chenga03d3662012-03-13 22:16:11 +00007458 Chain = Load.getValue(1);
7459 if (NVT.bitsLT(LVT))
7460 Load = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), NVT, Load);
7461 else
7462 Load = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), NVT, Load);
7463 }
Eli Friedman4db4add2011-11-16 23:50:22 +00007464 WorkListRemover DeadNodes(*this);
7465 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
Evan Chenga03d3662012-03-13 22:16:11 +00007466 SDValue To[] = { Load, Chain };
Eli Friedman4db4add2011-11-16 23:50:22 +00007467 DAG.ReplaceAllUsesOfValuesWith(From, To, 2, &DeadNodes);
7468 // Since we're explcitly calling ReplaceAllUses, add the new node to the
7469 // worklist explicitly as well.
7470 AddToWorkList(Load.getNode());
Craig Topper0c9da212012-03-20 05:28:39 +00007471 AddUsersToWorkList(Load.getNode()); // Add users too
Eli Friedman4db4add2011-11-16 23:50:22 +00007472 // Make sure to revisit this node to clean it up; it will usually be dead.
7473 AddToWorkList(N);
7474 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00007475 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007476
Dan Gohman475871a2008-07-27 21:46:04 +00007477 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00007478}
Evan Cheng513da432007-10-06 08:19:55 +00007479
Dan Gohman475871a2008-07-27 21:46:04 +00007480SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007481 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007482 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007483 EVT VT = N->getValueType(0);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007484 // Check to see if this is a BUILD_VECTOR of a bunch of values
7485 // which come from any_extend or zero_extend nodes. If so, we can create
7486 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00007487 // optimizations. We do not handle sign-extend because we can't fill the sign
7488 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007489 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00007490 bool AllAnyExt = true;
7491 bool AllUndef = true;
7492 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007493 SDValue In = N->getOperand(i);
7494 // Ignore undef inputs.
7495 if (In.getOpcode() == ISD::UNDEF) continue;
Craig Topperd3b58892012-01-17 09:09:48 +00007496 AllUndef = false;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007497
7498 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
7499 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
7500
Nadav Rotemf47368b2011-10-31 20:08:25 +00007501 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007502 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00007503 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007504 break;
7505 }
7506
7507 // The input is a ZeroExt or AnyExt. Check the original type.
7508 EVT InTy = In.getOperand(0).getValueType();
7509
7510 // Check that all of the widened source types are the same.
7511 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007512 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007513 SourceType = InTy;
7514 else if (InTy != SourceType) {
7515 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007516 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007517 break;
7518 }
7519
7520 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00007521 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007522 }
7523
Craig Topperd3b58892012-01-17 09:09:48 +00007524 if (AllUndef)
7525 return DAG.getUNDEF(VT);
Nadav Rotemf47368b2011-10-31 20:08:25 +00007526
7527 // In order to have valid types, all of the inputs must be extended from the
7528 // same source type and all of the inputs must be any or zero extend.
7529 // Scalar sizes must be a power of two.
7530 EVT OutScalarTy = N->getValueType(0).getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007531 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00007532 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
7533 isPowerOf2_32(SourceType.getSizeInBits());
7534
7535 // We perform this optimization post type-legalization because
7536 // the type-legalizer often scalarizes integer-promoted vectors.
7537 // Performing this optimization before may create bit-casts which
7538 // will be type-legalized to complex code sequences.
7539 // We perform this optimization only before the operation legalizer because we
7540 // may introduce illegal operations.
Nadav Rotem6431ff92012-03-15 08:49:06 +00007541 // Create a new simpler BUILD_VECTOR sequence which other optimizations can
7542 // turn into a single shuffle instruction.
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007543 if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) &&
7544 ValidTypes) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007545 bool isLE = TLI.isLittleEndian();
Nadav Rotemf47368b2011-10-31 20:08:25 +00007546 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007547 assert(ElemRatio > 1 && "Invalid element size ratio");
Craig Topperd3b58892012-01-17 09:09:48 +00007548 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
Nadav Rotemf47368b2011-10-31 20:08:25 +00007549 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007550
7551 unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007552 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007553
7554 // Populate the new build_vector
7555 for (unsigned i=0; i < N->getNumOperands(); ++i) {
7556 SDValue Cast = N->getOperand(i);
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007557 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
7558 Cast.getOpcode() == ISD::ZERO_EXTEND ||
7559 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
Nadav Rotemb00418a2011-10-29 21:23:04 +00007560 SDValue In;
7561 if (Cast.getOpcode() == ISD::UNDEF)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007562 In = DAG.getUNDEF(SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007563 else
7564 In = Cast->getOperand(0);
7565 unsigned Index = isLE ? (i * ElemRatio) :
7566 (i * ElemRatio + (ElemRatio - 1));
7567
7568 assert(Index < Ops.size() && "Invalid index");
7569 Ops[Index] = In;
7570 }
7571
7572 // The type of the new BUILD_VECTOR node.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007573 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007574 assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() &&
7575 "Invalid vector size");
Nadav Rotemf47368b2011-10-31 20:08:25 +00007576 // Check if the new vector type is legal.
7577 if (!isTypeLegal(VecVT)) return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007578
7579 // Make the new BUILD_VECTOR.
7580 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7581 VecVT, &Ops[0], Ops.size());
7582
Nadav Rotem6431ff92012-03-15 08:49:06 +00007583 // The new BUILD_VECTOR node has the potential to be further optimized.
7584 AddToWorkList(BV.getNode());
Nadav Rotemb00418a2011-10-29 21:23:04 +00007585 // Bitcast to the desired type.
7586 return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV);
7587 }
Chris Lattnerca242442006-03-19 01:27:56 +00007588
Dan Gohman7f321562007-06-25 16:23:39 +00007589 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
7590 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
7591 // at most two distinct vectors, turn this into a shuffle node.
Duncan Sands00294ca2012-03-19 15:35:44 +00007592
7593 // May only combine to shuffle after legalize if shuffle is legal.
7594 if (LegalOperations &&
7595 !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
7596 return SDValue();
7597
Dan Gohman475871a2008-07-27 21:46:04 +00007598 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007599 for (unsigned i = 0; i != NumInScalars; ++i) {
7600 // Ignore undef inputs.
7601 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007602
Dan Gohman7f321562007-06-25 16:23:39 +00007603 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00007604 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00007605 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00007606 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007607 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007608 break;
7609 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007610
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007611 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00007612 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007613 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
7614 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007615
Gabor Greifba36cb52008-08-28 21:40:38 +00007616 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007617 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00007618 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007619 VecIn2 = ExtractedFromVec;
7620 } else {
7621 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007622 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007623 break;
7624 }
7625 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007626
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007627 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00007628 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007629 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007630 for (unsigned i = 0; i != NumInScalars; ++i) {
7631 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007632 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007633 continue;
7634 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007635
Rafael Espindola15684b22009-04-24 12:40:33 +00007636 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00007637 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00007638 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007639 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00007640 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
7641 if (ExtIndex > VT.getVectorNumElements())
7642 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007643
Nate Begeman5a5ca152009-04-29 05:20:52 +00007644 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007645 continue;
7646 }
7647
7648 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00007649 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007650 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007651 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007652
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007653 // We can't generate a shuffle node with mismatched input and output types.
7654 // Attempt to transform a single input vector to the correct type.
7655 if ((VT != VecIn1.getValueType())) {
7656 // We don't support shuffeling between TWO values of different types.
7657 if (VecIn2.getNode() != 0)
7658 return SDValue();
7659
7660 // We only support widening of vectors which are half the size of the
7661 // output registers. For example XMM->YMM widening on X86 with AVX.
7662 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
7663 return SDValue();
7664
7665 // Widen the input vector by adding undef values.
7666 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
7667 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
7668 }
7669
7670 // If VecIn2 is unused then change it to undef.
7671 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
7672
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007673 // Check that we were able to transform all incoming values to the same type.
7674 if (VecIn2.getValueType() != VecIn1.getValueType() ||
7675 VecIn1.getValueType() != VT)
7676 return SDValue();
7677
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007678 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007679 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00007680 return SDValue();
7681
Dan Gohman7f321562007-06-25 16:23:39 +00007682 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00007683 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007684 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007685 Ops[1] = VecIn2;
Nate Begeman9008ca62009-04-27 18:41:29 +00007686 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007687 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007688
Dan Gohman475871a2008-07-27 21:46:04 +00007689 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00007690}
7691
Dan Gohman475871a2008-07-27 21:46:04 +00007692SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007693 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
7694 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
7695 // inputs come from at most two distinct vectors, turn this into a shuffle
7696 // node.
7697
7698 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00007699 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00007700 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007701
Dan Gohman475871a2008-07-27 21:46:04 +00007702 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007703}
7704
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007705SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
7706 EVT NVT = N->getValueType(0);
7707 SDValue V = N->getOperand(0);
7708
7709 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
7710 // Handle only simple case where vector being inserted and vector
7711 // being extracted are of same type, and are half size of larger vectors.
7712 EVT BigVT = V->getOperand(0).getValueType();
7713 EVT SmallVT = V->getOperand(1).getValueType();
7714 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
7715 return SDValue();
7716
Eli Friedman26323442011-12-07 00:11:56 +00007717 // Only handle cases where both indexes are constants with the same type.
7718 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
7719 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007720
Eli Friedman26323442011-12-07 00:11:56 +00007721 if (InsIdx && ExtIdx &&
7722 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
7723 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
7724 // Combine:
7725 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
7726 // Into:
7727 // indices are equal => V1
7728 // otherwise => (extract_subvec V1, ExtIdx)
7729 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
7730 return V->getOperand(1);
7731 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
7732 V->getOperand(0), N->getOperand(1));
7733 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007734 }
7735
7736 return SDValue();
7737}
7738
Dan Gohman475871a2008-07-27 21:46:04 +00007739SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007740 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007741 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007742
Mon P Wangaeb06d22008-11-10 04:46:22 +00007743 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00007744 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007745
Craig Topperae1bec52012-04-09 05:16:56 +00007746 assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
Mon P Wangaeb06d22008-11-10 04:46:22 +00007747
Craig Topper481b79c2012-01-04 08:07:43 +00007748 // Canonicalize shuffle undef, undef -> undef
7749 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
7750 return DAG.getUNDEF(VT);
7751
7752 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7753
7754 // Canonicalize shuffle v, v -> v, undef
7755 if (N0 == N1) {
7756 SmallVector<int, 8> NewMask;
7757 for (unsigned i = 0; i != NumElts; ++i) {
7758 int Idx = SVN->getMaskElt(i);
7759 if (Idx >= (int)NumElts) Idx -= NumElts;
7760 NewMask.push_back(Idx);
7761 }
7762 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
7763 &NewMask[0]);
7764 }
7765
7766 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
7767 if (N0.getOpcode() == ISD::UNDEF) {
7768 SmallVector<int, 8> NewMask;
7769 for (unsigned i = 0; i != NumElts; ++i) {
7770 int Idx = SVN->getMaskElt(i);
Craig Topper4b206bd2012-04-09 05:55:33 +00007771 if (Idx >= 0) {
7772 if (Idx < (int)NumElts)
7773 Idx += NumElts;
7774 else
7775 Idx -= NumElts;
7776 }
7777 NewMask.push_back(Idx);
Craig Topper481b79c2012-01-04 08:07:43 +00007778 }
7779 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
7780 &NewMask[0]);
7781 }
7782
7783 // Remove references to rhs if it is undef
7784 if (N1.getOpcode() == ISD::UNDEF) {
7785 bool Changed = false;
7786 SmallVector<int, 8> NewMask;
7787 for (unsigned i = 0; i != NumElts; ++i) {
7788 int Idx = SVN->getMaskElt(i);
7789 if (Idx >= (int)NumElts) {
7790 Idx = -1;
7791 Changed = true;
7792 }
7793 NewMask.push_back(Idx);
7794 }
7795 if (Changed)
7796 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
7797 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00007798
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007799 // If it is a splat, check if the argument vector is another splat or a
7800 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007801 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007802 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00007803
Dan Gohman7f321562007-06-25 16:23:39 +00007804 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00007805 // not the number of vector elements, look through it. Be careful not to
7806 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007807 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00007808 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00007809 if (ConvInput.getValueType().isVector() &&
7810 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00007811 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00007812 }
7813
Dan Gohman7f321562007-06-25 16:23:39 +00007814 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007815 assert(V->getNumOperands() == NumElts &&
7816 "BUILD_VECTOR has wrong number of operands");
7817 SDValue Base;
7818 bool AllSame = true;
7819 for (unsigned i = 0; i != NumElts; ++i) {
7820 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
7821 Base = V->getOperand(i);
7822 break;
Evan Cheng917ec982006-07-21 08:25:53 +00007823 }
Evan Cheng917ec982006-07-21 08:25:53 +00007824 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007825 // Splat of <u, u, u, u>, return <u, u, u, u>
7826 if (!Base.getNode())
7827 return N0;
7828 for (unsigned i = 0; i != NumElts; ++i) {
7829 if (V->getOperand(i) != Base) {
7830 AllSame = false;
7831 break;
7832 }
7833 }
7834 // Splat of <x, x, x, x>, return <x, x, x, x>
7835 if (AllSame)
7836 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00007837 }
7838 }
Nadav Rotem4ac90812012-04-01 19:31:22 +00007839
7840 // If this shuffle node is simply a swizzle of another shuffle node,
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007841 // and it reverses the swizzle of the previous shuffle then we can
7842 // optimize shuffle(shuffle(x, undef), undef) -> x.
Nadav Rotem4ac90812012-04-01 19:31:22 +00007843 if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
7844 N1.getOpcode() == ISD::UNDEF) {
7845
Nadav Rotem4ac90812012-04-01 19:31:22 +00007846 ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
7847
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007848 // Shuffle nodes can only reverse shuffles with a single non-undef value.
7849 if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
7850 return SDValue();
7851
Craig Topperae1bec52012-04-09 05:16:56 +00007852 // The incoming shuffle must be of the same type as the result of the
7853 // current shuffle.
7854 assert(OtherSV->getOperand(0).getValueType() == VT &&
7855 "Shuffle types don't match");
Nadav Rotem4ac90812012-04-01 19:31:22 +00007856
7857 for (unsigned i = 0; i != NumElts; ++i) {
7858 int Idx = SVN->getMaskElt(i);
Craig Topperae1bec52012-04-09 05:16:56 +00007859 assert(Idx < (int)NumElts && "Index references undef operand");
Nadav Rotem4ac90812012-04-01 19:31:22 +00007860 // Next, this index comes from the first value, which is the incoming
7861 // shuffle. Adopt the incoming index.
7862 if (Idx >= 0)
7863 Idx = OtherSV->getMaskElt(Idx);
7864
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007865 // The combined shuffle must map each index to itself.
Craig Topperae1bec52012-04-09 05:16:56 +00007866 if (Idx >= 0 && (unsigned)Idx != i)
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007867 return SDValue();
Nadav Rotem4ac90812012-04-01 19:31:22 +00007868 }
Nadav Rotemd16c8d02012-04-07 21:19:08 +00007869
7870 return OtherSV->getOperand(0);
Nadav Rotem4ac90812012-04-01 19:31:22 +00007871 }
7872
Dan Gohman475871a2008-07-27 21:46:04 +00007873 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007874}
7875
Jim Grosbach9a526492010-06-23 16:07:42 +00007876SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
7877 if (!TLI.getShouldFoldAtomicFences())
7878 return SDValue();
7879
7880 SDValue atomic = N->getOperand(0);
7881 switch (atomic.getOpcode()) {
7882 case ISD::ATOMIC_CMP_SWAP:
7883 case ISD::ATOMIC_SWAP:
7884 case ISD::ATOMIC_LOAD_ADD:
7885 case ISD::ATOMIC_LOAD_SUB:
7886 case ISD::ATOMIC_LOAD_AND:
7887 case ISD::ATOMIC_LOAD_OR:
7888 case ISD::ATOMIC_LOAD_XOR:
7889 case ISD::ATOMIC_LOAD_NAND:
7890 case ISD::ATOMIC_LOAD_MIN:
7891 case ISD::ATOMIC_LOAD_MAX:
7892 case ISD::ATOMIC_LOAD_UMIN:
7893 case ISD::ATOMIC_LOAD_UMAX:
7894 break;
7895 default:
7896 return SDValue();
7897 }
7898
7899 SDValue fence = atomic.getOperand(0);
7900 if (fence.getOpcode() != ISD::MEMBARRIER)
7901 return SDValue();
7902
7903 switch (atomic.getOpcode()) {
7904 case ISD::ATOMIC_CMP_SWAP:
7905 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7906 fence.getOperand(0),
7907 atomic.getOperand(1), atomic.getOperand(2),
7908 atomic.getOperand(3)), atomic.getResNo());
7909 case ISD::ATOMIC_SWAP:
7910 case ISD::ATOMIC_LOAD_ADD:
7911 case ISD::ATOMIC_LOAD_SUB:
7912 case ISD::ATOMIC_LOAD_AND:
7913 case ISD::ATOMIC_LOAD_OR:
7914 case ISD::ATOMIC_LOAD_XOR:
7915 case ISD::ATOMIC_LOAD_NAND:
7916 case ISD::ATOMIC_LOAD_MIN:
7917 case ISD::ATOMIC_LOAD_MAX:
7918 case ISD::ATOMIC_LOAD_UMIN:
7919 case ISD::ATOMIC_LOAD_UMAX:
7920 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7921 fence.getOperand(0),
7922 atomic.getOperand(1), atomic.getOperand(2)),
7923 atomic.getResNo());
7924 default:
7925 return SDValue();
7926 }
7927}
7928
Evan Cheng44f1f092006-04-20 08:56:16 +00007929/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00007930/// an AND to a vector_shuffle with the destination vector and a zero vector.
7931/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00007932/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00007933SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007934 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007935 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007936 SDValue LHS = N->getOperand(0);
7937 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00007938 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007939 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00007940 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007941 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007942 SmallVector<int, 8> Indices;
7943 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00007944 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007945 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007946 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00007947 return SDValue();
Craig Topperb7135e52012-04-09 05:59:53 +00007948
7949 if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007950 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007951 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007952 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00007953 else
Dan Gohman475871a2008-07-27 21:46:04 +00007954 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007955 }
7956
7957 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00007958 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007959 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007960 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007961
Dan Gohman7f321562007-06-25 16:23:39 +00007962 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00007963 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007964 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00007965 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00007966 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7967 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007968 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00007969 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007970 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00007971 }
7972 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007973
Dan Gohman475871a2008-07-27 21:46:04 +00007974 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007975}
7976
Dan Gohman7f321562007-06-25 16:23:39 +00007977/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00007978SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007979 // After legalize, the target may be depending on adds and other
7980 // binary ops to provide legal ways to construct constants or other
7981 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00007982 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007983
Bob Wilsond7273432010-12-17 23:06:49 +00007984 assert(N->getValueType(0).isVector() &&
7985 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00007986
Dan Gohman475871a2008-07-27 21:46:04 +00007987 SDValue LHS = N->getOperand(0);
7988 SDValue RHS = N->getOperand(1);
7989 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00007990 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00007991
Dan Gohman7f321562007-06-25 16:23:39 +00007992 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00007993 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00007994 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00007995 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00007996 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00007997 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007998 SDValue LHSOp = LHS.getOperand(i);
7999 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00008000 // If these two elements can't be folded, bail out.
8001 if ((LHSOp.getOpcode() != ISD::UNDEF &&
8002 LHSOp.getOpcode() != ISD::Constant &&
8003 LHSOp.getOpcode() != ISD::ConstantFP) ||
8004 (RHSOp.getOpcode() != ISD::UNDEF &&
8005 RHSOp.getOpcode() != ISD::Constant &&
8006 RHSOp.getOpcode() != ISD::ConstantFP))
8007 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008008
Evan Cheng7b336a82006-05-31 06:08:35 +00008009 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00008010 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
8011 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00008012 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008013 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00008014 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00008015 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00008016 break;
8017 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008018
Bob Wilsond7273432010-12-17 23:06:49 +00008019 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00008020 EVT RVT = RHSOp.getValueType();
8021 if (RVT != VT) {
8022 // Integer BUILD_VECTOR operands may have types larger than the element
8023 // size (e.g., when the element type is not legal). Prior to type
8024 // legalization, the types may not match between the two BUILD_VECTORS.
8025 // Truncate one of the operands to make them match.
8026 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
8027 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
8028 } else {
8029 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
8030 VT = RVT;
8031 }
8032 }
Bob Wilsond7273432010-12-17 23:06:49 +00008033 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00008034 LHSOp, RHSOp);
8035 if (FoldOp.getOpcode() != ISD::UNDEF &&
8036 FoldOp.getOpcode() != ISD::Constant &&
8037 FoldOp.getOpcode() != ISD::ConstantFP)
8038 break;
8039 Ops.push_back(FoldOp);
8040 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00008041 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008042
Bob Wilsond7273432010-12-17 23:06:49 +00008043 if (Ops.size() == LHS.getNumOperands())
8044 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
8045 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00008046 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008047
Dan Gohman475871a2008-07-27 21:46:04 +00008048 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00008049}
8050
Bill Wendling836ca7d2009-01-30 23:59:18 +00008051SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
8052 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00008053 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008054
Bill Wendling836ca7d2009-01-30 23:59:18 +00008055 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00008056 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008057
Nate Begemanf845b452005-10-08 00:29:44 +00008058 // If we got a simplified select_cc node back from SimplifySelectCC, then
8059 // break it down into a new SETCC node, and a new SELECT node, and then return
8060 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00008061 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008062 // Check to see if we got a select_cc back (to turn into setcc/select).
8063 // Otherwise, just return whatever node we got back, like fabs.
8064 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008065 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
8066 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008067 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008068 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00008069 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008070 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
8071 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00008072 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008073
Nate Begemanf845b452005-10-08 00:29:44 +00008074 return SCC;
8075 }
Dan Gohman475871a2008-07-27 21:46:04 +00008076 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008077}
8078
Chris Lattner40c62d52005-10-18 06:04:22 +00008079/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
8080/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00008081/// select. Callers of this should assume that TheSelect is deleted if this
8082/// returns true. As such, they should return the appropriate thing (e.g. the
8083/// node) back to the top-level of the DAG combiner loop to avoid it being
8084/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00008085bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00008086 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008087
Nadav Rotemf94fdb62011-02-11 19:57:47 +00008088 // Cannot simplify select with vector condition
8089 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
8090
Chris Lattner40c62d52005-10-18 06:04:22 +00008091 // If this is a select from two identical things, try to pull the operation
8092 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00008093 if (LHS.getOpcode() != RHS.getOpcode() ||
8094 !LHS.hasOneUse() || !RHS.hasOneUse())
8095 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008096
Chris Lattner18061612010-09-21 15:46:59 +00008097 // If this is a load and the token chain is identical, replace the select
8098 // of two loads with a load through a select of the address to load from.
8099 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
8100 // constants have been dropped into the constant pool.
8101 if (LHS.getOpcode() == ISD::LOAD) {
8102 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
8103 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008104
Chris Lattner18061612010-09-21 15:46:59 +00008105 // Token chains must be identical.
8106 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00008107 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00008108 LLD->isVolatile() || RLD->isVolatile() ||
8109 // If this is an EXTLOAD, the VT's must match.
8110 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00008111 // If this is an EXTLOAD, the kind of extension must match.
8112 (LLD->getExtensionType() != RLD->getExtensionType() &&
8113 // The only exception is if one of the extensions is anyext.
8114 LLD->getExtensionType() != ISD::EXTLOAD &&
8115 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00008116 // FIXME: this discards src value information. This is
8117 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00008118 // both potential memory locations. Since we are discarding
8119 // src value info, don't do the transformation if the memory
8120 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00008121 LLD->getPointerInfo().getAddrSpace() != 0 ||
8122 RLD->getPointerInfo().getAddrSpace() != 0)
8123 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008124
Chris Lattnerf1658062010-09-21 15:58:55 +00008125 // Check that the select condition doesn't reach either load. If so,
8126 // folding this will induce a cycle into the DAG. If not, this is safe to
8127 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00008128 SDValue Addr;
8129 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00008130 SDNode *CondNode = TheSelect->getOperand(0).getNode();
8131 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
8132 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
8133 return false;
8134 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
8135 LLD->getBasePtr().getValueType(),
8136 TheSelect->getOperand(0), LLD->getBasePtr(),
8137 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00008138 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00008139 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
8140 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
8141
8142 if ((LLD->hasAnyUseOfValue(1) &&
8143 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
Chris Lattner77d95212012-03-27 16:27:21 +00008144 (RLD->hasAnyUseOfValue(1) &&
8145 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
Chris Lattnerf1658062010-09-21 15:58:55 +00008146 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008147
Chris Lattnerf1658062010-09-21 15:58:55 +00008148 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
8149 LLD->getBasePtr().getValueType(),
8150 TheSelect->getOperand(0),
8151 TheSelect->getOperand(1),
8152 LLD->getBasePtr(), RLD->getBasePtr(),
8153 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00008154 }
8155
Chris Lattnerf1658062010-09-21 15:58:55 +00008156 SDValue Load;
8157 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
8158 Load = DAG.getLoad(TheSelect->getValueType(0),
8159 TheSelect->getDebugLoc(),
8160 // FIXME: Discards pointer info.
8161 LLD->getChain(), Addr, MachinePointerInfo(),
8162 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008163 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00008164 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00008165 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
8166 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00008167 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00008168 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00008169 // FIXME: Discards pointer info.
8170 LLD->getChain(), Addr, MachinePointerInfo(),
8171 LLD->getMemoryVT(), LLD->isVolatile(),
8172 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00008173 }
Chris Lattnerf1658062010-09-21 15:58:55 +00008174
8175 // Users of the select now use the result of the load.
8176 CombineTo(TheSelect, Load);
8177
8178 // Users of the old loads now use the new load's chain. We know the
8179 // old-load value is dead now.
8180 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
8181 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
8182 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00008183 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008184
Chris Lattner40c62d52005-10-18 06:04:22 +00008185 return false;
8186}
8187
Chris Lattner600fec32009-03-11 05:08:08 +00008188/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
8189/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00008190SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00008191 SDValue N2, SDValue N3,
8192 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00008193 // (x ? y : y) -> y.
8194 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008195
Owen Andersone50ed302009-08-10 22:56:29 +00008196 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00008197 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
8198 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
8199 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008200
8201 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00008202 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008203 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00008204 if (SCC.getNode()) AddToWorkList(SCC.getNode());
8205 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008206
8207 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00008208 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008209 return N2;
8210 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00008211 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008212 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00008213
Nate Begemanf845b452005-10-08 00:29:44 +00008214 // Check to see if we can simplify the select into an fabs node
8215 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
8216 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00008217 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008218 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
8219 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
8220 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
8221 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008222 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008223
Nate Begemanf845b452005-10-08 00:29:44 +00008224 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
8225 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
8226 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
8227 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008228 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00008229 }
8230 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008231
Chris Lattner600fec32009-03-11 05:08:08 +00008232 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
8233 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
8234 // in it. This is a win when the constant is not otherwise available because
8235 // it replaces two constant pool loads with one. We only do this if the FP
8236 // type is known to be legal, because if it isn't, then we are before legalize
8237 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00008238 // messing with soft float) and if the ConstantFP is not legal, because if
8239 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00008240 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
8241 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
8242 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00008243 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
8244 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00008245 // If both constants have multiple uses, then we won't need to do an
8246 // extra load, they are likely around in registers for other users.
8247 (TV->hasOneUse() || FV->hasOneUse())) {
8248 Constant *Elts[] = {
8249 const_cast<ConstantFP*>(FV->getConstantFPValue()),
8250 const_cast<ConstantFP*>(TV->getConstantFPValue())
8251 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008252 Type *FPTy = Elts[0]->getType();
Chris Lattner600fec32009-03-11 05:08:08 +00008253 const TargetData &TD = *TLI.getTargetData();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008254
Chris Lattner600fec32009-03-11 05:08:08 +00008255 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00008256 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00008257 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
8258 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00008259 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00008260
8261 // Get the offsets to the 0 and 1 element of the array so that we can
8262 // select between them.
8263 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00008264 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00008265 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008266
Chris Lattner600fec32009-03-11 05:08:08 +00008267 SDValue Cond = DAG.getSetCC(DL,
8268 TLI.getSetCCResultType(N0.getValueType()),
8269 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00008270 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008271 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
8272 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00008273 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008274 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
8275 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00008276 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008277 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00008278 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008279 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00008280
8281 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008282 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008283
Nate Begemanf845b452005-10-08 00:29:44 +00008284 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00008285 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00008286 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00008287 (N1C->isNullValue() || // (a < 0) ? b : 0
8288 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00008289 EVT XType = N0.getValueType();
8290 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00008291 if (XType.bitsGE(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00008292 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00008293 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00008294 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
8295 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008296 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00008297 SDValue ShCt = DAG.getConstant(ShCtV,
8298 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00008299 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008300 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00008301 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008302
Duncan Sands8e4eb092008-06-08 20:54:56 +00008303 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008304 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008305 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008306 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008307
8308 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008309 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008310
Bill Wendling9729c5a2009-01-31 03:12:48 +00008311 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008312 XType, N0,
8313 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008314 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00008315 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008316
Duncan Sands8e4eb092008-06-08 20:54:56 +00008317 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008318 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008319 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008320 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008321
8322 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008323 }
8324 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008325
Owen Andersoned1088a2010-09-22 22:58:22 +00008326 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
8327 // where y is has a single bit set.
8328 // A plaintext description would be, we can turn the SELECT_CC into an AND
8329 // when the condition can be materialized as an all-ones register. Any
8330 // single bit-test can be materialized as an all-ones register with
8331 // shift-left and shift-right-arith.
8332 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
8333 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008334 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00008335 N2C && N2C->isNullValue()) {
8336 SDValue AndLHS = N0->getOperand(0);
8337 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
8338 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
8339 // Shift the tested bit over the sign bit.
8340 APInt AndMask = ConstAndRHS->getAPIntValue();
8341 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008342 DAG.getConstant(AndMask.countLeadingZeros(),
8343 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008344 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008345
Owen Andersoned1088a2010-09-22 22:58:22 +00008346 // Now arithmetic right shift it all the way over, so the result is either
8347 // all-ones, or zero.
8348 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008349 DAG.getConstant(AndMask.getBitWidth()-1,
8350 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008351 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008352
Owen Andersoned1088a2010-09-22 22:58:22 +00008353 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
8354 }
8355 }
8356
Nate Begeman07ed4172005-10-10 21:26:48 +00008357 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00008358 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00008359 TLI.getBooleanContents(N0.getValueType().isVector()) ==
8360 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008361
Chris Lattner1eba01e2007-04-11 06:50:51 +00008362 // If the caller doesn't want us to simplify this into a zext of a compare,
8363 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00008364 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00008365 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008366
Nate Begeman07ed4172005-10-10 21:26:48 +00008367 // Get a SetCC of the condition
8368 // FIXME: Should probably make sure that setcc is legal if we ever have a
8369 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00008370 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00008371 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00008372 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008373 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00008374 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00008375 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00008376 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00008377 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00008378 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008379 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008380 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00008381 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00008382 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008383 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008384 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008385
Gabor Greifba36cb52008-08-28 21:40:38 +00008386 AddToWorkList(SCC.getNode());
8387 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00008388
Dan Gohman002e5d02008-03-13 22:13:53 +00008389 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00008390 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008391
Nate Begeman07ed4172005-10-10 21:26:48 +00008392 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00008393 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00008394 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00008395 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00008396 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008397
Nate Begemanf845b452005-10-08 00:29:44 +00008398 // Check to see if this is the equivalent of setcc
8399 // FIXME: Turn all of these into setcc if setcc if setcc is legal
8400 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00008401 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00008402 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00008403 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00008404 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008405 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00008406 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008407 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00008408 return Res;
8409 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008410
Bill Wendling836ca7d2009-01-30 23:59:18 +00008411 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00008412 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008413 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00008414 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008415 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008416 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008417 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00008418 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00008419 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008420 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00008421 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008422 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
8423 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00008424 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00008425 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00008426 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00008427 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008428 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00008429 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008430 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00008431 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008432 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00008433 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008434 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00008435 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00008436 }
8437 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008438
Benjamin Kramercde51102010-07-08 12:09:56 +00008439 // Check to see if this is an integer abs.
8440 // select_cc setg[te] X, 0, X, -X ->
8441 // select_cc setgt X, -1, X, -X ->
8442 // select_cc setl[te] X, 0, -X, X ->
8443 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00008444 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00008445 if (N1C) {
8446 ConstantSDNode *SubC = NULL;
8447 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
8448 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
8449 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
8450 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
8451 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
8452 (N1C->isOne() && CC == ISD::SETLT)) &&
8453 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
8454 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
8455
Owen Andersone50ed302009-08-10 22:56:29 +00008456 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00008457 if (SubC && SubC->isNullValue() && XType.isInteger()) {
8458 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
8459 N0,
8460 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008461 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00008462 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
8463 XType, N0, Shift);
8464 AddToWorkList(Shift.getNode());
8465 AddToWorkList(Add.getNode());
8466 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00008467 }
8468 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008469
Dan Gohman475871a2008-07-27 21:46:04 +00008470 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008471}
8472
Evan Chengfa1eb272007-02-08 22:13:59 +00008473/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00008474SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00008475 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008476 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008477 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00008478 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008479 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00008480}
8481
Nate Begeman69575232005-10-20 02:15:44 +00008482/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
8483/// return a DAG expression to select that will generate the same value by
8484/// multiplying by a magic number. See:
8485/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008486SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008487 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008488 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008489
Andrew Lenharth232c9102006-06-12 16:07:18 +00008490 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008491 ii != ee; ++ii)
8492 AddToWorkList(*ii);
8493 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008494}
8495
8496/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
8497/// return a DAG expression to select that will generate the same value by
8498/// multiplying by a magic number. See:
8499/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008500SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008501 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008502 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00008503
Andrew Lenharth232c9102006-06-12 16:07:18 +00008504 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008505 ii != ee; ++ii)
8506 AddToWorkList(*ii);
8507 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008508}
8509
Nate Begemancc66cdd2009-09-25 06:05:26 +00008510/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00008511// to alias with anything but itself. Provides base object and offset as
8512// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008513static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Dan Gohman46510a72010-04-15 01:51:59 +00008514 const GlobalValue *&GV, void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00008515 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008516 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008517
Jim Laskey71382342006-10-07 23:37:56 +00008518 // If it's an adding a simple constant then integrate the offset.
8519 if (Base.getOpcode() == ISD::ADD) {
8520 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
8521 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008522 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00008523 }
8524 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008525
Nate Begemancc66cdd2009-09-25 06:05:26 +00008526 // Return the underlying GlobalValue, and update the Offset. Return false
8527 // for GlobalAddressSDNode since the same GlobalAddress may be represented
8528 // by multiple nodes with different offsets.
8529 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
8530 GV = G->getGlobal();
8531 Offset += G->getOffset();
8532 return false;
8533 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008534
Nate Begemancc66cdd2009-09-25 06:05:26 +00008535 // Return the underlying Constant value, and update the Offset. Return false
8536 // for ConstantSDNodes since the same constant pool entry may be represented
8537 // by multiple nodes with different offsets.
8538 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
8539 CV = C->isMachineConstantPoolEntry() ? (void *)C->getMachineCPVal()
8540 : (void *)C->getConstVal();
8541 Offset += C->getOffset();
8542 return false;
8543 }
Jim Laskey71382342006-10-07 23:37:56 +00008544 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008545 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00008546}
8547
8548/// isAlias - Return true if there is any possibility that the two addresses
8549/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00008550bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00008551 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008552 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008553 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00008554 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008555 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008556 unsigned SrcValueAlign2,
8557 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00008558 // If they are the same then they must be aliases.
8559 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00008560
Jim Laskey71382342006-10-07 23:37:56 +00008561 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00008562 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00008563 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00008564 const GlobalValue *GV1, *GV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00008565 void *CV1, *CV2;
8566 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
8567 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00008568
Nate Begemancc66cdd2009-09-25 06:05:26 +00008569 // If they have a same base address then check to see if they overlap.
8570 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008571 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008572
Owen Anderson4a9f1502010-09-20 20:39:59 +00008573 // It is possible for different frame indices to alias each other, mostly
8574 // when tail call optimization reuses return address slots for arguments.
8575 // To catch this case, look up the actual index of frame indices to compute
8576 // the real alias relationship.
8577 if (isFrameIndex1 && isFrameIndex2) {
8578 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8579 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
8580 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
8581 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
8582 }
8583
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008584 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00008585 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008586 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
8587 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00008588
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008589 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
8590 // compared to the size and offset of the access, we may be able to prove they
8591 // do not alias. This check is conservative for now to catch cases created by
8592 // splitting vector types.
8593 if ((SrcValueAlign1 == SrcValueAlign2) &&
8594 (SrcValueOffset1 != SrcValueOffset2) &&
8595 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
8596 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
8597 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008598
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008599 // There is no overlap between these relatively aligned accesses of similar
8600 // size, return no alias.
8601 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
8602 return false;
8603 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008604
Jim Laskey07a27092006-10-18 19:08:31 +00008605 if (CombinerGlobalAA) {
8606 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00008607 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
8608 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
8609 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00008610 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008611 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
8612 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00008613 if (AAResult == AliasAnalysis::NoAlias)
8614 return false;
8615 }
Jim Laskey096c22e2006-10-18 12:29:57 +00008616
8617 // Otherwise we have to assume they alias.
8618 return true;
Jim Laskey71382342006-10-07 23:37:56 +00008619}
8620
8621/// FindAliasInfo - Extracts the relevant alias information from the memory
8622/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00008623bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00008624 SDValue &Ptr, int64_t &Size,
8625 const Value *&SrcValue,
8626 int &SrcValueOffset,
8627 unsigned &SrcValueAlign,
8628 const MDNode *&TBAAInfo) const {
8629 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
8630
8631 Ptr = LS->getBasePtr();
8632 Size = LS->getMemoryVT().getSizeInBits() >> 3;
8633 SrcValue = LS->getSrcValue();
8634 SrcValueOffset = LS->getSrcValueOffset();
8635 SrcValueAlign = LS->getOriginalAlignment();
8636 TBAAInfo = LS->getTBAAInfo();
8637 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00008638}
8639
Jim Laskey6ff23e52006-10-04 16:53:27 +00008640/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
8641/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00008642void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
8643 SmallVector<SDValue, 8> &Aliases) {
8644 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008645 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00008646
Jim Laskey279f0532006-09-25 16:29:54 +00008647 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00008648 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008649 int64_t Size;
8650 const Value *SrcValue;
8651 int SrcValueOffset;
8652 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008653 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008654 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008655 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00008656
Jim Laskey6ff23e52006-10-04 16:53:27 +00008657 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00008658 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00008659 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008660
Jim Laskeybc588b82006-10-05 15:07:25 +00008661 // Look at each chain and determine if it is an alias. If so, add it to the
8662 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00008663 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00008664 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008665 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00008666 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008667
8668 // For TokenFactor nodes, look at each operand and only continue up the
8669 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00008670 // find more and revert to original chain since the xform is unlikely to be
8671 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008672 //
8673 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00008674 // chain we found before we hit a tokenfactor rather than the original
8675 // chain.
8676 if (Depth > 6 || Aliases.size() == 2) {
8677 Aliases.clear();
8678 Aliases.push_back(OriginalChain);
8679 break;
8680 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008681
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008682 // Don't bother if we've been before.
8683 if (!Visited.insert(Chain.getNode()))
8684 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008685
Jim Laskeybc588b82006-10-05 15:07:25 +00008686 switch (Chain.getOpcode()) {
8687 case ISD::EntryToken:
8688 // Entry token is ideal chain operand, but handled in FindBetterChain.
8689 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008690
Jim Laskeybc588b82006-10-05 15:07:25 +00008691 case ISD::LOAD:
8692 case ISD::STORE: {
8693 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00008694 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008695 int64_t OpSize;
8696 const Value *OpSrcValue;
8697 int OpSrcValueOffset;
8698 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008699 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00008700 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008701 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008702 OpSrcValueAlign,
8703 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00008704
Jim Laskeybc588b82006-10-05 15:07:25 +00008705 // If chain is alias then stop here.
8706 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008707 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008708 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008709 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008710 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00008711 Aliases.push_back(Chain);
8712 } else {
8713 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00008714 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00008715 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00008716 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008717 break;
8718 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008719
Jim Laskeybc588b82006-10-05 15:07:25 +00008720 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008721 // We have to check each of the operands of the token factor for "small"
8722 // token factors, so we queue them up. Adding the operands to the queue
8723 // (stack) in reverse order maintains the original order and increases the
8724 // likelihood that getNode will find a matching token factor (CSE.)
8725 if (Chain.getNumOperands() > 16) {
8726 Aliases.push_back(Chain);
8727 break;
8728 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008729 for (unsigned n = Chain.getNumOperands(); n;)
8730 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00008731 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00008732 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008733
Jim Laskeybc588b82006-10-05 15:07:25 +00008734 default:
8735 // For all other instructions we will just have to take what we can get.
8736 Aliases.push_back(Chain);
8737 break;
Jim Laskey279f0532006-09-25 16:29:54 +00008738 }
8739 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00008740}
8741
8742/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
8743/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00008744SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
8745 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00008746
Jim Laskey6ff23e52006-10-04 16:53:27 +00008747 // Accumulate all the aliases to this node.
8748 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00008749
Dan Gohman71dc7c92011-05-17 22:20:36 +00008750 // If no operands then chain to entry token.
8751 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008752 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00008753
8754 // If a single operand then chain to it. We don't need to revisit it.
8755 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008756 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008757
Jim Laskey6ff23e52006-10-04 16:53:27 +00008758 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008759 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008760 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00008761}
8762
Nate Begeman1d4d4142005-09-01 00:19:25 +00008763// SelectionDAG::Combine - This is the entry point for the file.
8764//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008765void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00008766 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00008767 /// run - This is the main entry point to this class.
8768 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008769 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00008770}