blob: 0bca55fbbba354b83e7e445bd26acb2760d506b6 [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// 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.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
Evan Cheng3d2125c2010-11-30 23:55:39 +000014#include "llvm/Analysis/DebugInfo.h"
15#include "llvm/CodeGen/Analysis.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000016#include "llvm/CodeGen/MachineFunction.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Cheng3d2125c2010-11-30 23:55:39 +000018#include "llvm/CodeGen/SelectionDAG.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000019#include "llvm/Target/TargetFrameLowering.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000020#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000021#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000022#include "llvm/Target/TargetMachine.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000023#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000024#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000025#include "llvm/DerivedTypes.h"
Owen Anderson9adc0ab2009-07-14 23:09:55 +000026#include "llvm/LLVMContext.h"
David Greene993aace2010-01-05 01:24:53 +000027#include "llvm/Support/Debug.h"
Jim Grosbache03262f2010-06-18 21:43:38 +000028#include "llvm/Support/ErrorHandling.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner45cfe542009-08-23 06:03:38 +000030#include "llvm/Support/raw_ostream.h"
Chris Lattner79715142007-02-03 01:12:36 +000031#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000032#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000033#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000034using namespace llvm;
35
36//===----------------------------------------------------------------------===//
37/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
38/// hacks on it until the target machine can handle it. This involves
39/// eliminating value sizes the machine cannot handle (promoting small sizes to
40/// large sizes or splitting up large values into small values) as well as
41/// eliminating operations the machine cannot handle.
42///
43/// This code also does a small amount of optimization and recognition of idioms
44/// as part of its processing. For example, if a target does not support a
45/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
46/// will attempt merge setcc and brc instructions into brcc's.
47///
48namespace {
Dan Gohman65fd6562011-11-03 21:49:52 +000049class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
Dan Gohman55e59c12010-04-19 19:05:59 +000050 const TargetMachine &TM;
Dan Gohmand858e902010-04-17 15:26:15 +000051 const TargetLowering &TLI;
Chris Lattner3e928bb2005-01-07 07:47:09 +000052 SelectionDAG &DAG;
53
Dan Gohman65fd6562011-11-03 21:49:52 +000054 /// LegalizePosition - The iterator for walking through the node list.
55 SelectionDAG::allnodes_iterator LegalizePosition;
56
57 /// LegalizedNodes - The set of nodes which have already been legalized.
58 SmallPtrSet<SDNode *, 16> LegalizedNodes;
59
Chris Lattner6831a812006-02-13 09:18:02 +000060 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000061
Chris Lattner3e928bb2005-01-07 07:47:09 +000062public:
Dan Gohman975716a2011-05-16 22:19:54 +000063 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +000064
Chris Lattner3e928bb2005-01-07 07:47:09 +000065 void LegalizeDAG();
66
Chris Lattner456a93a2006-01-28 07:39:30 +000067private:
Dan Gohman65fd6562011-11-03 21:49:52 +000068 /// LegalizeOp - Legalizes the given operation.
69 void LegalizeOp(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +000070
Eli Friedman7ef3d172009-06-06 07:04:42 +000071 SDValue OptimizeFloatStore(StoreSDNode *ST);
72
Nate Begeman68679912008-04-25 18:07:40 +000073 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
74 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
75 /// is necessary to spill the vector being inserted into to memory, perform
76 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +000077 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Eli Friedman3f727d62009-05-27 02:16:40 +000078 SDValue Idx, DebugLoc dl);
79 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
80 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +000081
Nate Begeman5a5ca152009-04-29 05:20:52 +000082 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
83 /// performs the same shuffe in terms of order or result bytes, but on a type
84 /// whose vector element type is narrower than the original shuffle type.
85 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Owen Andersone50ed302009-08-10 22:56:29 +000086 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Jim Grosbach6e992612010-07-02 17:41:59 +000087 SDValue N1, SDValue N2,
Nate Begeman5a5ca152009-04-29 05:20:52 +000088 SmallVectorImpl<int> &Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +000089
Owen Andersone50ed302009-08-10 22:56:29 +000090 void LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +000091 DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +000092
Eli Friedman47b41f72009-05-27 02:21:29 +000093 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherabbbfbd2011-04-20 01:19:45 +000094 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
95 unsigned NumOps, bool isSigned, DebugLoc dl);
96
Jim Grosbache03262f2010-06-18 21:43:38 +000097 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
98 SDNode *Node, bool isSigned);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +000099 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
100 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
101 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000102 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
103 RTLIB::Libcall Call_I8,
104 RTLIB::Libcall Call_I16,
105 RTLIB::Libcall Call_I32,
106 RTLIB::Libcall Call_I64,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000107 RTLIB::Libcall Call_I128);
Evan Cheng65279cb2011-04-16 03:08:26 +0000108 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnercad063f2005-07-16 00:19:57 +0000109
Owen Andersone50ed302009-08-10 22:56:29 +0000110 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000111 SDValue ExpandBUILD_VECTOR(SDNode *Node);
112 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +0000113 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
114 SmallVectorImpl<SDValue> &Results);
115 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Andersone50ed302009-08-10 22:56:29 +0000116 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +0000117 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000118 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000119 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000120 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000121 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000122
Dale Johannesen8a782a22009-02-02 22:12:50 +0000123 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
124 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000125
Eli Friedman3d43b3f2009-05-23 22:37:25 +0000126 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenecfe33c42011-01-26 19:13:22 +0000127 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000128 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman8c377c72009-05-27 01:25:56 +0000129
Dan Gohman65fd6562011-11-03 21:49:52 +0000130 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
131
Jim Grosbache03262f2010-06-18 21:43:38 +0000132 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
133
Dan Gohman65fd6562011-11-03 21:49:52 +0000134 void ExpandNode(SDNode *Node);
135 void PromoteNode(SDNode *Node);
136
Eli Friedman0e3642a2011-11-11 23:58:27 +0000137 void ForgetNode(SDNode *N) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000138 LegalizedNodes.erase(N);
139 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
140 ++LegalizePosition;
141 }
142
Eli Friedman0e3642a2011-11-11 23:58:27 +0000143public:
144 // DAGUpdateListener implementation.
145 virtual void NodeDeleted(SDNode *N, SDNode *E) {
146 ForgetNode(N);
147 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000148 virtual void NodeUpdated(SDNode *N) {}
Eli Friedman0e3642a2011-11-11 23:58:27 +0000149
150 // Node replacement helpers
151 void ReplacedNode(SDNode *N) {
152 if (N->use_empty()) {
153 DAG.RemoveDeadNode(N, this);
154 } else {
155 ForgetNode(N);
156 }
157 }
158 void ReplaceNode(SDNode *Old, SDNode *New) {
159 DAG.ReplaceAllUsesWith(Old, New, this);
160 ReplacedNode(Old);
161 }
162 void ReplaceNode(SDValue Old, SDValue New) {
163 DAG.ReplaceAllUsesWith(Old, New, this);
164 ReplacedNode(Old.getNode());
165 }
166 void ReplaceNode(SDNode *Old, const SDValue *New) {
167 DAG.ReplaceAllUsesWith(Old, New, this);
168 ReplacedNode(Old);
169 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000170};
171}
172
Nate Begeman5a5ca152009-04-29 05:20:52 +0000173/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
174/// performs the same shuffe in terms of order or result bytes, but on a type
175/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000176/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach6e992612010-07-02 17:41:59 +0000177SDValue
178SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Nate Begeman5a5ca152009-04-29 05:20:52 +0000179 SDValue N1, SDValue N2,
Nate Begeman9008ca62009-04-27 18:41:29 +0000180 SmallVectorImpl<int> &Mask) const {
Nate Begeman5a5ca152009-04-29 05:20:52 +0000181 unsigned NumMaskElts = VT.getVectorNumElements();
182 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000183 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000184
Nate Begeman9008ca62009-04-27 18:41:29 +0000185 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
186
187 if (NumEltsGrowth == 1)
188 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach6e992612010-07-02 17:41:59 +0000189
Nate Begeman9008ca62009-04-27 18:41:29 +0000190 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000191 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000192 int Idx = Mask[i];
193 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach6e992612010-07-02 17:41:59 +0000194 if (Idx < 0)
Nate Begeman9008ca62009-04-27 18:41:29 +0000195 NewMask.push_back(-1);
196 else
197 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000198 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000199 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000200 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000201 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
202 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000203}
204
Dan Gohman975716a2011-05-16 22:19:54 +0000205SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
Dan Gohman55e59c12010-04-19 19:05:59 +0000206 : TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
Dan Gohmanea027022011-07-15 22:19:02 +0000207 DAG(dag) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000208}
209
Chris Lattner3e928bb2005-01-07 07:47:09 +0000210void SelectionDAGLegalize::LegalizeDAG() {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000211 DAG.AssignTopologicalOrder();
Dan Gohman2ba60e52011-10-28 01:29:32 +0000212
Dan Gohman65fd6562011-11-03 21:49:52 +0000213 // Visit all the nodes. We start in topological order, so that we see
214 // nodes with their original operands intact. Legalization can produce
215 // new nodes which may themselves need to be legalized. Iterate until all
216 // nodes have been legalized.
217 for (;;) {
218 bool AnyLegalized = false;
219 for (LegalizePosition = DAG.allnodes_end();
220 LegalizePosition != DAG.allnodes_begin(); ) {
221 --LegalizePosition;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000222
Dan Gohman65fd6562011-11-03 21:49:52 +0000223 SDNode *N = LegalizePosition;
224 if (LegalizedNodes.insert(N)) {
225 AnyLegalized = true;
226 LegalizeOp(N);
227 }
228 }
229 if (!AnyLegalized)
230 break;
231
232 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000233
234 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000235 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000236}
237
Evan Cheng9f877882006-12-13 20:57:08 +0000238/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
239/// a load from the constant pool.
Dan Gohman65fd6562011-11-03 21:49:52 +0000240SDValue
241SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng00495212006-12-12 21:32:44 +0000242 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000243 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000244
245 // If a FP immediate is precise when represented as a float and if the
246 // target can do an extending load from float to double, we put it into
247 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000248 // double. This shrinks FP constants and canonicalizes them for targets where
249 // an FP extending load is the same cost as a normal load (such as on the x87
250 // fp stack or PPC FP unit).
Owen Andersone50ed302009-08-10 22:56:29 +0000251 EVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000252 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000253 if (!UseCP) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000254 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000255 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000256 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000257 }
258
Owen Andersone50ed302009-08-10 22:56:29 +0000259 EVT OrigVT = VT;
260 EVT SVT = VT;
Owen Anderson825b72b2009-08-11 20:47:22 +0000261 while (SVT != MVT::f32) {
262 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman7720cb32010-06-18 14:01:07 +0000263 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Chengef120572008-03-04 08:05:30 +0000264 // Only do this if the target has a native EXTLOAD instruction from
265 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000266 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000267 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000268 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Andersonbaf3c402009-07-29 18:55:55 +0000269 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Chengef120572008-03-04 08:05:30 +0000270 VT = SVT;
271 Extend = true;
272 }
Evan Cheng00495212006-12-12 21:32:44 +0000273 }
274
Dan Gohman475871a2008-07-27 21:46:04 +0000275 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000276 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman65fd6562011-11-03 21:49:52 +0000277 if (Extend) {
278 SDValue Result =
279 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
280 DAG.getEntryNode(),
281 CPIdx, MachinePointerInfo::getConstantPool(),
282 VT, false, false, Alignment);
283 return Result;
284 }
285 SDValue Result =
286 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000287 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman65fd6562011-11-03 21:49:52 +0000288 Alignment);
289 return Result;
Evan Cheng00495212006-12-12 21:32:44 +0000290}
291
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000292/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman65fd6562011-11-03 21:49:52 +0000293static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
294 const TargetLowering &TLI,
Eli Friedman0e3642a2011-11-11 23:58:27 +0000295 SelectionDAGLegalize *DAGLegalize) {
Dan Gohman475871a2008-07-27 21:46:04 +0000296 SDValue Chain = ST->getChain();
297 SDValue Ptr = ST->getBasePtr();
298 SDValue Val = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +0000299 EVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000300 int Alignment = ST->getAlignment();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000301 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000302 if (ST->getMemoryVT().isFloatingPoint() ||
303 ST->getMemoryVT().isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000304 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000305 if (TLI.isTypeLegal(intVT)) {
306 // Expand to a bitconvert of the value to the integer type of the
307 // same size, then a (misaligned) int store.
308 // FIXME: Does not handle truncating floating point stores!
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000309 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman65fd6562011-11-03 21:49:52 +0000310 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
311 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000312 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000313 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000314 }
Dan Gohman1b328962011-05-17 22:22:52 +0000315 // Do a (aligned) store to a stack slot, then copy from the stack slot
316 // to the final destination using (unaligned) integer loads and stores.
317 EVT StoredVT = ST->getMemoryVT();
318 EVT RegVT =
319 TLI.getRegisterType(*DAG.getContext(),
320 EVT::getIntegerVT(*DAG.getContext(),
321 StoredVT.getSizeInBits()));
322 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
323 unsigned RegBytes = RegVT.getSizeInBits() / 8;
324 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
325
326 // Make sure the stack slot is also aligned for the register type.
327 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
328
329 // Perform the original store, only redirected to the stack slot.
330 SDValue Store = DAG.getTruncStore(Chain, dl,
331 Val, StackPtr, MachinePointerInfo(),
332 StoredVT, false, false, 0);
333 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
334 SmallVector<SDValue, 8> Stores;
335 unsigned Offset = 0;
336
337 // Do all but one copies using the full register width.
338 for (unsigned i = 1; i < NumRegs; i++) {
339 // Load one integer register's worth from the stack slot.
340 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
341 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000342 false, false, false, 0);
Dan Gohman1b328962011-05-17 22:22:52 +0000343 // Store it to the final location. Remember the store.
344 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
345 ST->getPointerInfo().getWithOffset(Offset),
346 ST->isVolatile(), ST->isNonTemporal(),
347 MinAlign(ST->getAlignment(), Offset)));
348 // Increment the pointers.
349 Offset += RegBytes;
350 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
351 Increment);
352 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
353 }
354
355 // The last store may be partial. Do a truncating store. On big-endian
356 // machines this requires an extending load from the stack slot to ensure
357 // that the bits are in the right place.
358 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
359 8 * (StoredBytes - Offset));
360
361 // Load from the stack slot.
362 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
363 MachinePointerInfo(),
364 MemVT, false, false, 0);
365
366 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
367 ST->getPointerInfo()
368 .getWithOffset(Offset),
369 MemVT, ST->isVolatile(),
370 ST->isNonTemporal(),
371 MinAlign(ST->getAlignment(), Offset)));
372 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman65fd6562011-11-03 21:49:52 +0000373 SDValue Result =
374 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
375 Stores.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +0000376 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000377 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000378 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000379 assert(ST->getMemoryVT().isInteger() &&
380 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000381 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000382 // Get the half-size VT
Ken Dyckbceddbd2009-12-17 20:09:43 +0000383 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000384 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000385 int IncrementSize = NumBits / 8;
386
387 // Divide the stored value in two parts.
Owen Anderson95771af2011-02-25 21:41:48 +0000388 SDValue ShiftAmount = DAG.getConstant(NumBits,
389 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman475871a2008-07-27 21:46:04 +0000390 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000391 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000392
393 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000394 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000395 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000396 ST->getPointerInfo(), NewStoredVT,
David Greene1e559442010-02-15 17:00:31 +0000397 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000398 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000399 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000400 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000401 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000402 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene1e559442010-02-15 17:00:31 +0000403 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
404 Alignment);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000405
Dan Gohman65fd6562011-11-03 21:49:52 +0000406 SDValue Result =
407 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000408 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000409}
410
411/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman65fd6562011-11-03 21:49:52 +0000412static void
413ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
414 const TargetLowering &TLI,
415 SDValue &ValResult, SDValue &ChainResult) {
Dan Gohman475871a2008-07-27 21:46:04 +0000416 SDValue Chain = LD->getChain();
417 SDValue Ptr = LD->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +0000418 EVT VT = LD->getValueType(0);
419 EVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000420 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000421 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000422 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000423 if (TLI.isTypeLegal(intVT)) {
424 // Expand to a (misaligned) integer load of the same size,
425 // then bitconvert to floating point or vector.
Chris Lattnerecf42c42010-09-21 16:36:31 +0000426 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
427 LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000428 LD->isNonTemporal(),
429 LD->isInvariant(), LD->getAlignment());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000430 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000431 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000432 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000433
Dan Gohman65fd6562011-11-03 21:49:52 +0000434 ValResult = Result;
435 ChainResult = Chain;
436 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000437 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000438
Chris Lattnerecf42c42010-09-21 16:36:31 +0000439 // Copy the value to a (aligned) stack slot using (unaligned) integer
440 // loads and stores, then do a (aligned) load from the stack slot.
441 EVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
442 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
443 unsigned RegBytes = RegVT.getSizeInBits() / 8;
444 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
445
446 // Make sure the stack slot is also aligned for the register type.
447 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
448
449 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
450 SmallVector<SDValue, 8> Stores;
451 SDValue StackPtr = StackBase;
452 unsigned Offset = 0;
453
454 // Do all but one copies using the full register width.
455 for (unsigned i = 1; i < NumRegs; i++) {
456 // Load one integer register's worth from the original location.
457 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
458 LD->getPointerInfo().getWithOffset(Offset),
459 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000460 LD->isInvariant(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000461 MinAlign(LD->getAlignment(), Offset));
462 // Follow the load with a store to the stack slot. Remember the store.
463 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000464 MachinePointerInfo(), false, false, 0));
Chris Lattnerecf42c42010-09-21 16:36:31 +0000465 // Increment the pointers.
466 Offset += RegBytes;
467 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
468 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
469 Increment);
470 }
471
472 // The last copy may be partial. Do an extending load.
473 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
474 8 * (LoadedBytes - Offset));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000475 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000476 LD->getPointerInfo().getWithOffset(Offset),
477 MemVT, LD->isVolatile(),
478 LD->isNonTemporal(),
479 MinAlign(LD->getAlignment(), Offset));
480 // Follow the load with a store to the stack slot. Remember the store.
481 // On big-endian machines this requires a truncating store to ensure
482 // that the bits end up in the right place.
483 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
484 MachinePointerInfo(), MemVT,
485 false, false, 0));
486
487 // The order of the stores doesn't matter - say it with a TokenFactor.
488 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
489 Stores.size());
490
491 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastingsa9011292011-02-16 16:23:55 +0000492 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000493 MachinePointerInfo(), LoadedVT, false, false, 0);
494
495 // Callers expect a MERGE_VALUES node.
Dan Gohman65fd6562011-11-03 21:49:52 +0000496 ValResult = Load;
497 ChainResult = TF;
498 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000499 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000500 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000501 "Unaligned load of unsupported type.");
502
Dale Johannesen8155d642008-02-27 22:36:00 +0000503 // Compute the new VT that is half the size of the old one. This is an
504 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000505 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Andersone50ed302009-08-10 22:56:29 +0000506 EVT NewLoadedVT;
Owen Anderson23b9b192009-08-12 00:36:31 +0000507 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000508 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000509
Chris Lattnere400af82007-11-19 21:38:03 +0000510 unsigned Alignment = LD->getAlignment();
511 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000512 ISD::LoadExtType HiExtType = LD->getExtensionType();
513
514 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
515 if (HiExtType == ISD::NON_EXTLOAD)
516 HiExtType = ISD::ZEXTLOAD;
517
518 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000519 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000520 if (TLI.isLittleEndian()) {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000521 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000522 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000523 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000524 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000525 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000526 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000527 LD->getPointerInfo().getWithOffset(IncrementSize),
528 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000529 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000530 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000531 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000532 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000533 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000534 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000535 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000536 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000537 LD->getPointerInfo().getWithOffset(IncrementSize),
538 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000539 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000540 }
541
542 // aggregate the two parts
Owen Anderson95771af2011-02-25 21:41:48 +0000543 SDValue ShiftAmount = DAG.getConstant(NumBits,
544 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000545 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
546 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000547
Owen Anderson825b72b2009-08-11 20:47:22 +0000548 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000549 Hi.getValue(1));
550
Dan Gohman65fd6562011-11-03 21:49:52 +0000551 ValResult = Result;
552 ChainResult = TF;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000553}
Evan Cheng912095b2007-01-04 21:56:39 +0000554
Nate Begeman68679912008-04-25 18:07:40 +0000555/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
556/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
557/// is necessary to spill the vector being inserted into to memory, perform
558/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000559SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000560PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
561 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000562 SDValue Tmp1 = Vec;
563 SDValue Tmp2 = Val;
564 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000565
Nate Begeman68679912008-04-25 18:07:40 +0000566 // If the target doesn't support this, we have to spill the input vector
567 // to a temporary stack slot, update the element, then reload it. This is
568 // badness. We could also load the value into a vector register (either
569 // with a "move to register" or "extload into register" instruction, then
570 // permute it into place, if the idx is a constant and if the idx is
571 // supported by the target.
Owen Andersone50ed302009-08-10 22:56:29 +0000572 EVT VT = Tmp1.getValueType();
573 EVT EltVT = VT.getVectorElementType();
574 EVT IdxVT = Tmp3.getValueType();
575 EVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000576 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000577
Evan Chengff89dcb2009-10-18 18:16:27 +0000578 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
579
Nate Begeman68679912008-04-25 18:07:40 +0000580 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000581 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +0000582 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +0000583 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000584
585 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000586 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000587 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000588 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +0000589 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000590 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
591 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000592 // Store the scalar value.
Chris Lattner85ca1062010-09-21 07:32:19 +0000593 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene1e559442010-02-15 17:00:31 +0000594 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000595 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000596 return DAG.getLoad(VT, dl, Ch, StackPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000597 MachinePointerInfo::getFixedStack(SPFI), false, false,
598 false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000599}
600
Mon P Wange9f10152008-12-09 05:46:39 +0000601
Eli Friedman3f727d62009-05-27 02:16:40 +0000602SDValue SelectionDAGLegalize::
603ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, DebugLoc dl) {
604 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
605 // SCALAR_TO_VECTOR requires that the type of the value being inserted
606 // match the element type of the vector being created, except for
607 // integers in which case the inserted value can be over width.
Owen Andersone50ed302009-08-10 22:56:29 +0000608 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedman3f727d62009-05-27 02:16:40 +0000609 if (Val.getValueType() == EltVT ||
610 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
611 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
612 Vec.getValueType(), Val);
613
614 unsigned NumElts = Vec.getValueType().getVectorNumElements();
615 // We generate a shuffle of InVec and ScVec, so the shuffle mask
616 // should be 0,1,2,3,4,5... with the appropriate element replaced with
617 // elt 0 of the RHS.
618 SmallVector<int, 8> ShufOps;
619 for (unsigned i = 0; i != NumElts; ++i)
620 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
621
622 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
623 &ShufOps[0]);
624 }
625 }
626 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
627}
628
Eli Friedman7ef3d172009-06-06 07:04:42 +0000629SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
630 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
631 // FIXME: We shouldn't do this for TargetConstantFP's.
632 // FIXME: move this to the DAG Combiner! Note that we can't regress due
633 // to phase ordering between legalized code and the dag combiner. This
634 // probably means that we need to integrate dag combiner and legalizer
635 // together.
636 // We generally can't do this one for long doubles.
637 SDValue Tmp1 = ST->getChain();
638 SDValue Tmp2 = ST->getBasePtr();
639 SDValue Tmp3;
Eli Friedman7ef3d172009-06-06 07:04:42 +0000640 unsigned Alignment = ST->getAlignment();
641 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +0000642 bool isNonTemporal = ST->isNonTemporal();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000643 DebugLoc dl = ST->getDebugLoc();
644 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000645 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohman75b10042011-07-15 22:39:09 +0000646 TLI.isTypeLegal(MVT::i32)) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000647 Tmp3 = DAG.getConstant(CFP->getValueAPF().
648 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson825b72b2009-08-11 20:47:22 +0000649 MVT::i32);
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000650 return DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
651 isVolatile, isNonTemporal, Alignment);
652 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000653
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000654 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000655 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohman75b10042011-07-15 22:39:09 +0000656 if (TLI.isTypeLegal(MVT::i64)) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000657 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +0000658 zextOrTrunc(64), MVT::i64);
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000659 return DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
660 isVolatile, isNonTemporal, Alignment);
661 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000662
Dan Gohman75b10042011-07-15 22:39:09 +0000663 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000664 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
665 // stores. If the target supports neither 32- nor 64-bits, this
666 // xform is certainly not worth it.
667 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad40f8f622010-12-07 08:25:19 +0000668 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000669 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000670 if (TLI.isBigEndian()) std::swap(Lo, Hi);
671
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000672 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getPointerInfo(), isVolatile,
673 isNonTemporal, Alignment);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000674 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
675 DAG.getIntPtrConstant(4));
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000676 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2,
677 ST->getPointerInfo().getWithOffset(4),
David Greene1e559442010-02-15 17:00:31 +0000678 isVolatile, isNonTemporal, MinAlign(Alignment, 4U));
Eli Friedman7ef3d172009-06-06 07:04:42 +0000679
Owen Anderson825b72b2009-08-11 20:47:22 +0000680 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000681 }
682 }
683 }
Evan Cheng8e23e812011-04-01 00:42:02 +0000684 return SDValue(0, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000685}
686
Dan Gohman6a109f92011-07-15 21:42:20 +0000687/// LegalizeOp - Return a legal replacement for the given operation, with
688/// all legal operands.
Dan Gohman65fd6562011-11-03 21:49:52 +0000689void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
690 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
691 return;
Scott Michelfdc40a02009-02-17 22:15:04 +0000692
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000693 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +0000694
Eli Friedman1fde9c52009-05-24 02:46:31 +0000695 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +0000696 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
697 TargetLowering::TypeLegal &&
Eli Friedman1fde9c52009-05-24 02:46:31 +0000698 "Unexpected illegal type!");
699
700 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +0000701 assert((TLI.getTypeAction(*DAG.getContext(),
702 Node->getOperand(i).getValueType()) ==
703 TargetLowering::TypeLegal ||
Eli Friedman1fde9c52009-05-24 02:46:31 +0000704 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
705 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000706
Dan Gohman475871a2008-07-27 21:46:04 +0000707 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +0000708 bool isCustom = false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000709
Eli Friedman8c377c72009-05-27 01:25:56 +0000710 // Figure out the correct action; the way to query this varies by opcode
Bill Wendling6b9a2932011-01-26 22:21:35 +0000711 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman8c377c72009-05-27 01:25:56 +0000712 bool SimpleFinishLegalizing = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000713 switch (Node->getOpcode()) {
Eli Friedman8c377c72009-05-27 01:25:56 +0000714 case ISD::INTRINSIC_W_CHAIN:
715 case ISD::INTRINSIC_WO_CHAIN:
716 case ISD::INTRINSIC_VOID:
717 case ISD::VAARG:
718 case ISD::STACKSAVE:
Owen Anderson825b72b2009-08-11 20:47:22 +0000719 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman8c377c72009-05-27 01:25:56 +0000720 break;
721 case ISD::SINT_TO_FP:
722 case ISD::UINT_TO_FP:
723 case ISD::EXTRACT_VECTOR_ELT:
724 Action = TLI.getOperationAction(Node->getOpcode(),
725 Node->getOperand(0).getValueType());
726 break;
727 case ISD::FP_ROUND_INREG:
728 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +0000729 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +0000730 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
731 break;
732 }
Eli Friedman327236c2011-08-24 20:50:09 +0000733 case ISD::ATOMIC_STORE: {
734 Action = TLI.getOperationAction(Node->getOpcode(),
735 Node->getOperand(2).getValueType());
736 break;
737 }
Eli Friedman3be2e512009-05-28 03:06:16 +0000738 case ISD::SELECT_CC:
739 case ISD::SETCC:
740 case ISD::BR_CC: {
741 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
742 Node->getOpcode() == ISD::SETCC ? 2 : 1;
743 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Owen Andersone50ed302009-08-10 22:56:29 +0000744 EVT OpVT = Node->getOperand(CompareOperand).getValueType();
Eli Friedman3be2e512009-05-28 03:06:16 +0000745 ISD::CondCode CCCode =
746 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
747 Action = TLI.getCondCodeAction(CCCode, OpVT);
748 if (Action == TargetLowering::Legal) {
749 if (Node->getOpcode() == ISD::SELECT_CC)
750 Action = TLI.getOperationAction(Node->getOpcode(),
751 Node->getValueType(0));
752 else
753 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
754 }
755 break;
756 }
Eli Friedman8c377c72009-05-27 01:25:56 +0000757 case ISD::LOAD:
758 case ISD::STORE:
Eli Friedmanad754602009-05-28 03:56:57 +0000759 // FIXME: Model these properly. LOAD and STORE are complicated, and
760 // STORE expects the unlegalized operand in some cases.
761 SimpleFinishLegalizing = false;
762 break;
Eli Friedman8c377c72009-05-27 01:25:56 +0000763 case ISD::CALLSEQ_START:
764 case ISD::CALLSEQ_END:
Eli Friedmanad754602009-05-28 03:56:57 +0000765 // FIXME: This shouldn't be necessary. These nodes have special properties
766 // dealing with the recursive nature of legalization. Removing this
767 // special case should be done as part of making LegalizeDAG non-recursive.
768 SimpleFinishLegalizing = false;
769 break;
Eli Friedman8c377c72009-05-27 01:25:56 +0000770 case ISD::EXTRACT_ELEMENT:
771 case ISD::FLT_ROUNDS_:
772 case ISD::SADDO:
773 case ISD::SSUBO:
774 case ISD::UADDO:
775 case ISD::USUBO:
776 case ISD::SMULO:
777 case ISD::UMULO:
778 case ISD::FPOWI:
779 case ISD::MERGE_VALUES:
780 case ISD::EH_RETURN:
781 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachc66e150b2010-07-06 23:44:52 +0000782 case ISD::EH_SJLJ_SETJMP:
783 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +0000784 case ISD::EH_SJLJ_DISPATCHSETUP:
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000785 // These operations lie about being legal: when they claim to be legal,
786 // they should actually be expanded.
Eli Friedman8c377c72009-05-27 01:25:56 +0000787 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
788 if (Action == TargetLowering::Legal)
789 Action = TargetLowering::Expand;
790 break;
Duncan Sands4a544a72011-09-06 13:37:06 +0000791 case ISD::INIT_TRAMPOLINE:
792 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman8c377c72009-05-27 01:25:56 +0000793 case ISD::FRAMEADDR:
794 case ISD::RETURNADDR:
Eli Friedman4bc8c712009-05-27 12:20:41 +0000795 // These operations lie about being legal: when they claim to be legal,
796 // they should actually be custom-lowered.
797 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
798 if (Action == TargetLowering::Legal)
799 Action = TargetLowering::Custom;
Eli Friedman8c377c72009-05-27 01:25:56 +0000800 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000801 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000802 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman8c377c72009-05-27 01:25:56 +0000803 Action = TargetLowering::Legal;
804 } else {
805 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000806 }
Eli Friedman8c377c72009-05-27 01:25:56 +0000807 break;
808 }
809
810 if (SimpleFinishLegalizing) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000811 SmallVector<SDValue, 8> Ops;
Eli Friedman8c377c72009-05-27 01:25:56 +0000812 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman65fd6562011-11-03 21:49:52 +0000813 Ops.push_back(Node->getOperand(i));
Eli Friedman8c377c72009-05-27 01:25:56 +0000814 switch (Node->getOpcode()) {
815 default: break;
Eli Friedman8c377c72009-05-27 01:25:56 +0000816 case ISD::SHL:
817 case ISD::SRL:
818 case ISD::SRA:
819 case ISD::ROTL:
820 case ISD::ROTR:
821 // Legalizing shifts/rotates requires adjusting the shift amount
822 // to the appropriate width.
Dan Gohman65fd6562011-11-03 21:49:52 +0000823 if (!Ops[1].getValueType().isVector()) {
824 SDValue SAO = DAG.getShiftAmountOperand(Ops[0].getValueType(), Ops[1]);
825 HandleSDNode Handle(SAO);
826 LegalizeOp(SAO.getNode());
827 Ops[1] = Handle.getValue();
828 }
Eli Friedman8c377c72009-05-27 01:25:56 +0000829 break;
Dan Gohmandb8dc2b2009-08-18 23:36:17 +0000830 case ISD::SRL_PARTS:
831 case ISD::SRA_PARTS:
832 case ISD::SHL_PARTS:
833 // Legalizing shifts/rotates requires adjusting the shift amount
834 // to the appropriate width.
Dan Gohman65fd6562011-11-03 21:49:52 +0000835 if (!Ops[2].getValueType().isVector()) {
836 SDValue SAO = DAG.getShiftAmountOperand(Ops[0].getValueType(), Ops[2]);
837 HandleSDNode Handle(SAO);
838 LegalizeOp(SAO.getNode());
839 Ops[2] = Handle.getValue();
840 }
Dan Gohman2c9489d2009-08-18 23:52:48 +0000841 break;
Eli Friedman8c377c72009-05-27 01:25:56 +0000842 }
843
Dan Gohman65fd6562011-11-03 21:49:52 +0000844 SDNode *NewNode = DAG.UpdateNodeOperands(Node, Ops.data(), Ops.size());
845 if (NewNode != Node) {
846 DAG.ReplaceAllUsesWith(Node, NewNode, this);
847 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
848 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman0e3642a2011-11-11 23:58:27 +0000849 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +0000850 Node = NewNode;
851 }
Eli Friedman8c377c72009-05-27 01:25:56 +0000852 switch (Action) {
853 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +0000854 return;
Eli Friedman8c377c72009-05-27 01:25:56 +0000855 case TargetLowering::Custom:
856 // FIXME: The handling for custom lowering with multiple results is
857 // a complete mess.
Dan Gohman65fd6562011-11-03 21:49:52 +0000858 Tmp1 = TLI.LowerOperation(SDValue(Node, 0), DAG);
Eli Friedman8c377c72009-05-27 01:25:56 +0000859 if (Tmp1.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000860 SmallVector<SDValue, 8> ResultVals;
Eli Friedman8c377c72009-05-27 01:25:56 +0000861 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
862 if (e == 1)
863 ResultVals.push_back(Tmp1);
864 else
865 ResultVals.push_back(Tmp1.getValue(i));
866 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000867 if (Tmp1.getNode() != Node || Tmp1.getResNo() != 0) {
868 DAG.ReplaceAllUsesWith(Node, ResultVals.data(), this);
869 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
870 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000871 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +0000872 }
873 return;
Eli Friedman8c377c72009-05-27 01:25:56 +0000874 }
875
876 // FALL THROUGH
877 case TargetLowering::Expand:
Dan Gohman65fd6562011-11-03 21:49:52 +0000878 ExpandNode(Node);
879 return;
Eli Friedman8c377c72009-05-27 01:25:56 +0000880 case TargetLowering::Promote:
Dan Gohman65fd6562011-11-03 21:49:52 +0000881 PromoteNode(Node);
882 return;
Eli Friedman8c377c72009-05-27 01:25:56 +0000883 }
884 }
885
886 switch (Node->getOpcode()) {
887 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000888#ifndef NDEBUG
David Greene993aace2010-01-05 01:24:53 +0000889 dbgs() << "NODE: ";
890 Node->dump( &DAG);
891 dbgs() << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000892#endif
Chris Lattner35a38932010-04-07 23:47:51 +0000893 assert(0 && "Do not know how to legalize this operator!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +0000894
Dan Gohman65fd6562011-11-03 21:49:52 +0000895 case ISD::CALLSEQ_START:
Dan Gohman6f3ddef2011-10-29 00:41:52 +0000896 case ISD::CALLSEQ_END:
Dan Gohman65fd6562011-11-03 21:49:52 +0000897 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +0000898 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +0000899 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +0000900 Tmp1 = LD->getChain(); // Legalize the chain.
901 Tmp2 = LD->getBasePtr(); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000902
Evan Cheng466685d2006-10-09 20:57:25 +0000903 ISD::LoadExtType ExtType = LD->getExtensionType();
904 if (ExtType == ISD::NON_EXTLOAD) {
Owen Andersone50ed302009-08-10 22:56:29 +0000905 EVT VT = Node->getValueType(0);
Dan Gohman65fd6562011-11-03 21:49:52 +0000906 Tmp3 = SDValue(Node, 0);
907 Tmp4 = SDValue(Node, 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000908
Evan Cheng466685d2006-10-09 20:57:25 +0000909 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Chris Lattner35a38932010-04-07 23:47:51 +0000910 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000911 case TargetLowering::Legal:
912 // If this is an unaligned load and the target doesn't support it,
913 // expand it.
Benjamin Kramerbc037cf2009-08-15 20:46:16 +0000914 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000915 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
Evan Chenge96507c2009-08-15 08:38:52 +0000916 unsigned ABIAlignment = TLI.getTargetData()->getABITypeAlignment(Ty);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000917 if (LD->getAlignment() < ABIAlignment){
Dan Gohman65fd6562011-11-03 21:49:52 +0000918 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
919 DAG, TLI, Tmp3, Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000920 }
921 }
922 break;
Evan Cheng466685d2006-10-09 20:57:25 +0000923 case TargetLowering::Custom:
924 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000925 if (Tmp1.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000926 Tmp3 = Tmp1;
927 Tmp4 = Tmp1.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +0000928 }
Evan Cheng466685d2006-10-09 20:57:25 +0000929 break;
930 case TargetLowering::Promote: {
931 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000932 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +0000933 // Change base type to a different vector type.
Owen Andersone50ed302009-08-10 22:56:29 +0000934 EVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +0000935
Chris Lattnerecf42c42010-09-21 16:36:31 +0000936 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +0000937 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000938 LD->isInvariant(), LD->getAlignment());
Dan Gohman65fd6562011-11-03 21:49:52 +0000939 Tmp3 = DAG.getNode(ISD::BITCAST, dl, VT, Tmp1);
940 Tmp4 = Tmp1.getValue(1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000941 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +0000942 }
Evan Cheng466685d2006-10-09 20:57:25 +0000943 }
Eli Friedman0e3642a2011-11-11 23:58:27 +0000944 if (Tmp4.getNode() != Node) {
945 assert(Tmp3.getNode() != Node && "Load must be completely replaced");
946 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp3);
947 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Tmp4);
948 ReplacedNode(Node);
949 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000950 return;
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000951 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000952
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000953 EVT SrcVT = LD->getMemoryVT();
954 unsigned SrcWidth = SrcVT.getSizeInBits();
955 unsigned Alignment = LD->getAlignment();
956 bool isVolatile = LD->isVolatile();
957 bool isNonTemporal = LD->isNonTemporal();
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000958
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000959 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
960 // Some targets pretend to have an i1 loading operation, and actually
961 // load an i8. This trick is correct for ZEXTLOAD because the top 7
962 // bits are guaranteed to be zero; it helps the optimizers understand
963 // that these bits are zero. It is also useful for EXTLOAD, since it
964 // tells the optimizers that those bits are undefined. It would be
965 // nice to have an effective generic way of getting these benefits...
966 // Until such a way is found, don't insist on promoting i1 here.
967 (SrcVT != MVT::i1 ||
968 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
969 // Promote to a byte-sized load if not loading an integral number of
970 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
971 unsigned NewWidth = SrcVT.getStoreSizeInBits();
972 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
973 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000974
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000975 // The extra bits are guaranteed to be zero, since we stored them that
976 // way. A zext load from NVT thus automatically gives zext from SrcVT.
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000977
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000978 ISD::LoadExtType NewExtType =
979 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000980
Dan Gohman65fd6562011-11-03 21:49:52 +0000981 SDValue Result =
982 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
983 Tmp1, Tmp2, LD->getPointerInfo(),
984 NVT, isVolatile, isNonTemporal, Alignment);
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000985
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000986 Ch = Result.getValue(1); // The chain.
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000987
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000988 if (ExtType == ISD::SEXTLOAD)
989 // Having the top bits zero doesn't help when sign extending.
990 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
991 Result.getValueType(),
992 Result, DAG.getValueType(SrcVT));
993 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
994 // All the top bits are guaranteed to be zero - inform the optimizers.
995 Result = DAG.getNode(ISD::AssertZext, dl,
996 Result.getValueType(), Result,
997 DAG.getValueType(SrcVT));
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000998
Dan Gohman65fd6562011-11-03 21:49:52 +0000999 Tmp1 = Result;
1000 Tmp2 = Ch;
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001001 } else if (SrcWidth & (SrcWidth - 1)) {
1002 // If not loading a power-of-2 number of bits, expand as two loads.
1003 assert(!SrcVT.isVector() && "Unsupported extload!");
1004 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
1005 assert(RoundWidth < SrcWidth);
1006 unsigned ExtraWidth = SrcWidth - RoundWidth;
1007 assert(ExtraWidth < RoundWidth);
1008 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
1009 "Load size not an integral number of bytes!");
1010 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
1011 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
1012 SDValue Lo, Hi, Ch;
1013 unsigned IncrementSize;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001014
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001015 if (TLI.isLittleEndian()) {
1016 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1017 // Load the bottom RoundWidth bits.
Stuart Hastingsa9011292011-02-16 16:23:55 +00001018 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001019 Tmp1, Tmp2,
1020 LD->getPointerInfo(), RoundVT, isVolatile,
1021 isNonTemporal, Alignment);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001022
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001023 // Load the remaining ExtraWidth bits.
1024 IncrementSize = RoundWidth / 8;
1025 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
1026 DAG.getIntPtrConstant(IncrementSize));
Stuart Hastingsa9011292011-02-16 16:23:55 +00001027 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001028 LD->getPointerInfo().getWithOffset(IncrementSize),
1029 ExtraVT, isVolatile, isNonTemporal,
1030 MinAlign(Alignment, IncrementSize));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001031
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001032 // Build a factor node to remember that this load is independent of
1033 // the other one.
1034 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1035 Hi.getValue(1));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001036
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001037 // Move the top bits to the right place.
1038 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Owen Anderson95771af2011-02-25 21:41:48 +00001039 DAG.getConstant(RoundWidth,
1040 TLI.getShiftAmountTy(Hi.getValueType())));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001041
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001042 // Join the hi and lo parts.
Dan Gohman65fd6562011-11-03 21:49:52 +00001043 Tmp1 = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001044 } else {
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001045 // Big endian - avoid unaligned loads.
1046 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1047 // Load the top RoundWidth bits.
Stuart Hastingsa9011292011-02-16 16:23:55 +00001048 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001049 LD->getPointerInfo(), RoundVT, isVolatile,
1050 isNonTemporal, Alignment);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001051
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001052 // Load the remaining ExtraWidth bits.
1053 IncrementSize = RoundWidth / 8;
1054 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
1055 DAG.getIntPtrConstant(IncrementSize));
1056 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Stuart Hastingsa9011292011-02-16 16:23:55 +00001057 dl, Node->getValueType(0), Tmp1, Tmp2,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001058 LD->getPointerInfo().getWithOffset(IncrementSize),
1059 ExtraVT, isVolatile, isNonTemporal,
1060 MinAlign(Alignment, IncrementSize));
1061
1062 // Build a factor node to remember that this load is independent of
1063 // the other one.
1064 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1065 Hi.getValue(1));
1066
1067 // Move the top bits to the right place.
1068 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Owen Anderson95771af2011-02-25 21:41:48 +00001069 DAG.getConstant(ExtraWidth,
1070 TLI.getShiftAmountTy(Hi.getValueType())));
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001071
1072 // Join the hi and lo parts.
Dan Gohman65fd6562011-11-03 21:49:52 +00001073 Tmp1 = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Evan Cheng466685d2006-10-09 20:57:25 +00001074 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001075
Dan Gohman65fd6562011-11-03 21:49:52 +00001076 Tmp2 = Ch;
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001077 } else {
1078 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
1079 default: assert(0 && "This action is not supported yet!");
1080 case TargetLowering::Custom:
1081 isCustom = true;
1082 // FALLTHROUGH
1083 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +00001084 Tmp1 = SDValue(Node, 0);
1085 Tmp2 = SDValue(Node, 1);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001086
1087 if (isCustom) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001088 Tmp3 = TLI.LowerOperation(SDValue(Node, 0), DAG);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001089 if (Tmp3.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001090 Tmp1 = Tmp3;
1091 Tmp2 = Tmp3.getValue(1);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001092 }
1093 } else {
1094 // If this is an unaligned load and the target doesn't support it,
1095 // expand it.
1096 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001097 Type *Ty =
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001098 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1099 unsigned ABIAlignment =
1100 TLI.getTargetData()->getABITypeAlignment(Ty);
1101 if (LD->getAlignment() < ABIAlignment){
Dan Gohman65fd6562011-11-03 21:49:52 +00001102 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
1103 DAG, TLI, Tmp1, Tmp2);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001104 }
1105 }
1106 }
1107 break;
1108 case TargetLowering::Expand:
Dan Gohman75b10042011-07-15 22:39:09 +00001109 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) && TLI.isTypeLegal(SrcVT)) {
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001110 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2,
1111 LD->getPointerInfo(),
1112 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001113 LD->isInvariant(), LD->getAlignment());
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001114 unsigned ExtendOp;
1115 switch (ExtType) {
1116 case ISD::EXTLOAD:
1117 ExtendOp = (SrcVT.isFloatingPoint() ?
1118 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1119 break;
1120 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1121 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1122 default: llvm_unreachable("Unexpected extend load type!");
1123 }
Dan Gohman65fd6562011-11-03 21:49:52 +00001124 Tmp1 = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1125 Tmp2 = Load.getValue(1);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001126 break;
1127 }
Nadav Rotemc2492c22011-06-14 08:11:52 +00001128
Nadav Roteme9b58d02011-10-15 07:41:10 +00001129 assert(!SrcVT.isVector() &&
1130 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemc2492c22011-06-14 08:11:52 +00001131
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001132 // FIXME: This does not work for vectors on most targets. Sign- and
1133 // zero-extend operations are currently folded into extending loads,
1134 // whether they are legal or not, and then we end up here without any
1135 // support for legalizing them.
1136 assert(ExtType != ISD::EXTLOAD &&
1137 "EXTLOAD should always be supported!");
1138 // Turn the unsupported load into an EXTLOAD followed by an explicit
1139 // zero/sign extend inreg.
Dan Gohman65fd6562011-11-03 21:49:52 +00001140 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
1141 Tmp1, Tmp2, LD->getPointerInfo(), SrcVT,
1142 LD->isVolatile(), LD->isNonTemporal(),
1143 LD->getAlignment());
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001144 SDValue ValRes;
1145 if (ExtType == ISD::SEXTLOAD)
1146 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1147 Result.getValueType(),
1148 Result, DAG.getValueType(SrcVT));
1149 else
Dan Gohmandd11ea42011-01-13 01:06:51 +00001150 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Dan Gohman65fd6562011-11-03 21:49:52 +00001151 Tmp1 = ValRes;
1152 Tmp2 = Result.getValue(1);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001153 break;
1154 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001155 }
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001156
1157 // Since loads produce two values, make sure to remember that we legalized
1158 // both of them.
Eli Friedman0e3642a2011-11-11 23:58:27 +00001159 if (Tmp2.getNode() != Node) {
1160 assert(Tmp1.getNode() != Node && "Load must be completely replaced");
1161 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp1);
1162 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Tmp2);
1163 ReplacedNode(Node);
1164 }
Dan Gohman65fd6562011-11-03 21:49:52 +00001165 break;
Chris Lattner01ff7212005-04-10 22:54:25 +00001166 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001167 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001168 StoreSDNode *ST = cast<StoreSDNode>(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001169 Tmp1 = ST->getChain();
1170 Tmp2 = ST->getBasePtr();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001171 unsigned Alignment = ST->getAlignment();
1172 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00001173 bool isNonTemporal = ST->isNonTemporal();
Chris Lattner3e928bb2005-01-07 07:47:09 +00001174
Evan Cheng8b2794a2006-10-13 21:14:26 +00001175 if (!ST->isTruncatingStore()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +00001176 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
Eli Friedman0e3642a2011-11-11 23:58:27 +00001177 ReplaceNode(ST, OptStore);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001178 break;
Chris Lattnerd93d46e2006-12-12 04:18:56 +00001179 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001180
Eli Friedman957bffa2009-05-24 08:42:01 +00001181 {
Dan Gohman65fd6562011-11-03 21:49:52 +00001182 Tmp3 = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00001183 EVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001184 switch (TLI.getOperationAction(ISD::STORE, VT)) {
Chris Lattner35a38932010-04-07 23:47:51 +00001185 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001186 case TargetLowering::Legal:
1187 // If this is an unaligned store and the target doesn't support it,
1188 // expand it.
Benjamin Kramerbc037cf2009-08-15 20:46:16 +00001189 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001190 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Jim Grosbach6e992612010-07-02 17:41:59 +00001191 unsigned ABIAlignment= TLI.getTargetData()->getABITypeAlignment(Ty);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001192 if (ST->getAlignment() < ABIAlignment)
Dan Gohman65fd6562011-11-03 21:49:52 +00001193 ExpandUnalignedStore(cast<StoreSDNode>(Node),
1194 DAG, TLI, this);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001195 }
1196 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00001197 case TargetLowering::Custom:
Dan Gohman65fd6562011-11-03 21:49:52 +00001198 Tmp1 = TLI.LowerOperation(SDValue(Node, 0), DAG);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001199 if (Tmp1.getNode())
1200 ReplaceNode(SDValue(Node, 0), Tmp1);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001201 break;
Dan Gohman65fd6562011-11-03 21:49:52 +00001202 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001203 assert(VT.isVector() && "Unknown legal promote case!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001204 Tmp3 = DAG.getNode(ISD::BITCAST, dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001205 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dan Gohman65fd6562011-11-03 21:49:52 +00001206 SDValue Result =
1207 DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
1208 ST->getPointerInfo(), isVolatile,
1209 isNonTemporal, Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001210 ReplaceNode(SDValue(Node, 0), Result);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001211 break;
1212 }
Dan Gohman65fd6562011-11-03 21:49:52 +00001213 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00001214 break;
1215 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00001216 } else {
Dan Gohman65fd6562011-11-03 21:49:52 +00001217 Tmp3 = ST->getValue();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001218
Owen Andersone50ed302009-08-10 22:56:29 +00001219 EVT StVT = ST->getMemoryVT();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001220 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00001221
Duncan Sands83ec4b62008-06-06 12:08:01 +00001222 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00001223 // Promote to a byte-sized store with upper bits zero if not
1224 // storing an integral number of bytes. For example, promote
1225 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Evan Chengadf97992010-04-15 01:25:27 +00001226 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
1227 StVT.getStoreSizeInBits());
Nadav Rotema1c415c2011-09-27 10:48:29 +00001228 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
Dan Gohman65fd6562011-11-03 21:49:52 +00001229 SDValue Result =
1230 DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
1231 NVT, isVolatile, isNonTemporal, Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001232 ReplaceNode(SDValue(Node, 0), Result);
Duncan Sands7e857202008-01-22 07:17:34 +00001233 } else if (StWidth & (StWidth - 1)) {
1234 // If not storing a power-of-2 number of bits, expand as two stores.
Ken Dyckbceddbd2009-12-17 20:09:43 +00001235 assert(!StVT.isVector() && "Unsupported truncstore!");
Duncan Sands7e857202008-01-22 07:17:34 +00001236 unsigned RoundWidth = 1 << Log2_32(StWidth);
1237 assert(RoundWidth < StWidth);
1238 unsigned ExtraWidth = StWidth - RoundWidth;
1239 assert(ExtraWidth < RoundWidth);
1240 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
1241 "Store size not an integral number of bytes!");
Owen Anderson23b9b192009-08-12 00:36:31 +00001242 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
1243 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00001244 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00001245 unsigned IncrementSize;
1246
1247 if (TLI.isLittleEndian()) {
1248 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
1249 // Store the bottom RoundWidth bits.
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001250 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
1251 RoundVT,
David Greene1e559442010-02-15 17:00:31 +00001252 isVolatile, isNonTemporal, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00001253
1254 // Store the remaining ExtraWidth bits.
1255 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00001256 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00001257 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00001258 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Owen Anderson95771af2011-02-25 21:41:48 +00001259 DAG.getConstant(RoundWidth,
1260 TLI.getShiftAmountTy(Tmp3.getValueType())));
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001261 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2,
1262 ST->getPointerInfo().getWithOffset(IncrementSize),
1263 ExtraVT, isVolatile, isNonTemporal,
Duncan Sands7e857202008-01-22 07:17:34 +00001264 MinAlign(Alignment, IncrementSize));
1265 } else {
1266 // Big endian - avoid unaligned stores.
1267 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
1268 // Store the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00001269 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Owen Anderson95771af2011-02-25 21:41:48 +00001270 DAG.getConstant(ExtraWidth,
1271 TLI.getShiftAmountTy(Tmp3.getValueType())));
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001272 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getPointerInfo(),
1273 RoundVT, isVolatile, isNonTemporal, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00001274
1275 // Store the remaining ExtraWidth bits.
1276 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00001277 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00001278 DAG.getIntPtrConstant(IncrementSize));
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001279 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2,
1280 ST->getPointerInfo().getWithOffset(IncrementSize),
1281 ExtraVT, isVolatile, isNonTemporal,
Duncan Sands7e857202008-01-22 07:17:34 +00001282 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001283 }
Duncan Sands7e857202008-01-22 07:17:34 +00001284
1285 // The order of the stores doesn't matter.
Dan Gohman65fd6562011-11-03 21:49:52 +00001286 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001287 ReplaceNode(SDValue(Node, 0), Result);
Duncan Sands7e857202008-01-22 07:17:34 +00001288 } else {
Duncan Sands7e857202008-01-22 07:17:34 +00001289 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
Chris Lattner35a38932010-04-07 23:47:51 +00001290 default: assert(0 && "This action is not supported yet!");
Duncan Sands7e857202008-01-22 07:17:34 +00001291 case TargetLowering::Legal:
1292 // If this is an unaligned store and the target doesn't support it,
1293 // expand it.
Benjamin Kramerbc037cf2009-08-15 20:46:16 +00001294 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001295 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Jim Grosbach6e992612010-07-02 17:41:59 +00001296 unsigned ABIAlignment= TLI.getTargetData()->getABITypeAlignment(Ty);
Duncan Sands7e857202008-01-22 07:17:34 +00001297 if (ST->getAlignment() < ABIAlignment)
Dan Gohman65fd6562011-11-03 21:49:52 +00001298 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
Duncan Sands7e857202008-01-22 07:17:34 +00001299 }
1300 break;
1301 case TargetLowering::Custom:
Eli Friedman0e3642a2011-11-11 23:58:27 +00001302 ReplaceNode(SDValue(Node, 0),
1303 TLI.LowerOperation(SDValue(Node, 0), DAG));
Duncan Sands7e857202008-01-22 07:17:34 +00001304 break;
Dan Gohmane63e5ab2011-07-15 22:51:43 +00001305 case TargetLowering::Expand:
Nadav Roteme9b58d02011-10-15 07:41:10 +00001306 assert(!StVT.isVector() &&
1307 "Vector Stores are handled in LegalizeVectorOps");
Nadav Rotemc2492c22011-06-14 08:11:52 +00001308
Duncan Sands7e857202008-01-22 07:17:34 +00001309 // TRUNCSTORE:i16 i32 -> STORE i16
Dan Gohman75b10042011-07-15 22:39:09 +00001310 assert(TLI.isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenca57b842009-02-02 23:46:53 +00001311 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
Dan Gohman65fd6562011-11-03 21:49:52 +00001312 SDValue Result =
1313 DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
1314 isVolatile, isNonTemporal, Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001315 ReplaceNode(SDValue(Node, 0), Result);
Duncan Sands7e857202008-01-22 07:17:34 +00001316 break;
1317 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001318 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001319 }
1320 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001321 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001322 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001323}
1324
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001325SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1326 SDValue Vec = Op.getOperand(0);
1327 SDValue Idx = Op.getOperand(1);
1328 DebugLoc dl = Op.getDebugLoc();
1329 // Store the value to a temporary stack slot, then LOAD the returned part.
1330 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Chris Lattner6229d0a2010-09-21 18:41:36 +00001331 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1332 MachinePointerInfo(), false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001333
1334 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001335 unsigned EltSize =
1336 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001337 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1338 DAG.getConstant(EltSize, Idx.getValueType()));
1339
1340 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1341 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1342 else
1343 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1344
1345 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1346
Eli Friedmanc680ac92009-07-09 22:01:03 +00001347 if (Op.getValueType().isVector())
Chris Lattnerecf42c42010-09-21 16:36:31 +00001348 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001349 false, false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00001350 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001351 MachinePointerInfo(),
1352 Vec.getValueType().getVectorElementType(),
1353 false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001354}
1355
David Greenecfe33c42011-01-26 19:13:22 +00001356SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1357 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1358
1359 SDValue Vec = Op.getOperand(0);
1360 SDValue Part = Op.getOperand(1);
1361 SDValue Idx = Op.getOperand(2);
1362 DebugLoc dl = Op.getDebugLoc();
1363
1364 // Store the value to a temporary stack slot, then LOAD the returned part.
1365
1366 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1367 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1368 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1369
1370 // First store the whole vector.
1371 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1372 false, false, 0);
1373
1374 // Then store the inserted part.
1375
1376 // Add the offset to the index.
1377 unsigned EltSize =
1378 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1379
1380 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1381 DAG.getConstant(EltSize, Idx.getValueType()));
1382
1383 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1384 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1385 else
1386 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1387
1388 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1389 StackPtr);
1390
1391 // Store the subvector.
1392 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1393 MachinePointerInfo(), false, false, 0);
1394
1395 // Finally, load the updated vector.
1396 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001397 false, false, false, 0);
David Greenecfe33c42011-01-26 19:13:22 +00001398}
1399
Eli Friedman7ef3d172009-06-06 07:04:42 +00001400SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1401 // We can't handle this case efficiently. Allocate a sufficiently
1402 // aligned object on the stack, store each element into it, then load
1403 // the result as a vector.
1404 // Create the stack frame object.
Owen Andersone50ed302009-08-10 22:56:29 +00001405 EVT VT = Node->getValueType(0);
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001406 EVT EltVT = VT.getVectorElementType();
Eli Friedman7ef3d172009-06-06 07:04:42 +00001407 DebugLoc dl = Node->getDebugLoc();
1408 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Chengff89dcb2009-10-18 18:16:27 +00001409 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattnerecf42c42010-09-21 16:36:31 +00001410 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001411
1412 // Emit a store of each element to the stack slot.
1413 SmallVector<SDValue, 8> Stores;
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001414 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedman7ef3d172009-06-06 07:04:42 +00001415 // Store (in the right endianness) the elements to memory.
1416 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1417 // Ignore undef elements.
1418 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1419
1420 unsigned Offset = TypeByteSize*i;
1421
1422 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1423 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1424
Dan Gohman9949dd62010-02-25 20:30:49 +00001425 // If the destination vector element type is narrower than the source
1426 // element type, only store the bits necessary.
1427 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001428 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001429 Node->getOperand(i), Idx,
1430 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001431 EltVT, false, false, 0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00001432 } else
Jim Grosbach6e992612010-07-02 17:41:59 +00001433 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001434 Node->getOperand(i), Idx,
1435 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001436 false, false, 0));
Eli Friedman7ef3d172009-06-06 07:04:42 +00001437 }
1438
1439 SDValue StoreChain;
1440 if (!Stores.empty()) // Not all undef elements?
Owen Anderson825b72b2009-08-11 20:47:22 +00001441 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedman7ef3d172009-06-06 07:04:42 +00001442 &Stores[0], Stores.size());
1443 else
1444 StoreChain = DAG.getEntryNode();
1445
1446 // Result is a load from the stack slot.
Pete Cooperd752e0f2011-11-08 18:42:53 +00001447 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
1448 false, false, false, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001449}
1450
Eli Friedman4bc8c712009-05-27 12:20:41 +00001451SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
1452 DebugLoc dl = Node->getDebugLoc();
1453 SDValue Tmp1 = Node->getOperand(0);
1454 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands5d54b412010-03-12 11:45:06 +00001455
1456 // Get the sign bit of the RHS. First obtain a value that has the same
1457 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001458 SDValue SignBit;
Duncan Sands5d54b412010-03-12 11:45:06 +00001459 EVT FloatVT = Tmp2.getValueType();
1460 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohman75b10042011-07-15 22:39:09 +00001461 if (TLI.isTypeLegal(IVT)) {
Duncan Sands5d54b412010-03-12 11:45:06 +00001462 // Convert to an integer with the same sign bit.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001463 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001464 } else {
Duncan Sands5d54b412010-03-12 11:45:06 +00001465 // Store the float to memory, then load the sign part out as an integer.
1466 MVT LoadTy = TLI.getPointerTy();
1467 // First create a temporary that is aligned for both the load and store.
1468 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1469 // Then store the float to it.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001470 SDValue Ch =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001471 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00001472 false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001473 if (TLI.isBigEndian()) {
1474 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1475 // Load out a legal integer with the same sign bit as the float.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001476 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001477 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001478 } else { // Little endian
1479 SDValue LoadPtr = StackPtr;
1480 // The float may be wider than the integer we are going to load. Advance
1481 // the pointer so that the loaded integer will contain the sign bit.
1482 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1483 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1484 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(),
1485 LoadPtr, DAG.getIntPtrConstant(ByteOffset));
1486 // Load a legal integer containing the sign bit.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001487 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001488 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001489 // Move the sign bit to the top bit of the loaded integer.
1490 unsigned BitShift = LoadTy.getSizeInBits() -
1491 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1492 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1493 if (BitShift)
1494 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Anderson95771af2011-02-25 21:41:48 +00001495 DAG.getConstant(BitShift,
1496 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands5d54b412010-03-12 11:45:06 +00001497 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00001498 }
Duncan Sands5d54b412010-03-12 11:45:06 +00001499 // Now get the sign bit proper, by seeing whether the value is negative.
1500 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(SignBit.getValueType()),
1501 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1502 ISD::SETLT);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001503 // Get the absolute value of the result.
1504 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1505 // Select between the nabs and abs value based on the sign bit of
1506 // the input.
1507 return DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
1508 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1509 AbsVal);
1510}
1511
Eli Friedman4bc8c712009-05-27 12:20:41 +00001512void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1513 SmallVectorImpl<SDValue> &Results) {
1514 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1515 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1516 " not tell us which reg is the stack pointer!");
1517 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001518 EVT VT = Node->getValueType(0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001519 SDValue Tmp1 = SDValue(Node, 0);
1520 SDValue Tmp2 = SDValue(Node, 1);
1521 SDValue Tmp3 = Node->getOperand(2);
1522 SDValue Chain = Tmp1.getOperand(0);
1523
1524 // Chain the dynamic stack allocation so that it doesn't modify the stack
1525 // pointer when other instructions are using the stack.
1526 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
1527
1528 SDValue Size = Tmp2.getOperand(1);
1529 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1530 Chain = SP.getValue(1);
1531 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001532 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman4bc8c712009-05-27 12:20:41 +00001533 if (Align > StackAlign)
1534 SP = DAG.getNode(ISD::AND, dl, VT, SP,
1535 DAG.getConstant(-(uint64_t)Align, VT));
1536 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
1537 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1538
1539 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1540 DAG.getIntPtrConstant(0, true), SDValue());
1541
1542 Results.push_back(Tmp1);
1543 Results.push_back(Tmp2);
1544}
1545
Evan Cheng7f042682008-10-15 02:05:31 +00001546/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Dan Gohmanf77fc922009-10-17 01:37:38 +00001547/// condition code CC on the current target. This routine expands SETCC with
Evan Cheng7f042682008-10-15 02:05:31 +00001548/// illegal condition code into AND / OR of multiple SETCC values.
Owen Andersone50ed302009-08-10 22:56:29 +00001549void SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng7f042682008-10-15 02:05:31 +00001550 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00001551 SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +00001552 DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00001553 EVT OpVT = LHS.getValueType();
Evan Cheng7f042682008-10-15 02:05:31 +00001554 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
1555 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Chris Lattner35a38932010-04-07 23:47:51 +00001556 default: assert(0 && "Unknown condition code action!");
Evan Cheng7f042682008-10-15 02:05:31 +00001557 case TargetLowering::Legal:
1558 // Nothing to do.
1559 break;
1560 case TargetLowering::Expand: {
1561 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1562 unsigned Opc = 0;
1563 switch (CCCode) {
Chris Lattner35a38932010-04-07 23:47:51 +00001564 default: assert(0 && "Don't know how to expand this condition!");
Dan Gohmane7d238e2008-10-21 03:12:54 +00001565 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
1566 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
1567 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
1568 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
1569 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
1570 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
1571 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1572 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1573 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1574 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1575 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1576 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00001577 // FIXME: Implement more expansions.
1578 }
1579
Dale Johannesenbb5da912009-02-02 20:41:04 +00001580 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1581 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1582 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00001583 RHS = SDValue();
1584 CC = SDValue();
1585 break;
1586 }
1587 }
1588}
1589
Chris Lattner1401d152008-01-16 07:45:30 +00001590/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1591/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1592/// a load from the stack slot to DestVT, extending it if needed.
1593/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001594SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Andersone50ed302009-08-10 22:56:29 +00001595 EVT SlotVT,
1596 EVT DestVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00001597 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00001598 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001599 unsigned SrcAlign =
1600 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson23b9b192009-08-12 00:36:31 +00001601 getTypeForEVT(*DAG.getContext()));
Dan Gohman475871a2008-07-27 21:46:04 +00001602 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001603
Evan Chengff89dcb2009-10-18 18:16:27 +00001604 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1605 int SPFI = StackPtrFI->getIndex();
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001606 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Chengff89dcb2009-10-18 18:16:27 +00001607
Duncan Sands83ec4b62008-06-06 12:08:01 +00001608 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1609 unsigned SlotSize = SlotVT.getSizeInBits();
1610 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001611 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Evan Chengadf97992010-04-15 01:25:27 +00001612 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(DestType);
Scott Michelfdc40a02009-02-17 22:15:04 +00001613
Chris Lattner1401d152008-01-16 07:45:30 +00001614 // Emit a store to the stack slot. Use a truncstore if the input value is
1615 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00001616 SDValue Store;
Evan Chengff89dcb2009-10-18 18:16:27 +00001617
Chris Lattner1401d152008-01-16 07:45:30 +00001618 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00001619 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001620 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001621 else {
1622 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00001623 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001624 PtrInfo, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001625 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001626
Chris Lattner35481892005-12-23 00:16:34 +00001627 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00001628 if (SlotSize == DestSize)
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001629 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001630 false, false, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001631
Chris Lattner1401d152008-01-16 07:45:30 +00001632 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastingsa9011292011-02-16 16:23:55 +00001633 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001634 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00001635}
1636
Dan Gohman475871a2008-07-27 21:46:04 +00001637SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00001638 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00001639 // Create a vector sized/aligned stack slot, store the value to element #0,
1640 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00001641 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00001642
Evan Chengff89dcb2009-10-18 18:16:27 +00001643 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1644 int SPFI = StackPtrFI->getIndex();
1645
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001646 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1647 StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001648 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +00001649 Node->getValueType(0).getVectorElementType(),
1650 false, false, 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00001651 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001652 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001653 false, false, false, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001654}
1655
1656
Chris Lattnerce872152006-03-19 06:31:19 +00001657/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00001658/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00001659SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001660 unsigned NumElems = Node->getNumOperands();
Eli Friedman7a5e5552009-06-07 06:52:44 +00001661 SDValue Value1, Value2;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001662 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001663 EVT VT = Node->getValueType(0);
1664 EVT OpVT = Node->getOperand(0).getValueType();
1665 EVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001666
1667 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00001668 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00001669 bool isOnlyLowElement = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001670 bool MoreThanTwoValues = false;
Chris Lattner2eb86532006-03-24 07:29:17 +00001671 bool isConstant = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001672 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001673 SDValue V = Node->getOperand(i);
Eli Friedman7a5e5552009-06-07 06:52:44 +00001674 if (V.getOpcode() == ISD::UNDEF)
1675 continue;
1676 if (i > 0)
Chris Lattnerce872152006-03-19 06:31:19 +00001677 isOnlyLowElement = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001678 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner2eb86532006-03-24 07:29:17 +00001679 isConstant = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001680
1681 if (!Value1.getNode()) {
1682 Value1 = V;
1683 } else if (!Value2.getNode()) {
1684 if (V != Value1)
1685 Value2 = V;
1686 } else if (V != Value1 && V != Value2) {
1687 MoreThanTwoValues = true;
1688 }
Chris Lattnerce872152006-03-19 06:31:19 +00001689 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001690
Eli Friedman7a5e5552009-06-07 06:52:44 +00001691 if (!Value1.getNode())
1692 return DAG.getUNDEF(VT);
1693
1694 if (isOnlyLowElement)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001695 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001696
Chris Lattner2eb86532006-03-24 07:29:17 +00001697 // If all elements are constants, create a load from the constant pool.
1698 if (isConstant) {
Chris Lattner2eb86532006-03-24 07:29:17 +00001699 std::vector<Constant*> CV;
1700 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001701 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00001702 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00001703 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001704 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001705 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen9a645cd2009-11-10 23:16:41 +00001706 if (OpVT==EltVT)
1707 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1708 else {
1709 // If OpVT and EltVT don't match, EltVT is not legal and the
1710 // element values have been promoted/truncated earlier. Undo this;
1711 // we don't want a v16i8 to become a v16i32 for example.
1712 const ConstantInt *CI = V->getConstantIntValue();
1713 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1714 CI->getZExtValue()));
1715 }
Chris Lattner2eb86532006-03-24 07:29:17 +00001716 } else {
1717 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001718 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001719 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner2eb86532006-03-24 07:29:17 +00001720 }
1721 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00001722 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00001723 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00001724 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00001725 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00001726 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001727 false, false, false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00001728 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001729
Eli Friedman7a5e5552009-06-07 06:52:44 +00001730 if (!MoreThanTwoValues) {
1731 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1732 for (unsigned i = 0; i < NumElems; ++i) {
1733 SDValue V = Node->getOperand(i);
1734 if (V.getOpcode() == ISD::UNDEF)
1735 continue;
1736 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1737 }
1738 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00001739 // Get the splatted value into the low element of a vector register.
Eli Friedman7a5e5552009-06-07 06:52:44 +00001740 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1741 SDValue Vec2;
1742 if (Value2.getNode())
1743 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1744 else
1745 Vec2 = DAG.getUNDEF(VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001746
Chris Lattner87100e02006-03-20 01:52:29 +00001747 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Eli Friedman7a5e5552009-06-07 06:52:44 +00001748 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
Evan Cheng033e6812006-03-24 01:17:21 +00001749 }
1750 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001751
Eli Friedman7ef3d172009-06-06 07:04:42 +00001752 // Otherwise, we can't handle this case efficiently.
1753 return ExpandVectorBuildThroughStack(Node);
Chris Lattnerce872152006-03-19 06:31:19 +00001754}
1755
Chris Lattner77e77a62005-01-21 06:05:23 +00001756// ExpandLibCall - Expand a node into a call to a libcall. If the result value
1757// does not fit into a register, return the lo part and set the hi part to the
1758// by-reg argument. If it does fit into a single register, return the result
1759// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00001760SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedman47b41f72009-05-27 02:21:29 +00001761 bool isSigned) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001762 // The input chain to this libcall is the entry node of the function.
Chris Lattner6831a812006-02-13 09:18:02 +00001763 // Legalizing the call will automatically add the previous call to the
1764 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00001765 SDValue InChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00001766
Chris Lattner77e77a62005-01-21 06:05:23 +00001767 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00001768 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00001769 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00001770 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001771 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelfdc40a02009-02-17 22:15:04 +00001772 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00001773 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00001774 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00001775 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00001776 }
Bill Wendling056292f2008-09-16 21:48:12 +00001777 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00001778 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001779
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001780 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Cheng3d2125c2010-11-30 23:55:39 +00001781
1782 // isTailCall may be true since the callee does not reference caller stack
1783 // frame. Check if it's in the right position.
1784 bool isTailCall = isInTailCallPosition(DAG, Node, TLI);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001785 std::pair<SDValue, SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00001786 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001787 0, TLI.getLibcallCallingConv(LC), isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001788 /*isReturnValueUsed=*/true,
Bill Wendling46ada192010-03-02 01:55:18 +00001789 Callee, Args, DAG, Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00001790
Evan Cheng3d2125c2010-11-30 23:55:39 +00001791 if (!CallInfo.second.getNode())
1792 // It's a tailcall, return the chain (which is the DAG root).
1793 return DAG.getRoot();
1794
Eli Friedman74807f22009-05-26 08:55:52 +00001795 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00001796}
1797
Dan Gohmanf316eb72011-05-16 22:09:53 +00001798/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001799/// and returning a result of type RetVT.
1800SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1801 const SDValue *Ops, unsigned NumOps,
1802 bool isSigned, DebugLoc dl) {
1803 TargetLowering::ArgListTy Args;
1804 Args.reserve(NumOps);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001805
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001806 TargetLowering::ArgListEntry Entry;
1807 for (unsigned i = 0; i != NumOps; ++i) {
1808 Entry.Node = Ops[i];
1809 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1810 Entry.isSExt = isSigned;
1811 Entry.isZExt = !isSigned;
1812 Args.push_back(Entry);
1813 }
1814 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1815 TLI.getPointerTy());
Dan Gohmanf316eb72011-05-16 22:09:53 +00001816
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001817 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001818 std::pair<SDValue,SDValue> CallInfo =
1819 TLI.LowerCallTo(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1820 false, 0, TLI.getLibcallCallingConv(LC), false,
1821 /*isReturnValueUsed=*/true,
1822 Callee, Args, DAG, dl);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001823
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001824 return CallInfo.first;
1825}
1826
Jim Grosbache03262f2010-06-18 21:43:38 +00001827// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1828// ExpandLibCall except that the first operand is the in-chain.
1829std::pair<SDValue, SDValue>
1830SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1831 SDNode *Node,
1832 bool isSigned) {
Jim Grosbache03262f2010-06-18 21:43:38 +00001833 SDValue InChain = Node->getOperand(0);
1834
1835 TargetLowering::ArgListTy Args;
1836 TargetLowering::ArgListEntry Entry;
1837 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1838 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001839 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001840 Entry.Node = Node->getOperand(i);
1841 Entry.Ty = ArgTy;
1842 Entry.isSExt = isSigned;
1843 Entry.isZExt = !isSigned;
1844 Args.push_back(Entry);
1845 }
1846 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1847 TLI.getPointerTy());
1848
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001849 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001850 std::pair<SDValue, SDValue> CallInfo =
1851 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001852 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Jim Grosbache03262f2010-06-18 21:43:38 +00001853 /*isReturnValueUsed=*/true,
1854 Callee, Args, DAG, Node->getDebugLoc());
1855
Jim Grosbache03262f2010-06-18 21:43:38 +00001856 return CallInfo;
1857}
1858
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001859SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
1860 RTLIB::Libcall Call_F32,
1861 RTLIB::Libcall Call_F64,
1862 RTLIB::Libcall Call_F80,
1863 RTLIB::Libcall Call_PPCF128) {
1864 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001865 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Chris Lattner35a38932010-04-07 23:47:51 +00001866 default: assert(0 && "Unexpected request for libcall!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001867 case MVT::f32: LC = Call_F32; break;
1868 case MVT::f64: LC = Call_F64; break;
1869 case MVT::f80: LC = Call_F80; break;
1870 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001871 }
1872 return ExpandLibCall(LC, Node, false);
1873}
1874
1875SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001876 RTLIB::Libcall Call_I8,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001877 RTLIB::Libcall Call_I16,
1878 RTLIB::Libcall Call_I32,
1879 RTLIB::Libcall Call_I64,
1880 RTLIB::Libcall Call_I128) {
1881 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001882 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Chris Lattner35a38932010-04-07 23:47:51 +00001883 default: assert(0 && "Unexpected request for libcall!");
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001884 case MVT::i8: LC = Call_I8; break;
1885 case MVT::i16: LC = Call_I16; break;
1886 case MVT::i32: LC = Call_I32; break;
1887 case MVT::i64: LC = Call_I64; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001888 case MVT::i128: LC = Call_I128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001889 }
1890 return ExpandLibCall(LC, Node, isSigned);
1891}
1892
Evan Cheng65279cb2011-04-16 03:08:26 +00001893/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
1894static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
1895 const TargetLowering &TLI) {
Evan Cheng8e23e812011-04-01 00:42:02 +00001896 RTLIB::Libcall LC;
1897 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
1898 default: assert(0 && "Unexpected request for libcall!");
1899 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
1900 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
1901 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
1902 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
1903 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
1904 }
1905
Evan Cheng65279cb2011-04-16 03:08:26 +00001906 return TLI.getLibcallName(LC) != 0;
1907}
Evan Cheng8e23e812011-04-01 00:42:02 +00001908
Evan Cheng65279cb2011-04-16 03:08:26 +00001909/// UseDivRem - Only issue divrem libcall if both quotient and remainder are
1910/// needed.
1911static bool UseDivRem(SDNode *Node, bool isSigned, bool isDIV) {
Evan Cheng8e23e812011-04-01 00:42:02 +00001912 unsigned OtherOpcode = 0;
Evan Cheng65279cb2011-04-16 03:08:26 +00001913 if (isSigned)
Evan Cheng8e23e812011-04-01 00:42:02 +00001914 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00001915 else
Evan Cheng8e23e812011-04-01 00:42:02 +00001916 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00001917
Evan Cheng8e23e812011-04-01 00:42:02 +00001918 SDValue Op0 = Node->getOperand(0);
1919 SDValue Op1 = Node->getOperand(1);
1920 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
1921 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
1922 SDNode *User = *UI;
1923 if (User == Node)
1924 continue;
1925 if (User->getOpcode() == OtherOpcode &&
1926 User->getOperand(0) == Op0 &&
Evan Cheng65279cb2011-04-16 03:08:26 +00001927 User->getOperand(1) == Op1)
1928 return true;
Evan Cheng8e23e812011-04-01 00:42:02 +00001929 }
Evan Cheng65279cb2011-04-16 03:08:26 +00001930 return false;
1931}
Evan Cheng8e23e812011-04-01 00:42:02 +00001932
Evan Cheng65279cb2011-04-16 03:08:26 +00001933/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
1934/// pairs.
1935void
1936SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
1937 SmallVectorImpl<SDValue> &Results) {
1938 unsigned Opcode = Node->getOpcode();
1939 bool isSigned = Opcode == ISD::SDIVREM;
1940
1941 RTLIB::Libcall LC;
1942 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
1943 default: assert(0 && "Unexpected request for libcall!");
1944 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
1945 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
1946 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
1947 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
1948 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Cheng8e23e812011-04-01 00:42:02 +00001949 }
1950
1951 // The input chain to this libcall is the entry node of the function.
1952 // Legalizing the call will automatically add the previous call to the
1953 // dependence.
1954 SDValue InChain = DAG.getEntryNode();
1955
1956 EVT RetVT = Node->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001957 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00001958
1959 TargetLowering::ArgListTy Args;
1960 TargetLowering::ArgListEntry Entry;
1961 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1962 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001963 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00001964 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
1965 Entry.isSExt = isSigned;
1966 Entry.isZExt = !isSigned;
1967 Args.push_back(Entry);
1968 }
1969
1970 // Also pass the return address of the remainder.
1971 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
1972 Entry.Node = FIPtr;
1973 Entry.Ty = RetTy->getPointerTo();
1974 Entry.isSExt = isSigned;
1975 Entry.isZExt = !isSigned;
1976 Args.push_back(Entry);
1977
1978 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1979 TLI.getPointerTy());
1980
Evan Cheng8e23e812011-04-01 00:42:02 +00001981 DebugLoc dl = Node->getDebugLoc();
1982 std::pair<SDValue, SDValue> CallInfo =
1983 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
1984 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
1985 /*isReturnValueUsed=*/true, Callee, Args, DAG, dl);
1986
Evan Cheng8e23e812011-04-01 00:42:02 +00001987 // Remainder is loaded back from the stack frame.
Dan Gohman65fd6562011-11-03 21:49:52 +00001988 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001989 MachinePointerInfo(), false, false, false, 0);
Evan Cheng65279cb2011-04-16 03:08:26 +00001990 Results.push_back(CallInfo.first);
1991 Results.push_back(Rem);
Evan Cheng8e23e812011-04-01 00:42:02 +00001992}
1993
Chris Lattner22cde6a2006-01-28 08:25:58 +00001994/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
1995/// INT_TO_FP operation of the specified operand when the target requests that
1996/// we expand it. At this point, we know that the result and operand types are
1997/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00001998SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
1999 SDValue Op0,
Owen Andersone50ed302009-08-10 22:56:29 +00002000 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002001 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002002 if (Op0.getValueType() == MVT::i32) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002003 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00002004
Chris Lattner23594d42008-01-16 07:03:22 +00002005 // Get the stack frame index of a 8 byte buffer.
Owen Anderson825b72b2009-08-11 20:47:22 +00002006 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00002007
Chris Lattner22cde6a2006-01-28 08:25:58 +00002008 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00002009 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00002010 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00002011 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00002012 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002013 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00002014 if (TLI.isLittleEndian())
2015 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00002016
Chris Lattner22cde6a2006-01-28 08:25:58 +00002017 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00002018 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002019 if (isSigned) {
2020 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson825b72b2009-08-11 20:47:22 +00002021 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2022 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002023 } else {
2024 Op0Mapped = Op0;
2025 }
2026 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00002027 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00002028 Op0Mapped, Lo, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002029 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002030 // initial hi portion of constructed double
Owen Anderson825b72b2009-08-11 20:47:22 +00002031 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002032 // store the hi of the constructed double - biased exponent
Chris Lattner6229d0a2010-09-21 18:41:36 +00002033 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2034 MachinePointerInfo(),
2035 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002036 // load the constructed double
Chris Lattnerecf42c42010-09-21 16:36:31 +00002037 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002038 MachinePointerInfo(), false, false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002039 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00002040 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002041 BitsToDouble(0x4330000080000000ULL) :
2042 BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00002043 MVT::f64);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002044 // subtract the bias
Owen Anderson825b72b2009-08-11 20:47:22 +00002045 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002046 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00002047 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002048 // handle final rounding
Owen Anderson825b72b2009-08-11 20:47:22 +00002049 if (DestVT == MVT::f64) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002050 // do nothing
2051 Result = Sub;
Owen Anderson825b72b2009-08-11 20:47:22 +00002052 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002053 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00002054 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002055 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002056 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002057 }
2058 return Result;
2059 }
2060 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002061 // Code below here assumes !isSigned without checking again.
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002062
2063 // Implementation of unsigned i64 to f64 following the algorithm in
2064 // __floatundidf in compiler_rt. This implementation has the advantage
2065 // of performing rounding correctly, both in the default rounding mode
2066 // and in all alternate rounding modes.
2067 // TODO: Generalize this for use with other types.
2068 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2069 SDValue TwoP52 =
2070 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2071 SDValue TwoP84PlusTwoP52 =
2072 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2073 SDValue TwoP84 =
2074 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2075
2076 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2077 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2078 DAG.getConstant(32, MVT::i64));
2079 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2080 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002081 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2082 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach6e992612010-07-02 17:41:59 +00002083 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2084 TwoP84PlusTwoP52);
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002085 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2086 }
2087
Owen Anderson3a9e7692010-10-05 17:24:05 +00002088 // Implementation of unsigned i64 to f32.
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002089 // TODO: Generalize this for use with other types.
2090 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Anderson3a9e7692010-10-05 17:24:05 +00002091 // For unsigned conversions, convert them to signed conversions using the
2092 // algorithm from the x86_64 __floatundidf in compiler_rt.
2093 if (!isSigned) {
2094 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002095
Owen Anderson95771af2011-02-25 21:41:48 +00002096 SDValue ShiftConst =
2097 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Anderson3a9e7692010-10-05 17:24:05 +00002098 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2099 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2100 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2101 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002102
Owen Anderson3a9e7692010-10-05 17:24:05 +00002103 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2104 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002105
Owen Anderson3a9e7692010-10-05 17:24:05 +00002106 // TODO: This really should be implemented using a branch rather than a
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002107 // select. We happen to get lucky and machinesink does the right
2108 // thing most of the time. This would be a good candidate for a
Owen Anderson3a9e7692010-10-05 17:24:05 +00002109 //pseudo-op, or, even better, for whole-function isel.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002110 SDValue SignBitTest = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002111 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
2112 return DAG.getNode(ISD::SELECT, dl, MVT::f32, SignBitTest, Slow, Fast);
2113 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002114
Owen Anderson3a9e7692010-10-05 17:24:05 +00002115 // Otherwise, implement the fully general conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002116
Jim Grosbach6e992612010-07-02 17:41:59 +00002117 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002118 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2119 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2120 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach6e992612010-07-02 17:41:59 +00002121 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002122 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
2123 SDValue Ne = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2124 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
2125 SDValue Sel = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ne, Or, Op0);
2126 SDValue Ge = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2127 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002128 ISD::SETUGE);
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002129 SDValue Sel2 = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ge, Sel, Op0);
Owen Anderson95771af2011-02-25 21:41:48 +00002130 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002131
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002132 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2133 DAG.getConstant(32, SHVT));
2134 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2135 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2136 SDValue TwoP32 =
2137 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2138 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2139 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2140 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2141 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2142 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2143 DAG.getIntPtrConstant(0));
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002144 }
2145
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002146 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002147
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002148 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
2149 Op0, DAG.getConstant(0, Op0.getValueType()),
2150 ISD::SETLT);
2151 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
2152 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
2153 SignSet, Four, Zero);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002154
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002155 // If the sign bit of the integer is set, the large number will be treated
2156 // as a negative number. To counteract this, the dynamic code adds an
2157 // offset depending on the data type.
2158 uint64_t FF;
2159 switch (Op0.getValueType().getSimpleVT().SimpleTy) {
Chris Lattner35a38932010-04-07 23:47:51 +00002160 default: assert(0 && "Unsupported integer type!");
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002161 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2162 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2163 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2164 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2165 }
2166 if (TLI.isLittleEndian()) FF <<= 32;
2167 Constant *FudgeFactor = ConstantInt::get(
2168 Type::getInt64Ty(*DAG.getContext()), FF);
2169
2170 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2171 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
2172 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
2173 Alignment = std::min(Alignment, 4u);
2174 SDValue FudgeInReg;
2175 if (DestVT == MVT::f32)
2176 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00002177 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002178 false, false, false, Alignment);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002179 else {
Dan Gohman65fd6562011-11-03 21:49:52 +00002180 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2181 DAG.getEntryNode(), CPIdx,
2182 MachinePointerInfo::getConstantPool(),
2183 MVT::f32, false, false, Alignment);
2184 HandleSDNode Handle(Load);
2185 LegalizeOp(Load.getNode());
2186 FudgeInReg = Handle.getValue();
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002187 }
2188
2189 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002190}
2191
2192/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2193/// *INT_TO_FP operation of the specified operand when the target requests that
2194/// we promote it. At this point, we know that the result and operand types are
2195/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2196/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00002197SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002198 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002199 bool isSigned,
2200 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002201 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002202 EVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002203
2204 unsigned OpToUse = 0;
2205
2206 // Scan for the appropriate larger type to use.
2207 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002208 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002209 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002210
2211 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002212 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2213 OpToUse = ISD::SINT_TO_FP;
2214 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002215 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002216 if (isSigned) continue;
2217
2218 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002219 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2220 OpToUse = ISD::UINT_TO_FP;
2221 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002222 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002223
2224 // Otherwise, try a larger type.
2225 }
2226
2227 // Okay, we found the operation and type to use. Zero extend our input to the
2228 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00002229 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00002230 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00002231 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002232}
2233
2234/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2235/// FP_TO_*INT operation of the specified operand when the target requests that
2236/// we promote it. At this point, we know that the result and operand types are
2237/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2238/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00002239SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002240 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002241 bool isSigned,
2242 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002243 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002244 EVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002245
2246 unsigned OpToUse = 0;
2247
2248 // Scan for the appropriate larger type to use.
2249 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002250 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002251 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002252
Eli Friedman3be2e512009-05-28 03:06:16 +00002253 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002254 OpToUse = ISD::FP_TO_SINT;
2255 break;
2256 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002257
Eli Friedman3be2e512009-05-28 03:06:16 +00002258 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002259 OpToUse = ISD::FP_TO_UINT;
2260 break;
2261 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002262
2263 // Otherwise, try a larger type.
2264 }
2265
Scott Michelfdc40a02009-02-17 22:15:04 +00002266
Chris Lattner27a6c732007-11-24 07:07:01 +00002267 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00002268 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00002269
Chris Lattner27a6c732007-11-24 07:07:01 +00002270 // Truncate the result of the extended FP_TO_*INT operation to the desired
2271 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00002272 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002273}
2274
2275/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2276///
Dale Johannesen8a782a22009-02-02 22:12:50 +00002277SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002278 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002279 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00002280 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson825b72b2009-08-11 20:47:22 +00002281 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner35a38932010-04-07 23:47:51 +00002282 default: assert(0 && "Unhandled Expand type in BSWAP!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002283 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002284 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2285 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2286 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002287 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002288 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2289 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2290 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2291 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2292 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2293 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2294 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2295 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2296 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002297 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002298 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2299 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2300 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2301 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2302 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2303 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2304 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2305 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2306 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2307 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2308 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2309 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2310 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2311 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2312 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2313 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2314 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2315 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2316 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2317 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2318 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002319 }
2320}
2321
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002322/// SplatByte - Distribute ByteVal over NumBits bits.
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002323// FIXME: Move this helper to a common place.
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002324static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
2325 APInt Val = APInt(NumBits, ByteVal);
2326 unsigned Shift = 8;
2327 for (unsigned i = NumBits; i > 8; i >>= 1) {
2328 Val = (Val << Shift) | Val;
2329 Shift <<= 1;
2330 }
2331 return Val;
2332}
2333
Chris Lattner22cde6a2006-01-28 08:25:58 +00002334/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2335///
Scott Michelfdc40a02009-02-17 22:15:04 +00002336SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00002337 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002338 switch (Opc) {
Chris Lattner35a38932010-04-07 23:47:51 +00002339 default: assert(0 && "Cannot expand this yet!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002340 case ISD::CTPOP: {
Owen Andersone50ed302009-08-10 22:56:29 +00002341 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002342 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002343 unsigned Len = VT.getSizeInBits();
2344
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002345 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2346 "CTPOP not implemented for this type.");
2347
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002348 // This is the "best" algorithm from
2349 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2350
2351 SDValue Mask55 = DAG.getConstant(SplatByte(Len, 0x55), VT);
2352 SDValue Mask33 = DAG.getConstant(SplatByte(Len, 0x33), VT);
2353 SDValue Mask0F = DAG.getConstant(SplatByte(Len, 0x0F), VT);
2354 SDValue Mask01 = DAG.getConstant(SplatByte(Len, 0x01), VT);
2355
2356 // v = v - ((v >> 1) & 0x55555555...)
2357 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2358 DAG.getNode(ISD::AND, dl, VT,
2359 DAG.getNode(ISD::SRL, dl, VT, Op,
2360 DAG.getConstant(1, ShVT)),
2361 Mask55));
2362 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2363 Op = DAG.getNode(ISD::ADD, dl, VT,
2364 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2365 DAG.getNode(ISD::AND, dl, VT,
2366 DAG.getNode(ISD::SRL, dl, VT, Op,
2367 DAG.getConstant(2, ShVT)),
2368 Mask33));
2369 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2370 Op = DAG.getNode(ISD::AND, dl, VT,
2371 DAG.getNode(ISD::ADD, dl, VT, Op,
2372 DAG.getNode(ISD::SRL, dl, VT, Op,
2373 DAG.getConstant(4, ShVT))),
2374 Mask0F);
2375 // v = (v * 0x01010101...) >> (Len - 8)
2376 Op = DAG.getNode(ISD::SRL, dl, VT,
2377 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2378 DAG.getConstant(Len - 8, ShVT));
Owen Anderson95771af2011-02-25 21:41:48 +00002379
Chris Lattner22cde6a2006-01-28 08:25:58 +00002380 return Op;
2381 }
2382 case ISD::CTLZ: {
2383 // for now, we do this:
2384 // x = x | (x >> 1);
2385 // x = x | (x >> 2);
2386 // ...
2387 // x = x | (x >>16);
2388 // x = x | (x >>32); // for 64-bit input
2389 // return popcount(~x);
2390 //
2391 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002392 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002393 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002394 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002395 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002396 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002397 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00002398 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002399 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00002400 Op = DAG.getNOT(dl, Op, VT);
2401 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002402 }
2403 case ISD::CTTZ: {
2404 // for now, we use: { return popcount(~x & (x - 1)); }
2405 // unless the target has ctlz but not ctpop, in which case we use:
2406 // { return 32 - nlz(~x & (x-1)); }
2407 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002408 EVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00002409 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2410 DAG.getNOT(dl, Op, VT),
2411 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00002412 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002413 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002414 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2415 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00002416 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002417 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00002418 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2419 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002420 }
2421 }
2422}
Chris Lattnere34b3962005-01-19 04:19:40 +00002423
Jim Grosbache03262f2010-06-18 21:43:38 +00002424std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2425 unsigned Opc = Node->getOpcode();
2426 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2427 RTLIB::Libcall LC;
2428
2429 switch (Opc) {
2430 default:
2431 llvm_unreachable("Unhandled atomic intrinsic Expand!");
2432 break;
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002433 case ISD::ATOMIC_SWAP:
2434 switch (VT.SimpleTy) {
2435 default: llvm_unreachable("Unexpected value type for atomic!");
2436 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2437 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2438 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2439 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
2440 }
2441 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002442 case ISD::ATOMIC_CMP_SWAP:
2443 switch (VT.SimpleTy) {
2444 default: llvm_unreachable("Unexpected value type for atomic!");
2445 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2446 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2447 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2448 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
2449 }
2450 break;
2451 case ISD::ATOMIC_LOAD_ADD:
2452 switch (VT.SimpleTy) {
2453 default: llvm_unreachable("Unexpected value type for atomic!");
2454 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2455 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2456 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2457 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
2458 }
2459 break;
2460 case ISD::ATOMIC_LOAD_SUB:
2461 switch (VT.SimpleTy) {
2462 default: llvm_unreachable("Unexpected value type for atomic!");
2463 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2464 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2465 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2466 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
2467 }
2468 break;
2469 case ISD::ATOMIC_LOAD_AND:
2470 switch (VT.SimpleTy) {
2471 default: llvm_unreachable("Unexpected value type for atomic!");
2472 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2473 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2474 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2475 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
2476 }
2477 break;
2478 case ISD::ATOMIC_LOAD_OR:
2479 switch (VT.SimpleTy) {
2480 default: llvm_unreachable("Unexpected value type for atomic!");
2481 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2482 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2483 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2484 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
2485 }
2486 break;
2487 case ISD::ATOMIC_LOAD_XOR:
2488 switch (VT.SimpleTy) {
2489 default: llvm_unreachable("Unexpected value type for atomic!");
2490 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2491 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2492 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2493 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
2494 }
2495 break;
2496 case ISD::ATOMIC_LOAD_NAND:
2497 switch (VT.SimpleTy) {
2498 default: llvm_unreachable("Unexpected value type for atomic!");
2499 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2500 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2501 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2502 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
2503 }
2504 break;
2505 }
2506
2507 return ExpandChainLibCall(LC, Node, false);
2508}
2509
Dan Gohman65fd6562011-11-03 21:49:52 +00002510void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2511 SmallVector<SDValue, 8> Results;
Eli Friedman8c377c72009-05-27 01:25:56 +00002512 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanbbdd9032009-05-28 20:40:34 +00002513 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Eli Friedman8c377c72009-05-27 01:25:56 +00002514 switch (Node->getOpcode()) {
2515 case ISD::CTPOP:
2516 case ISD::CTLZ:
2517 case ISD::CTTZ:
2518 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2519 Results.push_back(Tmp1);
2520 break;
2521 case ISD::BSWAP:
Bill Wendling775db972009-12-23 00:28:23 +00002522 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman8c377c72009-05-27 01:25:56 +00002523 break;
2524 case ISD::FRAMEADDR:
2525 case ISD::RETURNADDR:
2526 case ISD::FRAME_TO_ARGS_OFFSET:
2527 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2528 break;
2529 case ISD::FLT_ROUNDS_:
2530 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2531 break;
2532 case ISD::EH_RETURN:
Eli Friedman8c377c72009-05-27 01:25:56 +00002533 case ISD::EH_LABEL:
2534 case ISD::PREFETCH:
Eli Friedman8c377c72009-05-27 01:25:56 +00002535 case ISD::VAEND:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002536 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002537 case ISD::EH_SJLJ_DISPATCHSETUP:
2538 // If the target didn't expand these, there's nothing to do, so just
2539 // preserve the chain and be done.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002540 Results.push_back(Node->getOperand(0));
2541 break;
2542 case ISD::EH_SJLJ_SETJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002543 // If the target didn't expand this, just return 'zero' and preserve the
2544 // chain.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002545 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman8c377c72009-05-27 01:25:56 +00002546 Results.push_back(Node->getOperand(0));
2547 break;
Eli Friedman14648462011-07-27 22:21:52 +00002548 case ISD::ATOMIC_FENCE:
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002549 case ISD::MEMBARRIER: {
2550 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman14648462011-07-27 22:21:52 +00002551 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002552 TargetLowering::ArgListTy Args;
2553 std::pair<SDValue, SDValue> CallResult =
2554 TLI.LowerCallTo(Node->getOperand(0), Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002555 false, false, false, false, 0, CallingConv::C,
2556 /*isTailCall=*/false,
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002557 /*isReturnValueUsed=*/true,
2558 DAG.getExternalSymbol("__sync_synchronize",
2559 TLI.getPointerTy()),
2560 Args, DAG, dl);
2561 Results.push_back(CallResult.second);
2562 break;
2563 }
Eli Friedman069e2ed2011-08-26 02:59:24 +00002564 case ISD::ATOMIC_LOAD: {
2565 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedman331120b2011-09-15 21:20:49 +00002566 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman069e2ed2011-08-26 02:59:24 +00002567 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2568 cast<AtomicSDNode>(Node)->getMemoryVT(),
2569 Node->getOperand(0),
2570 Node->getOperand(1), Zero, Zero,
2571 cast<AtomicSDNode>(Node)->getMemOperand(),
2572 cast<AtomicSDNode>(Node)->getOrdering(),
2573 cast<AtomicSDNode>(Node)->getSynchScope());
2574 Results.push_back(Swap.getValue(0));
2575 Results.push_back(Swap.getValue(1));
2576 break;
2577 }
2578 case ISD::ATOMIC_STORE: {
2579 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2580 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2581 cast<AtomicSDNode>(Node)->getMemoryVT(),
2582 Node->getOperand(0),
2583 Node->getOperand(1), Node->getOperand(2),
2584 cast<AtomicSDNode>(Node)->getMemOperand(),
2585 cast<AtomicSDNode>(Node)->getOrdering(),
2586 cast<AtomicSDNode>(Node)->getSynchScope());
2587 Results.push_back(Swap.getValue(1));
2588 break;
2589 }
Jim Grosbachb56ce812010-06-17 17:50:54 +00002590 // By default, atomic intrinsics are marked Legal and lowered. Targets
2591 // which don't support them directly, however, may want libcalls, in which
2592 // case they mark them Expand, and we get here.
Jim Grosbachb56ce812010-06-17 17:50:54 +00002593 case ISD::ATOMIC_SWAP:
2594 case ISD::ATOMIC_LOAD_ADD:
2595 case ISD::ATOMIC_LOAD_SUB:
2596 case ISD::ATOMIC_LOAD_AND:
2597 case ISD::ATOMIC_LOAD_OR:
2598 case ISD::ATOMIC_LOAD_XOR:
2599 case ISD::ATOMIC_LOAD_NAND:
2600 case ISD::ATOMIC_LOAD_MIN:
2601 case ISD::ATOMIC_LOAD_MAX:
2602 case ISD::ATOMIC_LOAD_UMIN:
2603 case ISD::ATOMIC_LOAD_UMAX:
Evan Chenga8457062010-06-18 22:01:37 +00002604 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbache03262f2010-06-18 21:43:38 +00002605 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2606 Results.push_back(Tmp.first);
2607 Results.push_back(Tmp.second);
Jim Grosbach59c38f32010-06-17 17:58:54 +00002608 break;
Evan Chenga8457062010-06-18 22:01:37 +00002609 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00002610 case ISD::DYNAMIC_STACKALLOC:
2611 ExpandDYNAMIC_STACKALLOC(Node, Results);
2612 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00002613 case ISD::MERGE_VALUES:
2614 for (unsigned i = 0; i < Node->getNumValues(); i++)
2615 Results.push_back(Node->getOperand(i));
2616 break;
2617 case ISD::UNDEF: {
Owen Andersone50ed302009-08-10 22:56:29 +00002618 EVT VT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00002619 if (VT.isInteger())
2620 Results.push_back(DAG.getConstant(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002621 else {
2622 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman8c377c72009-05-27 01:25:56 +00002623 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002624 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002625 break;
2626 }
2627 case ISD::TRAP: {
2628 // If this operation is not supported, lower it to 'abort()' call
2629 TargetLowering::ArgListTy Args;
2630 std::pair<SDValue, SDValue> CallResult =
Owen Anderson1d0be152009-08-13 21:58:54 +00002631 TLI.LowerCallTo(Node->getOperand(0), Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002632 false, false, false, false, 0, CallingConv::C,
2633 /*isTailCall=*/false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002634 /*isReturnValueUsed=*/true,
Eli Friedman8c377c72009-05-27 01:25:56 +00002635 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00002636 Args, DAG, dl);
Eli Friedman8c377c72009-05-27 01:25:56 +00002637 Results.push_back(CallResult.second);
2638 break;
2639 }
2640 case ISD::FP_ROUND:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002641 case ISD::BITCAST:
Eli Friedman8c377c72009-05-27 01:25:56 +00002642 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2643 Node->getValueType(0), dl);
2644 Results.push_back(Tmp1);
2645 break;
2646 case ISD::FP_EXTEND:
2647 Tmp1 = EmitStackConvert(Node->getOperand(0),
2648 Node->getOperand(0).getValueType(),
2649 Node->getValueType(0), dl);
2650 Results.push_back(Tmp1);
2651 break;
2652 case ISD::SIGN_EXTEND_INREG: {
2653 // NOTE: we could fall back on load/store here too for targets without
2654 // SAR. However, it is doubtful that any exist.
Owen Andersone50ed302009-08-10 22:56:29 +00002655 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00002656 EVT VT = Node->getValueType(0);
Owen Anderson95771af2011-02-25 21:41:48 +00002657 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohmand1996362010-01-09 02:13:55 +00002658 if (VT.isVector())
Dan Gohman87862e72009-12-11 21:31:27 +00002659 ShiftAmountTy = VT;
Dan Gohmand1996362010-01-09 02:13:55 +00002660 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2661 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman87862e72009-12-11 21:31:27 +00002662 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman8c377c72009-05-27 01:25:56 +00002663 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2664 Node->getOperand(0), ShiftCst);
Bill Wendling775db972009-12-23 00:28:23 +00002665 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2666 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002667 break;
2668 }
2669 case ISD::FP_ROUND_INREG: {
2670 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002671 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman8c377c72009-05-27 01:25:56 +00002672
2673 // NOTE: there is a choice here between constantly creating new stack
2674 // slots and always reusing the same one. We currently always create
2675 // new ones, as reuse may inhibit scheduling.
Owen Andersone50ed302009-08-10 22:56:29 +00002676 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00002677 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2678 Node->getValueType(0), dl);
2679 Results.push_back(Tmp1);
2680 break;
2681 }
2682 case ISD::SINT_TO_FP:
2683 case ISD::UINT_TO_FP:
2684 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2685 Node->getOperand(0), Node->getValueType(0), dl);
2686 Results.push_back(Tmp1);
2687 break;
2688 case ISD::FP_TO_UINT: {
2689 SDValue True, False;
Owen Andersone50ed302009-08-10 22:56:29 +00002690 EVT VT = Node->getOperand(0).getValueType();
2691 EVT NVT = Node->getValueType(0);
Benjamin Kramer3069cbf2010-12-04 15:28:22 +00002692 APFloat apf(APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman8c377c72009-05-27 01:25:56 +00002693 APInt x = APInt::getSignBit(NVT.getSizeInBits());
2694 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
2695 Tmp1 = DAG.getConstantFP(apf, VT);
2696 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
2697 Node->getOperand(0),
2698 Tmp1, ISD::SETLT);
2699 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00002700 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
2701 DAG.getNode(ISD::FSUB, dl, VT,
2702 Node->getOperand(0), Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00002703 False = DAG.getNode(ISD::XOR, dl, NVT, False,
2704 DAG.getConstant(x, NVT));
2705 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2, True, False);
2706 Results.push_back(Tmp1);
2707 break;
2708 }
Eli Friedman509150f2009-05-27 07:58:35 +00002709 case ISD::VAARG: {
2710 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00002711 EVT VT = Node->getValueType(0);
Eli Friedman509150f2009-05-27 07:58:35 +00002712 Tmp1 = Node->getOperand(0);
2713 Tmp2 = Node->getOperand(1);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002714 unsigned Align = Node->getConstantOperandVal(3);
2715
Chris Lattnerecf42c42010-09-21 16:36:31 +00002716 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002717 MachinePointerInfo(V),
2718 false, false, false, 0);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002719 SDValue VAList = VAListLoad;
2720
Rafael Espindolacbeeae22010-07-11 04:01:49 +00002721 if (Align > TLI.getMinStackArgumentAlignment()) {
2722 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
2723
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002724 VAList = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2725 DAG.getConstant(Align - 1,
2726 TLI.getPointerTy()));
2727
2728 VAList = DAG.getNode(ISD::AND, dl, TLI.getPointerTy(), VAList,
Chris Lattner07e3a382010-10-10 18:36:26 +00002729 DAG.getConstant(-(int64_t)Align,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002730 TLI.getPointerTy()));
2731 }
2732
Eli Friedman509150f2009-05-27 07:58:35 +00002733 // Increment the pointer, VAList, to the next vaarg
2734 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2735 DAG.getConstant(TLI.getTargetData()->
Evan Chengadf97992010-04-15 01:25:27 +00002736 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Eli Friedman509150f2009-05-27 07:58:35 +00002737 TLI.getPointerTy()));
2738 // Store the incremented VAList to the legalized pointer
Chris Lattner6229d0a2010-09-21 18:41:36 +00002739 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
2740 MachinePointerInfo(V), false, false, 0);
Eli Friedman509150f2009-05-27 07:58:35 +00002741 // Load the actual argument out of the pointer VAList
Chris Lattnerecf42c42010-09-21 16:36:31 +00002742 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002743 false, false, false, 0));
Eli Friedman509150f2009-05-27 07:58:35 +00002744 Results.push_back(Results[0].getValue(1));
2745 break;
2746 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002747 case ISD::VACOPY: {
2748 // This defaults to loading a pointer from the input and storing it to the
2749 // output, returning the chain.
2750 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2751 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
2752 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattnerecf42c42010-09-21 16:36:31 +00002753 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002754 false, false, false, 0);
Chris Lattnerecf42c42010-09-21 16:36:31 +00002755 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
2756 MachinePointerInfo(VD), false, false, 0);
Bill Wendling775db972009-12-23 00:28:23 +00002757 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002758 break;
2759 }
2760 case ISD::EXTRACT_VECTOR_ELT:
2761 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
2762 // This must be an access of the only element. Return it.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002763 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman8c377c72009-05-27 01:25:56 +00002764 Node->getOperand(0));
2765 else
2766 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
2767 Results.push_back(Tmp1);
2768 break;
2769 case ISD::EXTRACT_SUBVECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002770 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman8c377c72009-05-27 01:25:56 +00002771 break;
David Greenecfe33c42011-01-26 19:13:22 +00002772 case ISD::INSERT_SUBVECTOR:
2773 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
2774 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002775 case ISD::CONCAT_VECTORS: {
Bill Wendling775db972009-12-23 00:28:23 +00002776 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman509150f2009-05-27 07:58:35 +00002777 break;
2778 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002779 case ISD::SCALAR_TO_VECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002780 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman8c377c72009-05-27 01:25:56 +00002781 break;
Eli Friedman3f727d62009-05-27 02:16:40 +00002782 case ISD::INSERT_VECTOR_ELT:
Bill Wendling775db972009-12-23 00:28:23 +00002783 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
2784 Node->getOperand(1),
2785 Node->getOperand(2), dl));
Eli Friedman3f727d62009-05-27 02:16:40 +00002786 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002787 case ISD::VECTOR_SHUFFLE: {
2788 SmallVector<int, 8> Mask;
2789 cast<ShuffleVectorSDNode>(Node)->getMask(Mask);
2790
Owen Andersone50ed302009-08-10 22:56:29 +00002791 EVT VT = Node->getValueType(0);
2792 EVT EltVT = VT.getVectorElementType();
Dan Gohman75b10042011-07-15 22:39:09 +00002793 if (!TLI.isTypeLegal(EltVT))
Bob Wilson14b21412010-05-19 18:48:32 +00002794 EltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
Eli Friedman509150f2009-05-27 07:58:35 +00002795 unsigned NumElems = VT.getVectorNumElements();
2796 SmallVector<SDValue, 8> Ops;
2797 for (unsigned i = 0; i != NumElems; ++i) {
2798 if (Mask[i] < 0) {
2799 Ops.push_back(DAG.getUNDEF(EltVT));
2800 continue;
2801 }
2802 unsigned Idx = Mask[i];
2803 if (Idx < NumElems)
Bill Wendling775db972009-12-23 00:28:23 +00002804 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
2805 Node->getOperand(0),
2806 DAG.getIntPtrConstant(Idx)));
Eli Friedman509150f2009-05-27 07:58:35 +00002807 else
Bill Wendling775db972009-12-23 00:28:23 +00002808 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
2809 Node->getOperand(1),
2810 DAG.getIntPtrConstant(Idx - NumElems)));
Eli Friedman509150f2009-05-27 07:58:35 +00002811 }
2812 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
2813 Results.push_back(Tmp1);
2814 break;
2815 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002816 case ISD::EXTRACT_ELEMENT: {
Owen Andersone50ed302009-08-10 22:56:29 +00002817 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman8c377c72009-05-27 01:25:56 +00002818 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
2819 // 1 -> Hi
2820 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
2821 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00002822 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman8c377c72009-05-27 01:25:56 +00002823 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
2824 } else {
2825 // 0 -> Lo
2826 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
2827 Node->getOperand(0));
2828 }
2829 Results.push_back(Tmp1);
2830 break;
2831 }
Eli Friedman3f727d62009-05-27 02:16:40 +00002832 case ISD::STACKSAVE:
2833 // Expand to CopyFromReg if the target set
2834 // StackPointerRegisterToSaveRestore.
2835 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendling775db972009-12-23 00:28:23 +00002836 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
2837 Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00002838 Results.push_back(Results[0].getValue(1));
2839 } else {
Bill Wendling775db972009-12-23 00:28:23 +00002840 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00002841 Results.push_back(Node->getOperand(0));
2842 }
2843 break;
2844 case ISD::STACKRESTORE:
Bill Wendling775db972009-12-23 00:28:23 +00002845 // Expand to CopyToReg if the target set
2846 // StackPointerRegisterToSaveRestore.
2847 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2848 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
2849 Node->getOperand(1)));
2850 } else {
2851 Results.push_back(Node->getOperand(0));
2852 }
Eli Friedman3f727d62009-05-27 02:16:40 +00002853 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00002854 case ISD::FCOPYSIGN:
Bill Wendling775db972009-12-23 00:28:23 +00002855 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00002856 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002857 case ISD::FNEG:
2858 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2859 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
2860 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
2861 Node->getOperand(0));
2862 Results.push_back(Tmp1);
2863 break;
2864 case ISD::FABS: {
2865 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Andersone50ed302009-08-10 22:56:29 +00002866 EVT VT = Node->getValueType(0);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002867 Tmp1 = Node->getOperand(0);
2868 Tmp2 = DAG.getConstantFP(0.0, VT);
Bill Wendling775db972009-12-23 00:28:23 +00002869 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002870 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendling775db972009-12-23 00:28:23 +00002871 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
2872 Tmp1 = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002873 Results.push_back(Tmp1);
2874 break;
2875 }
2876 case ISD::FSQRT:
Bill Wendling775db972009-12-23 00:28:23 +00002877 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
2878 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002879 break;
2880 case ISD::FSIN:
Bill Wendling775db972009-12-23 00:28:23 +00002881 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
2882 RTLIB::SIN_F80, RTLIB::SIN_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002883 break;
2884 case ISD::FCOS:
Bill Wendling775db972009-12-23 00:28:23 +00002885 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
2886 RTLIB::COS_F80, RTLIB::COS_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002887 break;
2888 case ISD::FLOG:
Bill Wendling775db972009-12-23 00:28:23 +00002889 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
2890 RTLIB::LOG_F80, RTLIB::LOG_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002891 break;
2892 case ISD::FLOG2:
Bill Wendling775db972009-12-23 00:28:23 +00002893 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
2894 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002895 break;
2896 case ISD::FLOG10:
Bill Wendling775db972009-12-23 00:28:23 +00002897 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
2898 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002899 break;
2900 case ISD::FEXP:
Bill Wendling775db972009-12-23 00:28:23 +00002901 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
2902 RTLIB::EXP_F80, RTLIB::EXP_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002903 break;
2904 case ISD::FEXP2:
Bill Wendling775db972009-12-23 00:28:23 +00002905 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
2906 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002907 break;
2908 case ISD::FTRUNC:
Bill Wendling775db972009-12-23 00:28:23 +00002909 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
2910 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002911 break;
2912 case ISD::FFLOOR:
Bill Wendling775db972009-12-23 00:28:23 +00002913 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
2914 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002915 break;
2916 case ISD::FCEIL:
Bill Wendling775db972009-12-23 00:28:23 +00002917 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
2918 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002919 break;
2920 case ISD::FRINT:
Bill Wendling775db972009-12-23 00:28:23 +00002921 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
2922 RTLIB::RINT_F80, RTLIB::RINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002923 break;
2924 case ISD::FNEARBYINT:
Bill Wendling775db972009-12-23 00:28:23 +00002925 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
2926 RTLIB::NEARBYINT_F64,
2927 RTLIB::NEARBYINT_F80,
2928 RTLIB::NEARBYINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002929 break;
2930 case ISD::FPOWI:
Bill Wendling775db972009-12-23 00:28:23 +00002931 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
2932 RTLIB::POWI_F80, RTLIB::POWI_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002933 break;
2934 case ISD::FPOW:
Bill Wendling775db972009-12-23 00:28:23 +00002935 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
2936 RTLIB::POW_F80, RTLIB::POW_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002937 break;
2938 case ISD::FDIV:
Bill Wendling775db972009-12-23 00:28:23 +00002939 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
2940 RTLIB::DIV_F80, RTLIB::DIV_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002941 break;
2942 case ISD::FREM:
Bill Wendling775db972009-12-23 00:28:23 +00002943 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
2944 RTLIB::REM_F80, RTLIB::REM_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002945 break;
Cameron Zwarich33390842011-07-08 21:39:21 +00002946 case ISD::FMA:
2947 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
2948 RTLIB::FMA_F80, RTLIB::FMA_PPCF128));
2949 break;
Anton Korobeynikov927411b2010-03-14 18:42:24 +00002950 case ISD::FP16_TO_FP32:
2951 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
2952 break;
2953 case ISD::FP32_TO_FP16:
2954 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
2955 break;
Eli Friedmanf6f20a72009-05-27 07:32:27 +00002956 case ISD::ConstantFP: {
2957 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendling775db972009-12-23 00:28:23 +00002958 // Check to see if this FP immediate is already legal.
2959 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman65fd6562011-11-03 21:49:52 +00002960 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
2961 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00002962 break;
2963 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00002964 case ISD::EHSELECTION: {
2965 unsigned Reg = TLI.getExceptionSelectorRegister();
2966 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00002967 Results.push_back(DAG.getCopyFromReg(Node->getOperand(1), dl, Reg,
2968 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00002969 Results.push_back(Results[0].getValue(1));
2970 break;
2971 }
2972 case ISD::EXCEPTIONADDR: {
2973 unsigned Reg = TLI.getExceptionAddressRegister();
2974 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00002975 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, Reg,
2976 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00002977 Results.push_back(Results[0].getValue(1));
2978 break;
2979 }
2980 case ISD::SUB: {
Owen Andersone50ed302009-08-10 22:56:29 +00002981 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00002982 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
2983 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
2984 "Don't know how to expand this subtraction!");
2985 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
2986 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Bill Wendling775db972009-12-23 00:28:23 +00002987 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp2, DAG.getConstant(1, VT));
2988 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman26ea8f92009-05-27 07:05:37 +00002989 break;
2990 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00002991 case ISD::UREM:
2992 case ISD::SREM: {
Owen Andersone50ed302009-08-10 22:56:29 +00002993 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00002994 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00002995 bool isSigned = Node->getOpcode() == ISD::SREM;
2996 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
2997 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
2998 Tmp2 = Node->getOperand(0);
2999 Tmp3 = Node->getOperand(1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003000 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3001 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
3002 UseDivRem(Node, isSigned, false))) {
Eli Friedman3be2e512009-05-28 03:06:16 +00003003 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3004 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003005 // X % Y -> X-X/Y*Y
3006 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3007 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3008 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003009 } else if (isSigned)
3010 Tmp1 = ExpandIntLibCall(Node, true,
3011 RTLIB::SREM_I8,
3012 RTLIB::SREM_I16, RTLIB::SREM_I32,
3013 RTLIB::SREM_I64, RTLIB::SREM_I128);
3014 else
3015 Tmp1 = ExpandIntLibCall(Node, false,
3016 RTLIB::UREM_I8,
3017 RTLIB::UREM_I16, RTLIB::UREM_I32,
3018 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003019 Results.push_back(Tmp1);
3020 break;
3021 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003022 case ISD::UDIV:
3023 case ISD::SDIV: {
3024 bool isSigned = Node->getOpcode() == ISD::SDIV;
3025 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Andersone50ed302009-08-10 22:56:29 +00003026 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003027 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Cheng65279cb2011-04-16 03:08:26 +00003028 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3029 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
3030 UseDivRem(Node, isSigned, true)))
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003031 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3032 Node->getOperand(1));
Evan Cheng65279cb2011-04-16 03:08:26 +00003033 else if (isSigned)
3034 Tmp1 = ExpandIntLibCall(Node, true,
3035 RTLIB::SDIV_I8,
3036 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3037 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3038 else
3039 Tmp1 = ExpandIntLibCall(Node, false,
3040 RTLIB::UDIV_I8,
3041 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3042 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003043 Results.push_back(Tmp1);
3044 break;
3045 }
3046 case ISD::MULHU:
3047 case ISD::MULHS: {
3048 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3049 ISD::SMUL_LOHI;
Owen Andersone50ed302009-08-10 22:56:29 +00003050 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003051 SDVTList VTs = DAG.getVTList(VT, VT);
3052 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3053 "If this wasn't legal, it shouldn't have been created!");
3054 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3055 Node->getOperand(1));
3056 Results.push_back(Tmp1.getValue(1));
3057 break;
3058 }
Evan Cheng65279cb2011-04-16 03:08:26 +00003059 case ISD::SDIVREM:
3060 case ISD::UDIVREM:
3061 // Expand into divrem libcall
3062 ExpandDivRemLibCall(Node, Results);
3063 break;
Eli Friedman26ea8f92009-05-27 07:05:37 +00003064 case ISD::MUL: {
Owen Andersone50ed302009-08-10 22:56:29 +00003065 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003066 SDVTList VTs = DAG.getVTList(VT, VT);
3067 // See if multiply or divide can be lowered using two-result operations.
3068 // We just need the low half of the multiply; try both the signed
3069 // and unsigned forms. If the target supports both SMUL_LOHI and
3070 // UMUL_LOHI, form a preference by checking which forms of plain
3071 // MULH it supports.
3072 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3073 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3074 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3075 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3076 unsigned OpToUse = 0;
3077 if (HasSMUL_LOHI && !HasMULHS) {
3078 OpToUse = ISD::SMUL_LOHI;
3079 } else if (HasUMUL_LOHI && !HasMULHU) {
3080 OpToUse = ISD::UMUL_LOHI;
3081 } else if (HasSMUL_LOHI) {
3082 OpToUse = ISD::SMUL_LOHI;
3083 } else if (HasUMUL_LOHI) {
3084 OpToUse = ISD::UMUL_LOHI;
3085 }
3086 if (OpToUse) {
Bill Wendling775db972009-12-23 00:28:23 +00003087 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3088 Node->getOperand(1)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003089 break;
3090 }
Anton Korobeynikov8983da72009-11-07 17:14:39 +00003091 Tmp1 = ExpandIntLibCall(Node, false,
3092 RTLIB::MUL_I8,
3093 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman26ea8f92009-05-27 07:05:37 +00003094 RTLIB::MUL_I64, RTLIB::MUL_I128);
3095 Results.push_back(Tmp1);
3096 break;
3097 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003098 case ISD::SADDO:
3099 case ISD::SSUBO: {
3100 SDValue LHS = Node->getOperand(0);
3101 SDValue RHS = Node->getOperand(1);
3102 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3103 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3104 LHS, RHS);
3105 Results.push_back(Sum);
Bill Wendling122d06d2009-12-23 00:05:09 +00003106 EVT OType = Node->getValueType(1);
Bill Wendling775db972009-12-23 00:28:23 +00003107
Eli Friedman4bc8c712009-05-27 12:20:41 +00003108 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3109
3110 // LHSSign -> LHS >= 0
3111 // RHSSign -> RHS >= 0
3112 // SumSign -> Sum >= 0
3113 //
3114 // Add:
3115 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3116 // Sub:
3117 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3118 //
3119 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3120 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3121 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3122 Node->getOpcode() == ISD::SADDO ?
3123 ISD::SETEQ : ISD::SETNE);
3124
3125 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3126 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3127
3128 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3129 Results.push_back(Cmp);
3130 break;
3131 }
3132 case ISD::UADDO:
3133 case ISD::USUBO: {
3134 SDValue LHS = Node->getOperand(0);
3135 SDValue RHS = Node->getOperand(1);
3136 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3137 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3138 LHS, RHS);
3139 Results.push_back(Sum);
Bill Wendling775db972009-12-23 00:28:23 +00003140 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3141 Node->getOpcode () == ISD::UADDO ?
3142 ISD::SETULT : ISD::SETUGT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003143 break;
3144 }
Eli Friedmandb3c1692009-06-16 06:58:29 +00003145 case ISD::UMULO:
3146 case ISD::SMULO: {
Owen Andersone50ed302009-08-10 22:56:29 +00003147 EVT VT = Node->getValueType(0);
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003148 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmandb3c1692009-06-16 06:58:29 +00003149 SDValue LHS = Node->getOperand(0);
3150 SDValue RHS = Node->getOperand(1);
3151 SDValue BottomHalf;
3152 SDValue TopHalf;
Nuno Lopesec9d8b02009-12-23 17:48:10 +00003153 static const unsigned Ops[2][3] =
Eli Friedmandb3c1692009-06-16 06:58:29 +00003154 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3155 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3156 bool isSigned = Node->getOpcode() == ISD::SMULO;
3157 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3158 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3159 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3160 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3161 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3162 RHS);
3163 TopHalf = BottomHalf.getValue(1);
Eric Christopher38a18262011-01-20 00:29:24 +00003164 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3165 VT.getSizeInBits() * 2))) {
Eli Friedmandb3c1692009-06-16 06:58:29 +00003166 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3167 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3168 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3169 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3170 DAG.getIntPtrConstant(0));
3171 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3172 DAG.getIntPtrConstant(1));
Eric Christopher38a18262011-01-20 00:29:24 +00003173 } else {
3174 // We can fall back to a libcall with an illegal type for the MUL if we
3175 // have a libcall big enough.
3176 // Also, we can fall back to a division in some cases, but that's a big
3177 // performance hit in the general case.
Eric Christopher38a18262011-01-20 00:29:24 +00003178 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3179 if (WideVT == MVT::i16)
3180 LC = RTLIB::MUL_I16;
3181 else if (WideVT == MVT::i32)
3182 LC = RTLIB::MUL_I32;
3183 else if (WideVT == MVT::i64)
3184 LC = RTLIB::MUL_I64;
3185 else if (WideVT == MVT::i128)
3186 LC = RTLIB::MUL_I128;
3187 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanf316eb72011-05-16 22:09:53 +00003188
3189 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003190 // part.
3191 unsigned LoSize = VT.getSizeInBits();
3192 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3193 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3194 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3195 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Anderson95771af2011-02-25 21:41:48 +00003196
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003197 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3198 // pre-lowered to the correct types. This all depends upon WideVT not
3199 // being a legal type for the architecture and thus has to be split to
3200 // two arguments.
3201 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3202 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3203 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3204 DAG.getIntPtrConstant(0));
3205 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3206 DAG.getIntPtrConstant(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00003207 // Ret is a node with an illegal type. Because such things are not
3208 // generally permitted during this phase of legalization, delete the
3209 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3210 DAG.DeleteNode(Ret.getNode());
Eli Friedmandb3c1692009-06-16 06:58:29 +00003211 }
Dan Gohmanf316eb72011-05-16 22:09:53 +00003212
Eli Friedmandb3c1692009-06-16 06:58:29 +00003213 if (isSigned) {
Owen Anderson95771af2011-02-25 21:41:48 +00003214 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3215 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmandb3c1692009-06-16 06:58:29 +00003216 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
3217 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf, Tmp1,
3218 ISD::SETNE);
3219 } else {
3220 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf,
3221 DAG.getConstant(0, VT), ISD::SETNE);
3222 }
3223 Results.push_back(BottomHalf);
3224 Results.push_back(TopHalf);
3225 break;
3226 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003227 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +00003228 EVT PairTy = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003229 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3230 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendling775db972009-12-23 00:28:23 +00003231 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003232 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003233 TLI.getShiftAmountTy(PairTy)));
Bill Wendling775db972009-12-23 00:28:23 +00003234 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003235 break;
3236 }
Eli Friedman509150f2009-05-27 07:58:35 +00003237 case ISD::SELECT:
3238 Tmp1 = Node->getOperand(0);
3239 Tmp2 = Node->getOperand(1);
3240 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003241 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman509150f2009-05-27 07:58:35 +00003242 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3243 Tmp2, Tmp3,
3244 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendling775db972009-12-23 00:28:23 +00003245 } else {
Eli Friedman509150f2009-05-27 07:58:35 +00003246 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3247 DAG.getConstant(0, Tmp1.getValueType()),
3248 Tmp2, Tmp3, ISD::SETNE);
Bill Wendling775db972009-12-23 00:28:23 +00003249 }
Eli Friedman509150f2009-05-27 07:58:35 +00003250 Results.push_back(Tmp1);
3251 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003252 case ISD::BR_JT: {
3253 SDValue Chain = Node->getOperand(0);
3254 SDValue Table = Node->getOperand(1);
3255 SDValue Index = Node->getOperand(2);
3256
Owen Andersone50ed302009-08-10 22:56:29 +00003257 EVT PTy = TLI.getPointerTy();
Chris Lattner071c62f2010-01-25 23:26:13 +00003258
3259 const TargetData &TD = *TLI.getTargetData();
3260 unsigned EntrySize =
3261 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach6e992612010-07-02 17:41:59 +00003262
Chris Lattner071c62f2010-01-25 23:26:13 +00003263 Index = DAG.getNode(ISD::MUL, dl, PTy,
Eli Friedman4bc8c712009-05-27 12:20:41 +00003264 Index, DAG.getConstant(EntrySize, PTy));
3265 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3266
Owen Anderson23b9b192009-08-12 00:36:31 +00003267 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastingsa9011292011-02-16 16:23:55 +00003268 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattner85ca1062010-09-21 07:32:19 +00003269 MachinePointerInfo::getJumpTable(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00003270 false, false, 0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003271 Addr = LD;
Dan Gohman55e59c12010-04-19 19:05:59 +00003272 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman4bc8c712009-05-27 12:20:41 +00003273 // For PIC, the sequence is:
Bill Wendling775db972009-12-23 00:28:23 +00003274 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman4bc8c712009-05-27 12:20:41 +00003275 // RelocBase can be JumpTable, GOT or some sort of global base.
3276 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3277 TLI.getPICJumpTableRelocBase(Table, DAG));
3278 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003279 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003280 Results.push_back(Tmp1);
3281 break;
3282 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003283 case ISD::BRCOND:
3284 // Expand brcond's setcc into its constituent parts and create a BR_CC
3285 // Node.
3286 Tmp1 = Node->getOperand(0);
3287 Tmp2 = Node->getOperand(1);
Bill Wendling775db972009-12-23 00:28:23 +00003288 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003289 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003290 Tmp1, Tmp2.getOperand(2),
3291 Tmp2.getOperand(0), Tmp2.getOperand(1),
3292 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003293 } else {
Stuart Hastings88882242011-05-13 00:51:54 +00003294 // We test only the i1 bit. Skip the AND if UNDEF.
3295 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3296 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3297 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003298 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastings88882242011-05-13 00:51:54 +00003299 DAG.getCondCode(ISD::SETNE), Tmp3,
3300 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003301 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003302 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003303 Results.push_back(Tmp1);
3304 break;
Eli Friedmanad754602009-05-28 03:56:57 +00003305 case ISD::SETCC: {
3306 Tmp1 = Node->getOperand(0);
3307 Tmp2 = Node->getOperand(1);
3308 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003309 LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Eli Friedmanad754602009-05-28 03:56:57 +00003310
3311 // If we expanded the SETCC into an AND/OR, return the new node
3312 if (Tmp2.getNode() == 0) {
3313 Results.push_back(Tmp1);
3314 break;
3315 }
3316
3317 // Otherwise, SETCC for the given comparison type must be completely
3318 // illegal; expand it into a SELECT_CC.
Owen Andersone50ed302009-08-10 22:56:29 +00003319 EVT VT = Node->getValueType(0);
Eli Friedmanad754602009-05-28 03:56:57 +00003320 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
3321 DAG.getConstant(1, VT), DAG.getConstant(0, VT), Tmp3);
3322 Results.push_back(Tmp1);
3323 break;
3324 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003325 case ISD::SELECT_CC: {
3326 Tmp1 = Node->getOperand(0); // LHS
3327 Tmp2 = Node->getOperand(1); // RHS
3328 Tmp3 = Node->getOperand(2); // True
3329 Tmp4 = Node->getOperand(3); // False
3330 SDValue CC = Node->getOperand(4);
3331
3332 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp1.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003333 Tmp1, Tmp2, CC, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003334
3335 assert(!Tmp2.getNode() && "Can't legalize SELECT_CC with legal condition!");
3336 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3337 CC = DAG.getCondCode(ISD::SETNE);
3338 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, Tmp2,
3339 Tmp3, Tmp4, CC);
3340 Results.push_back(Tmp1);
3341 break;
3342 }
3343 case ISD::BR_CC: {
3344 Tmp1 = Node->getOperand(0); // Chain
3345 Tmp2 = Node->getOperand(2); // LHS
3346 Tmp3 = Node->getOperand(3); // RHS
3347 Tmp4 = Node->getOperand(1); // CC
3348
3349 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp2.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003350 Tmp2, Tmp3, Tmp4, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003351
3352 assert(!Tmp3.getNode() && "Can't legalize BR_CC with legal condition!");
3353 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3354 Tmp4 = DAG.getCondCode(ISD::SETNE);
3355 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, Tmp2,
3356 Tmp3, Node->getOperand(4));
3357 Results.push_back(Tmp1);
3358 break;
3359 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003360 case ISD::BUILD_VECTOR:
3361 Results.push_back(ExpandBUILD_VECTOR(Node));
3362 break;
3363 case ISD::SRA:
3364 case ISD::SRL:
3365 case ISD::SHL: {
3366 // Scalarize vector SRA/SRL/SHL.
3367 EVT VT = Node->getValueType(0);
3368 assert(VT.isVector() && "Unable to legalize non-vector shift");
3369 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3370 unsigned NumElem = VT.getVectorNumElements();
3371
3372 SmallVector<SDValue, 8> Scalars;
3373 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3374 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3375 VT.getScalarType(),
3376 Node->getOperand(0), DAG.getIntPtrConstant(Idx));
3377 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3378 VT.getScalarType(),
3379 Node->getOperand(1), DAG.getIntPtrConstant(Idx));
3380 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3381 VT.getScalarType(), Ex, Sh));
3382 }
3383 SDValue Result =
3384 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3385 &Scalars[0], Scalars.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +00003386 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +00003387 break;
3388 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003389 case ISD::GLOBAL_OFFSET_TABLE:
3390 case ISD::GlobalAddress:
3391 case ISD::GlobalTLSAddress:
3392 case ISD::ExternalSymbol:
3393 case ISD::ConstantPool:
3394 case ISD::JumpTable:
3395 case ISD::INTRINSIC_W_CHAIN:
3396 case ISD::INTRINSIC_WO_CHAIN:
3397 case ISD::INTRINSIC_VOID:
3398 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedman3f727d62009-05-27 02:16:40 +00003399 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00003400 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003401
3402 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003403 if (!Results.empty())
3404 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003405}
Dan Gohman65fd6562011-11-03 21:49:52 +00003406
3407void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3408 SmallVector<SDValue, 8> Results;
Owen Andersone50ed302009-08-10 22:56:29 +00003409 EVT OVT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00003410 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedmana64eb922009-07-17 05:16:04 +00003411 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendling775db972009-12-23 00:28:23 +00003412 Node->getOpcode() == ISD::SETCC) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003413 OVT = Node->getOperand(0).getValueType();
Bill Wendling775db972009-12-23 00:28:23 +00003414 }
Owen Andersone50ed302009-08-10 22:56:29 +00003415 EVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Eli Friedman8c377c72009-05-27 01:25:56 +00003416 DebugLoc dl = Node->getDebugLoc();
Eli Friedman509150f2009-05-27 07:58:35 +00003417 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman8c377c72009-05-27 01:25:56 +00003418 switch (Node->getOpcode()) {
3419 case ISD::CTTZ:
3420 case ISD::CTLZ:
3421 case ISD::CTPOP:
3422 // Zero extend the argument.
3423 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
3424 // Perform the larger operation.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003425 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003426 if (Node->getOpcode() == ISD::CTTZ) {
3427 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003428 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Eli Friedman8c377c72009-05-27 01:25:56 +00003429 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3430 ISD::SETEQ);
3431 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
3432 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
3433 } else if (Node->getOpcode() == ISD::CTLZ) {
3434 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3435 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3436 DAG.getConstant(NVT.getSizeInBits() -
3437 OVT.getSizeInBits(), NVT));
3438 }
Bill Wendling775db972009-12-23 00:28:23 +00003439 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00003440 break;
3441 case ISD::BSWAP: {
3442 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling167bea72009-12-22 22:53:39 +00003443 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00003444 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3445 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Anderson95771af2011-02-25 21:41:48 +00003446 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendling775db972009-12-23 00:28:23 +00003447 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003448 break;
3449 }
3450 case ISD::FP_TO_UINT:
3451 case ISD::FP_TO_SINT:
3452 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3453 Node->getOpcode() == ISD::FP_TO_SINT, dl);
3454 Results.push_back(Tmp1);
3455 break;
3456 case ISD::UINT_TO_FP:
3457 case ISD::SINT_TO_FP:
3458 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3459 Node->getOpcode() == ISD::SINT_TO_FP, dl);
3460 Results.push_back(Tmp1);
3461 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003462 case ISD::AND:
3463 case ISD::OR:
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003464 case ISD::XOR: {
3465 unsigned ExtOp, TruncOp;
3466 if (OVT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003467 ExtOp = ISD::BITCAST;
3468 TruncOp = ISD::BITCAST;
Chris Lattner35a38932010-04-07 23:47:51 +00003469 } else {
3470 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003471 ExtOp = ISD::ANY_EXTEND;
3472 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003473 }
3474 // Promote each of the values to the new type.
3475 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3476 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3477 // Perform the larger operation, then convert back
Bill Wendling775db972009-12-23 00:28:23 +00003478 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3479 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003480 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003481 }
3482 case ISD::SELECT: {
Eli Friedman509150f2009-05-27 07:58:35 +00003483 unsigned ExtOp, TruncOp;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003484 if (Node->getValueType(0).isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003485 ExtOp = ISD::BITCAST;
3486 TruncOp = ISD::BITCAST;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003487 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman509150f2009-05-27 07:58:35 +00003488 ExtOp = ISD::ANY_EXTEND;
3489 TruncOp = ISD::TRUNCATE;
3490 } else {
3491 ExtOp = ISD::FP_EXTEND;
3492 TruncOp = ISD::FP_ROUND;
3493 }
3494 Tmp1 = Node->getOperand(0);
3495 // Promote each of the values to the new type.
3496 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3497 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
3498 // Perform the larger operation, then round down.
3499 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
3500 if (TruncOp != ISD::FP_ROUND)
Bill Wendling775db972009-12-23 00:28:23 +00003501 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003502 else
Bill Wendling775db972009-12-23 00:28:23 +00003503 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman509150f2009-05-27 07:58:35 +00003504 DAG.getIntPtrConstant(0));
Bill Wendling775db972009-12-23 00:28:23 +00003505 Results.push_back(Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003506 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003507 }
Eli Friedman509150f2009-05-27 07:58:35 +00003508 case ISD::VECTOR_SHUFFLE: {
3509 SmallVector<int, 8> Mask;
3510 cast<ShuffleVectorSDNode>(Node)->getMask(Mask);
3511
3512 // Cast the two input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003513 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
3514 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman509150f2009-05-27 07:58:35 +00003515
3516 // Convert the shuffle mask to the right # elements.
Bill Wendling775db972009-12-23 00:28:23 +00003517 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003518 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003519 Results.push_back(Tmp1);
3520 break;
3521 }
Eli Friedmanad754602009-05-28 03:56:57 +00003522 case ISD::SETCC: {
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003523 unsigned ExtOp = ISD::FP_EXTEND;
3524 if (NVT.isInteger()) {
3525 ISD::CondCode CCCode =
3526 cast<CondCodeSDNode>(Node->getOperand(2))->get();
3527 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedmanad754602009-05-28 03:56:57 +00003528 }
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003529 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3530 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedmanad754602009-05-28 03:56:57 +00003531 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3532 Tmp1, Tmp2, Node->getOperand(2)));
3533 break;
3534 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003535 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003536
3537 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003538 if (!Results.empty())
3539 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003540}
3541
Chris Lattner3e928bb2005-01-07 07:47:09 +00003542// SelectionDAG::Legalize - This is the entry point for the file.
3543//
Dan Gohman975716a2011-05-16 22:19:54 +00003544void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00003545 /// run - This is the main entry point to this class.
3546 ///
Dan Gohman975716a2011-05-16 22:19:54 +00003547 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00003548}