blob: b55d84cab897996253bc358754354cc2aff71973 [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;
83 std::vector<SDNode*> 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 {
1008 N = WorkListOrder.back();
1009 WorkListOrder.pop_back();
1010 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001011
Evan Cheng17a568b2008-08-29 22:21:44 +00001012 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1013 // N is deleted from the DAG, since they too may now be dead or may have a
1014 // reduced number of uses, allowing other xforms.
1015 if (N->use_empty() && N != &Dummy) {
1016 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1017 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001018
Evan Cheng17a568b2008-08-29 22:21:44 +00001019 DAG.DeleteNode(N);
1020 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001021 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001022
Evan Cheng17a568b2008-08-29 22:21:44 +00001023 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001024
Evan Cheng17a568b2008-08-29 22:21:44 +00001025 if (RV.getNode() == 0)
1026 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001027
Evan Cheng17a568b2008-08-29 22:21:44 +00001028 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001029
Evan Cheng17a568b2008-08-29 22:21:44 +00001030 // If we get back the same node we passed in, rather than a new node or
1031 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001032 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001033 // mechanics for us, we have no work to do in this case.
1034 if (RV.getNode() == N)
1035 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001036
Evan Cheng17a568b2008-08-29 22:21:44 +00001037 assert(N->getOpcode() != ISD::DELETED_NODE &&
1038 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1039 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001040
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001041 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001042 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001043 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001044 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001045 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001046
Devang Patel9728ea22011-05-23 22:04:42 +00001047 // Transfer debug value.
1048 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001049 WorkListRemover DeadNodes(*this);
1050 if (N->getNumValues() == RV.getNode()->getNumValues())
1051 DAG.ReplaceAllUsesWith(N, RV.getNode(), &DeadNodes);
1052 else {
1053 assert(N->getValueType(0) == RV.getValueType() &&
1054 N->getNumValues() == 1 && "Type mismatch");
1055 SDValue OpV = RV;
1056 DAG.ReplaceAllUsesWith(N, &OpV, &DeadNodes);
1057 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001058
Evan Cheng17a568b2008-08-29 22:21:44 +00001059 // Push the new node and any users onto the worklist
1060 AddToWorkList(RV.getNode());
1061 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001062
Evan Cheng17a568b2008-08-29 22:21:44 +00001063 // Add any uses of the old node to the worklist in case this node is the
1064 // last one that uses them. They may become dead after this node is
1065 // deleted.
1066 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1067 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001068
Dan Gohmandbe664a2009-01-19 21:44:21 +00001069 // Finally, if the node is now dead, remove it from the graph. The node
1070 // may not be dead if the replacement process recursively simplified to
1071 // something else needing this node.
1072 if (N->use_empty()) {
1073 // Nodes can be reintroduced into the worklist. Make sure we do not
1074 // process a node that has been replaced.
1075 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001076
Dan Gohmandbe664a2009-01-19 21:44:21 +00001077 // Finally, since the node is now dead, remove it from the graph.
1078 DAG.DeleteNode(N);
1079 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001080 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001081
Chris Lattner95038592005-10-05 06:35:28 +00001082 // If the root changed (e.g. it was a dead load, update the root).
1083 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +00001084}
1085
Dan Gohman475871a2008-07-27 21:46:04 +00001086SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001087 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001088 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001089 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001090 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001091 case ISD::ADD: return visitADD(N);
1092 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001093 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001094 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001095 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001096 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001097 case ISD::MUL: return visitMUL(N);
1098 case ISD::SDIV: return visitSDIV(N);
1099 case ISD::UDIV: return visitUDIV(N);
1100 case ISD::SREM: return visitSREM(N);
1101 case ISD::UREM: return visitUREM(N);
1102 case ISD::MULHU: return visitMULHU(N);
1103 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001104 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1105 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001106 case ISD::SMULO: return visitSMULO(N);
1107 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001108 case ISD::SDIVREM: return visitSDIVREM(N);
1109 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001110 case ISD::AND: return visitAND(N);
1111 case ISD::OR: return visitOR(N);
1112 case ISD::XOR: return visitXOR(N);
1113 case ISD::SHL: return visitSHL(N);
1114 case ISD::SRA: return visitSRA(N);
1115 case ISD::SRL: return visitSRL(N);
1116 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001117 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001118 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001119 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001120 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001121 case ISD::SELECT: return visitSELECT(N);
1122 case ISD::SELECT_CC: return visitSELECT_CC(N);
1123 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001124 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1125 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001126 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001127 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1128 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001129 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001130 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001131 case ISD::FADD: return visitFADD(N);
1132 case ISD::FSUB: return visitFSUB(N);
1133 case ISD::FMUL: return visitFMUL(N);
1134 case ISD::FDIV: return visitFDIV(N);
1135 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001136 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001137 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1138 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1139 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1140 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1141 case ISD::FP_ROUND: return visitFP_ROUND(N);
1142 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1143 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1144 case ISD::FNEG: return visitFNEG(N);
1145 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001146 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001147 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001148 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001149 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001150 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001151 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001152 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1153 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001154 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001155 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001156 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001157 }
Dan Gohman475871a2008-07-27 21:46:04 +00001158 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001159}
1160
Dan Gohman475871a2008-07-27 21:46:04 +00001161SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001162 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001163
1164 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001165 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001166 assert(N->getOpcode() != ISD::DELETED_NODE &&
1167 "Node was deleted but visit returned NULL!");
1168
1169 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1170 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1171
1172 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001173 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001174 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001175
1176 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1177 }
1178 }
1179
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001180 // If nothing happened still, try promoting the operation.
1181 if (RV.getNode() == 0) {
1182 switch (N->getOpcode()) {
1183 default: break;
1184 case ISD::ADD:
1185 case ISD::SUB:
1186 case ISD::MUL:
1187 case ISD::AND:
1188 case ISD::OR:
1189 case ISD::XOR:
1190 RV = PromoteIntBinOp(SDValue(N, 0));
1191 break;
1192 case ISD::SHL:
1193 case ISD::SRA:
1194 case ISD::SRL:
1195 RV = PromoteIntShiftOp(SDValue(N, 0));
1196 break;
1197 case ISD::SIGN_EXTEND:
1198 case ISD::ZERO_EXTEND:
1199 case ISD::ANY_EXTEND:
1200 RV = PromoteExtend(SDValue(N, 0));
1201 break;
1202 case ISD::LOAD:
1203 if (PromoteLoad(SDValue(N, 0)))
1204 RV = SDValue(N, 0);
1205 break;
1206 }
1207 }
1208
Scott Michelfdc40a02009-02-17 22:15:04 +00001209 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001210 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001211 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001212 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1213 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001214 SDValue N0 = N->getOperand(0);
1215 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001216
Evan Cheng08b11732008-03-22 01:55:50 +00001217 // Constant operands are canonicalized to RHS.
1218 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001219 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001220 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1221 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001222 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001223 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001224 }
1225 }
1226
Dan Gohman389079b2007-10-08 17:57:15 +00001227 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001228}
Dan Gohman389079b2007-10-08 17:57:15 +00001229
Chris Lattner6270f682006-10-08 22:57:01 +00001230/// getInputChainForNode - Given a node, return its input chain if it has one,
1231/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001232static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001233 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001234 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001235 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001236 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001237 return N->getOperand(NumOps-1);
1238 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001239 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001240 return N->getOperand(i);
1241 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001242 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001243}
1244
Dan Gohman475871a2008-07-27 21:46:04 +00001245SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001246 // If N has two operands, where one has an input chain equal to the other,
1247 // the 'other' chain is redundant.
1248 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001249 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001250 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001251 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001252 return N->getOperand(1);
1253 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001254
Chris Lattnerc76d4412007-05-16 06:37:59 +00001255 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001256 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001257 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001258 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001259
Jim Laskey6ff23e52006-10-04 16:53:27 +00001260 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001261 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001262
Jim Laskey71382342006-10-07 23:37:56 +00001263 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001264 // encountered.
1265 for (unsigned i = 0; i < TFs.size(); ++i) {
1266 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001267
Jim Laskey6ff23e52006-10-04 16:53:27 +00001268 // Check each of the operands.
1269 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001270 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001271
Jim Laskey6ff23e52006-10-04 16:53:27 +00001272 switch (Op.getOpcode()) {
1273 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001274 // Entry tokens don't need to be added to the list. They are
1275 // rededundant.
1276 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001277 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001278
Jim Laskey6ff23e52006-10-04 16:53:27 +00001279 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001280 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001281 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001282 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001283 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001284 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001285 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001286 Changed = true;
1287 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001288 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001289 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001290
Jim Laskey6ff23e52006-10-04 16:53:27 +00001291 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001292 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001293 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001294 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001295 else
1296 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001297 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001298 }
1299 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001300 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001301
Dan Gohman475871a2008-07-27 21:46:04 +00001302 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001303
1304 // If we've change things around then replace token factor.
1305 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001306 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001307 // The entry token is the only possible outcome.
1308 Result = DAG.getEntryNode();
1309 } else {
1310 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001311 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001312 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001313 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001314
Jim Laskey274062c2006-10-13 23:32:28 +00001315 // Don't add users to work list.
1316 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001317 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001318
Jim Laskey6ff23e52006-10-04 16:53:27 +00001319 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001320}
1321
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001322/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001323SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001324 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001325 // Replacing results may cause a different MERGE_VALUES to suddenly
1326 // be CSE'd with N, and carry its uses with it. Iterate until no
1327 // uses remain, to ensure that the node can be safely deleted.
1328 do {
1329 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1330 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i),
1331 &DeadNodes);
1332 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001333 removeFromWorkList(N);
1334 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001335 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001336}
1337
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001338static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001339SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1340 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001341 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001342 SDValue N00 = N0.getOperand(0);
1343 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001344 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001345
Gabor Greifba36cb52008-08-28 21:40:38 +00001346 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001347 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001348 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1349 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1350 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1351 N00.getOperand(0), N01),
1352 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1353 N00.getOperand(1), N01));
1354 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001355 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001356
Dan Gohman475871a2008-07-27 21:46:04 +00001357 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001358}
1359
Dan Gohman475871a2008-07-27 21:46:04 +00001360SDValue DAGCombiner::visitADD(SDNode *N) {
1361 SDValue N0 = N->getOperand(0);
1362 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001363 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1364 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001365 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001366
1367 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001368 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001369 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001370 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001371 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001372
Dan Gohman613e0d82007-07-03 14:03:57 +00001373 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001374 if (N0.getOpcode() == ISD::UNDEF)
1375 return N0;
1376 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001377 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001378 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001379 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001380 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001381 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001382 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001383 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001384 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001385 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001386 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001387 // fold (add Sym, c) -> Sym+c
1388 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001389 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001390 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001391 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001392 GA->getOffset() +
1393 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001394 // fold ((c1-A)+c2) -> (c1+c2)-A
1395 if (N1C && N0.getOpcode() == ISD::SUB)
1396 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001397 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001398 DAG.getConstant(N1C->getAPIntValue()+
1399 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001400 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001401 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001402 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001403 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001404 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001405 // fold ((0-A) + B) -> B-A
1406 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1407 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001408 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001409 // fold (A + (0-B)) -> A-B
1410 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1411 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001412 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001413 // fold (A+(B-A)) -> B
1414 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001415 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001416 // fold ((B-A)+A) -> B
1417 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1418 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001419 // fold (A+(B-(A+C))) to (B-C)
1420 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001421 N0 == N1.getOperand(1).getOperand(0))
1422 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001423 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001424 // fold (A+(B-(C+A))) to (B-C)
1425 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001426 N0 == N1.getOperand(1).getOperand(1))
1427 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001428 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001429 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001430 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1431 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001432 N0 == N1.getOperand(0).getOperand(1))
1433 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1434 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001435
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001436 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1437 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1438 SDValue N00 = N0.getOperand(0);
1439 SDValue N01 = N0.getOperand(1);
1440 SDValue N10 = N1.getOperand(0);
1441 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001442
1443 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1444 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1445 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1446 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001447 }
Chris Lattner947c2892006-03-13 06:51:27 +00001448
Dan Gohman475871a2008-07-27 21:46:04 +00001449 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1450 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001451
Chris Lattner947c2892006-03-13 06:51:27 +00001452 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001453 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001454 APInt LHSZero, LHSOne;
1455 APInt RHSZero, RHSOne;
Dan Gohman5b870af2010-03-02 02:14:38 +00001456 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001457 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001458
Dan Gohman948d8ea2008-02-20 16:33:30 +00001459 if (LHSZero.getBoolValue()) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001460 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001461
Chris Lattner947c2892006-03-13 06:51:27 +00001462 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1463 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1464 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1465 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001466 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001467 }
1468 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001469
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001470 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001471 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001472 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001473 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001474 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001475 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001476 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001477 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001478 }
1479
Dan Gohmancd9e1552010-01-19 23:30:49 +00001480 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1481 if (N1.getOpcode() == ISD::SHL &&
1482 N1.getOperand(0).getOpcode() == ISD::SUB)
1483 if (ConstantSDNode *C =
1484 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1485 if (C->getAPIntValue() == 0)
1486 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1487 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1488 N1.getOperand(0).getOperand(1),
1489 N1.getOperand(1)));
1490 if (N0.getOpcode() == ISD::SHL &&
1491 N0.getOperand(0).getOpcode() == ISD::SUB)
1492 if (ConstantSDNode *C =
1493 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1494 if (C->getAPIntValue() == 0)
1495 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1496 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1497 N0.getOperand(0).getOperand(1),
1498 N0.getOperand(1)));
1499
Owen Andersonbc146b02010-09-21 20:42:50 +00001500 if (N1.getOpcode() == ISD::AND) {
1501 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001502 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001503 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1504 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001505
Owen Andersonbc146b02010-09-21 20:42:50 +00001506 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1507 // and similar xforms where the inner op is either ~0 or 0.
1508 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1509 DebugLoc DL = N->getDebugLoc();
1510 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1511 }
1512 }
1513
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001514 // add (sext i1), X -> sub X, (zext i1)
1515 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1516 N0.getOperand(0).getValueType() == MVT::i1 &&
1517 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1518 DebugLoc DL = N->getDebugLoc();
1519 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1520 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1521 }
1522
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001523 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001524}
1525
Dan Gohman475871a2008-07-27 21:46:04 +00001526SDValue DAGCombiner::visitADDC(SDNode *N) {
1527 SDValue N0 = N->getOperand(0);
1528 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001529 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1530 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001531 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001532
Chris Lattner91153682007-03-04 20:03:15 +00001533 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001534 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001535 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001536 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001537 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001538
Chris Lattner91153682007-03-04 20:03:15 +00001539 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001540 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001541 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001542
Chris Lattnerb6541762007-03-04 20:40:38 +00001543 // fold (addc x, 0) -> x + no carry out
1544 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001545 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001546 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001547
Dale Johannesen874ae252009-06-02 03:12:52 +00001548 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001549 APInt LHSZero, LHSOne;
1550 APInt RHSZero, RHSOne;
Dan Gohman5b870af2010-03-02 02:14:38 +00001551 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001552 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001553
Dan Gohman948d8ea2008-02-20 16:33:30 +00001554 if (LHSZero.getBoolValue()) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001555 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001556
Chris Lattnerb6541762007-03-04 20:40:38 +00001557 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1558 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1559 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1560 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
Bill Wendling14036c02009-01-30 02:38:00 +00001561 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001562 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001563 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001564 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001565
Dan Gohman475871a2008-07-27 21:46:04 +00001566 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001567}
1568
Dan Gohman475871a2008-07-27 21:46:04 +00001569SDValue DAGCombiner::visitADDE(SDNode *N) {
1570 SDValue N0 = N->getOperand(0);
1571 SDValue N1 = N->getOperand(1);
1572 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001573 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1574 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001575
Chris Lattner91153682007-03-04 20:03:15 +00001576 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001577 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001578 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1579 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001580
Chris Lattnerb6541762007-03-04 20:40:38 +00001581 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001582 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001583 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001584
Dan Gohman475871a2008-07-27 21:46:04 +00001585 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001586}
1587
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001588// Since it may not be valid to emit a fold to zero for vector initializers
1589// check if we can before folding.
1590static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001591 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001592 if (!VT.isVector()) {
1593 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001594 }
1595 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001596 // Produce a vector of zeros.
1597 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1598 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1599 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1600 &Ops[0], Ops.size());
1601 }
1602 return SDValue();
1603}
1604
Dan Gohman475871a2008-07-27 21:46:04 +00001605SDValue DAGCombiner::visitSUB(SDNode *N) {
1606 SDValue N0 = N->getOperand(0);
1607 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001608 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1609 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001610 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1611 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001612 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001613
Dan Gohman7f321562007-06-25 16:23:39 +00001614 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001615 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001616 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001617 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001618 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001619
Chris Lattner854077d2005-10-17 01:07:11 +00001620 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001621 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001622 if (N0 == N1)
1623 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001624 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001625 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001626 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001627 // fold (sub x, c) -> (add x, -c)
1628 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001629 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001630 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001631 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1632 if (N0C && N0C->isAllOnesValue())
1633 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001634 // fold A-(A-B) -> B
1635 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1636 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001637 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001638 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001639 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001640 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001641 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001642 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001643 // fold C2-(A+C1) -> (C2-C1)-A
1644 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
1645 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT);
1646 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
1647 N1.getOperand(0));
1648 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001649 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001650 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001651 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1652 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001653 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001654 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1655 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001656 // fold ((A+(C+B))-B) -> A+C
1657 if (N0.getOpcode() == ISD::ADD &&
1658 N0.getOperand(1).getOpcode() == ISD::ADD &&
1659 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001660 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1661 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001662 // fold ((A-(B-C))-C) -> A-B
1663 if (N0.getOpcode() == ISD::SUB &&
1664 N0.getOperand(1).getOpcode() == ISD::SUB &&
1665 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001666 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1667 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001668
Dan Gohman613e0d82007-07-03 14:03:57 +00001669 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001670 if (N0.getOpcode() == ISD::UNDEF)
1671 return N0;
1672 if (N1.getOpcode() == ISD::UNDEF)
1673 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001674
Dan Gohman6520e202008-10-18 02:06:02 +00001675 // If the relocation model supports it, consider symbol offsets.
1676 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001677 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001678 // fold (sub Sym, c) -> Sym-c
1679 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001680 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001681 GA->getOffset() -
1682 (uint64_t)N1C->getSExtValue());
1683 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1684 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1685 if (GA->getGlobal() == GB->getGlobal())
1686 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1687 VT);
1688 }
1689
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001690 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001691}
1692
Craig Toppercc274522012-01-07 09:06:39 +00001693SDValue DAGCombiner::visitSUBC(SDNode *N) {
1694 SDValue N0 = N->getOperand(0);
1695 SDValue N1 = N->getOperand(1);
1696 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1697 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1698 EVT VT = N0.getValueType();
1699
1700 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001701 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001702 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1703 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1704 MVT::Glue));
1705
1706 // fold (subc x, x) -> 0 + no borrow
1707 if (N0 == N1)
1708 return CombineTo(N, DAG.getConstant(0, VT),
1709 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1710 MVT::Glue));
1711
1712 // fold (subc x, 0) -> x + no borrow
1713 if (N1C && N1C->isNullValue())
1714 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1715 MVT::Glue));
1716
1717 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1718 if (N0C && N0C->isAllOnesValue())
1719 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1720 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1721 MVT::Glue));
1722
1723 return SDValue();
1724}
1725
1726SDValue DAGCombiner::visitSUBE(SDNode *N) {
1727 SDValue N0 = N->getOperand(0);
1728 SDValue N1 = N->getOperand(1);
1729 SDValue CarryIn = N->getOperand(2);
1730
1731 // fold (sube x, y, false) -> (subc x, y)
1732 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1733 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1734
1735 return SDValue();
1736}
1737
Dan Gohman475871a2008-07-27 21:46:04 +00001738SDValue DAGCombiner::visitMUL(SDNode *N) {
1739 SDValue N0 = N->getOperand(0);
1740 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001741 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1742 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001743 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001744
Dan Gohman7f321562007-06-25 16:23:39 +00001745 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001746 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001747 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001748 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001749 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001750
Dan Gohman613e0d82007-07-03 14:03:57 +00001751 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001752 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001753 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001754 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001755 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001756 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001757 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001758 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001759 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001760 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001761 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001762 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001763 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001764 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001765 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1766 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001767 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001768 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001769 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001770 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001771 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001772 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001773 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1774 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001775 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001776 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001777 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1778 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001779 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001780 DAG.getConstant(Log2Val,
1781 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001782 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001783 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001784 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001785 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001786 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1787 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001788 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001789 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1790 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001791 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001792
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001793 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1794 // use.
1795 {
Dan Gohman475871a2008-07-27 21:46:04 +00001796 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001797 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1798 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001799 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001800 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001801 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001802 isa<ConstantSDNode>(N1.getOperand(1)) &&
1803 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001804 Sh = N1; Y = N0;
1805 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001806
Gabor Greifba36cb52008-08-28 21:40:38 +00001807 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001808 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1809 Sh.getOperand(0), Y);
1810 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1811 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001812 }
1813 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001814
Chris Lattnera1deca32006-03-04 23:33:26 +00001815 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001816 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001817 isa<ConstantSDNode>(N0.getOperand(1)))
1818 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1819 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1820 N0.getOperand(0), N1),
1821 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1822 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001823
Nate Begemancd4d58c2006-02-03 06:46:56 +00001824 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001825 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001826 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001827 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001828
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001829 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001830}
1831
Dan Gohman475871a2008-07-27 21:46:04 +00001832SDValue DAGCombiner::visitSDIV(SDNode *N) {
1833 SDValue N0 = N->getOperand(0);
1834 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001835 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1836 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001837 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001838
Dan Gohman7f321562007-06-25 16:23:39 +00001839 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001840 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001841 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001842 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001843 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001844
Nate Begeman1d4d4142005-09-01 00:19:25 +00001845 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001846 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001847 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001848 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001849 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001850 return N0;
1851 // fold (sdiv X, -1) -> 0-X
1852 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001853 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1854 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001855 // If we know the sign bits of both operands are zero, strength reduce to a
1856 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001857 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001858 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001859 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1860 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001861 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001862 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001863 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001864 (N1C->getAPIntValue().isPowerOf2() ||
1865 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001866 // If dividing by powers of two is cheap, then don't perform the following
1867 // fold.
1868 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001869 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001870
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001871 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001872
Chris Lattner8f4880b2006-02-16 08:02:36 +00001873 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001874 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1875 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001876 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001877 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001878
Chris Lattner8f4880b2006-02-16 08:02:36 +00001879 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001880 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1881 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001882 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001883 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001884 AddToWorkList(SRL.getNode());
1885 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001886 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001887 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001888
Nate Begeman405e3ec2005-10-21 00:02:42 +00001889 // If we're dividing by a positive value, we're done. Otherwise, we must
1890 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001891 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001892 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001893
Gabor Greifba36cb52008-08-28 21:40:38 +00001894 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001895 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1896 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001897 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001898
Nate Begeman69575232005-10-20 02:15:44 +00001899 // if integer divide is expensive and we satisfy the requirements, emit an
1900 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001901 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001902 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001903 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001904 }
Dan Gohman7f321562007-06-25 16:23:39 +00001905
Dan Gohman613e0d82007-07-03 14:03:57 +00001906 // undef / X -> 0
1907 if (N0.getOpcode() == ISD::UNDEF)
1908 return DAG.getConstant(0, VT);
1909 // X / undef -> undef
1910 if (N1.getOpcode() == ISD::UNDEF)
1911 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001912
Dan Gohman475871a2008-07-27 21:46:04 +00001913 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001914}
1915
Dan Gohman475871a2008-07-27 21:46:04 +00001916SDValue DAGCombiner::visitUDIV(SDNode *N) {
1917 SDValue N0 = N->getOperand(0);
1918 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001919 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1920 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001921 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001922
Dan Gohman7f321562007-06-25 16:23:39 +00001923 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001924 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001925 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001926 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001927 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001928
Nate Begeman1d4d4142005-09-01 00:19:25 +00001929 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001930 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001931 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001932 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001933 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001934 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001935 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001936 getShiftAmountTy(N0.getValueType())));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001937 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1938 if (N1.getOpcode() == ISD::SHL) {
1939 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001940 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001941 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001942 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1943 N1.getOperand(1),
1944 DAG.getConstant(SHC->getAPIntValue()
1945 .logBase2(),
1946 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001947 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001948 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001949 }
1950 }
1951 }
Nate Begeman69575232005-10-20 02:15:44 +00001952 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001953 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001954 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001955 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001956 }
Dan Gohman7f321562007-06-25 16:23:39 +00001957
Dan Gohman613e0d82007-07-03 14:03:57 +00001958 // undef / X -> 0
1959 if (N0.getOpcode() == ISD::UNDEF)
1960 return DAG.getConstant(0, VT);
1961 // X / undef -> undef
1962 if (N1.getOpcode() == ISD::UNDEF)
1963 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001964
Dan Gohman475871a2008-07-27 21:46:04 +00001965 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001966}
1967
Dan Gohman475871a2008-07-27 21:46:04 +00001968SDValue DAGCombiner::visitSREM(SDNode *N) {
1969 SDValue N0 = N->getOperand(0);
1970 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001971 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1972 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001973 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001974
Nate Begeman1d4d4142005-09-01 00:19:25 +00001975 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001976 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001977 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001978 // If we know the sign bits of both operands are zero, strength reduce to a
1979 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001980 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001981 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001982 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001983 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001984
Dan Gohman77003042007-11-26 23:46:11 +00001985 // If X/C can be simplified by the division-by-constant logic, lower
1986 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001987 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001988 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001989 AddToWorkList(Div.getNode());
1990 SDValue OptimizedDiv = combine(Div.getNode());
1991 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001992 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1993 OptimizedDiv, N1);
1994 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00001995 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00001996 return Sub;
1997 }
Chris Lattner26d29902006-10-12 20:58:32 +00001998 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001999
Dan Gohman613e0d82007-07-03 14:03:57 +00002000 // undef % X -> 0
2001 if (N0.getOpcode() == ISD::UNDEF)
2002 return DAG.getConstant(0, VT);
2003 // X % undef -> undef
2004 if (N1.getOpcode() == ISD::UNDEF)
2005 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002006
Dan Gohman475871a2008-07-27 21:46:04 +00002007 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002008}
2009
Dan Gohman475871a2008-07-27 21:46:04 +00002010SDValue DAGCombiner::visitUREM(SDNode *N) {
2011 SDValue N0 = N->getOperand(0);
2012 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002013 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2014 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002015 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002016
Nate Begeman1d4d4142005-09-01 00:19:25 +00002017 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002018 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002019 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002020 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002021 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002022 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002023 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002024 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2025 if (N1.getOpcode() == ISD::SHL) {
2026 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002027 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002028 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002029 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002030 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002031 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002032 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002033 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002034 }
2035 }
2036 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002037
Dan Gohman77003042007-11-26 23:46:11 +00002038 // If X/C can be simplified by the division-by-constant logic, lower
2039 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002040 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002041 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002042 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002043 SDValue OptimizedDiv = combine(Div.getNode());
2044 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002045 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2046 OptimizedDiv, N1);
2047 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002048 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002049 return Sub;
2050 }
Chris Lattner26d29902006-10-12 20:58:32 +00002051 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002052
Dan Gohman613e0d82007-07-03 14:03:57 +00002053 // undef % X -> 0
2054 if (N0.getOpcode() == ISD::UNDEF)
2055 return DAG.getConstant(0, VT);
2056 // X % undef -> undef
2057 if (N1.getOpcode() == ISD::UNDEF)
2058 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002059
Dan Gohman475871a2008-07-27 21:46:04 +00002060 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002061}
2062
Dan Gohman475871a2008-07-27 21:46:04 +00002063SDValue DAGCombiner::visitMULHS(SDNode *N) {
2064 SDValue N0 = N->getOperand(0);
2065 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002066 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002067 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002068 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002069
Nate Begeman1d4d4142005-09-01 00:19:25 +00002070 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002071 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002072 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002073 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002074 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002075 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2076 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002077 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002078 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002079 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002080 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002081
Chris Lattnerde1c3602010-12-13 08:39:01 +00002082 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2083 // plus a shift.
2084 if (VT.isSimple() && !VT.isVector()) {
2085 MVT Simple = VT.getSimpleVT();
2086 unsigned SimpleSize = Simple.getSizeInBits();
2087 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2088 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2089 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2090 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2091 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002092 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002093 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002094 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2095 }
2096 }
Owen Anderson95771af2011-02-25 21:41:48 +00002097
Dan Gohman475871a2008-07-27 21:46:04 +00002098 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002099}
2100
Dan Gohman475871a2008-07-27 21:46:04 +00002101SDValue DAGCombiner::visitMULHU(SDNode *N) {
2102 SDValue N0 = N->getOperand(0);
2103 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002104 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002105 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002106 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002107
Nate Begeman1d4d4142005-09-01 00:19:25 +00002108 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002109 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002110 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002111 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002112 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002113 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002114 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002115 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002116 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002117
Chris Lattnerde1c3602010-12-13 08:39:01 +00002118 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2119 // plus a shift.
2120 if (VT.isSimple() && !VT.isVector()) {
2121 MVT Simple = VT.getSimpleVT();
2122 unsigned SimpleSize = Simple.getSizeInBits();
2123 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2124 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2125 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2126 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2127 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2128 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002129 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002130 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2131 }
2132 }
Owen Anderson95771af2011-02-25 21:41:48 +00002133
Dan Gohman475871a2008-07-27 21:46:04 +00002134 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002135}
2136
Dan Gohman389079b2007-10-08 17:57:15 +00002137/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2138/// compute two values. LoOp and HiOp give the opcodes for the two computations
2139/// that are being performed. Return true if a simplification was made.
2140///
Scott Michelfdc40a02009-02-17 22:15:04 +00002141SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002142 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002143 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002144 bool HiExists = N->hasAnyUseOfValue(1);
2145 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002146 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002147 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002148 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2149 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002150 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002151 }
2152
2153 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002154 bool LoExists = N->hasAnyUseOfValue(0);
2155 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002156 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002157 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002158 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2159 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002160 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002161 }
2162
Evan Cheng44711942007-11-08 09:25:29 +00002163 // If both halves are used, return as it is.
2164 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002165 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002166
2167 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002168 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002169 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2170 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002171 AddToWorkList(Lo.getNode());
2172 SDValue LoOpt = combine(Lo.getNode());
2173 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002174 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002175 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002176 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002177 }
2178
Evan Cheng44711942007-11-08 09:25:29 +00002179 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002180 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002181 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002182 AddToWorkList(Hi.getNode());
2183 SDValue HiOpt = combine(Hi.getNode());
2184 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002185 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002186 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002187 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002188 }
Bill Wendling826d1142009-01-30 03:08:40 +00002189
Dan Gohman475871a2008-07-27 21:46:04 +00002190 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002191}
2192
Dan Gohman475871a2008-07-27 21:46:04 +00002193SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2194 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002195 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002196
Chris Lattner33e77d32010-12-15 06:04:19 +00002197 EVT VT = N->getValueType(0);
2198 DebugLoc DL = N->getDebugLoc();
2199
2200 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2201 // plus a shift.
2202 if (VT.isSimple() && !VT.isVector()) {
2203 MVT Simple = VT.getSimpleVT();
2204 unsigned SimpleSize = Simple.getSizeInBits();
2205 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2206 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2207 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2208 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2209 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2210 // Compute the high part as N1.
2211 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002212 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002213 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2214 // Compute the low part as N0.
2215 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2216 return CombineTo(N, Lo, Hi);
2217 }
2218 }
Owen Anderson95771af2011-02-25 21:41:48 +00002219
Dan Gohman475871a2008-07-27 21:46:04 +00002220 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002221}
2222
Dan Gohman475871a2008-07-27 21:46:04 +00002223SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2224 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002225 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002226
Chris Lattner33e77d32010-12-15 06:04:19 +00002227 EVT VT = N->getValueType(0);
2228 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002229
Chris Lattner33e77d32010-12-15 06:04:19 +00002230 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2231 // plus a shift.
2232 if (VT.isSimple() && !VT.isVector()) {
2233 MVT Simple = VT.getSimpleVT();
2234 unsigned SimpleSize = Simple.getSizeInBits();
2235 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2236 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2237 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2238 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2239 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2240 // Compute the high part as N1.
2241 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002242 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002243 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2244 // Compute the low part as N0.
2245 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2246 return CombineTo(N, Lo, Hi);
2247 }
2248 }
Owen Anderson95771af2011-02-25 21:41:48 +00002249
Dan Gohman475871a2008-07-27 21:46:04 +00002250 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002251}
2252
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002253SDValue DAGCombiner::visitSMULO(SDNode *N) {
2254 // (smulo x, 2) -> (saddo x, x)
2255 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2256 if (C2->getAPIntValue() == 2)
2257 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2258 N->getOperand(0), N->getOperand(0));
2259
2260 return SDValue();
2261}
2262
2263SDValue DAGCombiner::visitUMULO(SDNode *N) {
2264 // (umulo x, 2) -> (uaddo x, x)
2265 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2266 if (C2->getAPIntValue() == 2)
2267 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2268 N->getOperand(0), N->getOperand(0));
2269
2270 return SDValue();
2271}
2272
Dan Gohman475871a2008-07-27 21:46:04 +00002273SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2274 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002275 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002276
Dan Gohman475871a2008-07-27 21:46:04 +00002277 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002278}
2279
Dan Gohman475871a2008-07-27 21:46:04 +00002280SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2281 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002282 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002283
Dan Gohman475871a2008-07-27 21:46:04 +00002284 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002285}
2286
Chris Lattner35e5c142006-05-05 05:51:50 +00002287/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2288/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002289SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2290 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002291 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002292 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002293
Dan Gohmanff00a552010-01-14 03:08:49 +00002294 // Bail early if none of these transforms apply.
2295 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2296
Chris Lattner540121f2006-05-05 06:31:05 +00002297 // For each of OP in AND/OR/XOR:
2298 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2299 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2300 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002301 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002302 //
2303 // do not sink logical op inside of a vector extend, since it may combine
2304 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002305 EVT Op0VT = N0.getOperand(0).getValueType();
2306 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002307 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002308 // Avoid infinite looping with PromoteIntBinOp.
2309 (N0.getOpcode() == ISD::ANY_EXTEND &&
2310 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002311 (N0.getOpcode() == ISD::TRUNCATE &&
2312 (!TLI.isZExtFree(VT, Op0VT) ||
2313 !TLI.isTruncateFree(Op0VT, VT)) &&
2314 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002315 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002316 Op0VT == N1.getOperand(0).getValueType() &&
2317 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002318 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2319 N0.getOperand(0).getValueType(),
2320 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002321 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002322 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002323 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002324
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002325 // For each of OP in SHL/SRL/SRA/AND...
2326 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2327 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2328 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002329 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002330 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002331 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002332 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2333 N0.getOperand(0).getValueType(),
2334 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002335 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002336 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2337 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002338 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002339
Dan Gohman475871a2008-07-27 21:46:04 +00002340 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002341}
2342
Dan Gohman475871a2008-07-27 21:46:04 +00002343SDValue DAGCombiner::visitAND(SDNode *N) {
2344 SDValue N0 = N->getOperand(0);
2345 SDValue N1 = N->getOperand(1);
2346 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002347 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2348 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002349 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002350 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002351
Dan Gohman7f321562007-06-25 16:23:39 +00002352 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002353 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002354 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002355 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002356 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002357
Dan Gohman613e0d82007-07-03 14:03:57 +00002358 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002359 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002360 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002361 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002362 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002363 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002364 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002365 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002366 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002367 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002368 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002369 return N0;
2370 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002371 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002372 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002373 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002374 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002375 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002376 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002377 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002378 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002379 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002380 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002381 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002382 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002383 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2384 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002385 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002386 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002387 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002388 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002389 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2390 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002391
Chris Lattner1ec05d12006-03-01 21:47:21 +00002392 // Replace uses of the AND with uses of the Zero extend node.
2393 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002394
Chris Lattner3603cd62006-02-02 07:17:31 +00002395 // We actually want to replace all uses of the any_extend with the
2396 // zero_extend, to avoid duplicating things. This will later cause this
2397 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002398 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002399 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002400 }
2401 }
James Molloy6259dcd2012-02-20 12:02:38 +00002402 // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2403 // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2404 // already be zero by virtue of the width of the base type of the load.
2405 //
2406 // the 'X' node here can either be nothing or an extract_vector_elt to catch
2407 // more cases.
2408 if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2409 N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2410 N0.getOpcode() == ISD::LOAD) {
2411 LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2412 N0 : N0.getOperand(0) );
2413
2414 // Get the constant (if applicable) the zero'th operand is being ANDed with.
2415 // This can be a pure constant or a vector splat, in which case we treat the
2416 // vector as a scalar and use the splat value.
2417 APInt Constant = APInt::getNullValue(1);
2418 if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2419 Constant = C->getAPIntValue();
2420 } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2421 APInt SplatValue, SplatUndef;
2422 unsigned SplatBitSize;
2423 bool HasAnyUndefs;
2424 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2425 SplatBitSize, HasAnyUndefs);
2426 if (IsSplat) {
2427 // Undef bits can contribute to a possible optimisation if set, so
2428 // set them.
2429 SplatValue |= SplatUndef;
2430
2431 // The splat value may be something like "0x00FFFFFF", which means 0 for
2432 // the first vector value and FF for the rest, repeating. We need a mask
2433 // that will apply equally to all members of the vector, so AND all the
2434 // lanes of the constant together.
2435 EVT VT = Vector->getValueType(0);
2436 unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
2437 Constant = APInt::getAllOnesValue(BitWidth);
2438 for (unsigned i = 0, n = VT.getVectorNumElements(); i < n; ++i)
2439 Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2440 }
2441 }
2442
2443 // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2444 // actually legal and isn't going to get expanded, else this is a false
2445 // optimisation.
2446 bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2447 Load->getMemoryVT());
2448
2449 // Resize the constant to the same size as the original memory access before
2450 // extension. If it is still the AllOnesValue then this AND is completely
2451 // unneeded.
2452 Constant =
2453 Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2454
2455 bool B;
2456 switch (Load->getExtensionType()) {
2457 default: B = false; break;
2458 case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2459 case ISD::ZEXTLOAD:
2460 case ISD::NON_EXTLOAD: B = true; break;
2461 }
2462
2463 if (B && Constant.isAllOnesValue()) {
2464 // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2465 // preserve semantics once we get rid of the AND.
2466 SDValue NewLoad(Load, 0);
2467 if (Load->getExtensionType() == ISD::EXTLOAD) {
2468 NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2469 Load->getValueType(0), Load->getDebugLoc(),
2470 Load->getChain(), Load->getBasePtr(),
2471 Load->getOffset(), Load->getMemoryVT(),
2472 Load->getMemOperand());
2473 // Replace uses of the EXTLOAD with the new ZEXTLOAD.
2474 CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2475 }
2476
2477 // Fold the AND away, taking care not to fold to the old load node if we
2478 // replaced it.
2479 CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2480
2481 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2482 }
2483 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002484 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2485 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2486 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2487 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002488
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002489 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002490 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002491 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002492 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002493 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2494 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002495 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002496 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002497 }
Bill Wendling2627a882009-01-30 20:43:18 +00002498 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002499 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002500 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2501 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002502 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002503 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002504 }
Bill Wendling2627a882009-01-30 20:43:18 +00002505 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002506 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002507 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2508 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002509 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002510 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002511 }
2512 }
2513 // canonicalize equivalent to ll == rl
2514 if (LL == RR && LR == RL) {
2515 Op1 = ISD::getSetCCSwappedOperands(Op1);
2516 std::swap(RL, RR);
2517 }
2518 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002519 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002520 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002521 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002522 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002523 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2524 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002525 }
2526 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002527
Bill Wendling2627a882009-01-30 20:43:18 +00002528 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002529 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002530 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002531 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002532 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002533
Nate Begemande996292006-02-03 22:24:05 +00002534 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2535 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002536 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002537 SimplifyDemandedBits(SDValue(N, 0)))
2538 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002539
Nate Begemanded49632005-10-13 03:11:28 +00002540 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002541 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002542 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002543 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002544 // If we zero all the possible extended bits, then we can turn this into
2545 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002546 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002547 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002548 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002549 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002550 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002551 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002552 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002553 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002554 LN0->isVolatile(), LN0->isNonTemporal(),
2555 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002556 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002557 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002558 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002559 }
2560 }
2561 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002562 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002563 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002564 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002565 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002566 // If we zero all the possible extended bits, then we can turn this into
2567 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002568 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002569 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002570 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002571 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002572 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002573 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002574 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002575 LN0->getBasePtr(), LN0->getPointerInfo(),
2576 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002577 LN0->isVolatile(), LN0->isNonTemporal(),
2578 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002579 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002580 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002581 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002582 }
2583 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002584
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002585 // fold (and (load x), 255) -> (zextload x, i8)
2586 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002587 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2588 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2589 (N0.getOpcode() == ISD::ANY_EXTEND &&
2590 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2591 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2592 LoadSDNode *LN0 = HasAnyExt
2593 ? cast<LoadSDNode>(N0.getOperand(0))
2594 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002595 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002596 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002597 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002598 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2599 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2600 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002601
Evan Chengd40d03e2010-01-06 19:38:29 +00002602 if (ExtVT == LoadedVT &&
2603 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002604 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002605
2606 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002607 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002608 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002609 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002610 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2611 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002612 AddToWorkList(N);
2613 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2614 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2615 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002616
Chris Lattneref7634c2010-01-07 21:53:27 +00002617 // Do not change the width of a volatile load.
2618 // Do not generate loads of non-round integer types since these can
2619 // be expensive (and would be wrong if the type is not byte sized).
2620 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2621 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2622 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002623
Chris Lattneref7634c2010-01-07 21:53:27 +00002624 unsigned Alignment = LN0->getAlignment();
2625 SDValue NewPtr = LN0->getBasePtr();
2626
2627 // For big endian targets, we need to add an offset to the pointer
2628 // to load the correct bytes. For little endian systems, we merely
2629 // need to read fewer bytes from the same pointer.
2630 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002631 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2632 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2633 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002634 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2635 NewPtr, DAG.getConstant(PtrOff, PtrType));
2636 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002637 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002638
2639 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002640
Chris Lattneref7634c2010-01-07 21:53:27 +00002641 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2642 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002643 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002644 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002645 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002646 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2647 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002648 AddToWorkList(N);
2649 CombineTo(LN0, Load, Load.getValue(1));
2650 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002651 }
Evan Cheng466685d2006-10-09 20:57:25 +00002652 }
Chris Lattner15045b62006-02-28 06:35:35 +00002653 }
2654 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002655
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002656 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002657}
2658
Evan Cheng9568e5c2011-06-21 06:01:08 +00002659/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2660///
2661SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2662 bool DemandHighBits) {
2663 if (!LegalOperations)
2664 return SDValue();
2665
2666 EVT VT = N->getValueType(0);
2667 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2668 return SDValue();
2669 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2670 return SDValue();
2671
2672 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2673 bool LookPassAnd0 = false;
2674 bool LookPassAnd1 = false;
2675 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2676 std::swap(N0, N1);
2677 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2678 std::swap(N0, N1);
2679 if (N0.getOpcode() == ISD::AND) {
2680 if (!N0.getNode()->hasOneUse())
2681 return SDValue();
2682 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2683 if (!N01C || N01C->getZExtValue() != 0xFF00)
2684 return SDValue();
2685 N0 = N0.getOperand(0);
2686 LookPassAnd0 = true;
2687 }
2688
2689 if (N1.getOpcode() == ISD::AND) {
2690 if (!N1.getNode()->hasOneUse())
2691 return SDValue();
2692 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2693 if (!N11C || N11C->getZExtValue() != 0xFF)
2694 return SDValue();
2695 N1 = N1.getOperand(0);
2696 LookPassAnd1 = true;
2697 }
2698
2699 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2700 std::swap(N0, N1);
2701 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2702 return SDValue();
2703 if (!N0.getNode()->hasOneUse() ||
2704 !N1.getNode()->hasOneUse())
2705 return SDValue();
2706
2707 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2708 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2709 if (!N01C || !N11C)
2710 return SDValue();
2711 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2712 return SDValue();
2713
2714 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2715 SDValue N00 = N0->getOperand(0);
2716 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2717 if (!N00.getNode()->hasOneUse())
2718 return SDValue();
2719 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2720 if (!N001C || N001C->getZExtValue() != 0xFF)
2721 return SDValue();
2722 N00 = N00.getOperand(0);
2723 LookPassAnd0 = true;
2724 }
2725
2726 SDValue N10 = N1->getOperand(0);
2727 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2728 if (!N10.getNode()->hasOneUse())
2729 return SDValue();
2730 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2731 if (!N101C || N101C->getZExtValue() != 0xFF00)
2732 return SDValue();
2733 N10 = N10.getOperand(0);
2734 LookPassAnd1 = true;
2735 }
2736
2737 if (N00 != N10)
2738 return SDValue();
2739
2740 // Make sure everything beyond the low halfword is zero since the SRL 16
2741 // will clear the top bits.
2742 unsigned OpSizeInBits = VT.getSizeInBits();
2743 if (DemandHighBits && OpSizeInBits > 16 &&
2744 (!LookPassAnd0 || !LookPassAnd1) &&
2745 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2746 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002747
Evan Cheng9568e5c2011-06-21 06:01:08 +00002748 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2749 if (OpSizeInBits > 16)
2750 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2751 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2752 return Res;
2753}
2754
2755/// isBSwapHWordElement - Return true if the specified node is an element
2756/// that makes up a 32-bit packed halfword byteswap. i.e.
2757/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2758static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2759 if (!N.getNode()->hasOneUse())
2760 return false;
2761
2762 unsigned Opc = N.getOpcode();
2763 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2764 return false;
2765
2766 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2767 if (!N1C)
2768 return false;
2769
2770 unsigned Num;
2771 switch (N1C->getZExtValue()) {
2772 default:
2773 return false;
2774 case 0xFF: Num = 0; break;
2775 case 0xFF00: Num = 1; break;
2776 case 0xFF0000: Num = 2; break;
2777 case 0xFF000000: Num = 3; break;
2778 }
2779
2780 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2781 SDValue N0 = N.getOperand(0);
2782 if (Opc == ISD::AND) {
2783 if (Num == 0 || Num == 2) {
2784 // (x >> 8) & 0xff
2785 // (x >> 8) & 0xff0000
2786 if (N0.getOpcode() != ISD::SRL)
2787 return false;
2788 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2789 if (!C || C->getZExtValue() != 8)
2790 return false;
2791 } else {
2792 // (x << 8) & 0xff00
2793 // (x << 8) & 0xff000000
2794 if (N0.getOpcode() != ISD::SHL)
2795 return false;
2796 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2797 if (!C || C->getZExtValue() != 8)
2798 return false;
2799 }
2800 } else if (Opc == ISD::SHL) {
2801 // (x & 0xff) << 8
2802 // (x & 0xff0000) << 8
2803 if (Num != 0 && Num != 2)
2804 return false;
2805 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2806 if (!C || C->getZExtValue() != 8)
2807 return false;
2808 } else { // Opc == ISD::SRL
2809 // (x & 0xff00) >> 8
2810 // (x & 0xff000000) >> 8
2811 if (Num != 1 && Num != 3)
2812 return false;
2813 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2814 if (!C || C->getZExtValue() != 8)
2815 return false;
2816 }
2817
2818 if (Parts[Num])
2819 return false;
2820
2821 Parts[Num] = N0.getOperand(0).getNode();
2822 return true;
2823}
2824
2825/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2826/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2827/// => (rotl (bswap x), 16)
2828SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2829 if (!LegalOperations)
2830 return SDValue();
2831
2832 EVT VT = N->getValueType(0);
2833 if (VT != MVT::i32)
2834 return SDValue();
2835 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2836 return SDValue();
2837
2838 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2839 // Look for either
2840 // (or (or (and), (and)), (or (and), (and)))
2841 // (or (or (or (and), (and)), (and)), (and))
2842 if (N0.getOpcode() != ISD::OR)
2843 return SDValue();
2844 SDValue N00 = N0.getOperand(0);
2845 SDValue N01 = N0.getOperand(1);
2846
2847 if (N1.getOpcode() == ISD::OR) {
2848 // (or (or (and), (and)), (or (and), (and)))
2849 SDValue N000 = N00.getOperand(0);
2850 if (!isBSwapHWordElement(N000, Parts))
2851 return SDValue();
2852
2853 SDValue N001 = N00.getOperand(1);
2854 if (!isBSwapHWordElement(N001, Parts))
2855 return SDValue();
2856 SDValue N010 = N01.getOperand(0);
2857 if (!isBSwapHWordElement(N010, Parts))
2858 return SDValue();
2859 SDValue N011 = N01.getOperand(1);
2860 if (!isBSwapHWordElement(N011, Parts))
2861 return SDValue();
2862 } else {
2863 // (or (or (or (and), (and)), (and)), (and))
2864 if (!isBSwapHWordElement(N1, Parts))
2865 return SDValue();
2866 if (!isBSwapHWordElement(N01, Parts))
2867 return SDValue();
2868 if (N00.getOpcode() != ISD::OR)
2869 return SDValue();
2870 SDValue N000 = N00.getOperand(0);
2871 if (!isBSwapHWordElement(N000, Parts))
2872 return SDValue();
2873 SDValue N001 = N00.getOperand(1);
2874 if (!isBSwapHWordElement(N001, Parts))
2875 return SDValue();
2876 }
2877
2878 // Make sure the parts are all coming from the same node.
2879 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2880 return SDValue();
2881
2882 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2883 SDValue(Parts[0],0));
2884
2885 // Result of the bswap should be rotated by 16. If it's not legal, than
2886 // do (x << 16) | (x >> 16).
2887 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
2888 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
2889 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
2890 else if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
2891 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
2892 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
2893 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
2894 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
2895}
2896
Dan Gohman475871a2008-07-27 21:46:04 +00002897SDValue DAGCombiner::visitOR(SDNode *N) {
2898 SDValue N0 = N->getOperand(0);
2899 SDValue N1 = N->getOperand(1);
2900 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002901 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2902 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002903 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002904
Dan Gohman7f321562007-06-25 16:23:39 +00002905 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002906 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002907 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002908 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002909 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002910
Dan Gohman613e0d82007-07-03 14:03:57 +00002911 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00002912 if (!LegalOperations &&
2913 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00002914 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
2915 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
2916 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00002917 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002918 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002919 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002920 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002921 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00002922 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002923 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002924 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002925 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002926 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002927 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002928 return N1;
2929 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002930 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002931 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00002932
2933 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
2934 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
2935 if (BSwap.getNode() != 0)
2936 return BSwap;
2937 BSwap = MatchBSwapHWordLow(N, N0, N1);
2938 if (BSwap.getNode() != 0)
2939 return BSwap;
2940
Nate Begemancd4d58c2006-02-03 06:46:56 +00002941 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00002942 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002943 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002944 return ROR;
2945 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002946 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00002947 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00002948 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00002949 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00002950 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002951 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
2952 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
2953 N0.getOperand(0), N1),
2954 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00002955 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002956 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
2957 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2958 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2959 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002960
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002961 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002962 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00002963 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
2964 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002965 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002966 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00002967 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
2968 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002969 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00002970 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002971 }
Bill Wendling09025642009-01-30 20:59:34 +00002972 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
2973 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00002974 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002975 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00002976 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
2977 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002978 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00002979 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002980 }
2981 }
2982 // canonicalize equivalent to ll == rl
2983 if (LL == RR && LR == RL) {
2984 Op1 = ISD::getSetCCSwappedOperands(Op1);
2985 std::swap(RL, RR);
2986 }
2987 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002988 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002989 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002990 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002991 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00002992 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2993 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002994 }
2995 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002996
Bill Wendling09025642009-01-30 20:59:34 +00002997 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002998 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002999 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003000 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003001 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003002
Bill Wendling09025642009-01-30 20:59:34 +00003003 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00003004 if (N0.getOpcode() == ISD::AND &&
3005 N1.getOpcode() == ISD::AND &&
3006 N0.getOperand(1).getOpcode() == ISD::Constant &&
3007 N1.getOperand(1).getOpcode() == ISD::Constant &&
3008 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00003009 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00003010 // We can only do this xform if we know that bits from X that are set in C2
3011 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003012 const APInt &LHSMask =
3013 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3014 const APInt &RHSMask =
3015 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003016
Dan Gohmanea859be2007-06-22 14:59:07 +00003017 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3018 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00003019 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
3020 N0.getOperand(0), N1.getOperand(0));
3021 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
3022 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00003023 }
3024 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003025
Chris Lattner516b9622006-09-14 20:50:57 +00003026 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00003027 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00003028 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00003029
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003030 // Simplify the operands using demanded-bits information.
3031 if (!VT.isVector() &&
3032 SimplifyDemandedBits(SDValue(N, 0)))
3033 return SDValue(N, 0);
3034
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003035 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003036}
3037
Chris Lattner516b9622006-09-14 20:50:57 +00003038/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003039static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00003040 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00003041 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00003042 Mask = Op.getOperand(1);
3043 Op = Op.getOperand(0);
3044 } else {
3045 return false;
3046 }
3047 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003048
Chris Lattner516b9622006-09-14 20:50:57 +00003049 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3050 Shift = Op;
3051 return true;
3052 }
Bill Wendling09025642009-01-30 20:59:34 +00003053
Scott Michelfdc40a02009-02-17 22:15:04 +00003054 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00003055}
3056
Chris Lattner516b9622006-09-14 20:50:57 +00003057// MatchRotate - Handle an 'or' of two operands. If this is one of the many
3058// idioms for rotate, and if the target supports rotation instructions, generate
3059// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00003060SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003061 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00003062 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00003063 if (!TLI.isTypeLegal(VT)) return 0;
3064
3065 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003066 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3067 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00003068 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003069
Chris Lattner516b9622006-09-14 20:50:57 +00003070 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00003071 SDValue LHSShift; // The shift.
3072 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003073 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3074 return 0; // Not part of a rotate.
3075
Dan Gohman475871a2008-07-27 21:46:04 +00003076 SDValue RHSShift; // The shift.
3077 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00003078 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3079 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00003080
Chris Lattner516b9622006-09-14 20:50:57 +00003081 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3082 return 0; // Not shifting the same value.
3083
3084 if (LHSShift.getOpcode() == RHSShift.getOpcode())
3085 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00003086
Chris Lattner516b9622006-09-14 20:50:57 +00003087 // Canonicalize shl to left side in a shl/srl pair.
3088 if (RHSShift.getOpcode() == ISD::SHL) {
3089 std::swap(LHS, RHS);
3090 std::swap(LHSShift, RHSShift);
3091 std::swap(LHSMask , RHSMask );
3092 }
3093
Duncan Sands83ec4b62008-06-06 12:08:01 +00003094 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003095 SDValue LHSShiftArg = LHSShift.getOperand(0);
3096 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3097 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003098
3099 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3100 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003101 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3102 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003103 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3104 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003105 if ((LShVal + RShVal) != OpSizeInBits)
3106 return 0;
3107
Dan Gohman475871a2008-07-27 21:46:04 +00003108 SDValue Rot;
Chris Lattner516b9622006-09-14 20:50:57 +00003109 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003110 Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00003111 else
Bill Wendling317bd702009-01-30 21:14:50 +00003112 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003113
Chris Lattner516b9622006-09-14 20:50:57 +00003114 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003115 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003116 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003117
Gabor Greifba36cb52008-08-28 21:40:38 +00003118 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003119 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3120 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003121 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003122 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003123 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3124 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003125 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003126
Bill Wendling317bd702009-01-30 21:14:50 +00003127 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003128 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003129
Gabor Greifba36cb52008-08-28 21:40:38 +00003130 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003131 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003132
Chris Lattner516b9622006-09-14 20:50:57 +00003133 // If there is a mask here, and we have a variable shift, we can't be sure
3134 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003135 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003136 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003137
Chris Lattner516b9622006-09-14 20:50:57 +00003138 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3139 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003140 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3141 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003142 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003143 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003144 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00003145 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003146 return DAG.getNode(ISD::ROTL, DL, VT,
3147 LHSShiftArg, LHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003148 else
Bill Wendling317bd702009-01-30 21:14:50 +00003149 return DAG.getNode(ISD::ROTR, DL, VT,
3150 LHSShiftArg, RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003151 }
Chris Lattner516b9622006-09-14 20:50:57 +00003152 }
3153 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003154
Chris Lattner516b9622006-09-14 20:50:57 +00003155 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3156 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003157 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3158 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003159 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003160 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003161 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling2692d592008-08-31 01:13:31 +00003162 if (HasROTR)
Bill Wendling317bd702009-01-30 21:14:50 +00003163 return DAG.getNode(ISD::ROTR, DL, VT,
3164 LHSShiftArg, RHSShiftAmt).getNode();
Bill Wendling2692d592008-08-31 01:13:31 +00003165 else
Bill Wendling317bd702009-01-30 21:14:50 +00003166 return DAG.getNode(ISD::ROTL, DL, VT,
3167 LHSShiftArg, LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003168 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003169 }
3170 }
3171
Dan Gohman74feef22008-10-17 01:23:35 +00003172 // Look for sign/zext/any-extended or truncate cases:
Scott Michelc9dc1142007-04-02 21:36:32 +00003173 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3174 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003175 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3176 || LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
Scott Michelc9dc1142007-04-02 21:36:32 +00003177 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3178 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003179 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3180 || RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003181 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3182 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003183 if (RExtOp0.getOpcode() == ISD::SUB &&
3184 RExtOp0.getOperand(1) == LExtOp0) {
3185 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003186 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003187 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003188 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003189 if (ConstantSDNode *SUBC =
3190 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003191 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003192 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3193 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003194 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003195 }
3196 }
3197 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3198 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003199 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003200 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003201 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003202 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003203 if (ConstantSDNode *SUBC =
3204 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003205 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003206 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3207 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003208 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003209 }
3210 }
Chris Lattner516b9622006-09-14 20:50:57 +00003211 }
3212 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003213
Chris Lattner516b9622006-09-14 20:50:57 +00003214 return 0;
3215}
3216
Dan Gohman475871a2008-07-27 21:46:04 +00003217SDValue DAGCombiner::visitXOR(SDNode *N) {
3218 SDValue N0 = N->getOperand(0);
3219 SDValue N1 = N->getOperand(1);
3220 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003221 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3222 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003223 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003224
Dan Gohman7f321562007-06-25 16:23:39 +00003225 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003226 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003227 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003228 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003229 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003230
Evan Cheng26471c42008-03-25 20:08:07 +00003231 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3232 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3233 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003234 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003235 if (N0.getOpcode() == ISD::UNDEF)
3236 return N0;
3237 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003238 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003239 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003240 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003241 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003242 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003243 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003244 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003245 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003246 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003247 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003248 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003249 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003250 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003251 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003252
Nate Begeman1d4d4142005-09-01 00:19:25 +00003253 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003254 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003255 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003256 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3257 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003258
Duncan Sands25cf2272008-11-24 14:53:14 +00003259 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003260 switch (N0.getOpcode()) {
3261 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003262 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003263 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003264 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003265 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003266 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003267 N0.getOperand(3), NotCC);
3268 }
3269 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003270 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003271
Chris Lattner61c5ff42007-09-10 21:39:07 +00003272 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003273 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003274 N0.getNode()->hasOneUse() &&
3275 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003276 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003277 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003278 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003279 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003280 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003281 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003282
Bill Wendling317bd702009-01-30 21:14:50 +00003283 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003284 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003285 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003286 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003287 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3288 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003289 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3290 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003291 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003292 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003293 }
3294 }
Bill Wendling317bd702009-01-30 21:14:50 +00003295 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003296 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003297 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003298 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003299 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3300 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003301 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3302 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003303 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003304 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003305 }
3306 }
Bill Wendling317bd702009-01-30 21:14:50 +00003307 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003308 if (N1C && N0.getOpcode() == ISD::XOR) {
3309 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3310 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3311 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003312 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3313 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003314 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003315 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003316 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3317 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003318 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003319 }
3320 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003321 if (N0 == N1)
3322 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003323
Chris Lattner35e5c142006-05-05 05:51:50 +00003324 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3325 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003326 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003327 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003328 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003329
Chris Lattner3e104b12006-04-08 04:15:24 +00003330 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003331 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003332 SimplifyDemandedBits(SDValue(N, 0)))
3333 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003334
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003335 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003336}
3337
Chris Lattnere70da202007-12-06 07:33:36 +00003338/// visitShiftByConstant - Handle transforms common to the three shifts, when
3339/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003340SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003341 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003342 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003343
Chris Lattnere70da202007-12-06 07:33:36 +00003344 // We want to pull some binops through shifts, so that we have (and (shift))
3345 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3346 // thing happens with address calculations, so it's important to canonicalize
3347 // it.
3348 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003349
Chris Lattnere70da202007-12-06 07:33:36 +00003350 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003351 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003352 case ISD::OR:
3353 case ISD::XOR:
3354 HighBitSet = false; // We can only transform sra if the high bit is clear.
3355 break;
3356 case ISD::AND:
3357 HighBitSet = true; // We can only transform sra if the high bit is set.
3358 break;
3359 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003360 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003361 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003362 HighBitSet = false; // We can only transform sra if the high bit is clear.
3363 break;
3364 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003365
Chris Lattnere70da202007-12-06 07:33:36 +00003366 // We require the RHS of the binop to be a constant as well.
3367 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003368 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003369
3370 // FIXME: disable this unless the input to the binop is a shift by a constant.
3371 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003372 //
Bill Wendling88103372009-01-30 21:37:17 +00003373 // void foo(int *X, int i) { X[i & 1235] = 1; }
3374 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003375 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003376 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003377 BinOpLHSVal->getOpcode() != ISD::SRA &&
3378 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3379 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003380 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003381
Owen Andersone50ed302009-08-10 22:56:29 +00003382 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003383
Bill Wendling88103372009-01-30 21:37:17 +00003384 // If this is a signed shift right, and the high bit is modified by the
3385 // logical operation, do not perform the transformation. The highBitSet
3386 // boolean indicates the value of the high bit of the constant which would
3387 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003388 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003389 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3390 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003391 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003392 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003393
Chris Lattnere70da202007-12-06 07:33:36 +00003394 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003395 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3396 N->getValueType(0),
3397 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003398
3399 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003400 SDValue NewShift = DAG.getNode(N->getOpcode(),
3401 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003402 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003403
3404 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003405 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003406}
3407
Dan Gohman475871a2008-07-27 21:46:04 +00003408SDValue DAGCombiner::visitSHL(SDNode *N) {
3409 SDValue N0 = N->getOperand(0);
3410 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003411 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3412 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003413 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003414 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003415
Nate Begeman1d4d4142005-09-01 00:19:25 +00003416 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003417 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003418 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003419 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003420 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003421 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003422 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003423 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003424 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003425 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003426 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003427 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003428 // fold (shl undef, x) -> 0
3429 if (N0.getOpcode() == ISD::UNDEF)
3430 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003431 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003432 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003433 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003434 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003435 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003436 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003437 N1.getOperand(0).getOpcode() == ISD::AND &&
3438 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003439 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003440 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003441 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003442 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003443 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003444 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003445 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003446 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3447 DAG.getNode(ISD::TRUNCATE,
3448 N->getDebugLoc(),
3449 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003450 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003451 }
3452 }
3453
Dan Gohman475871a2008-07-27 21:46:04 +00003454 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3455 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003456
3457 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003458 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003459 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003460 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3461 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003462 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003463 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003464 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003465 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003466 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003467
3468 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3469 // For this to be valid, the second form must not preserve any of the bits
3470 // that are shifted out by the inner shift in the first form. This means
3471 // the outer shift size must be >= the number of bits added by the ext.
3472 // As a corollary, we don't care what kind of ext it is.
3473 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3474 N0.getOpcode() == ISD::ANY_EXTEND ||
3475 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3476 N0.getOperand(0).getOpcode() == ISD::SHL &&
3477 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003478 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003479 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3480 uint64_t c2 = N1C->getZExtValue();
3481 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3482 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3483 if (c2 >= OpSizeInBits - InnerShiftSize) {
3484 if (c1 + c2 >= OpSizeInBits)
3485 return DAG.getConstant(0, VT);
3486 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3487 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3488 N0.getOperand(0)->getOperand(0)),
3489 DAG.getConstant(c1 + c2, N1.getValueType()));
3490 }
3491 }
3492
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003493 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3494 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003495 // Only fold this if the inner shift has no other uses -- if it does, folding
3496 // this will increase the total number of instructions.
3497 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003498 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003499 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003500 if (c1 < VT.getSizeInBits()) {
3501 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003502 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3503 VT.getSizeInBits() - c1);
3504 SDValue Shift;
3505 if (c2 > c1) {
3506 Mask = Mask.shl(c2-c1);
3507 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3508 DAG.getConstant(c2-c1, N1.getValueType()));
3509 } else {
3510 Mask = Mask.lshr(c1-c2);
3511 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3512 DAG.getConstant(c1-c2, N1.getValueType()));
3513 }
3514 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3515 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003516 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003517 }
Bill Wendling88103372009-01-30 21:37:17 +00003518 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003519 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3520 SDValue HiBitsMask =
3521 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3522 VT.getSizeInBits() -
3523 N1C->getZExtValue()),
3524 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003525 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003526 HiBitsMask);
3527 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003528
Evan Chenge5b51ac2010-04-17 06:13:15 +00003529 if (N1C) {
3530 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3531 if (NewSHL.getNode())
3532 return NewSHL;
3533 }
3534
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003535 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003536}
3537
Dan Gohman475871a2008-07-27 21:46:04 +00003538SDValue DAGCombiner::visitSRA(SDNode *N) {
3539 SDValue N0 = N->getOperand(0);
3540 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003541 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3542 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003543 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003544 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003545
Bill Wendling88103372009-01-30 21:37:17 +00003546 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003547 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003548 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003549 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003550 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003551 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003552 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003553 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003554 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003555 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003556 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003557 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003558 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003559 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003560 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003561 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3562 // sext_inreg.
3563 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003564 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003565 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3566 if (VT.isVector())
3567 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3568 ExtVT, VT.getVectorNumElements());
3569 if ((!LegalOperations ||
3570 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003571 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003572 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003573 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003574
Bill Wendling88103372009-01-30 21:37:17 +00003575 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003576 if (N1C && N0.getOpcode() == ISD::SRA) {
3577 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003578 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003579 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003580 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003581 DAG.getConstant(Sum, N1C->getValueType(0)));
3582 }
3583 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003584
Bill Wendling88103372009-01-30 21:37:17 +00003585 // fold (sra (shl X, m), (sub result_size, n))
3586 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003587 // result_size - n != m.
3588 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003589 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003590 if (N0.getOpcode() == ISD::SHL) {
3591 // Get the two constanst of the shifts, CN0 = m, CN = n.
3592 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3593 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003594 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003595 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003596 EVT::getIntegerVT(*DAG.getContext(),
3597 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003598 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003599 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003600
Scott Michelfdc40a02009-02-17 22:15:04 +00003601 // If the shift is not a no-op (in which case this should be just a sign
3602 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003603 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003604 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003605 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003606 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3607 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003608 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003609
Owen Anderson95771af2011-02-25 21:41:48 +00003610 SDValue Amt = DAG.getConstant(ShiftAmt,
3611 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003612 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3613 N0.getOperand(0), Amt);
3614 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3615 Shift);
3616 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3617 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003618 }
3619 }
3620 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003621
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003622 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003623 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003624 N1.getOperand(0).getOpcode() == ISD::AND &&
3625 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003626 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003627 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003628 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003629 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003630 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003631 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003632 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003633 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003634 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003635 DAG.getNode(ISD::TRUNCATE,
3636 N->getDebugLoc(),
3637 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003638 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003639 }
3640 }
3641
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003642 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3643 // if c1 is equal to the number of bits the trunc removes
3644 if (N0.getOpcode() == ISD::TRUNCATE &&
3645 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3646 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3647 N0.getOperand(0).hasOneUse() &&
3648 N0.getOperand(0).getOperand(1).hasOneUse() &&
3649 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3650 EVT LargeVT = N0.getOperand(0).getValueType();
3651 ConstantSDNode *LargeShiftAmt =
3652 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3653
3654 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3655 LargeShiftAmt->getZExtValue()) {
3656 SDValue Amt =
3657 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003658 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003659 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3660 N0.getOperand(0).getOperand(0), Amt);
3661 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3662 }
3663 }
3664
Scott Michelfdc40a02009-02-17 22:15:04 +00003665 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003666 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3667 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003668
3669
Nate Begeman1d4d4142005-09-01 00:19:25 +00003670 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003671 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003672 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003673
Evan Chenge5b51ac2010-04-17 06:13:15 +00003674 if (N1C) {
3675 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3676 if (NewSRA.getNode())
3677 return NewSRA;
3678 }
3679
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003680 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003681}
3682
Dan Gohman475871a2008-07-27 21:46:04 +00003683SDValue DAGCombiner::visitSRL(SDNode *N) {
3684 SDValue N0 = N->getOperand(0);
3685 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003686 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3687 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003688 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003689 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003690
Nate Begeman1d4d4142005-09-01 00:19:25 +00003691 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003692 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003693 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003694 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003695 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003696 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003697 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003698 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003699 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003700 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003701 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003702 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003703 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003704 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003705 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003706 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003707
Bill Wendling88103372009-01-30 21:37:17 +00003708 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003709 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003710 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003711 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3712 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003713 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003714 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003715 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003716 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003717 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003718
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003719 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003720 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3721 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003722 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003723 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003724 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3725 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003726 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3727 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003728 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003729 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003730 if (c1 + OpSizeInBits == InnerShiftSize) {
3731 if (c1 + c2 >= InnerShiftSize)
3732 return DAG.getConstant(0, VT);
3733 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003734 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003735 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003736 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003737 }
3738 }
3739
Chris Lattnerefcddc32010-04-15 05:28:43 +00003740 // fold (srl (shl x, c), c) -> (and x, cst2)
3741 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3742 N0.getValueSizeInBits() <= 64) {
3743 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3744 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3745 DAG.getConstant(~0ULL >> ShAmt, VT));
3746 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003747
Scott Michelfdc40a02009-02-17 22:15:04 +00003748
Chris Lattner06afe072006-05-05 22:53:17 +00003749 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3750 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3751 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003752 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003753 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003754 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003755
Evan Chenge5b51ac2010-04-17 06:13:15 +00003756 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003757 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003758 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003759 N0.getOperand(0),
3760 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003761 AddToWorkList(SmallShift.getNode());
3762 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3763 }
Chris Lattner06afe072006-05-05 22:53:17 +00003764 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003765
Chris Lattner3657ffe2006-10-12 20:23:19 +00003766 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3767 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003768 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003769 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003770 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003771 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003772
Chris Lattner350bec02006-04-02 06:11:11 +00003773 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003774 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003775 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003776 APInt KnownZero, KnownOne;
Dan Gohman5b870af2010-03-02 02:14:38 +00003777 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00003778 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003779
Chris Lattner350bec02006-04-02 06:11:11 +00003780 // If any of the input bits are KnownOne, then the input couldn't be all
3781 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003782 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003783
Chris Lattner350bec02006-04-02 06:11:11 +00003784 // If all of the bits input the to ctlz node are known to be zero, then
3785 // the result of the ctlz is "32" and the result of the shift is one.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003786 APInt UnknownBits = ~KnownZero & Mask;
Chris Lattner350bec02006-04-02 06:11:11 +00003787 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003788
Chris Lattner350bec02006-04-02 06:11:11 +00003789 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003790 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003791 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003792 // could be set on input to the CTLZ node. If this bit is set, the SRL
3793 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3794 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003795 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003796 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003797
Chris Lattner350bec02006-04-02 06:11:11 +00003798 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003799 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003800 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003801 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003802 }
Bill Wendling88103372009-01-30 21:37:17 +00003803
3804 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3805 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003806 }
3807 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003808
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003809 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003810 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003811 N1.getOperand(0).getOpcode() == ISD::AND &&
3812 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003813 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003814 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003815 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003816 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003817 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003818 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003819 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003820 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003821 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003822 DAG.getNode(ISD::TRUNCATE,
3823 N->getDebugLoc(),
3824 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003825 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003826 }
3827 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003828
Chris Lattner61a4c072007-04-18 03:06:49 +00003829 // fold operands of srl based on knowledge that the low bits are not
3830 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003831 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3832 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003833
Evan Cheng9ab2b982009-12-18 21:31:31 +00003834 if (N1C) {
3835 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3836 if (NewSRL.getNode())
3837 return NewSRL;
3838 }
3839
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003840 // Attempt to convert a srl of a load into a narrower zero-extending load.
3841 SDValue NarrowLoad = ReduceLoadWidth(N);
3842 if (NarrowLoad.getNode())
3843 return NarrowLoad;
3844
Evan Cheng9ab2b982009-12-18 21:31:31 +00003845 // Here is a common situation. We want to optimize:
3846 //
3847 // %a = ...
3848 // %b = and i32 %a, 2
3849 // %c = srl i32 %b, 1
3850 // brcond i32 %c ...
3851 //
3852 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003853 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003854 // %a = ...
3855 // %b = and %a, 2
3856 // %c = setcc eq %b, 0
3857 // brcond %c ...
3858 //
3859 // However when after the source operand of SRL is optimized into AND, the SRL
3860 // itself may not be optimized further. Look for it and add the BRCOND into
3861 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003862 if (N->hasOneUse()) {
3863 SDNode *Use = *N->use_begin();
3864 if (Use->getOpcode() == ISD::BRCOND)
3865 AddToWorkList(Use);
3866 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3867 // Also look pass the truncate.
3868 Use = *Use->use_begin();
3869 if (Use->getOpcode() == ISD::BRCOND)
3870 AddToWorkList(Use);
3871 }
3872 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003873
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003874 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003875}
3876
Dan Gohman475871a2008-07-27 21:46:04 +00003877SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3878 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003879 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003880
3881 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003882 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003883 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003884 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003885}
3886
Chandler Carruth63974b22011-12-13 01:56:10 +00003887SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3888 SDValue N0 = N->getOperand(0);
3889 EVT VT = N->getValueType(0);
3890
3891 // fold (ctlz_zero_undef c1) -> c2
3892 if (isa<ConstantSDNode>(N0))
3893 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3894 return SDValue();
3895}
3896
Dan Gohman475871a2008-07-27 21:46:04 +00003897SDValue DAGCombiner::visitCTTZ(SDNode *N) {
3898 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003899 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003900
Nate Begeman1d4d4142005-09-01 00:19:25 +00003901 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003902 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003903 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003904 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003905}
3906
Chandler Carruth63974b22011-12-13 01:56:10 +00003907SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
3908 SDValue N0 = N->getOperand(0);
3909 EVT VT = N->getValueType(0);
3910
3911 // fold (cttz_zero_undef c1) -> c2
3912 if (isa<ConstantSDNode>(N0))
3913 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3914 return SDValue();
3915}
3916
Dan Gohman475871a2008-07-27 21:46:04 +00003917SDValue DAGCombiner::visitCTPOP(SDNode *N) {
3918 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003919 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003920
Nate Begeman1d4d4142005-09-01 00:19:25 +00003921 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003922 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003923 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003924 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003925}
3926
Dan Gohman475871a2008-07-27 21:46:04 +00003927SDValue DAGCombiner::visitSELECT(SDNode *N) {
3928 SDValue N0 = N->getOperand(0);
3929 SDValue N1 = N->getOperand(1);
3930 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003931 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3932 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3933 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00003934 EVT VT = N->getValueType(0);
3935 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00003936
Bill Wendling34584e62009-01-30 22:02:18 +00003937 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003938 if (N1 == N2)
3939 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003940 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003941 if (N0C && !N0C->isNullValue())
3942 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003943 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00003944 if (N0C && N0C->isNullValue())
3945 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00003946 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00003947 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00003948 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
3949 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00003950 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00003951 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00003952 (VT0.isInteger() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00003953 TLI.getBooleanContents(false) == TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00003954 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00003955 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00003956 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00003957 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
3958 N0, DAG.getConstant(1, VT0));
3959 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
3960 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00003961 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00003962 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00003963 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
3964 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00003965 }
Bill Wendling34584e62009-01-30 22:02:18 +00003966 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00003967 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00003968 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00003969 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00003970 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003971 }
Bill Wendling34584e62009-01-30 22:02:18 +00003972 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00003973 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00003974 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00003975 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00003976 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003977 }
Bill Wendling34584e62009-01-30 22:02:18 +00003978 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00003979 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00003980 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
3981 // fold (select X, X, Y) -> (or X, Y)
3982 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00003983 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00003984 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
3985 // fold (select X, Y, X) -> (and X, Y)
3986 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00003987 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00003988 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00003989
Chris Lattner40c62d52005-10-18 06:04:22 +00003990 // If we can fold this based on the true/false value, do so.
3991 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00003992 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003993
Nate Begeman44728a72005-09-19 22:34:01 +00003994 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003995 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003996 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00003997 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00003998 // having to say they don't support SELECT_CC on every type the DAG knows
3999 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00004000 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00004001 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00004002 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
4003 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00004004 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00004005 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00004006 }
Bill Wendling34584e62009-01-30 22:02:18 +00004007
Dan Gohman475871a2008-07-27 21:46:04 +00004008 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00004009}
4010
Dan Gohman475871a2008-07-27 21:46:04 +00004011SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4012 SDValue N0 = N->getOperand(0);
4013 SDValue N1 = N->getOperand(1);
4014 SDValue N2 = N->getOperand(2);
4015 SDValue N3 = N->getOperand(3);
4016 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00004017 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00004018
Nate Begeman44728a72005-09-19 22:34:01 +00004019 // fold select_cc lhs, rhs, x, x, cc -> x
4020 if (N2 == N3)
4021 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00004022
Chris Lattner5f42a242006-09-20 06:19:26 +00004023 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00004024 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004025 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00004026 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00004027
Gabor Greifba36cb52008-08-28 21:40:38 +00004028 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00004029 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00004030 return N2; // cond always true -> true val
4031 else
4032 return N3; // cond always false -> false val
4033 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004034
Chris Lattner5f42a242006-09-20 06:19:26 +00004035 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00004036 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00004037 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
4038 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00004039 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00004040
Chris Lattner40c62d52005-10-18 06:04:22 +00004041 // If we can fold this based on the true/false value, do so.
4042 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00004043 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00004044
Nate Begeman44728a72005-09-19 22:34:01 +00004045 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00004046 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00004047}
4048
Dan Gohman475871a2008-07-27 21:46:04 +00004049SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00004050 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00004051 cast<CondCodeSDNode>(N->getOperand(2))->get(),
4052 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00004053}
4054
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004055// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00004056// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004057// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00004058// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00004059static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004060 unsigned ExtOpc,
4061 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00004062 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004063 bool HasCopyToRegUses = false;
4064 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00004065 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4066 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004067 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00004068 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004069 if (User == N)
4070 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00004071 if (UI.getUse().getResNo() != N0.getResNo())
4072 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004073 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00004074 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004075 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4076 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4077 // Sign bits will be lost after a zext.
4078 return false;
4079 bool Add = false;
4080 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004081 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004082 if (UseOp == N0)
4083 continue;
4084 if (!isa<ConstantSDNode>(UseOp))
4085 return false;
4086 Add = true;
4087 }
4088 if (Add)
4089 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004090 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004091 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004092 // If truncates aren't free and there are users we can't
4093 // extend, it isn't worthwhile.
4094 if (!isTruncFree)
4095 return false;
4096 // Remember if this value is live-out.
4097 if (User->getOpcode() == ISD::CopyToReg)
4098 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004099 }
4100
4101 if (HasCopyToRegUses) {
4102 bool BothLiveOut = false;
4103 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4104 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004105 SDUse &Use = UI.getUse();
4106 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4107 BothLiveOut = true;
4108 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004109 }
4110 }
4111 if (BothLiveOut)
4112 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004113 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004114 return ExtendNodes.size();
4115 }
4116 return true;
4117}
4118
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004119void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4120 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4121 ISD::NodeType ExtType) {
4122 // Extend SetCC uses if necessary.
4123 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4124 SDNode *SetCC = SetCCs[i];
4125 SmallVector<SDValue, 4> Ops;
4126
4127 for (unsigned j = 0; j != 2; ++j) {
4128 SDValue SOp = SetCC->getOperand(j);
4129 if (SOp == Trunc)
4130 Ops.push_back(ExtLoad);
4131 else
4132 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4133 }
4134
4135 Ops.push_back(SetCC->getOperand(2));
4136 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4137 &Ops[0], Ops.size()));
4138 }
4139}
4140
Dan Gohman475871a2008-07-27 21:46:04 +00004141SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4142 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004143 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004144
Nate Begeman1d4d4142005-09-01 00:19:25 +00004145 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004146 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004147 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004148
Nate Begeman1d4d4142005-09-01 00:19:25 +00004149 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004150 // fold (sext (aext x)) -> (sext x)
4151 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004152 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4153 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004154
Chris Lattner22558872007-02-26 03:13:59 +00004155 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004156 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4157 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004158 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4159 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004160 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4161 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004162 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004163 // CombineTo deleted the truncate, if needed, but not what's under it.
4164 AddToWorkList(oye);
4165 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004166 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004167 }
Evan Chengc88138f2007-03-22 01:54:19 +00004168
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004169 // See if the value being truncated is already sign extended. If so, just
4170 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004171 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004172 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4173 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4174 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004175 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004176
Chris Lattner22558872007-02-26 03:13:59 +00004177 if (OpBits == DestBits) {
4178 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4179 // bits, it is already ready.
4180 if (NumSignBits > DestBits-MidBits)
4181 return Op;
4182 } else if (OpBits < DestBits) {
4183 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4184 // bits, just sext from i32.
4185 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004186 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004187 } else {
4188 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4189 // bits, just truncate to i32.
4190 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004191 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004192 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004193
Chris Lattner22558872007-02-26 03:13:59 +00004194 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004195 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4196 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004197 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004198 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004199 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004200 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4201 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004202 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004203 }
Chris Lattner6007b842006-09-21 06:00:20 +00004204 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004205
Evan Cheng110dec22005-12-14 02:19:23 +00004206 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004207 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004208 // on vectors in one instruction. We only perform this transformation on
4209 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004210 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004211 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004212 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004213 bool DoXform = true;
4214 SmallVector<SDNode*, 4> SetCCs;
4215 if (!N0.hasOneUse())
4216 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4217 if (DoXform) {
4218 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004219 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004220 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004221 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004222 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004223 LN0->isVolatile(), LN0->isNonTemporal(),
4224 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004225 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004226 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4227 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004228 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004229 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4230 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004231 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004232 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004233 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004234
4235 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4236 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004237 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4238 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004239 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004240 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004241 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004242 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004243 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004244 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004245 LN0->getBasePtr(), LN0->getPointerInfo(),
4246 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004247 LN0->isVolatile(), LN0->isNonTemporal(),
4248 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004249 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004250 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004251 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4252 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004253 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004254 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004255 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004256 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004257
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004258 // fold (sext (and/or/xor (load x), cst)) ->
4259 // (and/or/xor (sextload x), (sext cst))
4260 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4261 N0.getOpcode() == ISD::XOR) &&
4262 isa<LoadSDNode>(N0.getOperand(0)) &&
4263 N0.getOperand(1).getOpcode() == ISD::Constant &&
4264 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4265 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4266 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4267 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4268 bool DoXform = true;
4269 SmallVector<SDNode*, 4> SetCCs;
4270 if (!N0.hasOneUse())
4271 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4272 SetCCs, TLI);
4273 if (DoXform) {
4274 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4275 LN0->getChain(), LN0->getBasePtr(),
4276 LN0->getPointerInfo(),
4277 LN0->getMemoryVT(),
4278 LN0->isVolatile(),
4279 LN0->isNonTemporal(),
4280 LN0->getAlignment());
4281 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4282 Mask = Mask.sext(VT.getSizeInBits());
4283 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4284 ExtLoad, DAG.getConstant(Mask, VT));
4285 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4286 N0.getOperand(0).getDebugLoc(),
4287 N0.getOperand(0).getValueType(), ExtLoad);
4288 CombineTo(N, And);
4289 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4290 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4291 ISD::SIGN_EXTEND);
4292 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4293 }
4294 }
4295 }
4296
Chris Lattner20a35c32007-04-11 05:32:27 +00004297 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004298 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004299 // Only do this before legalize for now.
4300 if (VT.isVector() && !LegalOperations) {
4301 EVT N0VT = N0.getOperand(0).getValueType();
Chris Lattner2b7a2712009-07-08 00:31:33 +00004302 // We know that the # elements of the results is the same as the
4303 // # elements of the compare (and the # elements of the compare result
4304 // for that matter). Check to see that they are the same size. If so,
4305 // we know that the element size of the sext'd result matches the
4306 // element size of the compare operands.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004307 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004308 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004309 N0.getOperand(1),
4310 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004311 // If the desired elements are smaller or larger than the source
4312 // elements we can use a matching integer vector type and then
4313 // truncate/sign extend
4314 else {
Duncan Sands34727662010-07-12 08:16:59 +00004315 EVT MatchingElementType =
4316 EVT::getIntegerVT(*DAG.getContext(),
4317 N0VT.getScalarType().getSizeInBits());
4318 EVT MatchingVectorType =
4319 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4320 N0VT.getVectorNumElements());
4321 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004322 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004323 N0.getOperand(1),
4324 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4325 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004326 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004327 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004328
Chris Lattner2b7a2712009-07-08 00:31:33 +00004329 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004330 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004331 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004332 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004333 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004334 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004335 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004336 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004337 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004338 if (!LegalOperations ||
4339 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4340 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4341 DAG.getSetCC(N->getDebugLoc(),
4342 TLI.getSetCCResultType(VT),
4343 N0.getOperand(0), N0.getOperand(1),
4344 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4345 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004346 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004347
Dan Gohman8f0ad582008-04-28 16:58:24 +00004348 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004349 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004350 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004351 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004352
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004353 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004354}
4355
Dan Gohman475871a2008-07-27 21:46:04 +00004356SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4357 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004358 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004359
Nate Begeman1d4d4142005-09-01 00:19:25 +00004360 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004361 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004362 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004363 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004364 // fold (zext (aext x)) -> (zext x)
4365 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004366 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4367 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004368
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004369 // fold (zext (truncate x)) -> (zext x) or
4370 // (zext (truncate x)) -> (truncate x)
4371 // This is valid when the truncated bits of x are already zero.
4372 // FIXME: We should extend this to work for vectors too.
4373 if (N0.getOpcode() == ISD::TRUNCATE && !VT.isVector()) {
4374 SDValue Op = N0.getOperand(0);
4375 APInt TruncatedBits
4376 = APInt::getBitsSet(Op.getValueSizeInBits(),
4377 N0.getValueSizeInBits(),
4378 std::min(Op.getValueSizeInBits(),
4379 VT.getSizeInBits()));
4380 APInt KnownZero, KnownOne;
4381 DAG.ComputeMaskedBits(Op, TruncatedBits, KnownZero, KnownOne);
4382 if (TruncatedBits == KnownZero) {
4383 if (VT.bitsGT(Op.getValueType()))
4384 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4385 if (VT.bitsLT(Op.getValueType()))
4386 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4387
4388 return Op;
4389 }
4390 }
4391
Evan Chengc88138f2007-03-22 01:54:19 +00004392 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4393 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004394 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004395 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4396 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004397 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4398 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004399 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004400 // CombineTo deleted the truncate, if needed, but not what's under it.
4401 AddToWorkList(oye);
4402 }
Eli Friedmane545d382011-04-16 23:25:34 +00004403 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004404 }
Evan Chengc88138f2007-03-22 01:54:19 +00004405 }
4406
Chris Lattner6007b842006-09-21 06:00:20 +00004407 // fold (zext (truncate x)) -> (and x, mask)
4408 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004409 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004410
4411 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4412 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4413 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4414 if (NarrowLoad.getNode()) {
4415 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4416 if (NarrowLoad.getNode() != N0.getNode()) {
4417 CombineTo(N0.getNode(), NarrowLoad);
4418 // CombineTo deleted the truncate, if needed, but not what's under it.
4419 AddToWorkList(oye);
4420 }
4421 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4422 }
4423
Dan Gohman475871a2008-07-27 21:46:04 +00004424 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004425 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004426 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004427 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004428 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004429 }
Dan Gohman87862e72009-12-11 21:31:27 +00004430 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4431 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004432 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004433
Dan Gohman97121ba2009-04-08 00:15:30 +00004434 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4435 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004436 if (N0.getOpcode() == ISD::AND &&
4437 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004438 N0.getOperand(1).getOpcode() == ISD::Constant &&
4439 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4440 N0.getValueType()) ||
4441 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004442 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004443 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004444 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004445 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004446 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004447 }
Dan Gohman220a8232008-03-03 23:51:38 +00004448 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004449 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004450 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4451 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004452 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004453
Evan Cheng110dec22005-12-14 02:19:23 +00004454 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004455 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004456 // on vectors in one instruction. We only perform this transformation on
4457 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004458 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004459 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004460 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004461 bool DoXform = true;
4462 SmallVector<SDNode*, 4> SetCCs;
4463 if (!N0.hasOneUse())
4464 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4465 if (DoXform) {
4466 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004467 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004468 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004469 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004470 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004471 LN0->isVolatile(), LN0->isNonTemporal(),
4472 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004473 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004474 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4475 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004476 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004477
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004478 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4479 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004480 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004481 }
Evan Cheng110dec22005-12-14 02:19:23 +00004482 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004483
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004484 // fold (zext (and/or/xor (load x), cst)) ->
4485 // (and/or/xor (zextload x), (zext cst))
4486 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4487 N0.getOpcode() == ISD::XOR) &&
4488 isa<LoadSDNode>(N0.getOperand(0)) &&
4489 N0.getOperand(1).getOpcode() == ISD::Constant &&
4490 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4491 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4492 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4493 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4494 bool DoXform = true;
4495 SmallVector<SDNode*, 4> SetCCs;
4496 if (!N0.hasOneUse())
4497 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4498 SetCCs, TLI);
4499 if (DoXform) {
4500 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4501 LN0->getChain(), LN0->getBasePtr(),
4502 LN0->getPointerInfo(),
4503 LN0->getMemoryVT(),
4504 LN0->isVolatile(),
4505 LN0->isNonTemporal(),
4506 LN0->getAlignment());
4507 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4508 Mask = Mask.zext(VT.getSizeInBits());
4509 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4510 ExtLoad, DAG.getConstant(Mask, VT));
4511 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4512 N0.getOperand(0).getDebugLoc(),
4513 N0.getOperand(0).getValueType(), ExtLoad);
4514 CombineTo(N, And);
4515 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4516 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4517 ISD::ZERO_EXTEND);
4518 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4519 }
4520 }
4521 }
4522
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004523 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4524 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004525 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4526 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004527 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004528 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004529 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004530 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004531 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004532 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004533 LN0->getBasePtr(), LN0->getPointerInfo(),
4534 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004535 LN0->isVolatile(), LN0->isNonTemporal(),
4536 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004537 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004538 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004539 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4540 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004541 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004542 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004543 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004544 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004545
Chris Lattner20a35c32007-04-11 05:32:27 +00004546 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004547 if (!LegalOperations && VT.isVector()) {
4548 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4549 // Only do this before legalize for now.
4550 EVT N0VT = N0.getOperand(0).getValueType();
4551 EVT EltVT = VT.getVectorElementType();
4552 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4553 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004554 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004555 // We know that the # elements of the results is the same as the
4556 // # elements of the compare (and the # elements of the compare result
4557 // for that matter). Check to see that they are the same size. If so,
4558 // we know that the element size of the sext'd result matches the
4559 // element size of the compare operands.
4560 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004561 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004562 N0.getOperand(1),
4563 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4564 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4565 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004566
4567 // If the desired elements are smaller or larger than the source
4568 // elements we can use a matching integer vector type and then
4569 // truncate/sign extend
4570 EVT MatchingElementType =
4571 EVT::getIntegerVT(*DAG.getContext(),
4572 N0VT.getScalarType().getSizeInBits());
4573 EVT MatchingVectorType =
4574 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4575 N0VT.getVectorNumElements());
4576 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004577 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004578 N0.getOperand(1),
4579 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4580 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4581 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4582 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4583 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004584 }
4585
4586 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004587 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004588 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004589 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004590 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004591 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004592 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004593
Evan Cheng9818c042009-12-15 03:00:32 +00004594 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004595 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004596 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004597 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4598 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004599 SDValue ShAmt = N0.getOperand(1);
4600 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004601 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004602 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004603 // If the original shl may be shifting out bits, do not perform this
4604 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004605 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4606 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4607 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004608 return SDValue();
4609 }
Chris Lattnere0751182011-02-13 19:09:16 +00004610
4611 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004612
4613 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004614 if (VT.getSizeInBits() >= 256)
4615 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004616
Chris Lattnere0751182011-02-13 19:09:16 +00004617 return DAG.getNode(N0.getOpcode(), DL, VT,
4618 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4619 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004620 }
4621
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004622 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004623}
4624
Dan Gohman475871a2008-07-27 21:46:04 +00004625SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4626 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004627 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004628
Chris Lattner5ffc0662006-05-05 05:58:59 +00004629 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004630 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004631 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004632 // fold (aext (aext x)) -> (aext x)
4633 // fold (aext (zext x)) -> (zext x)
4634 // fold (aext (sext x)) -> (sext x)
4635 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4636 N0.getOpcode() == ISD::ZERO_EXTEND ||
4637 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004638 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004639
Evan Chengc88138f2007-03-22 01:54:19 +00004640 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4641 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4642 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004643 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4644 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004645 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4646 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004647 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004648 // CombineTo deleted the truncate, if needed, but not what's under it.
4649 AddToWorkList(oye);
4650 }
Eli Friedmane545d382011-04-16 23:25:34 +00004651 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004652 }
Evan Chengc88138f2007-03-22 01:54:19 +00004653 }
4654
Chris Lattner84750582006-09-20 06:29:17 +00004655 // fold (aext (truncate x))
4656 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004657 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004658 if (TruncOp.getValueType() == VT)
4659 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004660 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004661 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4662 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004663 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004664
Dan Gohman97121ba2009-04-08 00:15:30 +00004665 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4666 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004667 if (N0.getOpcode() == ISD::AND &&
4668 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004669 N0.getOperand(1).getOpcode() == ISD::Constant &&
4670 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4671 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004672 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004673 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004674 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004675 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004676 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004677 }
Dan Gohman220a8232008-03-03 23:51:38 +00004678 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004679 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004680 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4681 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004682 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004683
Chris Lattner5ffc0662006-05-05 05:58:59 +00004684 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004685 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004686 // on vectors in one instruction. We only perform this transformation on
4687 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004688 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004689 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004690 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004691 bool DoXform = true;
4692 SmallVector<SDNode*, 4> SetCCs;
4693 if (!N0.hasOneUse())
4694 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4695 if (DoXform) {
4696 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004697 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004698 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004699 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004700 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004701 LN0->isVolatile(), LN0->isNonTemporal(),
4702 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004703 CombineTo(N, ExtLoad);
4704 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4705 N0.getValueType(), ExtLoad);
4706 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004707 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4708 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004709 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4710 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004711 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004712
Chris Lattner5ffc0662006-05-05 05:58:59 +00004713 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4714 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4715 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004716 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004717 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004718 N0.hasOneUse()) {
4719 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004720 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004721 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4722 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004723 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004724 LN0->isVolatile(), LN0->isNonTemporal(),
4725 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004726 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004727 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004728 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4729 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004730 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004731 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004732 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004733
Chris Lattner20a35c32007-04-11 05:32:27 +00004734 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004735 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4736 // Only do this before legalize for now.
4737 if (VT.isVector() && !LegalOperations) {
4738 EVT N0VT = N0.getOperand(0).getValueType();
4739 // We know that the # elements of the results is the same as the
4740 // # elements of the compare (and the # elements of the compare result
4741 // for that matter). Check to see that they are the same size. If so,
4742 // we know that the element size of the sext'd result matches the
4743 // element size of the compare operands.
4744 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004745 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004746 N0.getOperand(1),
4747 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004748 // If the desired elements are smaller or larger than the source
4749 // elements we can use a matching integer vector type and then
4750 // truncate/sign extend
4751 else {
Duncan Sands34727662010-07-12 08:16:59 +00004752 EVT MatchingElementType =
4753 EVT::getIntegerVT(*DAG.getContext(),
4754 N0VT.getScalarType().getSizeInBits());
4755 EVT MatchingVectorType =
4756 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4757 N0VT.getVectorNumElements());
4758 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004759 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004760 N0.getOperand(1),
4761 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4762 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004763 }
4764 }
4765
4766 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004767 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004768 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004769 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004770 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004771 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004772 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004773 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004774
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004775 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004776}
4777
Chris Lattner2b4c2792007-10-13 06:35:54 +00004778/// GetDemandedBits - See if the specified operand can be simplified with the
4779/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004780/// simpler operand, otherwise return a null SDValue.
4781SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004782 switch (V.getOpcode()) {
4783 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004784 case ISD::Constant: {
4785 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4786 assert(CV != 0 && "Const value should be ConstSDNode.");
4787 const APInt &CVal = CV->getAPIntValue();
4788 APInt NewVal = CVal & Mask;
4789 if (NewVal != CVal) {
4790 return DAG.getConstant(NewVal, V.getValueType());
4791 }
4792 break;
4793 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004794 case ISD::OR:
4795 case ISD::XOR:
4796 // If the LHS or RHS don't contribute bits to the or, drop them.
4797 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4798 return V.getOperand(1);
4799 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4800 return V.getOperand(0);
4801 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004802 case ISD::SRL:
4803 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004804 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004805 break;
4806 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4807 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004808 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004809
Dan Gohmancc91d632009-01-03 19:22:06 +00004810 // Watch out for shift count overflow though.
4811 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004812 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004813 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004814 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004815 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004816 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004817 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004818 }
Dan Gohman475871a2008-07-27 21:46:04 +00004819 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004820}
4821
Evan Chengc88138f2007-03-22 01:54:19 +00004822/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4823/// bits and then truncated to a narrower type and where N is a multiple
4824/// of number of bits of the narrower type, transform it to a narrower load
4825/// from address + N / num of bits of new type. If the result is to be
4826/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004827SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004828 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004829
Evan Chengc88138f2007-03-22 01:54:19 +00004830 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004831 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004832 EVT VT = N->getValueType(0);
4833 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004834
Dan Gohman7f8613e2008-08-14 20:04:46 +00004835 // This transformation isn't valid for vector loads.
4836 if (VT.isVector())
4837 return SDValue();
4838
Dan Gohmand1996362010-01-09 02:13:55 +00004839 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004840 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004841 if (Opc == ISD::SIGN_EXTEND_INREG) {
4842 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004843 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004844 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004845 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004846 ExtType = ISD::ZEXTLOAD;
4847 N0 = SDValue(N, 0);
4848 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4849 if (!N01) return SDValue();
4850 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
4851 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00004852 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00004853 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
4854 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004855
Owen Andersone50ed302009-08-10 22:56:29 +00004856 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00004857
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004858 // Do not generate loads of non-round integer types since these can
4859 // be expensive (and would be wrong if the type is not byte sized).
4860 if (!ExtVT.isRound())
4861 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004862
Evan Chengc88138f2007-03-22 01:54:19 +00004863 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004864 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00004865 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004866 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004867 // Is the shift amount a multiple of size of VT?
4868 if ((ShAmt & (EVTBits-1)) == 0) {
4869 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00004870 // Is the load width a multiple of size of VT?
4871 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00004872 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004873 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004874
Chris Lattnercbf68df2010-12-22 08:02:57 +00004875 // At this point, we must have a load or else we can't do the transform.
4876 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004877
Chris Lattner2831a192010-10-01 05:36:09 +00004878 // If the shift amount is larger than the input type then we're not
4879 // accessing any of the loaded bytes. If the load was a zextload/extload
4880 // then the result of the shift+trunc is zero/undef (handled elsewhere).
4881 // If the load was a sextload then the result is a splat of the sign bit
4882 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00004883 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00004884 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004885 }
4886 }
4887
Dan Gohman394d6292010-11-03 01:47:46 +00004888 // If the load is shifted left (and the result isn't shifted back right),
4889 // we can fold the truncate through the shift.
4890 unsigned ShLeftAmt = 0;
4891 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00004892 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00004893 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
4894 ShLeftAmt = N01->getZExtValue();
4895 N0 = N0.getOperand(0);
4896 }
4897 }
Owen Anderson95771af2011-02-25 21:41:48 +00004898
Chris Lattner4c32bc22010-12-22 07:36:50 +00004899 // If we haven't found a load, we can't narrow it. Don't transform one with
4900 // multiple uses, this would require adding a new load.
4901 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
4902 // Don't change the width of a volatile load.
4903 cast<LoadSDNode>(N0)->isVolatile())
4904 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004905
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004906 // Verify that we are actually reducing a load width here.
4907 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00004908 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004909
Chris Lattner4c32bc22010-12-22 07:36:50 +00004910 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4911 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00004912
Chris Lattner4c32bc22010-12-22 07:36:50 +00004913 // For big endian targets, we need to adjust the offset to the pointer to
4914 // load the correct bytes.
4915 if (TLI.isBigEndian()) {
4916 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
4917 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
4918 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00004919 }
4920
Chris Lattner4c32bc22010-12-22 07:36:50 +00004921 uint64_t PtrOff = ShAmt / 8;
4922 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
4923 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
4924 PtrType, LN0->getBasePtr(),
4925 DAG.getConstant(PtrOff, PtrType));
4926 AddToWorkList(NewPtr.getNode());
4927
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004928 SDValue Load;
4929 if (ExtType == ISD::NON_EXTLOAD)
4930 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
4931 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004932 LN0->isVolatile(), LN0->isNonTemporal(),
4933 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004934 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00004935 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004936 LN0->getPointerInfo().getWithOffset(PtrOff),
4937 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
4938 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00004939
4940 // Replace the old load's chain with the new load's chain.
4941 WorkListRemover DeadNodes(*this);
4942 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1),
4943 &DeadNodes);
4944
4945 // Shift the result left, if we've swallowed a left shift.
4946 SDValue Result = Load;
4947 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00004948 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00004949 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
4950 ShImmTy = VT;
4951 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
4952 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
4953 }
4954
4955 // Return the new loaded value.
4956 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00004957}
4958
Dan Gohman475871a2008-07-27 21:46:04 +00004959SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
4960 SDValue N0 = N->getOperand(0);
4961 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00004962 EVT VT = N->getValueType(0);
4963 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00004964 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00004965 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00004966
Nate Begeman1d4d4142005-09-01 00:19:25 +00004967 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00004968 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00004969 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004970
Chris Lattner541a24f2006-05-06 22:43:44 +00004971 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00004972 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00004973 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00004974
Nate Begeman646d7e22005-09-02 21:18:40 +00004975 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
4976 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00004977 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00004978 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
4979 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00004980 }
Chris Lattner4b37e872006-05-08 21:18:59 +00004981
Dan Gohman75dcf082008-07-31 00:50:31 +00004982 // fold (sext_in_reg (sext x)) -> (sext x)
4983 // fold (sext_in_reg (aext x)) -> (sext x)
4984 // if x is small enough.
4985 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
4986 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00004987 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
4988 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00004989 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00004990 }
4991
Chris Lattner95a5e052007-04-17 19:03:21 +00004992 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004993 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004994 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004995
Chris Lattner95a5e052007-04-17 19:03:21 +00004996 // fold operands of sext_in_reg based on knowledge that the top bits are not
4997 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00004998 if (SimplifyDemandedBits(SDValue(N, 0)))
4999 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005000
Evan Chengc88138f2007-03-22 01:54:19 +00005001 // fold (sext_in_reg (load x)) -> (smaller sextload x)
5002 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00005003 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005004 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00005005 return NarrowLoad;
5006
Bill Wendling8509c902009-01-30 22:33:24 +00005007 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
5008 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00005009 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5010 if (N0.getOpcode() == ISD::SRL) {
5011 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00005012 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Chris Lattner4b37e872006-05-08 21:18:59 +00005013 // We can turn this into an SRA iff the input to the SRL is already sign
5014 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00005015 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00005016 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00005017 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
5018 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00005019 }
5020 }
Evan Chengc88138f2007-03-22 01:54:19 +00005021
Nate Begemanded49632005-10-13 03:11:28 +00005022 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00005023 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005024 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005025 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005026 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005027 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005028 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005029 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005030 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005031 LN0->getBasePtr(), LN0->getPointerInfo(),
5032 EVT,
David Greene1e559442010-02-15 17:00:31 +00005033 LN0->isVolatile(), LN0->isNonTemporal(),
5034 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005035 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005036 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005037 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005038 }
5039 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00005040 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00005041 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005042 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005043 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005044 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005045 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005046 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00005047 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005048 LN0->getBasePtr(), LN0->getPointerInfo(),
5049 EVT,
David Greene1e559442010-02-15 17:00:31 +00005050 LN0->isVolatile(), LN0->isNonTemporal(),
5051 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00005052 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00005053 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005054 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00005055 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00005056
5057 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5058 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5059 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5060 N0.getOperand(1), false);
5061 if (BSwap.getNode() != 0)
5062 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
5063 BSwap, N1);
5064 }
5065
Dan Gohman475871a2008-07-27 21:46:04 +00005066 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005067}
5068
Dan Gohman475871a2008-07-27 21:46:04 +00005069SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5070 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005071 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005072 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005073
5074 // noop truncate
5075 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00005076 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00005077 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00005078 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00005079 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005080 // fold (truncate (truncate x)) -> (truncate x)
5081 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00005082 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005083 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00005084 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5085 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00005086 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00005087 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005088 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00005089 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5090 N0.getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005091 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005092 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005093 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005094 else
5095 // if the source and dest are the same type, we can drop both the extend
Evan Chengd40d03e2010-01-06 19:38:29 +00005096 // and the truncate.
Nate Begeman83e75ec2005-09-06 04:43:02 +00005097 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005098 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005099
Nadav Rotemcc870a82012-02-05 11:39:23 +00005100 // Fold extract-and-trunc into a narrow extract. For example:
5101 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5102 // i32 y = TRUNCATE(i64 x)
5103 // -- becomes --
5104 // v16i8 b = BITCAST (v2i64 val)
5105 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5106 //
5107 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005108 // creates this pattern) and before operation legalization after which
5109 // we need to be more careful about the vector instructions that we generate.
5110 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5111 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5112
5113 EVT VecTy = N0.getOperand(0).getValueType();
5114 EVT ExTy = N0.getValueType();
5115 EVT TrTy = N->getValueType(0);
5116
5117 unsigned NumElem = VecTy.getVectorNumElements();
5118 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5119
5120 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5121 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5122
5123 SDValue EltNo = N0->getOperand(1);
5124 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5125 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5126
5127 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5128
5129 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5130 NVT, N0.getOperand(0));
5131
5132 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5133 N->getDebugLoc(), TrTy, V,
5134 DAG.getConstant(Index, MVT::i32));
5135 }
5136 }
5137
Chris Lattner2b4c2792007-10-13 06:35:54 +00005138 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005139 // only the low bits are being used.
5140 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005141 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005142 // may have different active low bits.
5143 if (!VT.isVector()) {
5144 SDValue Shorter =
5145 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5146 VT.getSizeInBits()));
5147 if (Shorter.getNode())
5148 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5149 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005150 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005151 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005152 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5153 SDValue Reduced = ReduceLoadWidth(N);
5154 if (Reduced.getNode())
5155 return Reduced;
5156 }
5157
5158 // Simplify the operands using demanded-bits information.
5159 if (!VT.isVector() &&
5160 SimplifyDemandedBits(SDValue(N, 0)))
5161 return SDValue(N, 0);
5162
Evan Chenge5b51ac2010-04-17 06:13:15 +00005163 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005164}
5165
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005166static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005167 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005168 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005169 return Elt.getNode();
5170 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005171}
5172
5173/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005174/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005175SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005176 assert(N->getOpcode() == ISD::BUILD_PAIR);
5177
Nate Begemanabc01992009-06-05 21:37:30 +00005178 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5179 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005180 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5181 LD1->getPointerInfo().getAddrSpace() !=
5182 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005183 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005184 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005185
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005186 if (ISD::isNON_EXTLoad(LD2) &&
5187 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005188 // If both are volatile this would reduce the number of volatile loads.
5189 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005190 !LD1->isVolatile() &&
5191 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005192 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005193 unsigned Align = LD1->getAlignment();
Dan Gohman6448d912008-09-04 15:39:15 +00005194 unsigned NewAlign = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005195 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005196
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005197 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005198 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005199 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005200 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005201 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005202 }
Bill Wendling67a67682009-01-30 22:44:24 +00005203
Dan Gohman475871a2008-07-27 21:46:04 +00005204 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005205}
5206
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005207SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005208 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005209 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005210
Dan Gohman7f321562007-06-25 16:23:39 +00005211 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5212 // Only do this before legalize, since afterward the target may be depending
5213 // on the bitconvert.
5214 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005215 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005216 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005217 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005218 bool isSimple = true;
5219 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5220 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5221 N0.getOperand(i).getOpcode() != ISD::Constant &&
5222 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005223 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005224 break;
5225 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005226
Owen Andersone50ed302009-08-10 22:56:29 +00005227 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005228 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005229 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005230 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005231 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005232 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005233
Dan Gohman3dd168d2008-09-05 01:58:21 +00005234 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005235 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005236 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005237 if (Res.getNode() != N) {
5238 if (!LegalOperations ||
5239 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5240 return Res;
5241
5242 // Folding it resulted in an illegal node, and it's too late to
5243 // do that. Clean up the old node and forego the transformation.
5244 // Ideally this won't happen very often, because instcombine
5245 // and the earlier dagcombine runs (where illegal nodes are
5246 // permitted) should have folded most of them already.
5247 DAG.DeleteNode(Res.getNode());
5248 }
Chris Lattner94683772005-12-23 05:30:37 +00005249 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005250
Bill Wendling67a67682009-01-30 22:44:24 +00005251 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005252 if (N0.getOpcode() == ISD::BITCAST)
5253 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005254 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005255
Chris Lattner57104102005-12-23 05:44:41 +00005256 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005257 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005258 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005259 // Do not change the width of a volatile load.
5260 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005261 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005262 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman6448d912008-09-04 15:39:15 +00005263 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005264 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005265 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005266
Evan Cheng59d5b682007-05-07 21:27:48 +00005267 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005268 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005269 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005270 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005271 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005272 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005273 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005274 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005275 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005276 Load.getValue(1));
5277 return Load;
5278 }
Chris Lattner57104102005-12-23 05:44:41 +00005279 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005280
Bill Wendling67a67682009-01-30 22:44:24 +00005281 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5282 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005283 // This often reduces constant pool loads.
5284 if ((N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FABS) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005285 N0.getNode()->hasOneUse() && VT.isInteger() && !VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005286 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005287 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005288 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005289
Duncan Sands83ec4b62008-06-06 12:08:01 +00005290 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005291 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005292 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5293 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005294 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005295 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5296 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005297 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005298
Bill Wendling67a67682009-01-30 22:44:24 +00005299 // fold (bitconvert (fcopysign cst, x)) ->
5300 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5301 // Note that we don't handle (copysign x, cst) because this can always be
5302 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005303 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005304 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005305 VT.isInteger() && !VT.isVector()) {
5306 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005307 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005308 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005309 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005310 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005311 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005312
Duncan Sands25cf2272008-11-24 14:53:14 +00005313 // If X has a different width than the result/lhs, sext it or truncate it.
5314 unsigned VTWidth = VT.getSizeInBits();
5315 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005316 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005317 AddToWorkList(X.getNode());
5318 } else if (OrigXWidth > VTWidth) {
5319 // To get the sign bit in the right place, we have to shift it right
5320 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005321 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005322 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005323 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5324 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005325 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005326 AddToWorkList(X.getNode());
5327 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005328
Duncan Sands25cf2272008-11-24 14:53:14 +00005329 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005330 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005331 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005332 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005333
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005334 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005335 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005336 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005337 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005338 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005339
Bill Wendling67a67682009-01-30 22:44:24 +00005340 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005341 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005342 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005343
Scott Michelfdc40a02009-02-17 22:15:04 +00005344 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005345 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005346 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5347 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005348 return CombineLD;
5349 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005350
Dan Gohman475871a2008-07-27 21:46:04 +00005351 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005352}
5353
Dan Gohman475871a2008-07-27 21:46:04 +00005354SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005355 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005356 return CombineConsecutiveLoads(N, VT);
5357}
5358
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005359/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005360/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005361/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005362SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005363ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005364 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005365
Chris Lattner6258fb22006-04-02 02:53:43 +00005366 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005367 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005368
Duncan Sands83ec4b62008-06-06 12:08:01 +00005369 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5370 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005371
Chris Lattner6258fb22006-04-02 02:53:43 +00005372 // If this is a conversion of N elements of one type to N elements of another
5373 // type, convert each element. This handles FP<->INT cases.
5374 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005375 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5376 BV->getValueType(0).getVectorNumElements());
5377
5378 // Due to the FP element handling below calling this routine recursively,
5379 // we can end up with a scalar-to-vector node here.
5380 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005381 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5382 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005383 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005384
Dan Gohman475871a2008-07-27 21:46:04 +00005385 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005386 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005387 SDValue Op = BV->getOperand(i);
5388 // If the vector element type is not legal, the BUILD_VECTOR operands
5389 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005390 if (Op.getValueType() != SrcEltVT)
5391 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005392 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005393 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005394 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005395 }
Evan Chenga87008d2009-02-25 22:49:59 +00005396 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5397 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005398 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005399
Chris Lattner6258fb22006-04-02 02:53:43 +00005400 // Otherwise, we're growing or shrinking the elements. To avoid having to
5401 // handle annoying details of growing/shrinking FP values, we convert them to
5402 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005403 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005404 // Convert the input float vector to a int vector where the elements are the
5405 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005406 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005407 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005408 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005409 SrcEltVT = IntVT;
5410 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005411
Chris Lattner6258fb22006-04-02 02:53:43 +00005412 // Now we know the input is an integer vector. If the output is a FP type,
5413 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005414 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005415 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005416 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005417 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005418
Chris Lattner6258fb22006-04-02 02:53:43 +00005419 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005420 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005421 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005422
Chris Lattner6258fb22006-04-02 02:53:43 +00005423 // Okay, we know the src/dst types are both integers of differing types.
5424 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005425 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005426 if (SrcBitSize < DstBitSize) {
5427 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005428
Dan Gohman475871a2008-07-27 21:46:04 +00005429 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005430 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005431 i += NumInputsPerOutput) {
5432 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005433 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005434 bool EltIsUndef = true;
5435 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5436 // Shift the previously computed bits over.
5437 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005438 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005439 if (Op.getOpcode() == ISD::UNDEF) continue;
5440 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005441
Jay Foad40f8f622010-12-07 08:25:19 +00005442 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005443 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005444 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005445
Chris Lattner6258fb22006-04-02 02:53:43 +00005446 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005447 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005448 else
5449 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5450 }
5451
Owen Anderson23b9b192009-08-12 00:36:31 +00005452 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005453 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5454 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005455 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005456
Chris Lattner6258fb22006-04-02 02:53:43 +00005457 // Finally, this must be the case where we are shrinking elements: each input
5458 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005459 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005460 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005461 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5462 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005463 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005464
Dan Gohman7f321562007-06-25 16:23:39 +00005465 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005466 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5467 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005468 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005469 continue;
5470 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005471
Jay Foad40f8f622010-12-07 08:25:19 +00005472 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5473 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005474
Chris Lattner6258fb22006-04-02 02:53:43 +00005475 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005476 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005477 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005478 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005479 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005480 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5481 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005482 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005483 }
5484
5485 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005486 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005487 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5488 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005489
Evan Chenga87008d2009-02-25 22:49:59 +00005490 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5491 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005492}
5493
Dan Gohman475871a2008-07-27 21:46:04 +00005494SDValue DAGCombiner::visitFADD(SDNode *N) {
5495 SDValue N0 = N->getOperand(0);
5496 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005497 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5498 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005499 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005500
Dan Gohman7f321562007-06-25 16:23:39 +00005501 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005502 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005503 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005504 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005505 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005506
Bill Wendlingb0162f52009-01-30 22:53:48 +00005507 // fold (fadd c1, c2) -> (fadd c1, c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005508 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005509 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005510 // canonicalize constant to RHS
5511 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005512 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5513 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005514 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5515 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005516 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005517 // fold (fadd A, (fneg B)) -> (fsub A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005518 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5519 isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005520 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005521 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005522 // fold (fadd (fneg A), B) -> (fsub B, A)
Owen Andersonafd3d562012-03-06 00:29:31 +00005523 if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5524 isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005525 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005526 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005527
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005528 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005529 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5530 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5531 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005532 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005533 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5534 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005535
Dan Gohman475871a2008-07-27 21:46:04 +00005536 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005537}
5538
Dan Gohman475871a2008-07-27 21:46:04 +00005539SDValue DAGCombiner::visitFSUB(SDNode *N) {
5540 SDValue N0 = N->getOperand(0);
5541 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005542 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5543 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005544 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005545
Dan Gohman7f321562007-06-25 16:23:39 +00005546 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005547 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005548 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005549 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005550 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005551
Nate Begemana0e221d2005-10-18 00:28:13 +00005552 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005553 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005554 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005555 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005556 if (DAG.getTarget().Options.UnsafeFPMath &&
5557 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005558 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005559 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005560 if (DAG.getTarget().Options.UnsafeFPMath &&
5561 N0CFP && N0CFP->getValueAPF().isZero()) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005562 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005563 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005564 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005565 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005566 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005567 // fold (fsub A, (fneg B)) -> (fadd A, B)
Owen Andersonafd3d562012-03-06 00:29:31 +00005568 if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005569 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005570 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005571
Dan Gohman475871a2008-07-27 21:46:04 +00005572 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005573}
5574
Dan Gohman475871a2008-07-27 21:46:04 +00005575SDValue DAGCombiner::visitFMUL(SDNode *N) {
5576 SDValue N0 = N->getOperand(0);
5577 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005578 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5579 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005580 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005581 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005582
Dan Gohman7f321562007-06-25 16:23:39 +00005583 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005584 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005585 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005586 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005587 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005588
Nate Begeman11af4ea2005-10-17 20:40:11 +00005589 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005590 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005591 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005592 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005593 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005594 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5595 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005596 if (DAG.getTarget().Options.UnsafeFPMath &&
5597 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005598 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005599 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005600 if (DAG.getTarget().Options.UnsafeFPMath &&
5601 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005602 return N1;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005603 // fold (fmul X, 2.0) -> (fadd X, X)
5604 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005605 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00005606 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00005607 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00005608 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005609 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005610
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005611 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005612 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005613 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005614 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005615 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005616 // Both can be negated for free, check to see if at least one is cheaper
5617 // negated.
5618 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005619 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005620 GetNegatedExpression(N0, DAG, LegalOperations),
5621 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005622 }
5623 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005624
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005625 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005626 if (DAG.getTarget().Options.UnsafeFPMath &&
5627 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005628 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005629 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00005630 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00005631 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005632
Dan Gohman475871a2008-07-27 21:46:04 +00005633 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005634}
5635
Dan Gohman475871a2008-07-27 21:46:04 +00005636SDValue DAGCombiner::visitFDIV(SDNode *N) {
5637 SDValue N0 = N->getOperand(0);
5638 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005639 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5640 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005641 EVT VT = N->getValueType(0);
Owen Andersonafd3d562012-03-06 00:29:31 +00005642 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner01b3d732005-09-28 22:28:18 +00005643
Dan Gohman7f321562007-06-25 16:23:39 +00005644 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005645 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005646 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005647 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005648 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005649
Nate Begemana148d982006-01-18 22:35:16 +00005650 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005651 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005652 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005653
5654
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005655 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Owen Andersonafd3d562012-03-06 00:29:31 +00005656 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005657 &DAG.getTarget().Options)) {
Owen Andersonafd3d562012-03-06 00:29:31 +00005658 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005659 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005660 // Both can be negated for free, check to see if at least one is cheaper
5661 // negated.
5662 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00005663 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005664 GetNegatedExpression(N0, DAG, LegalOperations),
5665 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005666 }
5667 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005668
Dan Gohman475871a2008-07-27 21:46:04 +00005669 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005670}
5671
Dan Gohman475871a2008-07-27 21:46:04 +00005672SDValue DAGCombiner::visitFREM(SDNode *N) {
5673 SDValue N0 = N->getOperand(0);
5674 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005675 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5676 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005677 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00005678
Nate Begemana148d982006-01-18 22:35:16 +00005679 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005680 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005681 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00005682
Dan Gohman475871a2008-07-27 21:46:04 +00005683 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005684}
5685
Dan Gohman475871a2008-07-27 21:46:04 +00005686SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
5687 SDValue N0 = N->getOperand(0);
5688 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00005689 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5690 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005691 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00005692
Owen Anderson825b72b2009-08-11 20:47:22 +00005693 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005694 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005695
Chris Lattner12d83032006-03-05 05:30:57 +00005696 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00005697 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00005698 // copysign(x, c1) -> fabs(x) iff ispos(c1)
5699 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00005700 if (!V.isNegative()) {
5701 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005702 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00005703 } else {
5704 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005705 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00005706 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00005707 }
Chris Lattner12d83032006-03-05 05:30:57 +00005708 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005709
Chris Lattner12d83032006-03-05 05:30:57 +00005710 // copysign(fabs(x), y) -> copysign(x, y)
5711 // copysign(fneg(x), y) -> copysign(x, y)
5712 // copysign(copysign(x,z), y) -> copysign(x, y)
5713 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
5714 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005715 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5716 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00005717
5718 // copysign(x, abs(y)) -> abs(x)
5719 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005720 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005721
Chris Lattner12d83032006-03-05 05:30:57 +00005722 // copysign(x, copysign(y,z)) -> copysign(x, z)
5723 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005724 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5725 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005726
Chris Lattner12d83032006-03-05 05:30:57 +00005727 // copysign(x, fp_extend(y)) -> copysign(x, y)
5728 // copysign(x, fp_round(y)) -> copysign(x, y)
5729 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005730 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5731 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005732
Dan Gohman475871a2008-07-27 21:46:04 +00005733 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00005734}
5735
Dan Gohman475871a2008-07-27 21:46:04 +00005736SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
5737 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005738 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005739 EVT VT = N->getValueType(0);
5740 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00005741
Nate Begeman1d4d4142005-09-01 00:19:25 +00005742 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005743 if (N0C && OpVT != MVT::ppcf128 &&
5744 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005745 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005746 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005747 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005748
Chris Lattnercda88752008-06-26 00:16:49 +00005749 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
5750 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005751 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
5752 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005753 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005754 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005755 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005756 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005757
Dan Gohman475871a2008-07-27 21:46:04 +00005758 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005759}
5760
Dan Gohman475871a2008-07-27 21:46:04 +00005761SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
5762 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005763 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005764 EVT VT = N->getValueType(0);
5765 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00005766
Nate Begeman1d4d4142005-09-01 00:19:25 +00005767 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005768 if (N0C && OpVT != MVT::ppcf128 &&
5769 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005770 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005771 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005772 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005773
Chris Lattnercda88752008-06-26 00:16:49 +00005774 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
5775 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005776 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
5777 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005778 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005779 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005780 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005781 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005782
Dan Gohman475871a2008-07-27 21:46:04 +00005783 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005784}
5785
Dan Gohman475871a2008-07-27 21:46:04 +00005786SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
5787 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005788 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005789 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005790
Nate Begeman1d4d4142005-09-01 00:19:25 +00005791 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00005792 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005793 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
5794
Dan Gohman475871a2008-07-27 21:46:04 +00005795 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005796}
5797
Dan Gohman475871a2008-07-27 21:46:04 +00005798SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
5799 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005800 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005801 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005802
Nate Begeman1d4d4142005-09-01 00:19:25 +00005803 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00005804 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005805 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
5806
Dan Gohman475871a2008-07-27 21:46:04 +00005807 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005808}
5809
Dan Gohman475871a2008-07-27 21:46:04 +00005810SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
5811 SDValue N0 = N->getOperand(0);
5812 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005813 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005814 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005815
Nate Begeman1d4d4142005-09-01 00:19:25 +00005816 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00005817 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005818 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005819
Chris Lattner79dbea52006-03-13 06:26:26 +00005820 // fold (fp_round (fp_extend x)) -> x
5821 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
5822 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005823
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005824 // fold (fp_round (fp_round x)) -> (fp_round x)
5825 if (N0.getOpcode() == ISD::FP_ROUND) {
5826 // This is a value preserving truncation if both round's are.
5827 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005828 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00005829 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005830 DAG.getIntPtrConstant(IsTrunc));
5831 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005832
Chris Lattner79dbea52006-03-13 06:26:26 +00005833 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00005834 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00005835 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
5836 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00005837 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00005838 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5839 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00005840 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005841
Dan Gohman475871a2008-07-27 21:46:04 +00005842 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005843}
5844
Dan Gohman475871a2008-07-27 21:46:04 +00005845SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
5846 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005847 EVT VT = N->getValueType(0);
5848 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00005849 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005850
Nate Begeman1d4d4142005-09-01 00:19:25 +00005851 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00005852 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005853 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00005854 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005855 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005856
Dan Gohman475871a2008-07-27 21:46:04 +00005857 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005858}
5859
Dan Gohman475871a2008-07-27 21:46:04 +00005860SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
5861 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005862 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005863 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005864
Chris Lattner5938bef2007-12-29 06:55:23 +00005865 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00005866 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00005867 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00005868 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00005869
Nate Begeman1d4d4142005-09-01 00:19:25 +00005870 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00005871 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005872 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00005873
5874 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
5875 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00005876 if (N0.getOpcode() == ISD::FP_ROUND
5877 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00005878 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00005879 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005880 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005881 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
5882 In, N0.getOperand(1));
5883 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00005884 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005885
Chris Lattner0bd48932008-01-17 07:00:52 +00005886 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00005887 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005888 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005889 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005890 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005891 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00005892 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005893 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00005894 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00005895 LN0->isVolatile(), LN0->isNonTemporal(),
5896 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00005897 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00005898 CombineTo(N0.getNode(),
5899 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
5900 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00005901 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005902 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00005903 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005904
Dan Gohman475871a2008-07-27 21:46:04 +00005905 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005906}
5907
Dan Gohman475871a2008-07-27 21:46:04 +00005908SDValue DAGCombiner::visitFNEG(SDNode *N) {
5909 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00005910 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00005911
Owen Andersonafd3d562012-03-06 00:29:31 +00005912 if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
5913 &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005914 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00005915
Chris Lattner3bd39d42008-01-27 17:42:27 +00005916 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
5917 // constant pool values.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005918 if (N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00005919 !VT.isVector() &&
5920 N0.getNode()->hasOneUse() &&
5921 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005922 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005923 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005924 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00005925 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
5926 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00005927 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005928 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00005929 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00005930 }
5931 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005932
Dan Gohman475871a2008-07-27 21:46:04 +00005933 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005934}
5935
Dan Gohman475871a2008-07-27 21:46:04 +00005936SDValue DAGCombiner::visitFABS(SDNode *N) {
5937 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005938 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005939 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005940
Nate Begeman1d4d4142005-09-01 00:19:25 +00005941 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00005942 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00005943 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005944 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00005945 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00005946 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005947 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00005948 // fold (fabs (fcopysign x, y)) -> (fabs x)
5949 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00005950 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005951
Chris Lattner3bd39d42008-01-27 17:42:27 +00005952 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
5953 // constant pool values.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005954 if (N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005955 N0.getOperand(0).getValueType().isInteger() &&
5956 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005957 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005958 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005959 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005960 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00005961 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00005962 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005963 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00005964 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00005965 }
5966 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005967
Dan Gohman475871a2008-07-27 21:46:04 +00005968 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005969}
5970
Dan Gohman475871a2008-07-27 21:46:04 +00005971SDValue DAGCombiner::visitBRCOND(SDNode *N) {
5972 SDValue Chain = N->getOperand(0);
5973 SDValue N1 = N->getOperand(1);
5974 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005975
Dan Gohmane0f06c72009-11-17 00:47:23 +00005976 // If N is a constant we could fold this into a fallthrough or unconditional
5977 // branch. However that doesn't happen very often in normal code, because
5978 // Instcombine/SimplifyCFG should have handled the available opportunities.
5979 // If we did this folding here, it would be necessary to update the
5980 // MachineBasicBlock CFG, which is awkward.
5981
Nate Begeman750ac1b2006-02-01 07:19:44 +00005982 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
5983 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00005984 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00005985 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
5986 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00005987 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00005988 N1.getOperand(0), N1.getOperand(1), N2);
5989 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00005990
Evan Cheng2a135ae2010-10-04 22:41:01 +00005991 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
5992 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
5993 (N1.getOperand(0).hasOneUse() &&
5994 N1.getOperand(0).getOpcode() == ISD::SRL))) {
5995 SDNode *Trunc = 0;
5996 if (N1.getOpcode() == ISD::TRUNCATE) {
5997 // Look pass the truncate.
5998 Trunc = N1.getNode();
5999 N1 = N1.getOperand(0);
6000 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006001
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006002 // Match this pattern so that we can generate simpler code:
6003 //
6004 // %a = ...
6005 // %b = and i32 %a, 2
6006 // %c = srl i32 %b, 1
6007 // brcond i32 %c ...
6008 //
6009 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006010 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006011 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00006012 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006013 // %c = setcc eq %b, 0
6014 // brcond %c ...
6015 //
6016 // This applies only when the AND constant value has one bit set and the
6017 // SRL constant is equal to the log2 of the AND constant. The back-end is
6018 // smart enough to convert the result into a TEST/JMP sequence.
6019 SDValue Op0 = N1.getOperand(0);
6020 SDValue Op1 = N1.getOperand(1);
6021
6022 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006023 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006024 SDValue AndOp1 = Op0.getOperand(1);
6025
6026 if (AndOp1.getOpcode() == ISD::Constant) {
6027 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6028
6029 if (AndConst.isPowerOf2() &&
6030 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6031 SDValue SetCC =
6032 DAG.getSetCC(N->getDebugLoc(),
6033 TLI.getSetCCResultType(Op0.getValueType()),
6034 Op0, DAG.getConstant(0, Op0.getValueType()),
6035 ISD::SETNE);
6036
Evan Chengd40d03e2010-01-06 19:38:29 +00006037 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6038 MVT::Other, Chain, SetCC, N2);
6039 // Don't add the new BRCond into the worklist or else SimplifySelectCC
6040 // will convert it back to (X & C1) >> C2.
6041 CombineTo(N, NewBRCond, false);
6042 // Truncate is dead.
6043 if (Trunc) {
6044 removeFromWorkList(Trunc);
6045 DAG.DeleteNode(Trunc);
6046 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006047 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00006048 WorkListRemover DeadNodes(*this);
6049 DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006050 removeFromWorkList(N1.getNode());
6051 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00006052 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006053 }
6054 }
6055 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00006056
6057 if (Trunc)
6058 // Restore N1 if the above transformation doesn't match.
6059 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006060 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006061
Evan Cheng2c755ba2010-02-27 07:36:59 +00006062 // Transform br(xor(x, y)) -> br(x != y)
6063 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6064 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6065 SDNode *TheXor = N1.getNode();
6066 SDValue Op0 = TheXor->getOperand(0);
6067 SDValue Op1 = TheXor->getOperand(1);
6068 if (Op0.getOpcode() == Op1.getOpcode()) {
6069 // Avoid missing important xor optimizations.
6070 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00006071 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006072 DEBUG(dbgs() << "\nReplacing.8 ";
6073 TheXor->dump(&DAG);
6074 dbgs() << "\nWith: ";
6075 Tmp.getNode()->dump(&DAG);
6076 dbgs() << '\n');
6077 WorkListRemover DeadNodes(*this);
6078 DAG.ReplaceAllUsesOfValueWith(N1, Tmp, &DeadNodes);
6079 removeFromWorkList(TheXor);
6080 DAG.DeleteNode(TheXor);
6081 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6082 MVT::Other, Chain, Tmp, N2);
6083 }
6084 }
6085
6086 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6087 bool Equal = false;
6088 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6089 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6090 Op0.getOpcode() == ISD::XOR) {
6091 TheXor = Op0.getNode();
6092 Equal = true;
6093 }
6094
Evan Cheng2a135ae2010-10-04 22:41:01 +00006095 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006096 if (LegalTypes)
6097 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6098 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6099 SetCCVT,
6100 Op0, Op1,
6101 Equal ? ISD::SETEQ : ISD::SETNE);
6102 // Replace the uses of XOR with SETCC
6103 WorkListRemover DeadNodes(*this);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006104 DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
6105 removeFromWorkList(N1.getNode());
6106 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006107 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6108 MVT::Other, Chain, SetCC, N2);
6109 }
6110 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006111
Dan Gohman475871a2008-07-27 21:46:04 +00006112 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006113}
6114
Chris Lattner3ea0b472005-10-05 06:47:48 +00006115// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6116//
Dan Gohman475871a2008-07-27 21:46:04 +00006117SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006118 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006119 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006120
Dan Gohmane0f06c72009-11-17 00:47:23 +00006121 // If N is a constant we could fold this into a fallthrough or unconditional
6122 // branch. However that doesn't happen very often in normal code, because
6123 // Instcombine/SimplifyCFG should have handled the available opportunities.
6124 // If we did this folding here, it would be necessary to update the
6125 // MachineBasicBlock CFG, which is awkward.
6126
Duncan Sands8eab8a22008-06-09 11:32:28 +00006127 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006128 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006129 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6130 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006131 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006132
Nate Begemane17daeb2005-10-05 21:43:42 +00006133 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006134 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006135 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006136 N->getOperand(0), Simp.getOperand(2),
6137 Simp.getOperand(0), Simp.getOperand(1),
6138 N->getOperand(4));
6139
Dan Gohman475871a2008-07-27 21:46:04 +00006140 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006141}
6142
Evan Chengc4b527a2012-01-13 01:37:24 +00006143/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6144/// uses N as its base pointer and that N may be folded in the load / store
6145/// addressing mode. FIXME: This currently only looks for folding of
6146/// [reg +/- imm] addressing modes.
6147static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6148 SelectionDAG &DAG,
6149 const TargetLowering &TLI) {
6150 EVT VT;
6151 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6152 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6153 return false;
6154 VT = Use->getValueType(0);
6155 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6156 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6157 return false;
6158 VT = ST->getValue().getValueType();
6159 } else
6160 return false;
6161
6162 TargetLowering::AddrMode AM;
6163 if (N->getOpcode() == ISD::ADD) {
6164 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6165 if (Offset)
6166 AM.BaseOffs = Offset->getSExtValue();
6167 else
6168 return false;
6169 } else if (N->getOpcode() == ISD::SUB) {
6170 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6171 if (Offset)
6172 AM.BaseOffs = -Offset->getSExtValue();
6173 else
6174 return false;
6175 } else
6176 return false;
6177
6178 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6179}
6180
Duncan Sandsec87aa82008-06-15 20:12:31 +00006181/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6182/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006183/// and it has other uses besides the load / store. After the
6184/// transformation, the new indexed load / store has effectively folded
6185/// the add / subtract in and all of its other uses are redirected to the
6186/// new load / store.
6187bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006188 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006189 return false;
6190
6191 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006192 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006193 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006194 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006195 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006196 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006197 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006198 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006199 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6200 return false;
6201 Ptr = LD->getBasePtr();
6202 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006203 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006204 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006205 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006206 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6207 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6208 return false;
6209 Ptr = ST->getBasePtr();
6210 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006211 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006212 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006213 }
Chris Lattner448f2192006-11-11 00:39:41 +00006214
Chris Lattner9f1794e2006-11-11 00:56:29 +00006215 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6216 // out. There is no reason to make this a preinc/predec.
6217 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006218 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006219 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006220
Chris Lattner9f1794e2006-11-11 00:56:29 +00006221 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006222 SDValue BasePtr;
6223 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006224 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6225 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6226 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006227 // Don't create a indexed load / store with zero offset.
6228 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006229 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006230 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006231
Chris Lattner41e53fd2006-11-11 01:00:15 +00006232 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006233 // 1) The new base ptr is a frame index.
6234 // 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 +00006235 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006236 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006237 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006238 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006239
Chris Lattner41e53fd2006-11-11 01:00:15 +00006240 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6241 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006242 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006243 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006244
Chris Lattner41e53fd2006-11-11 01:00:15 +00006245 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006246 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006247 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006248 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006249 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006250 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006251
Evan Chengc843abe2007-05-24 02:35:39 +00006252 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006253 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006254
6255 // Caches for hasPredecessorHelper
6256 SmallPtrSet<const SDNode *, 32> Visited;
6257 SmallVector<const SDNode *, 16> Worklist;
6258
Gabor Greifba36cb52008-08-28 21:40:38 +00006259 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6260 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006261 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006262 if (Use == N)
6263 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006264 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006265 return false;
6266
Evan Chengc4b527a2012-01-13 01:37:24 +00006267 // If Ptr may be folded in addressing mode of other use, then it's
6268 // not profitable to do this transformation.
6269 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006270 RealUse = true;
6271 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006272
Chris Lattner9f1794e2006-11-11 00:56:29 +00006273 if (!RealUse)
6274 return false;
6275
Dan Gohman475871a2008-07-27 21:46:04 +00006276 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006277 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006278 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6279 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006280 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006281 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6282 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006283 ++PreIndexedNodes;
6284 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006285 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006286 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006287 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006288 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006289 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006290 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006291 if (isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006292 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006293 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006294 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006295 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006296 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006297 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006298 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006299 }
6300
Chris Lattner9f1794e2006-11-11 00:56:29 +00006301 // Finally, since the node is now dead, remove it from the graph.
6302 DAG.DeleteNode(N);
6303
6304 // Replace the uses of Ptr with uses of the updated base value.
6305 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006306 &DeadNodes);
Gabor Greifba36cb52008-08-28 21:40:38 +00006307 removeFromWorkList(Ptr.getNode());
6308 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006309
6310 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006311}
6312
Duncan Sandsec87aa82008-06-15 20:12:31 +00006313/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006314/// add / sub of the base pointer node into a post-indexed load / store.
6315/// The transformation folded the add / subtract into the new indexed
6316/// load / store effectively and all of its uses are redirected to the
6317/// new load / store.
6318bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006319 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006320 return false;
6321
6322 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006323 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006324 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006325 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006326 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006327 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006328 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006329 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6330 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6331 return false;
6332 Ptr = LD->getBasePtr();
6333 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006334 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006335 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006336 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006337 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6338 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6339 return false;
6340 Ptr = ST->getBasePtr();
6341 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006342 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006343 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006344 }
Chris Lattner448f2192006-11-11 00:39:41 +00006345
Gabor Greifba36cb52008-08-28 21:40:38 +00006346 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006347 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006348
Gabor Greifba36cb52008-08-28 21:40:38 +00006349 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6350 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006351 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006352 if (Op == N ||
6353 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6354 continue;
6355
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.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006360 // Don't create a indexed load / store with zero offset.
6361 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006362 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006363 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006364
Chris Lattner9f1794e2006-11-11 00:56:29 +00006365 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006366 // 1) All uses are load / store ops that use it as base ptr (and
6367 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006368 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6369 // nor a successor of N. Otherwise, if Op is folded that would
6370 // create a cycle.
6371
Evan Chengcaab1292009-05-06 18:25:01 +00006372 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6373 continue;
6374
Chris Lattner9f1794e2006-11-11 00:56:29 +00006375 // Check for #1.
6376 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006377 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6378 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006379 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006380 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006381 continue;
6382
Chris Lattner9f1794e2006-11-11 00:56:29 +00006383 // If all the uses are load / store addresses, then don't do the
6384 // transformation.
6385 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6386 bool RealUse = false;
6387 for (SDNode::use_iterator III = Use->use_begin(),
6388 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006389 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006390 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006391 RealUse = true;
6392 }
Chris Lattner448f2192006-11-11 00:39:41 +00006393
Chris Lattner9f1794e2006-11-11 00:56:29 +00006394 if (!RealUse) {
6395 TryNext = true;
6396 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006397 }
6398 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006399 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006400
Chris Lattner9f1794e2006-11-11 00:56:29 +00006401 if (TryNext)
6402 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006403
Chris Lattner9f1794e2006-11-11 00:56:29 +00006404 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00006405 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006406 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00006407 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6408 BasePtr, Offset, AM)
6409 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6410 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006411 ++PostIndexedNodes;
6412 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006413 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006414 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006415 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006416 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006417 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006418 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006419 if (isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006420 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006421 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006422 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006423 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006424 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006425 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006426 &DeadNodes);
Chris Lattner448f2192006-11-11 00:39:41 +00006427 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006428
Chris Lattner9f1794e2006-11-11 00:56:29 +00006429 // Finally, since the node is now dead, remove it from the graph.
6430 DAG.DeleteNode(N);
6431
6432 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00006433 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Chris Lattner9f1794e2006-11-11 00:56:29 +00006434 Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006435 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006436 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006437 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006438 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006439 }
6440 }
6441 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006442
Chris Lattner448f2192006-11-11 00:39:41 +00006443 return false;
6444}
6445
Dan Gohman475871a2008-07-27 21:46:04 +00006446SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00006447 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006448 SDValue Chain = LD->getChain();
6449 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006450
Evan Cheng45a7ca92007-05-01 00:38:21 +00006451 // If load is not volatile and there are no uses of the loaded value (and
6452 // the updated indexed value in case of indexed loads), change uses of the
6453 // chain value into uses of the chain input (i.e. delete the dead load).
6454 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006455 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00006456 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00006457 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00006458 // It's not safe to use the two value CombineTo variant here. e.g.
6459 // v1, chain2 = load chain1, loc
6460 // v2, chain3 = load chain2, loc
6461 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00006462 // Now we replace use of chain2 with chain1. This makes the second load
6463 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00006464 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006465 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006466 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006467 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006468 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006469 WorkListRemover DeadNodes(*this);
Dan Gohman475871a2008-07-27 21:46:04 +00006470 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain, &DeadNodes);
Bill Wendlingc0debad2009-01-30 23:27:35 +00006471
Chris Lattner125991a2008-01-24 07:57:06 +00006472 if (N->use_empty()) {
6473 removeFromWorkList(N);
6474 DAG.DeleteNode(N);
6475 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006476
Dan Gohman475871a2008-07-27 21:46:04 +00006477 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00006478 }
Evan Cheng498f5592007-05-01 08:53:39 +00006479 } else {
6480 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00006481 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00006482 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00006483 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00006484 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006485 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006486 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006487 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006488 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006489 WorkListRemover DeadNodes(*this);
Dan Gohman475871a2008-07-27 21:46:04 +00006490 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef, &DeadNodes);
6491 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Dale Johannesene8d72302009-02-06 23:05:02 +00006492 DAG.getUNDEF(N->getValueType(1)),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006493 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006494 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain, &DeadNodes);
Evan Cheng02c42852008-01-16 23:11:54 +00006495 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00006496 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006497 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00006498 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00006499 }
6500 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006501
Chris Lattner01a22022005-10-10 22:04:48 +00006502 // If this load is directly stored, replace the load value with the stored
6503 // value.
6504 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006505 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00006506 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00006507 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006508 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
6509 if (PrevST->getBasePtr() == Ptr &&
6510 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006511 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00006512 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006513 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006514
Evan Cheng255f20f2010-04-01 06:04:33 +00006515 // Try to infer better alignment information than the load already has.
6516 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00006517 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6518 if (Align > LD->getAlignment())
6519 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
6520 LD->getValueType(0),
6521 Chain, Ptr, LD->getPointerInfo(),
6522 LD->getMemoryVT(),
6523 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00006524 }
6525 }
6526
Jim Laskey7ca56af2006-10-11 13:47:09 +00006527 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00006528 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00006529 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00006530
Jim Laskey6ff23e52006-10-04 16:53:27 +00006531 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00006532 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00006533 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006534
Jim Laskey279f0532006-09-25 16:29:54 +00006535 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006536 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00006537 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00006538 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006539 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006540 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006541 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00006542 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
6543 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00006544 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006545 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006546 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006547 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00006548 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006549 }
Jim Laskey279f0532006-09-25 16:29:54 +00006550
Jim Laskey6ff23e52006-10-04 16:53:27 +00006551 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00006552 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006553 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006554
Nate Begemanb6aef5c2009-09-15 00:18:30 +00006555 // Make sure the new and old chains are cleaned up.
6556 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006557
Jim Laskey274062c2006-10-13 23:32:28 +00006558 // Replace uses with load result and token factor. Don't add users
6559 // to work list.
6560 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00006561 }
6562 }
6563
Evan Cheng7fc033a2006-11-03 03:06:21 +00006564 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00006565 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00006566 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00006567
Dan Gohman475871a2008-07-27 21:46:04 +00006568 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00006569}
6570
Chris Lattner2392ae72010-04-15 04:48:01 +00006571/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
6572/// load is having specific bytes cleared out. If so, return the byte size
6573/// being masked out and the shift amount.
6574static std::pair<unsigned, unsigned>
6575CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
6576 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006577
Chris Lattner2392ae72010-04-15 04:48:01 +00006578 // Check for the structure we're looking for.
6579 if (V->getOpcode() != ISD::AND ||
6580 !isa<ConstantSDNode>(V->getOperand(1)) ||
6581 !ISD::isNormalLoad(V->getOperand(0).getNode()))
6582 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006583
Chris Lattnere6987582010-04-15 06:10:49 +00006584 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00006585 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00006586 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006587
Chris Lattnere6987582010-04-15 06:10:49 +00006588 // The store should be chained directly to the load or be an operand of a
6589 // tokenfactor.
6590 if (LD == Chain.getNode())
6591 ; // ok.
6592 else if (Chain->getOpcode() != ISD::TokenFactor)
6593 return Result; // Fail.
6594 else {
6595 bool isOk = false;
6596 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
6597 if (Chain->getOperand(i).getNode() == LD) {
6598 isOk = true;
6599 break;
6600 }
6601 if (!isOk) return Result;
6602 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006603
Chris Lattner2392ae72010-04-15 04:48:01 +00006604 // This only handles simple types.
6605 if (V.getValueType() != MVT::i16 &&
6606 V.getValueType() != MVT::i32 &&
6607 V.getValueType() != MVT::i64)
6608 return Result;
6609
6610 // Check the constant mask. Invert it so that the bits being masked out are
6611 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
6612 // follow the sign bit for uniformity.
6613 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
6614 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
6615 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
6616 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
6617 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
6618 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006619
Chris Lattner2392ae72010-04-15 04:48:01 +00006620 // See if we have a continuous run of bits. If so, we have 0*1+0*
6621 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
6622 return Result;
6623
6624 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
6625 if (V.getValueType() != MVT::i64 && NotMaskLZ)
6626 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006627
Chris Lattner2392ae72010-04-15 04:48:01 +00006628 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
6629 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006630 case 1:
6631 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00006632 case 4: break;
6633 default: return Result; // All one mask, or 5-byte mask.
6634 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006635
Chris Lattner2392ae72010-04-15 04:48:01 +00006636 // Verify that the first bit starts at a multiple of mask so that the access
6637 // is aligned the same as the access width.
6638 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006639
Chris Lattner2392ae72010-04-15 04:48:01 +00006640 Result.first = MaskedBytes;
6641 Result.second = NotMaskTZ/8;
6642 return Result;
6643}
6644
6645
6646/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
6647/// provides a value as specified by MaskInfo. If so, replace the specified
6648/// store with a narrower store of truncated IVal.
6649static SDNode *
6650ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
6651 SDValue IVal, StoreSDNode *St,
6652 DAGCombiner *DC) {
6653 unsigned NumBytes = MaskInfo.first;
6654 unsigned ByteShift = MaskInfo.second;
6655 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006656
Chris Lattner2392ae72010-04-15 04:48:01 +00006657 // Check to see if IVal is all zeros in the part being masked in by the 'or'
6658 // that uses this. If not, this is not a replacement.
6659 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
6660 ByteShift*8, (ByteShift+NumBytes)*8);
6661 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006662
Chris Lattner2392ae72010-04-15 04:48:01 +00006663 // Check that it is legal on the target to do this. It is legal if the new
6664 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
6665 // legalization.
6666 MVT VT = MVT::getIntegerVT(NumBytes*8);
6667 if (!DC->isTypeLegal(VT))
6668 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006669
Chris Lattner2392ae72010-04-15 04:48:01 +00006670 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
6671 // shifted by ByteShift and truncated down to NumBytes.
6672 if (ByteShift)
6673 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00006674 DAG.getConstant(ByteShift*8,
6675 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00006676
6677 // Figure out the offset for the store and the alignment of the access.
6678 unsigned StOffset;
6679 unsigned NewAlign = St->getAlignment();
6680
6681 if (DAG.getTargetLoweringInfo().isLittleEndian())
6682 StOffset = ByteShift;
6683 else
6684 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006685
Chris Lattner2392ae72010-04-15 04:48:01 +00006686 SDValue Ptr = St->getBasePtr();
6687 if (StOffset) {
6688 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
6689 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
6690 NewAlign = MinAlign(NewAlign, StOffset);
6691 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006692
Chris Lattner2392ae72010-04-15 04:48:01 +00006693 // Truncate down to the new size.
6694 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006695
Chris Lattner2392ae72010-04-15 04:48:01 +00006696 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006697 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006698 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00006699 false, false, NewAlign).getNode();
6700}
6701
Evan Cheng8b944d32009-05-28 00:35:15 +00006702
6703/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
6704/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
6705/// of the loaded bits, try narrowing the load and store if it would end up
6706/// being a win for performance or code size.
6707SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
6708 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00006709 if (ST->isVolatile())
6710 return SDValue();
6711
Evan Cheng8b944d32009-05-28 00:35:15 +00006712 SDValue Chain = ST->getChain();
6713 SDValue Value = ST->getValue();
6714 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00006715 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00006716
6717 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00006718 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006719
6720 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006721
Chris Lattner2392ae72010-04-15 04:48:01 +00006722 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
6723 // is a byte mask indicating a consecutive number of bytes, check to see if
6724 // Y is known to provide just those bytes. If so, we try to replace the
6725 // load + replace + store sequence with a single (narrower) store, which makes
6726 // the load dead.
6727 if (Opc == ISD::OR) {
6728 std::pair<unsigned, unsigned> MaskedLoad;
6729 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
6730 if (MaskedLoad.first)
6731 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6732 Value.getOperand(1), ST,this))
6733 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006734
Chris Lattner2392ae72010-04-15 04:48:01 +00006735 // Or is commutative, so try swapping X and Y.
6736 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
6737 if (MaskedLoad.first)
6738 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6739 Value.getOperand(0), ST,this))
6740 return SDValue(NewST, 0);
6741 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006742
Evan Cheng8b944d32009-05-28 00:35:15 +00006743 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
6744 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00006745 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006746
6747 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00006748 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
6749 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00006750 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00006751 if (LD->getBasePtr() != Ptr ||
6752 LD->getPointerInfo().getAddrSpace() !=
6753 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00006754 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006755
6756 // Find the type to narrow it the load / op / store to.
6757 SDValue N1 = Value.getOperand(1);
6758 unsigned BitWidth = N1.getValueSizeInBits();
6759 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
6760 if (Opc == ISD::AND)
6761 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00006762 if (Imm == 0 || Imm.isAllOnesValue())
6763 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006764 unsigned ShAmt = Imm.countTrailingZeros();
6765 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
6766 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00006767 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006768 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00006769 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00006770 TLI.isNarrowingProfitable(VT, NewVT))) {
6771 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00006772 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006773 }
Evan Chengcdcecc02009-05-28 18:41:02 +00006774 if (NewBW >= BitWidth)
6775 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006776
6777 // If the lsb changed does not start at the type bitwidth boundary,
6778 // start at the previous one.
6779 if (ShAmt % NewBW)
6780 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
6781 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
6782 if ((Imm & Mask) == Imm) {
6783 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
6784 if (Opc == ISD::AND)
6785 NewImm ^= APInt::getAllOnesValue(NewBW);
6786 uint64_t PtrOff = ShAmt / 8;
6787 // For big endian targets, we need to adjust the offset to the pointer to
6788 // load the correct bytes.
6789 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00006790 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00006791
6792 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006793 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Chris Lattner2392ae72010-04-15 04:48:01 +00006794 if (NewAlign < TLI.getTargetData()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00006795 return SDValue();
6796
Evan Cheng8b944d32009-05-28 00:35:15 +00006797 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
6798 Ptr.getValueType(), Ptr,
6799 DAG.getConstant(PtrOff, Ptr.getValueType()));
6800 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
6801 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006802 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006803 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006804 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006805 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
6806 DAG.getConstant(NewImm, NewVT));
6807 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
6808 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006809 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006810 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006811
6812 AddToWorkList(NewPtr.getNode());
6813 AddToWorkList(NewLD.getNode());
6814 AddToWorkList(NewVal.getNode());
6815 WorkListRemover DeadNodes(*this);
6816 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1),
6817 &DeadNodes);
6818 ++OpsNarrowed;
6819 return NewST;
6820 }
6821 }
6822
Evan Chengcdcecc02009-05-28 18:41:02 +00006823 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006824}
6825
Evan Cheng31959b12011-02-02 01:06:55 +00006826/// TransformFPLoadStorePair - For a given floating point load / store pair,
6827/// if the load value isn't used by any other operations, then consider
6828/// transforming the pair to integer load / store operations if the target
6829/// deems the transformation profitable.
6830SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
6831 StoreSDNode *ST = cast<StoreSDNode>(N);
6832 SDValue Chain = ST->getChain();
6833 SDValue Value = ST->getValue();
6834 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
6835 Value.hasOneUse() &&
6836 Chain == SDValue(Value.getNode(), 1)) {
6837 LoadSDNode *LD = cast<LoadSDNode>(Value);
6838 EVT VT = LD->getMemoryVT();
6839 if (!VT.isFloatingPoint() ||
6840 VT != ST->getMemoryVT() ||
6841 LD->isNonTemporal() ||
6842 ST->isNonTemporal() ||
6843 LD->getPointerInfo().getAddrSpace() != 0 ||
6844 ST->getPointerInfo().getAddrSpace() != 0)
6845 return SDValue();
6846
6847 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
6848 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
6849 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
6850 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
6851 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
6852 return SDValue();
6853
6854 unsigned LDAlign = LD->getAlignment();
6855 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006856 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Evan Cheng31959b12011-02-02 01:06:55 +00006857 unsigned ABIAlign = TLI.getTargetData()->getABITypeAlignment(IntVTTy);
6858 if (LDAlign < ABIAlign || STAlign < ABIAlign)
6859 return SDValue();
6860
6861 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
6862 LD->getChain(), LD->getBasePtr(),
6863 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006864 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00006865
6866 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
6867 NewLD, ST->getBasePtr(),
6868 ST->getPointerInfo(),
6869 false, false, STAlign);
6870
6871 AddToWorkList(NewLD.getNode());
6872 AddToWorkList(NewST.getNode());
6873 WorkListRemover DeadNodes(*this);
6874 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1),
6875 &DeadNodes);
6876 ++LdStFP2Int;
6877 return NewST;
6878 }
6879
6880 return SDValue();
6881}
6882
Dan Gohman475871a2008-07-27 21:46:04 +00006883SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006884 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006885 SDValue Chain = ST->getChain();
6886 SDValue Value = ST->getValue();
6887 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006888
Evan Cheng59d5b682007-05-07 21:27:48 +00006889 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00006890 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006891 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00006892 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00006893 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00006894 EVT SVT = Value.getOperand(0).getValueType();
Dan Gohman1ba519b2009-02-20 23:29:13 +00006895 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00006896 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006897 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006898 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006899 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00006900 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00006901 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006902 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00006903 }
Owen Andersona34d9362011-04-14 17:30:49 +00006904
Chris Lattnerb3452ea2011-04-09 02:32:02 +00006905 // Turn 'store undef, Ptr' -> nothing.
6906 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
6907 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006908
Nate Begeman2cbba892006-12-11 02:23:46 +00006909 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00006910 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006911 // NOTE: If the original store is volatile, this transform must not increase
6912 // the number of stores. For example, on x86-32 an f64 can be stored in one
6913 // processor operation but an i64 (which is not legal) requires two. So the
6914 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00006915 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00006916 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00006917 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006918 default: llvm_unreachable("Unknown FP type");
Owen Anderson825b72b2009-08-11 20:47:22 +00006919 case MVT::f80: // We don't do this for these yet.
6920 case MVT::f128:
6921 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00006922 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00006923 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00006924 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006925 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00006926 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00006927 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00006928 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006929 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006930 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00006931 }
6932 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00006933 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00006934 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006935 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006936 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006937 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00006938 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00006939 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006940 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006941 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00006942 }
Owen Andersona34d9362011-04-14 17:30:49 +00006943
Chris Lattnerb3452ea2011-04-09 02:32:02 +00006944 if (!ST->isVolatile() &&
6945 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00006946 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00006947 // argument passing. Since this is so common, custom legalize the
6948 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00006949 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006950 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
6951 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00006952 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00006953
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006954 unsigned Alignment = ST->getAlignment();
6955 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00006956 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006957
Bill Wendlingc144a572009-01-30 23:36:47 +00006958 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006959 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006960 isVolatile, isNonTemporal,
6961 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00006962 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00006963 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00006964 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00006965 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006966 Ptr, ST->getPointerInfo().getWithOffset(4),
6967 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00006968 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00006969 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00006970 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00006971 }
Bill Wendlingc144a572009-01-30 23:36:47 +00006972
Chris Lattner62be1a72006-12-12 04:16:14 +00006973 break;
Evan Cheng25ece662006-12-11 17:25:19 +00006974 }
Nate Begeman2cbba892006-12-11 02:23:46 +00006975 }
Nate Begeman2cbba892006-12-11 02:23:46 +00006976 }
6977
Evan Cheng255f20f2010-04-01 06:04:33 +00006978 // Try to infer better alignment information than the store already has.
6979 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00006980 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6981 if (Align > ST->getAlignment())
6982 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
6983 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
6984 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00006985 }
6986 }
6987
Evan Cheng31959b12011-02-02 01:06:55 +00006988 // Try transforming a pair floating point load / store ops to integer
6989 // load / store ops.
6990 SDValue NewST = TransformFPLoadStorePair(N);
6991 if (NewST.getNode())
6992 return NewST;
6993
Scott Michelfdc40a02009-02-17 22:15:04 +00006994 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00006995 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00006996 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00006997
Jim Laskey6ff23e52006-10-04 16:53:27 +00006998 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00006999 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00007000 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007001
7002 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007003 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007004 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007005 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007006 ST->getMemoryVT(), ST->isVolatile(),
7007 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007008 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00007009 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00007010 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00007011 ST->isVolatile(), ST->isNonTemporal(),
7012 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00007013 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007014
Jim Laskey279f0532006-09-25 16:29:54 +00007015 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00007016 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007017 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00007018
Nate Begemanb6aef5c2009-09-15 00:18:30 +00007019 // Make sure the new and old chains are cleaned up.
7020 AddToWorkList(Token.getNode());
7021
Jim Laskey274062c2006-10-13 23:32:28 +00007022 // Don't add users to work list.
7023 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00007024 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00007025 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007026
Evan Cheng33dbedc2006-11-05 09:31:14 +00007027 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00007028 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00007029 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00007030
Chris Lattner3c872852007-12-29 06:26:16 +00007031 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00007032 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00007033 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00007034 // See if we can simplify the input to this truncstore with knowledge that
7035 // only the low bits are being used. For example:
7036 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00007037 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007038 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00007039 APInt::getLowBitsSet(
7040 Value.getValueType().getScalarType().getSizeInBits(),
7041 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00007042 AddToWorkList(Value.getNode());
7043 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00007044 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007045 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007046 ST->isVolatile(), ST->isNonTemporal(),
7047 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00007048
Chris Lattnere33544c2007-10-13 06:58:48 +00007049 // Otherwise, see if we can simplify the operation with
7050 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00007051 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00007052 APInt::getLowBitsSet(
7053 Value.getValueType().getScalarType().getSizeInBits(),
7054 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00007055 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00007056 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007057
Chris Lattner3c872852007-12-29 06:26:16 +00007058 // If this is a load followed by a store to the same location, then the store
7059 // is dead/noop.
7060 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007061 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007062 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00007063 // There can't be any side effects between the load and store, such as
7064 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00007065 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00007066 // The store is dead, remove it.
7067 return Chain;
7068 }
7069 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007070
Chris Lattnerddf89562008-01-17 19:59:44 +00007071 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
7072 // truncating store. We can do this even if this is already a truncstore.
7073 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00007074 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00007075 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00007076 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00007077 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00007078 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00007079 ST->isVolatile(), ST->isNonTemporal(),
7080 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00007081 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007082
Evan Cheng8b944d32009-05-28 00:35:15 +00007083 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00007084}
7085
Dan Gohman475871a2008-07-27 21:46:04 +00007086SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
7087 SDValue InVec = N->getOperand(0);
7088 SDValue InVal = N->getOperand(1);
7089 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00007090 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00007091
Bob Wilson492fd452010-05-19 23:42:58 +00007092 // If the inserted element is an UNDEF, just use the input vector.
7093 if (InVal.getOpcode() == ISD::UNDEF)
7094 return InVec;
7095
Nadav Rotem609d54e2011-02-12 14:40:33 +00007096 EVT VT = InVec.getValueType();
7097
Owen Anderson95771af2011-02-25 21:41:48 +00007098 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00007099 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
7100 return SDValue();
7101
Eli Friedman9db817f2011-09-09 21:04:06 +00007102 // Check that we know which element is being inserted
7103 if (!isa<ConstantSDNode>(EltNo))
7104 return SDValue();
7105 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007106
Eli Friedman9db817f2011-09-09 21:04:06 +00007107 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
7108 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
7109 // vector elements.
7110 SmallVector<SDValue, 8> Ops;
7111 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
7112 Ops.append(InVec.getNode()->op_begin(),
7113 InVec.getNode()->op_end());
7114 } else if (InVec.getOpcode() == ISD::UNDEF) {
7115 unsigned NElts = VT.getVectorNumElements();
7116 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
7117 } else {
7118 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007119 }
Eli Friedman9db817f2011-09-09 21:04:06 +00007120
7121 // Insert the element
7122 if (Elt < Ops.size()) {
7123 // All the operands of BUILD_VECTOR must have the same type;
7124 // we enforce that here.
7125 EVT OpVT = Ops[0].getValueType();
7126 if (InVal.getValueType() != OpVT)
7127 InVal = OpVT.bitsGT(InVal.getValueType()) ?
7128 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
7129 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
7130 Ops[Elt] = InVal;
7131 }
7132
7133 // Return the new vector
7134 return DAG.getNode(ISD::BUILD_VECTOR, dl,
7135 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00007136}
7137
Dan Gohman475871a2008-07-27 21:46:04 +00007138SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007139 // (vextract (scalar_to_vector val, 0) -> val
7140 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00007141 EVT VT = InVec.getValueType();
7142 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007143
Duncan Sandsc356f332011-05-09 08:03:33 +00007144 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
7145 // Check if the result type doesn't match the inserted element type. A
7146 // SCALAR_TO_VECTOR may truncate the inserted element and the
7147 // EXTRACT_VECTOR_ELT may widen the extracted vector.
7148 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00007149 if (InOp.getValueType() != NVT) {
7150 assert(InOp.getValueType().isInteger() && NVT.isInteger());
7151 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
7152 }
7153 return InOp;
7154 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007155
Nadav Rotemba05c912012-01-17 21:44:01 +00007156 SDValue EltNo = N->getOperand(1);
7157 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
7158
7159 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
7160 // We only perform this optimization before the op legalization phase because
7161 // we may introduce new vector instructions which are not backed by TD patterns.
7162 // For example on AVX, extracting elements from a wide vector without using
7163 // extract_subvector.
7164 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
7165 && ConstEltNo && !LegalOperations) {
7166 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
7167 int NumElem = VT.getVectorNumElements();
7168 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
7169 // Find the new index to extract from.
7170 int OrigElt = SVOp->getMaskElt(Elt);
7171
7172 // Extracting an undef index is undef.
7173 if (OrigElt == -1)
7174 return DAG.getUNDEF(NVT);
7175
7176 // Select the right vector half to extract from.
7177 if (OrigElt < NumElem) {
7178 InVec = InVec->getOperand(0);
7179 } else {
7180 InVec = InVec->getOperand(1);
7181 OrigElt -= NumElem;
7182 }
7183
7184 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
7185 InVec, DAG.getConstant(OrigElt, MVT::i32));
7186 }
7187
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007188 // Perform only after legalization to ensure build_vector / vector_shuffle
7189 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00007190 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007191
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007192 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
7193 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
7194 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00007195
Nadav Rotemba05c912012-01-17 21:44:01 +00007196 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00007197 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00007198 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00007199 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00007200 EVT ExtVT = VT.getVectorElementType();
7201 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00007202
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007203 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007204 // Don't duplicate a load with other uses.
7205 if (!InVec.hasOneUse())
7206 return SDValue();
7207
Owen Andersone50ed302009-08-10 22:56:29 +00007208 EVT BCVT = InVec.getOperand(0).getValueType();
7209 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007210 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00007211 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
7212 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007213 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00007214 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007215 NewLoad = true;
7216 }
Evan Cheng513da432007-10-06 08:19:55 +00007217
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007218 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00007219 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00007220 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007221 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00007222 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00007223 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00007224 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007225 // Don't duplicate a load with other uses.
7226 if (!InVec.hasOneUse())
7227 return SDValue();
7228
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007229 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00007230 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007231 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
7232 // =>
7233 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00007234
Eli Friedmand6e25602011-12-26 22:49:32 +00007235 // Don't duplicate a load with other uses.
7236 if (!InVec.hasOneUse())
7237 return SDValue();
7238
Mon P Wanga60b5232008-12-11 00:26:16 +00007239 // If the bit convert changed the number of elements, it is unsafe
7240 // to examine the mask.
7241 if (BCNumEltsChanged)
7242 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00007243
7244 // Select the input vector, guarding against out of range extract vector.
7245 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00007246 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00007247 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
7248
Eli Friedmand6e25602011-12-26 22:49:32 +00007249 if (InVec.getOpcode() == ISD::BITCAST) {
7250 // Don't duplicate a load with other uses.
7251 if (!InVec.hasOneUse())
7252 return SDValue();
7253
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007254 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00007255 }
Gabor Greifba36cb52008-08-28 21:40:38 +00007256 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007257 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00007258 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00007259 }
7260 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007261
Eli Friedmand6e25602011-12-26 22:49:32 +00007262 // Make sure we found a non-volatile load and the extractelement is
7263 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00007264 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00007265 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007266
Eric Christopherd81f17a2010-11-03 20:44:42 +00007267 // If Idx was -1 above, Elt is going to be -1, so just return undef.
7268 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00007269 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00007270
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007271 unsigned Align = LN0->getAlignment();
7272 if (NewLoad) {
7273 // Check the resultant load doesn't need a higher alignment than the
7274 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00007275 unsigned NewAlign =
Eric Christopher503a64d2010-12-09 04:48:06 +00007276 TLI.getTargetData()
7277 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00007278
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007279 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007280 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00007281
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007282 Align = NewAlign;
7283 }
7284
Dan Gohman475871a2008-07-27 21:46:04 +00007285 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00007286 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007287
Eric Christopherd81f17a2010-11-03 20:44:42 +00007288 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00007289 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007290 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007291 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007292 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00007293 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007294 DAG.getConstant(PtrOff, PtrType));
7295 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007296
Eli Friedman4db4add2011-11-16 23:50:22 +00007297 // The replacement we need to do here is a little tricky: we need to
7298 // replace an extractelement of a load with a load.
7299 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00007300 // Note that this replacement assumes that the extractvalue is the only
7301 // use of the load; that's okay because we don't want to perform this
7302 // transformation in other cases anyway.
Eli Friedman4db4add2011-11-16 23:50:22 +00007303 SDValue Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
7304 LN0->getPointerInfo().getWithOffset(PtrOff),
7305 LN0->isVolatile(), LN0->isNonTemporal(),
7306 LN0->isInvariant(), Align);
7307 WorkListRemover DeadNodes(*this);
7308 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
7309 SDValue To[] = { Load.getValue(0), Load.getValue(1) };
7310 DAG.ReplaceAllUsesOfValuesWith(From, To, 2, &DeadNodes);
7311 // Since we're explcitly calling ReplaceAllUses, add the new node to the
7312 // worklist explicitly as well.
7313 AddToWorkList(Load.getNode());
7314 // Make sure to revisit this node to clean it up; it will usually be dead.
7315 AddToWorkList(N);
7316 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00007317 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007318
Dan Gohman475871a2008-07-27 21:46:04 +00007319 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00007320}
Evan Cheng513da432007-10-06 08:19:55 +00007321
Dan Gohman475871a2008-07-27 21:46:04 +00007322SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007323 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007324 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007325 EVT VT = N->getValueType(0);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007326 // Check to see if this is a BUILD_VECTOR of a bunch of values
7327 // which come from any_extend or zero_extend nodes. If so, we can create
7328 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00007329 // optimizations. We do not handle sign-extend because we can't fill the sign
7330 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007331 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00007332 bool AllAnyExt = true;
7333 bool AllUndef = true;
7334 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007335 SDValue In = N->getOperand(i);
7336 // Ignore undef inputs.
7337 if (In.getOpcode() == ISD::UNDEF) continue;
Craig Topperd3b58892012-01-17 09:09:48 +00007338 AllUndef = false;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007339
7340 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
7341 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
7342
Nadav Rotemf47368b2011-10-31 20:08:25 +00007343 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007344 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00007345 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007346 break;
7347 }
7348
7349 // The input is a ZeroExt or AnyExt. Check the original type.
7350 EVT InTy = In.getOperand(0).getValueType();
7351
7352 // Check that all of the widened source types are the same.
7353 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007354 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007355 SourceType = InTy;
7356 else if (InTy != SourceType) {
7357 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007358 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007359 break;
7360 }
7361
7362 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00007363 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007364 }
7365
Craig Topperd3b58892012-01-17 09:09:48 +00007366 if (AllUndef)
7367 return DAG.getUNDEF(VT);
Nadav Rotemf47368b2011-10-31 20:08:25 +00007368
7369 // In order to have valid types, all of the inputs must be extended from the
7370 // same source type and all of the inputs must be any or zero extend.
7371 // Scalar sizes must be a power of two.
7372 EVT OutScalarTy = N->getValueType(0).getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007373 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00007374 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
7375 isPowerOf2_32(SourceType.getSizeInBits());
7376
7377 // We perform this optimization post type-legalization because
7378 // the type-legalizer often scalarizes integer-promoted vectors.
7379 // Performing this optimization before may create bit-casts which
7380 // will be type-legalized to complex code sequences.
7381 // We perform this optimization only before the operation legalizer because we
7382 // may introduce illegal operations.
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007383 if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) &&
7384 ValidTypes) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007385 bool isLE = TLI.isLittleEndian();
Nadav Rotemf47368b2011-10-31 20:08:25 +00007386 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007387 assert(ElemRatio > 1 && "Invalid element size ratio");
Craig Topperd3b58892012-01-17 09:09:48 +00007388 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
Nadav Rotemf47368b2011-10-31 20:08:25 +00007389 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007390
7391 unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007392 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007393
7394 // Populate the new build_vector
7395 for (unsigned i=0; i < N->getNumOperands(); ++i) {
7396 SDValue Cast = N->getOperand(i);
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007397 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
7398 Cast.getOpcode() == ISD::ZERO_EXTEND ||
7399 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
Nadav Rotemb00418a2011-10-29 21:23:04 +00007400 SDValue In;
7401 if (Cast.getOpcode() == ISD::UNDEF)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007402 In = DAG.getUNDEF(SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007403 else
7404 In = Cast->getOperand(0);
7405 unsigned Index = isLE ? (i * ElemRatio) :
7406 (i * ElemRatio + (ElemRatio - 1));
7407
7408 assert(Index < Ops.size() && "Invalid index");
7409 Ops[Index] = In;
7410 }
7411
7412 // The type of the new BUILD_VECTOR node.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007413 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007414 assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() &&
7415 "Invalid vector size");
Nadav Rotemf47368b2011-10-31 20:08:25 +00007416 // Check if the new vector type is legal.
7417 if (!isTypeLegal(VecVT)) return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007418
7419 // Make the new BUILD_VECTOR.
7420 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7421 VecVT, &Ops[0], Ops.size());
7422
7423 // Bitcast to the desired type.
7424 return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV);
7425 }
Chris Lattnerca242442006-03-19 01:27:56 +00007426
Dan Gohman7f321562007-06-25 16:23:39 +00007427 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
7428 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
7429 // at most two distinct vectors, turn this into a shuffle node.
Dan Gohman475871a2008-07-27 21:46:04 +00007430 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007431 for (unsigned i = 0; i != NumInScalars; ++i) {
7432 // Ignore undef inputs.
7433 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007434
Dan Gohman7f321562007-06-25 16:23:39 +00007435 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00007436 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00007437 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00007438 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007439 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007440 break;
7441 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007442
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007443 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00007444 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007445 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
7446 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007447
Gabor Greifba36cb52008-08-28 21:40:38 +00007448 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007449 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00007450 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007451 VecIn2 = ExtractedFromVec;
7452 } else {
7453 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007454 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007455 break;
7456 }
7457 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007458
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007459 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00007460 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007461 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007462 for (unsigned i = 0; i != NumInScalars; ++i) {
7463 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007464 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007465 continue;
7466 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007467
Rafael Espindola15684b22009-04-24 12:40:33 +00007468 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00007469 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00007470 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007471 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00007472 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
7473 if (ExtIndex > VT.getVectorNumElements())
7474 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007475
Nate Begeman5a5ca152009-04-29 05:20:52 +00007476 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007477 continue;
7478 }
7479
7480 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00007481 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007482 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007483 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007484
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007485 // We can't generate a shuffle node with mismatched input and output types.
7486 // Attempt to transform a single input vector to the correct type.
7487 if ((VT != VecIn1.getValueType())) {
7488 // We don't support shuffeling between TWO values of different types.
7489 if (VecIn2.getNode() != 0)
7490 return SDValue();
7491
7492 // We only support widening of vectors which are half the size of the
7493 // output registers. For example XMM->YMM widening on X86 with AVX.
7494 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
7495 return SDValue();
7496
7497 // Widen the input vector by adding undef values.
7498 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
7499 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
7500 }
7501
7502 // If VecIn2 is unused then change it to undef.
7503 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
7504
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007505 // Check that we were able to transform all incoming values to the same type.
7506 if (VecIn2.getValueType() != VecIn1.getValueType() ||
7507 VecIn1.getValueType() != VT)
7508 return SDValue();
7509
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007510 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007511 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00007512 return SDValue();
7513
Dan Gohman7f321562007-06-25 16:23:39 +00007514 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00007515 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007516 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007517 Ops[1] = VecIn2;
Nate Begeman9008ca62009-04-27 18:41:29 +00007518 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007519 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007520
Dan Gohman475871a2008-07-27 21:46:04 +00007521 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00007522}
7523
Dan Gohman475871a2008-07-27 21:46:04 +00007524SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007525 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
7526 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
7527 // inputs come from at most two distinct vectors, turn this into a shuffle
7528 // node.
7529
7530 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00007531 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00007532 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007533
Dan Gohman475871a2008-07-27 21:46:04 +00007534 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007535}
7536
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007537SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
7538 EVT NVT = N->getValueType(0);
7539 SDValue V = N->getOperand(0);
7540
7541 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
7542 // Handle only simple case where vector being inserted and vector
7543 // being extracted are of same type, and are half size of larger vectors.
7544 EVT BigVT = V->getOperand(0).getValueType();
7545 EVT SmallVT = V->getOperand(1).getValueType();
7546 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
7547 return SDValue();
7548
Eli Friedman26323442011-12-07 00:11:56 +00007549 // Only handle cases where both indexes are constants with the same type.
7550 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
7551 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007552
Eli Friedman26323442011-12-07 00:11:56 +00007553 if (InsIdx && ExtIdx &&
7554 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
7555 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
7556 // Combine:
7557 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
7558 // Into:
7559 // indices are equal => V1
7560 // otherwise => (extract_subvec V1, ExtIdx)
7561 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
7562 return V->getOperand(1);
7563 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
7564 V->getOperand(0), N->getOperand(1));
7565 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007566 }
7567
7568 return SDValue();
7569}
7570
Dan Gohman475871a2008-07-27 21:46:04 +00007571SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007572 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007573 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007574
Mon P Wangaeb06d22008-11-10 04:46:22 +00007575 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00007576 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007577
7578 assert(N0.getValueType().getVectorNumElements() == NumElts &&
7579 "Vector shuffle must be normalized in DAG");
7580
Craig Topper481b79c2012-01-04 08:07:43 +00007581 // Canonicalize shuffle undef, undef -> undef
7582 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
7583 return DAG.getUNDEF(VT);
7584
7585 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7586
7587 // Canonicalize shuffle v, v -> v, undef
7588 if (N0 == N1) {
7589 SmallVector<int, 8> NewMask;
7590 for (unsigned i = 0; i != NumElts; ++i) {
7591 int Idx = SVN->getMaskElt(i);
7592 if (Idx >= (int)NumElts) Idx -= NumElts;
7593 NewMask.push_back(Idx);
7594 }
7595 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
7596 &NewMask[0]);
7597 }
7598
7599 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
7600 if (N0.getOpcode() == ISD::UNDEF) {
7601 SmallVector<int, 8> NewMask;
7602 for (unsigned i = 0; i != NumElts; ++i) {
7603 int Idx = SVN->getMaskElt(i);
7604 if (Idx < 0)
7605 NewMask.push_back(Idx);
7606 else if (Idx < (int)NumElts)
7607 NewMask.push_back(Idx + NumElts);
7608 else
7609 NewMask.push_back(Idx - NumElts);
7610 }
7611 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
7612 &NewMask[0]);
7613 }
7614
7615 // Remove references to rhs if it is undef
7616 if (N1.getOpcode() == ISD::UNDEF) {
7617 bool Changed = false;
7618 SmallVector<int, 8> NewMask;
7619 for (unsigned i = 0; i != NumElts; ++i) {
7620 int Idx = SVN->getMaskElt(i);
7621 if (Idx >= (int)NumElts) {
7622 Idx = -1;
7623 Changed = true;
7624 }
7625 NewMask.push_back(Idx);
7626 }
7627 if (Changed)
7628 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
7629 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00007630
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007631 // If it is a splat, check if the argument vector is another splat or a
7632 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007633 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007634 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00007635
Dan Gohman7f321562007-06-25 16:23:39 +00007636 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00007637 // not the number of vector elements, look through it. Be careful not to
7638 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007639 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00007640 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00007641 if (ConvInput.getValueType().isVector() &&
7642 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00007643 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00007644 }
7645
Dan Gohman7f321562007-06-25 16:23:39 +00007646 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007647 assert(V->getNumOperands() == NumElts &&
7648 "BUILD_VECTOR has wrong number of operands");
7649 SDValue Base;
7650 bool AllSame = true;
7651 for (unsigned i = 0; i != NumElts; ++i) {
7652 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
7653 Base = V->getOperand(i);
7654 break;
Evan Cheng917ec982006-07-21 08:25:53 +00007655 }
Evan Cheng917ec982006-07-21 08:25:53 +00007656 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007657 // Splat of <u, u, u, u>, return <u, u, u, u>
7658 if (!Base.getNode())
7659 return N0;
7660 for (unsigned i = 0; i != NumElts; ++i) {
7661 if (V->getOperand(i) != Base) {
7662 AllSame = false;
7663 break;
7664 }
7665 }
7666 // Splat of <x, x, x, x>, return <x, x, x, x>
7667 if (AllSame)
7668 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00007669 }
7670 }
Dan Gohman475871a2008-07-27 21:46:04 +00007671 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007672}
7673
Jim Grosbach9a526492010-06-23 16:07:42 +00007674SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
7675 if (!TLI.getShouldFoldAtomicFences())
7676 return SDValue();
7677
7678 SDValue atomic = N->getOperand(0);
7679 switch (atomic.getOpcode()) {
7680 case ISD::ATOMIC_CMP_SWAP:
7681 case ISD::ATOMIC_SWAP:
7682 case ISD::ATOMIC_LOAD_ADD:
7683 case ISD::ATOMIC_LOAD_SUB:
7684 case ISD::ATOMIC_LOAD_AND:
7685 case ISD::ATOMIC_LOAD_OR:
7686 case ISD::ATOMIC_LOAD_XOR:
7687 case ISD::ATOMIC_LOAD_NAND:
7688 case ISD::ATOMIC_LOAD_MIN:
7689 case ISD::ATOMIC_LOAD_MAX:
7690 case ISD::ATOMIC_LOAD_UMIN:
7691 case ISD::ATOMIC_LOAD_UMAX:
7692 break;
7693 default:
7694 return SDValue();
7695 }
7696
7697 SDValue fence = atomic.getOperand(0);
7698 if (fence.getOpcode() != ISD::MEMBARRIER)
7699 return SDValue();
7700
7701 switch (atomic.getOpcode()) {
7702 case ISD::ATOMIC_CMP_SWAP:
7703 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7704 fence.getOperand(0),
7705 atomic.getOperand(1), atomic.getOperand(2),
7706 atomic.getOperand(3)), atomic.getResNo());
7707 case ISD::ATOMIC_SWAP:
7708 case ISD::ATOMIC_LOAD_ADD:
7709 case ISD::ATOMIC_LOAD_SUB:
7710 case ISD::ATOMIC_LOAD_AND:
7711 case ISD::ATOMIC_LOAD_OR:
7712 case ISD::ATOMIC_LOAD_XOR:
7713 case ISD::ATOMIC_LOAD_NAND:
7714 case ISD::ATOMIC_LOAD_MIN:
7715 case ISD::ATOMIC_LOAD_MAX:
7716 case ISD::ATOMIC_LOAD_UMIN:
7717 case ISD::ATOMIC_LOAD_UMAX:
7718 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7719 fence.getOperand(0),
7720 atomic.getOperand(1), atomic.getOperand(2)),
7721 atomic.getResNo());
7722 default:
7723 return SDValue();
7724 }
7725}
7726
Evan Cheng44f1f092006-04-20 08:56:16 +00007727/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00007728/// an AND to a vector_shuffle with the destination vector and a zero vector.
7729/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00007730/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00007731SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007732 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007733 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007734 SDValue LHS = N->getOperand(0);
7735 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00007736 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007737 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00007738 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007739 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007740 SmallVector<int, 8> Indices;
7741 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00007742 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007743 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007744 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00007745 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007746 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007747 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007748 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007749 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00007750 else
Dan Gohman475871a2008-07-27 21:46:04 +00007751 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007752 }
7753
7754 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00007755 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007756 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007757 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007758
Dan Gohman7f321562007-06-25 16:23:39 +00007759 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00007760 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007761 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00007762 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00007763 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7764 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007765 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00007766 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007767 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00007768 }
7769 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007770
Dan Gohman475871a2008-07-27 21:46:04 +00007771 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007772}
7773
Dan Gohman7f321562007-06-25 16:23:39 +00007774/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00007775SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007776 // After legalize, the target may be depending on adds and other
7777 // binary ops to provide legal ways to construct constants or other
7778 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00007779 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007780
Bob Wilsond7273432010-12-17 23:06:49 +00007781 assert(N->getValueType(0).isVector() &&
7782 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00007783
Dan Gohman475871a2008-07-27 21:46:04 +00007784 SDValue LHS = N->getOperand(0);
7785 SDValue RHS = N->getOperand(1);
7786 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00007787 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00007788
Dan Gohman7f321562007-06-25 16:23:39 +00007789 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00007790 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00007791 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00007792 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00007793 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00007794 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007795 SDValue LHSOp = LHS.getOperand(i);
7796 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00007797 // If these two elements can't be folded, bail out.
7798 if ((LHSOp.getOpcode() != ISD::UNDEF &&
7799 LHSOp.getOpcode() != ISD::Constant &&
7800 LHSOp.getOpcode() != ISD::ConstantFP) ||
7801 (RHSOp.getOpcode() != ISD::UNDEF &&
7802 RHSOp.getOpcode() != ISD::Constant &&
7803 RHSOp.getOpcode() != ISD::ConstantFP))
7804 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00007805
Evan Cheng7b336a82006-05-31 06:08:35 +00007806 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00007807 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
7808 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00007809 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00007810 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00007811 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00007812 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00007813 break;
7814 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007815
Bob Wilsond7273432010-12-17 23:06:49 +00007816 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00007817 EVT RVT = RHSOp.getValueType();
7818 if (RVT != VT) {
7819 // Integer BUILD_VECTOR operands may have types larger than the element
7820 // size (e.g., when the element type is not legal). Prior to type
7821 // legalization, the types may not match between the two BUILD_VECTORS.
7822 // Truncate one of the operands to make them match.
7823 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
7824 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
7825 } else {
7826 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
7827 VT = RVT;
7828 }
7829 }
Bob Wilsond7273432010-12-17 23:06:49 +00007830 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00007831 LHSOp, RHSOp);
7832 if (FoldOp.getOpcode() != ISD::UNDEF &&
7833 FoldOp.getOpcode() != ISD::Constant &&
7834 FoldOp.getOpcode() != ISD::ConstantFP)
7835 break;
7836 Ops.push_back(FoldOp);
7837 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00007838 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007839
Bob Wilsond7273432010-12-17 23:06:49 +00007840 if (Ops.size() == LHS.getNumOperands())
7841 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7842 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00007843 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007844
Dan Gohman475871a2008-07-27 21:46:04 +00007845 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00007846}
7847
Bill Wendling836ca7d2009-01-30 23:59:18 +00007848SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
7849 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00007850 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007851
Bill Wendling836ca7d2009-01-30 23:59:18 +00007852 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00007853 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00007854
Nate Begemanf845b452005-10-08 00:29:44 +00007855 // If we got a simplified select_cc node back from SimplifySelectCC, then
7856 // break it down into a new SETCC node, and a new SELECT node, and then return
7857 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00007858 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00007859 // Check to see if we got a select_cc back (to turn into setcc/select).
7860 // Otherwise, just return whatever node we got back, like fabs.
7861 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00007862 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
7863 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007864 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00007865 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00007866 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00007867 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
7868 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00007869 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007870
Nate Begemanf845b452005-10-08 00:29:44 +00007871 return SCC;
7872 }
Dan Gohman475871a2008-07-27 21:46:04 +00007873 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00007874}
7875
Chris Lattner40c62d52005-10-18 06:04:22 +00007876/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
7877/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00007878/// select. Callers of this should assume that TheSelect is deleted if this
7879/// returns true. As such, they should return the appropriate thing (e.g. the
7880/// node) back to the top-level of the DAG combiner loop to avoid it being
7881/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00007882bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00007883 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007884
Nadav Rotemf94fdb62011-02-11 19:57:47 +00007885 // Cannot simplify select with vector condition
7886 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
7887
Chris Lattner40c62d52005-10-18 06:04:22 +00007888 // If this is a select from two identical things, try to pull the operation
7889 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00007890 if (LHS.getOpcode() != RHS.getOpcode() ||
7891 !LHS.hasOneUse() || !RHS.hasOneUse())
7892 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007893
Chris Lattner18061612010-09-21 15:46:59 +00007894 // If this is a load and the token chain is identical, replace the select
7895 // of two loads with a load through a select of the address to load from.
7896 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
7897 // constants have been dropped into the constant pool.
7898 if (LHS.getOpcode() == ISD::LOAD) {
7899 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
7900 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007901
Chris Lattner18061612010-09-21 15:46:59 +00007902 // Token chains must be identical.
7903 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007904 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00007905 LLD->isVolatile() || RLD->isVolatile() ||
7906 // If this is an EXTLOAD, the VT's must match.
7907 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00007908 // If this is an EXTLOAD, the kind of extension must match.
7909 (LLD->getExtensionType() != RLD->getExtensionType() &&
7910 // The only exception is if one of the extensions is anyext.
7911 LLD->getExtensionType() != ISD::EXTLOAD &&
7912 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00007913 // FIXME: this discards src value information. This is
7914 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00007915 // both potential memory locations. Since we are discarding
7916 // src value info, don't do the transformation if the memory
7917 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00007918 LLD->getPointerInfo().getAddrSpace() != 0 ||
7919 RLD->getPointerInfo().getAddrSpace() != 0)
7920 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007921
Chris Lattnerf1658062010-09-21 15:58:55 +00007922 // Check that the select condition doesn't reach either load. If so,
7923 // folding this will induce a cycle into the DAG. If not, this is safe to
7924 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00007925 SDValue Addr;
7926 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00007927 SDNode *CondNode = TheSelect->getOperand(0).getNode();
7928 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
7929 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
7930 return false;
7931 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
7932 LLD->getBasePtr().getValueType(),
7933 TheSelect->getOperand(0), LLD->getBasePtr(),
7934 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00007935 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00007936 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
7937 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
7938
7939 if ((LLD->hasAnyUseOfValue(1) &&
7940 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
7941 (LLD->hasAnyUseOfValue(1) &&
7942 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))))
7943 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007944
Chris Lattnerf1658062010-09-21 15:58:55 +00007945 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
7946 LLD->getBasePtr().getValueType(),
7947 TheSelect->getOperand(0),
7948 TheSelect->getOperand(1),
7949 LLD->getBasePtr(), RLD->getBasePtr(),
7950 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00007951 }
7952
Chris Lattnerf1658062010-09-21 15:58:55 +00007953 SDValue Load;
7954 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
7955 Load = DAG.getLoad(TheSelect->getValueType(0),
7956 TheSelect->getDebugLoc(),
7957 // FIXME: Discards pointer info.
7958 LLD->getChain(), Addr, MachinePointerInfo(),
7959 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007960 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00007961 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00007962 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
7963 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00007964 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00007965 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00007966 // FIXME: Discards pointer info.
7967 LLD->getChain(), Addr, MachinePointerInfo(),
7968 LLD->getMemoryVT(), LLD->isVolatile(),
7969 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00007970 }
Chris Lattnerf1658062010-09-21 15:58:55 +00007971
7972 // Users of the select now use the result of the load.
7973 CombineTo(TheSelect, Load);
7974
7975 // Users of the old loads now use the new load's chain. We know the
7976 // old-load value is dead now.
7977 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
7978 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
7979 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00007980 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007981
Chris Lattner40c62d52005-10-18 06:04:22 +00007982 return false;
7983}
7984
Chris Lattner600fec32009-03-11 05:08:08 +00007985/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
7986/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00007987SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00007988 SDValue N2, SDValue N3,
7989 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00007990 // (x ? y : y) -> y.
7991 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007992
Owen Andersone50ed302009-08-10 22:56:29 +00007993 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00007994 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
7995 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
7996 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00007997
7998 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00007999 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008000 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00008001 if (SCC.getNode()) AddToWorkList(SCC.getNode());
8002 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008003
8004 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00008005 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008006 return N2;
8007 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00008008 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00008009 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00008010
Nate Begemanf845b452005-10-08 00:29:44 +00008011 // Check to see if we can simplify the select into an fabs node
8012 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
8013 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00008014 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00008015 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
8016 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
8017 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
8018 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008019 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008020
Nate Begemanf845b452005-10-08 00:29:44 +00008021 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
8022 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
8023 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
8024 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008025 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00008026 }
8027 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008028
Chris Lattner600fec32009-03-11 05:08:08 +00008029 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
8030 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
8031 // in it. This is a win when the constant is not otherwise available because
8032 // it replaces two constant pool loads with one. We only do this if the FP
8033 // type is known to be legal, because if it isn't, then we are before legalize
8034 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00008035 // messing with soft float) and if the ConstantFP is not legal, because if
8036 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00008037 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
8038 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
8039 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00008040 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
8041 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00008042 // If both constants have multiple uses, then we won't need to do an
8043 // extra load, they are likely around in registers for other users.
8044 (TV->hasOneUse() || FV->hasOneUse())) {
8045 Constant *Elts[] = {
8046 const_cast<ConstantFP*>(FV->getConstantFPValue()),
8047 const_cast<ConstantFP*>(TV->getConstantFPValue())
8048 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008049 Type *FPTy = Elts[0]->getType();
Chris Lattner600fec32009-03-11 05:08:08 +00008050 const TargetData &TD = *TLI.getTargetData();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008051
Chris Lattner600fec32009-03-11 05:08:08 +00008052 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00008053 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00008054 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
8055 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00008056 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00008057
8058 // Get the offsets to the 0 and 1 element of the array so that we can
8059 // select between them.
8060 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00008061 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00008062 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008063
Chris Lattner600fec32009-03-11 05:08:08 +00008064 SDValue Cond = DAG.getSetCC(DL,
8065 TLI.getSetCCResultType(N0.getValueType()),
8066 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00008067 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008068 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
8069 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00008070 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008071 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
8072 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00008073 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00008074 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00008075 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008076 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00008077
8078 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008079 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008080
Nate Begemanf845b452005-10-08 00:29:44 +00008081 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00008082 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00008083 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00008084 (N1C->isNullValue() || // (a < 0) ? b : 0
8085 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00008086 EVT XType = N0.getValueType();
8087 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00008088 if (XType.bitsGE(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00008089 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00008090 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00008091 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
8092 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008093 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00008094 SDValue ShCt = DAG.getConstant(ShCtV,
8095 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00008096 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008097 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00008098 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008099
Duncan Sands8e4eb092008-06-08 20:54:56 +00008100 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008101 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008102 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008103 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008104
8105 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008106 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008107
Bill Wendling9729c5a2009-01-31 03:12:48 +00008108 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008109 XType, N0,
8110 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008111 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00008112 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008113
Duncan Sands8e4eb092008-06-08 20:54:56 +00008114 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008115 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008116 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008117 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008118
8119 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008120 }
8121 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008122
Owen Andersoned1088a2010-09-22 22:58:22 +00008123 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
8124 // where y is has a single bit set.
8125 // A plaintext description would be, we can turn the SELECT_CC into an AND
8126 // when the condition can be materialized as an all-ones register. Any
8127 // single bit-test can be materialized as an all-ones register with
8128 // shift-left and shift-right-arith.
8129 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
8130 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008131 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00008132 N2C && N2C->isNullValue()) {
8133 SDValue AndLHS = N0->getOperand(0);
8134 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
8135 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
8136 // Shift the tested bit over the sign bit.
8137 APInt AndMask = ConstAndRHS->getAPIntValue();
8138 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008139 DAG.getConstant(AndMask.countLeadingZeros(),
8140 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008141 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008142
Owen Andersoned1088a2010-09-22 22:58:22 +00008143 // Now arithmetic right shift it all the way over, so the result is either
8144 // all-ones, or zero.
8145 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008146 DAG.getConstant(AndMask.getBitWidth()-1,
8147 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008148 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008149
Owen Andersoned1088a2010-09-22 22:58:22 +00008150 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
8151 }
8152 }
8153
Nate Begeman07ed4172005-10-10 21:26:48 +00008154 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00008155 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00008156 TLI.getBooleanContents(N0.getValueType().isVector()) ==
8157 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008158
Chris Lattner1eba01e2007-04-11 06:50:51 +00008159 // If the caller doesn't want us to simplify this into a zext of a compare,
8160 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00008161 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00008162 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008163
Nate Begeman07ed4172005-10-10 21:26:48 +00008164 // Get a SetCC of the condition
8165 // FIXME: Should probably make sure that setcc is legal if we ever have a
8166 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00008167 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00008168 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00008169 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008170 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00008171 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00008172 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00008173 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00008174 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00008175 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008176 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008177 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00008178 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00008179 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008180 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008181 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008182
Gabor Greifba36cb52008-08-28 21:40:38 +00008183 AddToWorkList(SCC.getNode());
8184 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00008185
Dan Gohman002e5d02008-03-13 22:13:53 +00008186 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00008187 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008188
Nate Begeman07ed4172005-10-10 21:26:48 +00008189 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00008190 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00008191 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00008192 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00008193 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008194
Nate Begemanf845b452005-10-08 00:29:44 +00008195 // Check to see if this is the equivalent of setcc
8196 // FIXME: Turn all of these into setcc if setcc if setcc is legal
8197 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00008198 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00008199 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00008200 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00008201 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008202 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00008203 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008204 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00008205 return Res;
8206 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008207
Bill Wendling836ca7d2009-01-30 23:59:18 +00008208 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00008209 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008210 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00008211 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008212 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008213 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008214 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00008215 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00008216 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008217 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00008218 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008219 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
8220 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00008221 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00008222 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00008223 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00008224 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008225 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00008226 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008227 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00008228 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008229 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00008230 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008231 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00008232 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00008233 }
8234 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008235
Benjamin Kramercde51102010-07-08 12:09:56 +00008236 // Check to see if this is an integer abs.
8237 // select_cc setg[te] X, 0, X, -X ->
8238 // select_cc setgt X, -1, X, -X ->
8239 // select_cc setl[te] X, 0, -X, X ->
8240 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00008241 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00008242 if (N1C) {
8243 ConstantSDNode *SubC = NULL;
8244 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
8245 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
8246 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
8247 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
8248 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
8249 (N1C->isOne() && CC == ISD::SETLT)) &&
8250 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
8251 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
8252
Owen Andersone50ed302009-08-10 22:56:29 +00008253 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00008254 if (SubC && SubC->isNullValue() && XType.isInteger()) {
8255 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
8256 N0,
8257 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008258 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00008259 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
8260 XType, N0, Shift);
8261 AddToWorkList(Shift.getNode());
8262 AddToWorkList(Add.getNode());
8263 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00008264 }
8265 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008266
Dan Gohman475871a2008-07-27 21:46:04 +00008267 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008268}
8269
Evan Chengfa1eb272007-02-08 22:13:59 +00008270/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00008271SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00008272 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008273 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008274 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00008275 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008276 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00008277}
8278
Nate Begeman69575232005-10-20 02:15:44 +00008279/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
8280/// return a DAG expression to select that will generate the same value by
8281/// multiplying by a magic number. See:
8282/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008283SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008284 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008285 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008286
Andrew Lenharth232c9102006-06-12 16:07:18 +00008287 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008288 ii != ee; ++ii)
8289 AddToWorkList(*ii);
8290 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008291}
8292
8293/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
8294/// return a DAG expression to select that will generate the same value by
8295/// multiplying by a magic number. See:
8296/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008297SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008298 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008299 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00008300
Andrew Lenharth232c9102006-06-12 16:07:18 +00008301 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008302 ii != ee; ++ii)
8303 AddToWorkList(*ii);
8304 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008305}
8306
Nate Begemancc66cdd2009-09-25 06:05:26 +00008307/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00008308// to alias with anything but itself. Provides base object and offset as
8309// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008310static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Dan Gohman46510a72010-04-15 01:51:59 +00008311 const GlobalValue *&GV, void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00008312 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008313 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008314
Jim Laskey71382342006-10-07 23:37:56 +00008315 // If it's an adding a simple constant then integrate the offset.
8316 if (Base.getOpcode() == ISD::ADD) {
8317 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
8318 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008319 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00008320 }
8321 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008322
Nate Begemancc66cdd2009-09-25 06:05:26 +00008323 // Return the underlying GlobalValue, and update the Offset. Return false
8324 // for GlobalAddressSDNode since the same GlobalAddress may be represented
8325 // by multiple nodes with different offsets.
8326 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
8327 GV = G->getGlobal();
8328 Offset += G->getOffset();
8329 return false;
8330 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008331
Nate Begemancc66cdd2009-09-25 06:05:26 +00008332 // Return the underlying Constant value, and update the Offset. Return false
8333 // for ConstantSDNodes since the same constant pool entry may be represented
8334 // by multiple nodes with different offsets.
8335 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
8336 CV = C->isMachineConstantPoolEntry() ? (void *)C->getMachineCPVal()
8337 : (void *)C->getConstVal();
8338 Offset += C->getOffset();
8339 return false;
8340 }
Jim Laskey71382342006-10-07 23:37:56 +00008341 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008342 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00008343}
8344
8345/// isAlias - Return true if there is any possibility that the two addresses
8346/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00008347bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00008348 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008349 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008350 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00008351 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008352 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008353 unsigned SrcValueAlign2,
8354 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00008355 // If they are the same then they must be aliases.
8356 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00008357
Jim Laskey71382342006-10-07 23:37:56 +00008358 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00008359 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00008360 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00008361 const GlobalValue *GV1, *GV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00008362 void *CV1, *CV2;
8363 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
8364 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00008365
Nate Begemancc66cdd2009-09-25 06:05:26 +00008366 // If they have a same base address then check to see if they overlap.
8367 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008368 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008369
Owen Anderson4a9f1502010-09-20 20:39:59 +00008370 // It is possible for different frame indices to alias each other, mostly
8371 // when tail call optimization reuses return address slots for arguments.
8372 // To catch this case, look up the actual index of frame indices to compute
8373 // the real alias relationship.
8374 if (isFrameIndex1 && isFrameIndex2) {
8375 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8376 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
8377 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
8378 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
8379 }
8380
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008381 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00008382 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008383 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
8384 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00008385
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008386 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
8387 // compared to the size and offset of the access, we may be able to prove they
8388 // do not alias. This check is conservative for now to catch cases created by
8389 // splitting vector types.
8390 if ((SrcValueAlign1 == SrcValueAlign2) &&
8391 (SrcValueOffset1 != SrcValueOffset2) &&
8392 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
8393 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
8394 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008395
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008396 // There is no overlap between these relatively aligned accesses of similar
8397 // size, return no alias.
8398 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
8399 return false;
8400 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008401
Jim Laskey07a27092006-10-18 19:08:31 +00008402 if (CombinerGlobalAA) {
8403 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00008404 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
8405 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
8406 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00008407 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008408 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
8409 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00008410 if (AAResult == AliasAnalysis::NoAlias)
8411 return false;
8412 }
Jim Laskey096c22e2006-10-18 12:29:57 +00008413
8414 // Otherwise we have to assume they alias.
8415 return true;
Jim Laskey71382342006-10-07 23:37:56 +00008416}
8417
8418/// FindAliasInfo - Extracts the relevant alias information from the memory
8419/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00008420bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00008421 SDValue &Ptr, int64_t &Size,
8422 const Value *&SrcValue,
8423 int &SrcValueOffset,
8424 unsigned &SrcValueAlign,
8425 const MDNode *&TBAAInfo) const {
8426 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
8427
8428 Ptr = LS->getBasePtr();
8429 Size = LS->getMemoryVT().getSizeInBits() >> 3;
8430 SrcValue = LS->getSrcValue();
8431 SrcValueOffset = LS->getSrcValueOffset();
8432 SrcValueAlign = LS->getOriginalAlignment();
8433 TBAAInfo = LS->getTBAAInfo();
8434 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00008435}
8436
Jim Laskey6ff23e52006-10-04 16:53:27 +00008437/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
8438/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00008439void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
8440 SmallVector<SDValue, 8> &Aliases) {
8441 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008442 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00008443
Jim Laskey279f0532006-09-25 16:29:54 +00008444 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00008445 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008446 int64_t Size;
8447 const Value *SrcValue;
8448 int SrcValueOffset;
8449 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008450 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008451 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008452 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00008453
Jim Laskey6ff23e52006-10-04 16:53:27 +00008454 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00008455 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00008456 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008457
Jim Laskeybc588b82006-10-05 15:07:25 +00008458 // Look at each chain and determine if it is an alias. If so, add it to the
8459 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00008460 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00008461 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008462 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00008463 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008464
8465 // For TokenFactor nodes, look at each operand and only continue up the
8466 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00008467 // find more and revert to original chain since the xform is unlikely to be
8468 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008469 //
8470 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00008471 // chain we found before we hit a tokenfactor rather than the original
8472 // chain.
8473 if (Depth > 6 || Aliases.size() == 2) {
8474 Aliases.clear();
8475 Aliases.push_back(OriginalChain);
8476 break;
8477 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008478
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008479 // Don't bother if we've been before.
8480 if (!Visited.insert(Chain.getNode()))
8481 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008482
Jim Laskeybc588b82006-10-05 15:07:25 +00008483 switch (Chain.getOpcode()) {
8484 case ISD::EntryToken:
8485 // Entry token is ideal chain operand, but handled in FindBetterChain.
8486 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008487
Jim Laskeybc588b82006-10-05 15:07:25 +00008488 case ISD::LOAD:
8489 case ISD::STORE: {
8490 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00008491 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008492 int64_t OpSize;
8493 const Value *OpSrcValue;
8494 int OpSrcValueOffset;
8495 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008496 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00008497 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008498 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008499 OpSrcValueAlign,
8500 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00008501
Jim Laskeybc588b82006-10-05 15:07:25 +00008502 // If chain is alias then stop here.
8503 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008504 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008505 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008506 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008507 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00008508 Aliases.push_back(Chain);
8509 } else {
8510 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00008511 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00008512 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00008513 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008514 break;
8515 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008516
Jim Laskeybc588b82006-10-05 15:07:25 +00008517 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008518 // We have to check each of the operands of the token factor for "small"
8519 // token factors, so we queue them up. Adding the operands to the queue
8520 // (stack) in reverse order maintains the original order and increases the
8521 // likelihood that getNode will find a matching token factor (CSE.)
8522 if (Chain.getNumOperands() > 16) {
8523 Aliases.push_back(Chain);
8524 break;
8525 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008526 for (unsigned n = Chain.getNumOperands(); n;)
8527 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00008528 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00008529 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008530
Jim Laskeybc588b82006-10-05 15:07:25 +00008531 default:
8532 // For all other instructions we will just have to take what we can get.
8533 Aliases.push_back(Chain);
8534 break;
Jim Laskey279f0532006-09-25 16:29:54 +00008535 }
8536 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00008537}
8538
8539/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
8540/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00008541SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
8542 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00008543
Jim Laskey6ff23e52006-10-04 16:53:27 +00008544 // Accumulate all the aliases to this node.
8545 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00008546
Dan Gohman71dc7c92011-05-17 22:20:36 +00008547 // If no operands then chain to entry token.
8548 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008549 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00008550
8551 // If a single operand then chain to it. We don't need to revisit it.
8552 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008553 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008554
Jim Laskey6ff23e52006-10-04 16:53:27 +00008555 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008556 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008557 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00008558}
8559
Nate Begeman1d4d4142005-09-01 00:19:25 +00008560// SelectionDAG::Combine - This is the entry point for the file.
8561//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008562void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00008563 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00008564 /// run - This is the main entry point to this class.
8565 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008566 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00008567}