blob: a66ccc1cca2fc289ab3730ff96067c561c0f343b [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,
Benjamin Kramered4c8c62012-01-15 13:16:05 +000088 ArrayRef<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,
Benjamin Kramered4c8c62012-01-15 13:16:05 +0000180 ArrayRef<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) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000296 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
297 "unaligned indexed stores not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000298 SDValue Chain = ST->getChain();
299 SDValue Ptr = ST->getBasePtr();
300 SDValue Val = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +0000301 EVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000302 int Alignment = ST->getAlignment();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000303 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000304 if (ST->getMemoryVT().isFloatingPoint() ||
305 ST->getMemoryVT().isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000306 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000307 if (TLI.isTypeLegal(intVT)) {
308 // Expand to a bitconvert of the value to the integer type of the
309 // same size, then a (misaligned) int store.
310 // FIXME: Does not handle truncating floating point stores!
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000311 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman65fd6562011-11-03 21:49:52 +0000312 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
313 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000314 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000315 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000316 }
Dan Gohman1b328962011-05-17 22:22:52 +0000317 // Do a (aligned) store to a stack slot, then copy from the stack slot
318 // to the final destination using (unaligned) integer loads and stores.
319 EVT StoredVT = ST->getMemoryVT();
320 EVT RegVT =
321 TLI.getRegisterType(*DAG.getContext(),
322 EVT::getIntegerVT(*DAG.getContext(),
323 StoredVT.getSizeInBits()));
324 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
325 unsigned RegBytes = RegVT.getSizeInBits() / 8;
326 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
327
328 // Make sure the stack slot is also aligned for the register type.
329 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
330
331 // Perform the original store, only redirected to the stack slot.
332 SDValue Store = DAG.getTruncStore(Chain, dl,
333 Val, StackPtr, MachinePointerInfo(),
334 StoredVT, false, false, 0);
335 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
336 SmallVector<SDValue, 8> Stores;
337 unsigned Offset = 0;
338
339 // Do all but one copies using the full register width.
340 for (unsigned i = 1; i < NumRegs; i++) {
341 // Load one integer register's worth from the stack slot.
342 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
343 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000344 false, false, false, 0);
Dan Gohman1b328962011-05-17 22:22:52 +0000345 // Store it to the final location. Remember the store.
346 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
347 ST->getPointerInfo().getWithOffset(Offset),
348 ST->isVolatile(), ST->isNonTemporal(),
349 MinAlign(ST->getAlignment(), Offset)));
350 // Increment the pointers.
351 Offset += RegBytes;
352 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
353 Increment);
354 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
355 }
356
357 // The last store may be partial. Do a truncating store. On big-endian
358 // machines this requires an extending load from the stack slot to ensure
359 // that the bits are in the right place.
360 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
361 8 * (StoredBytes - Offset));
362
363 // Load from the stack slot.
364 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
365 MachinePointerInfo(),
366 MemVT, false, false, 0);
367
368 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
369 ST->getPointerInfo()
370 .getWithOffset(Offset),
371 MemVT, ST->isVolatile(),
372 ST->isNonTemporal(),
373 MinAlign(ST->getAlignment(), Offset)));
374 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman65fd6562011-11-03 21:49:52 +0000375 SDValue Result =
376 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
377 Stores.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +0000378 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000379 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000380 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000381 assert(ST->getMemoryVT().isInteger() &&
382 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000383 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000384 // Get the half-size VT
Ken Dyckbceddbd2009-12-17 20:09:43 +0000385 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000386 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000387 int IncrementSize = NumBits / 8;
388
389 // Divide the stored value in two parts.
Owen Anderson95771af2011-02-25 21:41:48 +0000390 SDValue ShiftAmount = DAG.getConstant(NumBits,
391 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman475871a2008-07-27 21:46:04 +0000392 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000393 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000394
395 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000396 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000397 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000398 ST->getPointerInfo(), NewStoredVT,
David Greene1e559442010-02-15 17:00:31 +0000399 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000400 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000401 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000402 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000403 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000404 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene1e559442010-02-15 17:00:31 +0000405 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
406 Alignment);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000407
Dan Gohman65fd6562011-11-03 21:49:52 +0000408 SDValue Result =
409 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000410 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000411}
412
413/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman65fd6562011-11-03 21:49:52 +0000414static void
415ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
416 const TargetLowering &TLI,
417 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000418 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
419 "unaligned indexed loads not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000420 SDValue Chain = LD->getChain();
421 SDValue Ptr = LD->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +0000422 EVT VT = LD->getValueType(0);
423 EVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000424 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000425 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000426 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000427 if (TLI.isTypeLegal(intVT)) {
428 // Expand to a (misaligned) integer load of the same size,
429 // then bitconvert to floating point or vector.
Chris Lattnerecf42c42010-09-21 16:36:31 +0000430 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
431 LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000432 LD->isNonTemporal(),
433 LD->isInvariant(), LD->getAlignment());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000434 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000435 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000436 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000437
Dan Gohman65fd6562011-11-03 21:49:52 +0000438 ValResult = Result;
439 ChainResult = Chain;
440 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000441 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000442
Chris Lattnerecf42c42010-09-21 16:36:31 +0000443 // Copy the value to a (aligned) stack slot using (unaligned) integer
444 // loads and stores, then do a (aligned) load from the stack slot.
445 EVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
446 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
447 unsigned RegBytes = RegVT.getSizeInBits() / 8;
448 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
449
450 // Make sure the stack slot is also aligned for the register type.
451 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
452
453 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
454 SmallVector<SDValue, 8> Stores;
455 SDValue StackPtr = StackBase;
456 unsigned Offset = 0;
457
458 // Do all but one copies using the full register width.
459 for (unsigned i = 1; i < NumRegs; i++) {
460 // Load one integer register's worth from the original location.
461 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
462 LD->getPointerInfo().getWithOffset(Offset),
463 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000464 LD->isInvariant(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000465 MinAlign(LD->getAlignment(), Offset));
466 // Follow the load with a store to the stack slot. Remember the store.
467 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000468 MachinePointerInfo(), false, false, 0));
Chris Lattnerecf42c42010-09-21 16:36:31 +0000469 // Increment the pointers.
470 Offset += RegBytes;
471 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
472 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
473 Increment);
474 }
475
476 // The last copy may be partial. Do an extending load.
477 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
478 8 * (LoadedBytes - Offset));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000479 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000480 LD->getPointerInfo().getWithOffset(Offset),
481 MemVT, LD->isVolatile(),
482 LD->isNonTemporal(),
483 MinAlign(LD->getAlignment(), Offset));
484 // Follow the load with a store to the stack slot. Remember the store.
485 // On big-endian machines this requires a truncating store to ensure
486 // that the bits end up in the right place.
487 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
488 MachinePointerInfo(), MemVT,
489 false, false, 0));
490
491 // The order of the stores doesn't matter - say it with a TokenFactor.
492 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
493 Stores.size());
494
495 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastingsa9011292011-02-16 16:23:55 +0000496 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000497 MachinePointerInfo(), LoadedVT, false, false, 0);
498
499 // Callers expect a MERGE_VALUES node.
Dan Gohman65fd6562011-11-03 21:49:52 +0000500 ValResult = Load;
501 ChainResult = TF;
502 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000503 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000504 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000505 "Unaligned load of unsupported type.");
506
Dale Johannesen8155d642008-02-27 22:36:00 +0000507 // Compute the new VT that is half the size of the old one. This is an
508 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000509 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Andersone50ed302009-08-10 22:56:29 +0000510 EVT NewLoadedVT;
Owen Anderson23b9b192009-08-12 00:36:31 +0000511 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000512 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000513
Chris Lattnere400af82007-11-19 21:38:03 +0000514 unsigned Alignment = LD->getAlignment();
515 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000516 ISD::LoadExtType HiExtType = LD->getExtensionType();
517
518 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
519 if (HiExtType == ISD::NON_EXTLOAD)
520 HiExtType = ISD::ZEXTLOAD;
521
522 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000523 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000524 if (TLI.isLittleEndian()) {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000525 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000526 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000527 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000528 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000529 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000530 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000531 LD->getPointerInfo().getWithOffset(IncrementSize),
532 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000533 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000534 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000535 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000536 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000537 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000538 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000539 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000540 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000541 LD->getPointerInfo().getWithOffset(IncrementSize),
542 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000543 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000544 }
545
546 // aggregate the two parts
Owen Anderson95771af2011-02-25 21:41:48 +0000547 SDValue ShiftAmount = DAG.getConstant(NumBits,
548 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000549 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
550 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000551
Owen Anderson825b72b2009-08-11 20:47:22 +0000552 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000553 Hi.getValue(1));
554
Dan Gohman65fd6562011-11-03 21:49:52 +0000555 ValResult = Result;
556 ChainResult = TF;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000557}
Evan Cheng912095b2007-01-04 21:56:39 +0000558
Nate Begeman68679912008-04-25 18:07:40 +0000559/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
560/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
561/// is necessary to spill the vector being inserted into to memory, perform
562/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000563SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000564PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
565 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000566 SDValue Tmp1 = Vec;
567 SDValue Tmp2 = Val;
568 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000569
Nate Begeman68679912008-04-25 18:07:40 +0000570 // If the target doesn't support this, we have to spill the input vector
571 // to a temporary stack slot, update the element, then reload it. This is
572 // badness. We could also load the value into a vector register (either
573 // with a "move to register" or "extload into register" instruction, then
574 // permute it into place, if the idx is a constant and if the idx is
575 // supported by the target.
Owen Andersone50ed302009-08-10 22:56:29 +0000576 EVT VT = Tmp1.getValueType();
577 EVT EltVT = VT.getVectorElementType();
578 EVT IdxVT = Tmp3.getValueType();
579 EVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000580 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000581
Evan Chengff89dcb2009-10-18 18:16:27 +0000582 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
583
Nate Begeman68679912008-04-25 18:07:40 +0000584 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000585 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +0000586 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +0000587 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000588
589 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000590 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000591 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000592 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +0000593 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000594 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
595 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000596 // Store the scalar value.
Chris Lattner85ca1062010-09-21 07:32:19 +0000597 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene1e559442010-02-15 17:00:31 +0000598 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000599 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000600 return DAG.getLoad(VT, dl, Ch, StackPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000601 MachinePointerInfo::getFixedStack(SPFI), false, false,
602 false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000603}
604
Mon P Wange9f10152008-12-09 05:46:39 +0000605
Eli Friedman3f727d62009-05-27 02:16:40 +0000606SDValue SelectionDAGLegalize::
607ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, DebugLoc dl) {
608 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
609 // SCALAR_TO_VECTOR requires that the type of the value being inserted
610 // match the element type of the vector being created, except for
611 // integers in which case the inserted value can be over width.
Owen Andersone50ed302009-08-10 22:56:29 +0000612 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedman3f727d62009-05-27 02:16:40 +0000613 if (Val.getValueType() == EltVT ||
614 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
615 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
616 Vec.getValueType(), Val);
617
618 unsigned NumElts = Vec.getValueType().getVectorNumElements();
619 // We generate a shuffle of InVec and ScVec, so the shuffle mask
620 // should be 0,1,2,3,4,5... with the appropriate element replaced with
621 // elt 0 of the RHS.
622 SmallVector<int, 8> ShufOps;
623 for (unsigned i = 0; i != NumElts; ++i)
624 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
625
626 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
627 &ShufOps[0]);
628 }
629 }
630 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
631}
632
Eli Friedman7ef3d172009-06-06 07:04:42 +0000633SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
634 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
635 // FIXME: We shouldn't do this for TargetConstantFP's.
636 // FIXME: move this to the DAG Combiner! Note that we can't regress due
637 // to phase ordering between legalized code and the dag combiner. This
638 // probably means that we need to integrate dag combiner and legalizer
639 // together.
640 // We generally can't do this one for long doubles.
641 SDValue Tmp1 = ST->getChain();
642 SDValue Tmp2 = ST->getBasePtr();
643 SDValue Tmp3;
Eli Friedman7ef3d172009-06-06 07:04:42 +0000644 unsigned Alignment = ST->getAlignment();
645 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +0000646 bool isNonTemporal = ST->isNonTemporal();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000647 DebugLoc dl = ST->getDebugLoc();
648 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000649 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohman75b10042011-07-15 22:39:09 +0000650 TLI.isTypeLegal(MVT::i32)) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000651 Tmp3 = DAG.getConstant(CFP->getValueAPF().
652 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson825b72b2009-08-11 20:47:22 +0000653 MVT::i32);
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000654 return DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
655 isVolatile, isNonTemporal, Alignment);
656 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000657
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000658 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000659 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohman75b10042011-07-15 22:39:09 +0000660 if (TLI.isTypeLegal(MVT::i64)) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000661 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +0000662 zextOrTrunc(64), MVT::i64);
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000663 return DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
664 isVolatile, isNonTemporal, Alignment);
665 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000666
Dan Gohman75b10042011-07-15 22:39:09 +0000667 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000668 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
669 // stores. If the target supports neither 32- nor 64-bits, this
670 // xform is certainly not worth it.
671 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad40f8f622010-12-07 08:25:19 +0000672 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000673 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000674 if (TLI.isBigEndian()) std::swap(Lo, Hi);
675
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000676 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getPointerInfo(), isVolatile,
677 isNonTemporal, Alignment);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000678 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
679 DAG.getIntPtrConstant(4));
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000680 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2,
681 ST->getPointerInfo().getWithOffset(4),
David Greene1e559442010-02-15 17:00:31 +0000682 isVolatile, isNonTemporal, MinAlign(Alignment, 4U));
Eli Friedman7ef3d172009-06-06 07:04:42 +0000683
Owen Anderson825b72b2009-08-11 20:47:22 +0000684 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000685 }
686 }
687 }
Evan Cheng8e23e812011-04-01 00:42:02 +0000688 return SDValue(0, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000689}
690
Dan Gohman6a109f92011-07-15 21:42:20 +0000691/// LegalizeOp - Return a legal replacement for the given operation, with
692/// all legal operands.
Dan Gohman65fd6562011-11-03 21:49:52 +0000693void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
694 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
695 return;
Scott Michelfdc40a02009-02-17 22:15:04 +0000696
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000697 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +0000698
Eli Friedman1fde9c52009-05-24 02:46:31 +0000699 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +0000700 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
701 TargetLowering::TypeLegal &&
Eli Friedman1fde9c52009-05-24 02:46:31 +0000702 "Unexpected illegal type!");
703
704 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +0000705 assert((TLI.getTypeAction(*DAG.getContext(),
706 Node->getOperand(i).getValueType()) ==
707 TargetLowering::TypeLegal ||
Eli Friedman1fde9c52009-05-24 02:46:31 +0000708 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
709 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000710
Dan Gohman475871a2008-07-27 21:46:04 +0000711 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +0000712 bool isCustom = false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000713
Eli Friedman8c377c72009-05-27 01:25:56 +0000714 // Figure out the correct action; the way to query this varies by opcode
Bill Wendling6b9a2932011-01-26 22:21:35 +0000715 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman8c377c72009-05-27 01:25:56 +0000716 bool SimpleFinishLegalizing = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000717 switch (Node->getOpcode()) {
Eli Friedman8c377c72009-05-27 01:25:56 +0000718 case ISD::INTRINSIC_W_CHAIN:
719 case ISD::INTRINSIC_WO_CHAIN:
720 case ISD::INTRINSIC_VOID:
721 case ISD::VAARG:
722 case ISD::STACKSAVE:
Owen Anderson825b72b2009-08-11 20:47:22 +0000723 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman8c377c72009-05-27 01:25:56 +0000724 break;
725 case ISD::SINT_TO_FP:
726 case ISD::UINT_TO_FP:
727 case ISD::EXTRACT_VECTOR_ELT:
728 Action = TLI.getOperationAction(Node->getOpcode(),
729 Node->getOperand(0).getValueType());
730 break;
731 case ISD::FP_ROUND_INREG:
732 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +0000733 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +0000734 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
735 break;
736 }
Eli Friedman327236c2011-08-24 20:50:09 +0000737 case ISD::ATOMIC_STORE: {
738 Action = TLI.getOperationAction(Node->getOpcode(),
739 Node->getOperand(2).getValueType());
740 break;
741 }
Eli Friedman3be2e512009-05-28 03:06:16 +0000742 case ISD::SELECT_CC:
743 case ISD::SETCC:
744 case ISD::BR_CC: {
745 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
746 Node->getOpcode() == ISD::SETCC ? 2 : 1;
747 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Owen Andersone50ed302009-08-10 22:56:29 +0000748 EVT OpVT = Node->getOperand(CompareOperand).getValueType();
Eli Friedman3be2e512009-05-28 03:06:16 +0000749 ISD::CondCode CCCode =
750 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
751 Action = TLI.getCondCodeAction(CCCode, OpVT);
752 if (Action == TargetLowering::Legal) {
753 if (Node->getOpcode() == ISD::SELECT_CC)
754 Action = TLI.getOperationAction(Node->getOpcode(),
755 Node->getValueType(0));
756 else
757 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
758 }
759 break;
760 }
Eli Friedman8c377c72009-05-27 01:25:56 +0000761 case ISD::LOAD:
762 case ISD::STORE:
Eli Friedmanad754602009-05-28 03:56:57 +0000763 // FIXME: Model these properly. LOAD and STORE are complicated, and
764 // STORE expects the unlegalized operand in some cases.
765 SimpleFinishLegalizing = false;
766 break;
Eli Friedman8c377c72009-05-27 01:25:56 +0000767 case ISD::CALLSEQ_START:
768 case ISD::CALLSEQ_END:
Eli Friedmanad754602009-05-28 03:56:57 +0000769 // FIXME: This shouldn't be necessary. These nodes have special properties
770 // dealing with the recursive nature of legalization. Removing this
771 // special case should be done as part of making LegalizeDAG non-recursive.
772 SimpleFinishLegalizing = false;
773 break;
Eli Friedman8c377c72009-05-27 01:25:56 +0000774 case ISD::EXTRACT_ELEMENT:
775 case ISD::FLT_ROUNDS_:
776 case ISD::SADDO:
777 case ISD::SSUBO:
778 case ISD::UADDO:
779 case ISD::USUBO:
780 case ISD::SMULO:
781 case ISD::UMULO:
782 case ISD::FPOWI:
783 case ISD::MERGE_VALUES:
784 case ISD::EH_RETURN:
785 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachc66e150b2010-07-06 23:44:52 +0000786 case ISD::EH_SJLJ_SETJMP:
787 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000788 // These operations lie about being legal: when they claim to be legal,
789 // they should actually be expanded.
Eli Friedman8c377c72009-05-27 01:25:56 +0000790 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
791 if (Action == TargetLowering::Legal)
792 Action = TargetLowering::Expand;
793 break;
Duncan Sands4a544a72011-09-06 13:37:06 +0000794 case ISD::INIT_TRAMPOLINE:
795 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman8c377c72009-05-27 01:25:56 +0000796 case ISD::FRAMEADDR:
797 case ISD::RETURNADDR:
Eli Friedman4bc8c712009-05-27 12:20:41 +0000798 // These operations lie about being legal: when they claim to be legal,
799 // they should actually be custom-lowered.
800 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
801 if (Action == TargetLowering::Legal)
802 Action = TargetLowering::Custom;
Eli Friedman8c377c72009-05-27 01:25:56 +0000803 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000804 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000805 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman8c377c72009-05-27 01:25:56 +0000806 Action = TargetLowering::Legal;
807 } else {
808 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000809 }
Eli Friedman8c377c72009-05-27 01:25:56 +0000810 break;
811 }
812
813 if (SimpleFinishLegalizing) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000814 SmallVector<SDValue, 8> Ops;
Eli Friedman8c377c72009-05-27 01:25:56 +0000815 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman65fd6562011-11-03 21:49:52 +0000816 Ops.push_back(Node->getOperand(i));
Eli Friedman8c377c72009-05-27 01:25:56 +0000817 switch (Node->getOpcode()) {
818 default: break;
Eli Friedman8c377c72009-05-27 01:25:56 +0000819 case ISD::SHL:
820 case ISD::SRL:
821 case ISD::SRA:
822 case ISD::ROTL:
823 case ISD::ROTR:
824 // Legalizing shifts/rotates requires adjusting the shift amount
825 // to the appropriate width.
Dan Gohman65fd6562011-11-03 21:49:52 +0000826 if (!Ops[1].getValueType().isVector()) {
827 SDValue SAO = DAG.getShiftAmountOperand(Ops[0].getValueType(), Ops[1]);
828 HandleSDNode Handle(SAO);
829 LegalizeOp(SAO.getNode());
830 Ops[1] = Handle.getValue();
831 }
Eli Friedman8c377c72009-05-27 01:25:56 +0000832 break;
Dan Gohmandb8dc2b2009-08-18 23:36:17 +0000833 case ISD::SRL_PARTS:
834 case ISD::SRA_PARTS:
835 case ISD::SHL_PARTS:
836 // Legalizing shifts/rotates requires adjusting the shift amount
837 // to the appropriate width.
Dan Gohman65fd6562011-11-03 21:49:52 +0000838 if (!Ops[2].getValueType().isVector()) {
839 SDValue SAO = DAG.getShiftAmountOperand(Ops[0].getValueType(), Ops[2]);
840 HandleSDNode Handle(SAO);
841 LegalizeOp(SAO.getNode());
842 Ops[2] = Handle.getValue();
843 }
Dan Gohman2c9489d2009-08-18 23:52:48 +0000844 break;
Eli Friedman8c377c72009-05-27 01:25:56 +0000845 }
846
Dan Gohman65fd6562011-11-03 21:49:52 +0000847 SDNode *NewNode = DAG.UpdateNodeOperands(Node, Ops.data(), Ops.size());
848 if (NewNode != Node) {
849 DAG.ReplaceAllUsesWith(Node, NewNode, this);
850 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
851 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman0e3642a2011-11-11 23:58:27 +0000852 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +0000853 Node = NewNode;
854 }
Eli Friedman8c377c72009-05-27 01:25:56 +0000855 switch (Action) {
856 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +0000857 return;
Eli Friedman8c377c72009-05-27 01:25:56 +0000858 case TargetLowering::Custom:
859 // FIXME: The handling for custom lowering with multiple results is
860 // a complete mess.
Dan Gohman65fd6562011-11-03 21:49:52 +0000861 Tmp1 = TLI.LowerOperation(SDValue(Node, 0), DAG);
Eli Friedman8c377c72009-05-27 01:25:56 +0000862 if (Tmp1.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000863 SmallVector<SDValue, 8> ResultVals;
Eli Friedman8c377c72009-05-27 01:25:56 +0000864 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
865 if (e == 1)
866 ResultVals.push_back(Tmp1);
867 else
868 ResultVals.push_back(Tmp1.getValue(i));
869 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000870 if (Tmp1.getNode() != Node || Tmp1.getResNo() != 0) {
871 DAG.ReplaceAllUsesWith(Node, ResultVals.data(), this);
872 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
873 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000874 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +0000875 }
876 return;
Eli Friedman8c377c72009-05-27 01:25:56 +0000877 }
878
879 // FALL THROUGH
880 case TargetLowering::Expand:
Dan Gohman65fd6562011-11-03 21:49:52 +0000881 ExpandNode(Node);
882 return;
Eli Friedman8c377c72009-05-27 01:25:56 +0000883 case TargetLowering::Promote:
Dan Gohman65fd6562011-11-03 21:49:52 +0000884 PromoteNode(Node);
885 return;
Eli Friedman8c377c72009-05-27 01:25:56 +0000886 }
887 }
888
889 switch (Node->getOpcode()) {
890 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000891#ifndef NDEBUG
David Greene993aace2010-01-05 01:24:53 +0000892 dbgs() << "NODE: ";
893 Node->dump( &DAG);
894 dbgs() << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000895#endif
Chris Lattner35a38932010-04-07 23:47:51 +0000896 assert(0 && "Do not know how to legalize this operator!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +0000897
Dan Gohman65fd6562011-11-03 21:49:52 +0000898 case ISD::CALLSEQ_START:
Dan Gohman6f3ddef2011-10-29 00:41:52 +0000899 case ISD::CALLSEQ_END:
Dan Gohman65fd6562011-11-03 21:49:52 +0000900 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +0000901 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +0000902 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +0000903 Tmp1 = LD->getChain(); // Legalize the chain.
904 Tmp2 = LD->getBasePtr(); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +0000905
Evan Cheng466685d2006-10-09 20:57:25 +0000906 ISD::LoadExtType ExtType = LD->getExtensionType();
907 if (ExtType == ISD::NON_EXTLOAD) {
Owen Andersone50ed302009-08-10 22:56:29 +0000908 EVT VT = Node->getValueType(0);
Dan Gohman65fd6562011-11-03 21:49:52 +0000909 Tmp3 = SDValue(Node, 0);
910 Tmp4 = SDValue(Node, 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000911
Evan Cheng466685d2006-10-09 20:57:25 +0000912 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Chris Lattner35a38932010-04-07 23:47:51 +0000913 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000914 case TargetLowering::Legal:
915 // If this is an unaligned load and the target doesn't support it,
916 // expand it.
Benjamin Kramerbc037cf2009-08-15 20:46:16 +0000917 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000918 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
Evan Chenge96507c2009-08-15 08:38:52 +0000919 unsigned ABIAlignment = TLI.getTargetData()->getABITypeAlignment(Ty);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000920 if (LD->getAlignment() < ABIAlignment){
Dan Gohman65fd6562011-11-03 21:49:52 +0000921 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
922 DAG, TLI, Tmp3, Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000923 }
924 }
925 break;
Evan Cheng466685d2006-10-09 20:57:25 +0000926 case TargetLowering::Custom:
927 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000928 if (Tmp1.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000929 Tmp3 = Tmp1;
930 Tmp4 = Tmp1.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +0000931 }
Evan Cheng466685d2006-10-09 20:57:25 +0000932 break;
933 case TargetLowering::Promote: {
934 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000935 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +0000936 // Change base type to a different vector type.
Owen Andersone50ed302009-08-10 22:56:29 +0000937 EVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +0000938
Chris Lattnerecf42c42010-09-21 16:36:31 +0000939 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +0000940 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000941 LD->isInvariant(), LD->getAlignment());
Dan Gohman65fd6562011-11-03 21:49:52 +0000942 Tmp3 = DAG.getNode(ISD::BITCAST, dl, VT, Tmp1);
943 Tmp4 = Tmp1.getValue(1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000944 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +0000945 }
Evan Cheng466685d2006-10-09 20:57:25 +0000946 }
Eli Friedman0e3642a2011-11-11 23:58:27 +0000947 if (Tmp4.getNode() != Node) {
948 assert(Tmp3.getNode() != Node && "Load must be completely replaced");
949 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp3);
950 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Tmp4);
951 ReplacedNode(Node);
952 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000953 return;
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000954 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000955
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000956 EVT SrcVT = LD->getMemoryVT();
957 unsigned SrcWidth = SrcVT.getSizeInBits();
958 unsigned Alignment = LD->getAlignment();
959 bool isVolatile = LD->isVolatile();
960 bool isNonTemporal = LD->isNonTemporal();
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000961
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000962 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
963 // Some targets pretend to have an i1 loading operation, and actually
964 // load an i8. This trick is correct for ZEXTLOAD because the top 7
965 // bits are guaranteed to be zero; it helps the optimizers understand
966 // that these bits are zero. It is also useful for EXTLOAD, since it
967 // tells the optimizers that those bits are undefined. It would be
968 // nice to have an effective generic way of getting these benefits...
969 // Until such a way is found, don't insist on promoting i1 here.
970 (SrcVT != MVT::i1 ||
971 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
972 // Promote to a byte-sized load if not loading an integral number of
973 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
974 unsigned NewWidth = SrcVT.getStoreSizeInBits();
975 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
976 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000977
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000978 // The extra bits are guaranteed to be zero, since we stored them that
979 // way. A zext load from NVT thus automatically gives zext from SrcVT.
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000980
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000981 ISD::LoadExtType NewExtType =
982 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000983
Dan Gohman65fd6562011-11-03 21:49:52 +0000984 SDValue Result =
985 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
986 Tmp1, Tmp2, LD->getPointerInfo(),
987 NVT, isVolatile, isNonTemporal, Alignment);
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000988
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000989 Ch = Result.getValue(1); // The chain.
Duncan Sandsf9c98e62008-01-23 20:39:46 +0000990
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000991 if (ExtType == ISD::SEXTLOAD)
992 // Having the top bits zero doesn't help when sign extending.
993 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
994 Result.getValueType(),
995 Result, DAG.getValueType(SrcVT));
996 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
997 // All the top bits are guaranteed to be zero - inform the optimizers.
998 Result = DAG.getNode(ISD::AssertZext, dl,
999 Result.getValueType(), Result,
1000 DAG.getValueType(SrcVT));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001001
Dan Gohman65fd6562011-11-03 21:49:52 +00001002 Tmp1 = Result;
1003 Tmp2 = Ch;
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001004 } else if (SrcWidth & (SrcWidth - 1)) {
1005 // If not loading a power-of-2 number of bits, expand as two loads.
1006 assert(!SrcVT.isVector() && "Unsupported extload!");
1007 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
1008 assert(RoundWidth < SrcWidth);
1009 unsigned ExtraWidth = SrcWidth - RoundWidth;
1010 assert(ExtraWidth < RoundWidth);
1011 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
1012 "Load size not an integral number of bytes!");
1013 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
1014 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
1015 SDValue Lo, Hi, Ch;
1016 unsigned IncrementSize;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001017
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001018 if (TLI.isLittleEndian()) {
1019 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1020 // Load the bottom RoundWidth bits.
Stuart Hastingsa9011292011-02-16 16:23:55 +00001021 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001022 Tmp1, Tmp2,
1023 LD->getPointerInfo(), RoundVT, isVolatile,
1024 isNonTemporal, Alignment);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001025
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001026 // Load the remaining ExtraWidth bits.
1027 IncrementSize = RoundWidth / 8;
1028 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
1029 DAG.getIntPtrConstant(IncrementSize));
Stuart Hastingsa9011292011-02-16 16:23:55 +00001030 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001031 LD->getPointerInfo().getWithOffset(IncrementSize),
1032 ExtraVT, isVolatile, isNonTemporal,
1033 MinAlign(Alignment, IncrementSize));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001034
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001035 // Build a factor node to remember that this load is independent of
1036 // the other one.
1037 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1038 Hi.getValue(1));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001039
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001040 // Move the top bits to the right place.
1041 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Owen Anderson95771af2011-02-25 21:41:48 +00001042 DAG.getConstant(RoundWidth,
1043 TLI.getShiftAmountTy(Hi.getValueType())));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001044
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001045 // Join the hi and lo parts.
Dan Gohman65fd6562011-11-03 21:49:52 +00001046 Tmp1 = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001047 } else {
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001048 // Big endian - avoid unaligned loads.
1049 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1050 // Load the top RoundWidth bits.
Stuart Hastingsa9011292011-02-16 16:23:55 +00001051 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001052 LD->getPointerInfo(), RoundVT, isVolatile,
1053 isNonTemporal, Alignment);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001054
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001055 // Load the remaining ExtraWidth bits.
1056 IncrementSize = RoundWidth / 8;
1057 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
1058 DAG.getIntPtrConstant(IncrementSize));
1059 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Stuart Hastingsa9011292011-02-16 16:23:55 +00001060 dl, Node->getValueType(0), Tmp1, Tmp2,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001061 LD->getPointerInfo().getWithOffset(IncrementSize),
1062 ExtraVT, isVolatile, isNonTemporal,
1063 MinAlign(Alignment, IncrementSize));
1064
1065 // Build a factor node to remember that this load is independent of
1066 // the other one.
1067 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1068 Hi.getValue(1));
1069
1070 // Move the top bits to the right place.
1071 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Owen Anderson95771af2011-02-25 21:41:48 +00001072 DAG.getConstant(ExtraWidth,
1073 TLI.getShiftAmountTy(Hi.getValueType())));
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001074
1075 // Join the hi and lo parts.
Dan Gohman65fd6562011-11-03 21:49:52 +00001076 Tmp1 = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Evan Cheng466685d2006-10-09 20:57:25 +00001077 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001078
Dan Gohman65fd6562011-11-03 21:49:52 +00001079 Tmp2 = Ch;
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001080 } else {
1081 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
1082 default: assert(0 && "This action is not supported yet!");
1083 case TargetLowering::Custom:
1084 isCustom = true;
1085 // FALLTHROUGH
1086 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +00001087 Tmp1 = SDValue(Node, 0);
1088 Tmp2 = SDValue(Node, 1);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001089
1090 if (isCustom) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001091 Tmp3 = TLI.LowerOperation(SDValue(Node, 0), DAG);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001092 if (Tmp3.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001093 Tmp1 = Tmp3;
1094 Tmp2 = Tmp3.getValue(1);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001095 }
1096 } else {
1097 // If this is an unaligned load and the target doesn't support it,
1098 // expand it.
1099 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001100 Type *Ty =
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001101 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1102 unsigned ABIAlignment =
1103 TLI.getTargetData()->getABITypeAlignment(Ty);
1104 if (LD->getAlignment() < ABIAlignment){
Dan Gohman65fd6562011-11-03 21:49:52 +00001105 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
1106 DAG, TLI, Tmp1, Tmp2);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001107 }
1108 }
1109 }
1110 break;
1111 case TargetLowering::Expand:
Dan Gohman75b10042011-07-15 22:39:09 +00001112 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) && TLI.isTypeLegal(SrcVT)) {
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001113 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2,
1114 LD->getPointerInfo(),
1115 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001116 LD->isInvariant(), LD->getAlignment());
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001117 unsigned ExtendOp;
1118 switch (ExtType) {
1119 case ISD::EXTLOAD:
1120 ExtendOp = (SrcVT.isFloatingPoint() ?
1121 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1122 break;
1123 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1124 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1125 default: llvm_unreachable("Unexpected extend load type!");
1126 }
Dan Gohman65fd6562011-11-03 21:49:52 +00001127 Tmp1 = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1128 Tmp2 = Load.getValue(1);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001129 break;
1130 }
Nadav Rotemc2492c22011-06-14 08:11:52 +00001131
Nadav Roteme9b58d02011-10-15 07:41:10 +00001132 assert(!SrcVT.isVector() &&
1133 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemc2492c22011-06-14 08:11:52 +00001134
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001135 // FIXME: This does not work for vectors on most targets. Sign- and
1136 // zero-extend operations are currently folded into extending loads,
1137 // whether they are legal or not, and then we end up here without any
1138 // support for legalizing them.
1139 assert(ExtType != ISD::EXTLOAD &&
1140 "EXTLOAD should always be supported!");
1141 // Turn the unsupported load into an EXTLOAD followed by an explicit
1142 // zero/sign extend inreg.
Dan Gohman65fd6562011-11-03 21:49:52 +00001143 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
1144 Tmp1, Tmp2, LD->getPointerInfo(), SrcVT,
1145 LD->isVolatile(), LD->isNonTemporal(),
1146 LD->getAlignment());
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001147 SDValue ValRes;
1148 if (ExtType == ISD::SEXTLOAD)
1149 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1150 Result.getValueType(),
1151 Result, DAG.getValueType(SrcVT));
1152 else
Dan Gohmandd11ea42011-01-13 01:06:51 +00001153 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Dan Gohman65fd6562011-11-03 21:49:52 +00001154 Tmp1 = ValRes;
1155 Tmp2 = Result.getValue(1);
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001156 break;
1157 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001158 }
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001159
1160 // Since loads produce two values, make sure to remember that we legalized
1161 // both of them.
Eli Friedman0e3642a2011-11-11 23:58:27 +00001162 if (Tmp2.getNode() != Node) {
1163 assert(Tmp1.getNode() != Node && "Load must be completely replaced");
1164 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp1);
1165 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Tmp2);
1166 ReplacedNode(Node);
1167 }
Dan Gohman65fd6562011-11-03 21:49:52 +00001168 break;
Chris Lattner01ff7212005-04-10 22:54:25 +00001169 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001170 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001171 StoreSDNode *ST = cast<StoreSDNode>(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001172 Tmp1 = ST->getChain();
1173 Tmp2 = ST->getBasePtr();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001174 unsigned Alignment = ST->getAlignment();
1175 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00001176 bool isNonTemporal = ST->isNonTemporal();
Chris Lattner3e928bb2005-01-07 07:47:09 +00001177
Evan Cheng8b2794a2006-10-13 21:14:26 +00001178 if (!ST->isTruncatingStore()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +00001179 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
Eli Friedman0e3642a2011-11-11 23:58:27 +00001180 ReplaceNode(ST, OptStore);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001181 break;
Chris Lattnerd93d46e2006-12-12 04:18:56 +00001182 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001183
Eli Friedman957bffa2009-05-24 08:42:01 +00001184 {
Dan Gohman65fd6562011-11-03 21:49:52 +00001185 Tmp3 = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00001186 EVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001187 switch (TLI.getOperationAction(ISD::STORE, VT)) {
Chris Lattner35a38932010-04-07 23:47:51 +00001188 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001189 case TargetLowering::Legal:
1190 // If this is an unaligned store and the target doesn't support it,
1191 // expand it.
Benjamin Kramerbc037cf2009-08-15 20:46:16 +00001192 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001193 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Jim Grosbach6e992612010-07-02 17:41:59 +00001194 unsigned ABIAlignment= TLI.getTargetData()->getABITypeAlignment(Ty);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001195 if (ST->getAlignment() < ABIAlignment)
Dan Gohman65fd6562011-11-03 21:49:52 +00001196 ExpandUnalignedStore(cast<StoreSDNode>(Node),
1197 DAG, TLI, this);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001198 }
1199 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00001200 case TargetLowering::Custom:
Dan Gohman65fd6562011-11-03 21:49:52 +00001201 Tmp1 = TLI.LowerOperation(SDValue(Node, 0), DAG);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001202 if (Tmp1.getNode())
1203 ReplaceNode(SDValue(Node, 0), Tmp1);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001204 break;
Dan Gohman65fd6562011-11-03 21:49:52 +00001205 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001206 assert(VT.isVector() && "Unknown legal promote case!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001207 Tmp3 = DAG.getNode(ISD::BITCAST, dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00001208 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dan Gohman65fd6562011-11-03 21:49:52 +00001209 SDValue Result =
1210 DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
1211 ST->getPointerInfo(), isVolatile,
1212 isNonTemporal, Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001213 ReplaceNode(SDValue(Node, 0), Result);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001214 break;
1215 }
Dan Gohman65fd6562011-11-03 21:49:52 +00001216 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00001217 break;
1218 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00001219 } else {
Dan Gohman65fd6562011-11-03 21:49:52 +00001220 Tmp3 = ST->getValue();
Evan Cheng8b2794a2006-10-13 21:14:26 +00001221
Owen Andersone50ed302009-08-10 22:56:29 +00001222 EVT StVT = ST->getMemoryVT();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001223 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00001224
Duncan Sands83ec4b62008-06-06 12:08:01 +00001225 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00001226 // Promote to a byte-sized store with upper bits zero if not
1227 // storing an integral number of bytes. For example, promote
1228 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Evan Chengadf97992010-04-15 01:25:27 +00001229 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
1230 StVT.getStoreSizeInBits());
Nadav Rotema1c415c2011-09-27 10:48:29 +00001231 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
Dan Gohman65fd6562011-11-03 21:49:52 +00001232 SDValue Result =
1233 DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
1234 NVT, isVolatile, isNonTemporal, Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001235 ReplaceNode(SDValue(Node, 0), Result);
Duncan Sands7e857202008-01-22 07:17:34 +00001236 } else if (StWidth & (StWidth - 1)) {
1237 // If not storing a power-of-2 number of bits, expand as two stores.
Ken Dyckbceddbd2009-12-17 20:09:43 +00001238 assert(!StVT.isVector() && "Unsupported truncstore!");
Duncan Sands7e857202008-01-22 07:17:34 +00001239 unsigned RoundWidth = 1 << Log2_32(StWidth);
1240 assert(RoundWidth < StWidth);
1241 unsigned ExtraWidth = StWidth - RoundWidth;
1242 assert(ExtraWidth < RoundWidth);
1243 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
1244 "Store size not an integral number of bytes!");
Owen Anderson23b9b192009-08-12 00:36:31 +00001245 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
1246 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00001247 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00001248 unsigned IncrementSize;
1249
1250 if (TLI.isLittleEndian()) {
1251 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
1252 // Store the bottom RoundWidth bits.
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001253 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
1254 RoundVT,
David Greene1e559442010-02-15 17:00:31 +00001255 isVolatile, isNonTemporal, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00001256
1257 // Store the remaining ExtraWidth bits.
1258 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00001259 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00001260 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00001261 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Owen Anderson95771af2011-02-25 21:41:48 +00001262 DAG.getConstant(RoundWidth,
1263 TLI.getShiftAmountTy(Tmp3.getValueType())));
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001264 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2,
1265 ST->getPointerInfo().getWithOffset(IncrementSize),
1266 ExtraVT, isVolatile, isNonTemporal,
Duncan Sands7e857202008-01-22 07:17:34 +00001267 MinAlign(Alignment, IncrementSize));
1268 } else {
1269 // Big endian - avoid unaligned stores.
1270 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
1271 // Store the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00001272 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Owen Anderson95771af2011-02-25 21:41:48 +00001273 DAG.getConstant(ExtraWidth,
1274 TLI.getShiftAmountTy(Tmp3.getValueType())));
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001275 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getPointerInfo(),
1276 RoundVT, isVolatile, isNonTemporal, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00001277
1278 // Store the remaining ExtraWidth bits.
1279 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00001280 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00001281 DAG.getIntPtrConstant(IncrementSize));
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001282 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2,
1283 ST->getPointerInfo().getWithOffset(IncrementSize),
1284 ExtraVT, isVolatile, isNonTemporal,
Duncan Sands7e857202008-01-22 07:17:34 +00001285 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001286 }
Duncan Sands7e857202008-01-22 07:17:34 +00001287
1288 // The order of the stores doesn't matter.
Dan Gohman65fd6562011-11-03 21:49:52 +00001289 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001290 ReplaceNode(SDValue(Node, 0), Result);
Duncan Sands7e857202008-01-22 07:17:34 +00001291 } else {
Duncan Sands7e857202008-01-22 07:17:34 +00001292 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
Chris Lattner35a38932010-04-07 23:47:51 +00001293 default: assert(0 && "This action is not supported yet!");
Duncan Sands7e857202008-01-22 07:17:34 +00001294 case TargetLowering::Legal:
1295 // If this is an unaligned store and the target doesn't support it,
1296 // expand it.
Benjamin Kramerbc037cf2009-08-15 20:46:16 +00001297 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001298 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Jim Grosbach6e992612010-07-02 17:41:59 +00001299 unsigned ABIAlignment= TLI.getTargetData()->getABITypeAlignment(Ty);
Duncan Sands7e857202008-01-22 07:17:34 +00001300 if (ST->getAlignment() < ABIAlignment)
Dan Gohman65fd6562011-11-03 21:49:52 +00001301 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
Duncan Sands7e857202008-01-22 07:17:34 +00001302 }
1303 break;
1304 case TargetLowering::Custom:
Eli Friedman0e3642a2011-11-11 23:58:27 +00001305 ReplaceNode(SDValue(Node, 0),
1306 TLI.LowerOperation(SDValue(Node, 0), DAG));
Duncan Sands7e857202008-01-22 07:17:34 +00001307 break;
Dan Gohmane63e5ab2011-07-15 22:51:43 +00001308 case TargetLowering::Expand:
Nadav Roteme9b58d02011-10-15 07:41:10 +00001309 assert(!StVT.isVector() &&
1310 "Vector Stores are handled in LegalizeVectorOps");
Nadav Rotemc2492c22011-06-14 08:11:52 +00001311
Duncan Sands7e857202008-01-22 07:17:34 +00001312 // TRUNCSTORE:i16 i32 -> STORE i16
Dan Gohman75b10042011-07-15 22:39:09 +00001313 assert(TLI.isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenca57b842009-02-02 23:46:53 +00001314 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
Dan Gohman65fd6562011-11-03 21:49:52 +00001315 SDValue Result =
1316 DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
1317 isVolatile, isNonTemporal, Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001318 ReplaceNode(SDValue(Node, 0), Result);
Duncan Sands7e857202008-01-22 07:17:34 +00001319 break;
1320 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001321 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001322 }
1323 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001324 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001325 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001326}
1327
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001328SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1329 SDValue Vec = Op.getOperand(0);
1330 SDValue Idx = Op.getOperand(1);
1331 DebugLoc dl = Op.getDebugLoc();
1332 // Store the value to a temporary stack slot, then LOAD the returned part.
1333 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Chris Lattner6229d0a2010-09-21 18:41:36 +00001334 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1335 MachinePointerInfo(), false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001336
1337 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001338 unsigned EltSize =
1339 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001340 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1341 DAG.getConstant(EltSize, Idx.getValueType()));
1342
1343 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1344 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1345 else
1346 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1347
1348 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1349
Eli Friedmanc680ac92009-07-09 22:01:03 +00001350 if (Op.getValueType().isVector())
Chris Lattnerecf42c42010-09-21 16:36:31 +00001351 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001352 false, false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00001353 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001354 MachinePointerInfo(),
1355 Vec.getValueType().getVectorElementType(),
1356 false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001357}
1358
David Greenecfe33c42011-01-26 19:13:22 +00001359SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1360 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1361
1362 SDValue Vec = Op.getOperand(0);
1363 SDValue Part = Op.getOperand(1);
1364 SDValue Idx = Op.getOperand(2);
1365 DebugLoc dl = Op.getDebugLoc();
1366
1367 // Store the value to a temporary stack slot, then LOAD the returned part.
1368
1369 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1370 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1371 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1372
1373 // First store the whole vector.
1374 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1375 false, false, 0);
1376
1377 // Then store the inserted part.
1378
1379 // Add the offset to the index.
1380 unsigned EltSize =
1381 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1382
1383 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1384 DAG.getConstant(EltSize, Idx.getValueType()));
1385
1386 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1387 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1388 else
1389 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1390
1391 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1392 StackPtr);
1393
1394 // Store the subvector.
1395 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1396 MachinePointerInfo(), false, false, 0);
1397
1398 // Finally, load the updated vector.
1399 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001400 false, false, false, 0);
David Greenecfe33c42011-01-26 19:13:22 +00001401}
1402
Eli Friedman7ef3d172009-06-06 07:04:42 +00001403SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1404 // We can't handle this case efficiently. Allocate a sufficiently
1405 // aligned object on the stack, store each element into it, then load
1406 // the result as a vector.
1407 // Create the stack frame object.
Owen Andersone50ed302009-08-10 22:56:29 +00001408 EVT VT = Node->getValueType(0);
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001409 EVT EltVT = VT.getVectorElementType();
Eli Friedman7ef3d172009-06-06 07:04:42 +00001410 DebugLoc dl = Node->getDebugLoc();
1411 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Chengff89dcb2009-10-18 18:16:27 +00001412 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattnerecf42c42010-09-21 16:36:31 +00001413 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001414
1415 // Emit a store of each element to the stack slot.
1416 SmallVector<SDValue, 8> Stores;
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001417 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedman7ef3d172009-06-06 07:04:42 +00001418 // Store (in the right endianness) the elements to memory.
1419 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1420 // Ignore undef elements.
1421 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1422
1423 unsigned Offset = TypeByteSize*i;
1424
1425 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1426 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1427
Dan Gohman9949dd62010-02-25 20:30:49 +00001428 // If the destination vector element type is narrower than the source
1429 // element type, only store the bits necessary.
1430 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001431 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001432 Node->getOperand(i), Idx,
1433 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001434 EltVT, false, false, 0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00001435 } else
Jim Grosbach6e992612010-07-02 17:41:59 +00001436 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001437 Node->getOperand(i), Idx,
1438 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001439 false, false, 0));
Eli Friedman7ef3d172009-06-06 07:04:42 +00001440 }
1441
1442 SDValue StoreChain;
1443 if (!Stores.empty()) // Not all undef elements?
Owen Anderson825b72b2009-08-11 20:47:22 +00001444 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedman7ef3d172009-06-06 07:04:42 +00001445 &Stores[0], Stores.size());
1446 else
1447 StoreChain = DAG.getEntryNode();
1448
1449 // Result is a load from the stack slot.
Pete Cooperd752e0f2011-11-08 18:42:53 +00001450 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
1451 false, false, false, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001452}
1453
Eli Friedman4bc8c712009-05-27 12:20:41 +00001454SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
1455 DebugLoc dl = Node->getDebugLoc();
1456 SDValue Tmp1 = Node->getOperand(0);
1457 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands5d54b412010-03-12 11:45:06 +00001458
1459 // Get the sign bit of the RHS. First obtain a value that has the same
1460 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001461 SDValue SignBit;
Duncan Sands5d54b412010-03-12 11:45:06 +00001462 EVT FloatVT = Tmp2.getValueType();
1463 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohman75b10042011-07-15 22:39:09 +00001464 if (TLI.isTypeLegal(IVT)) {
Duncan Sands5d54b412010-03-12 11:45:06 +00001465 // Convert to an integer with the same sign bit.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001466 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001467 } else {
Duncan Sands5d54b412010-03-12 11:45:06 +00001468 // Store the float to memory, then load the sign part out as an integer.
1469 MVT LoadTy = TLI.getPointerTy();
1470 // First create a temporary that is aligned for both the load and store.
1471 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1472 // Then store the float to it.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001473 SDValue Ch =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001474 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00001475 false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001476 if (TLI.isBigEndian()) {
1477 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1478 // Load out a legal integer with the same sign bit as the float.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001479 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001480 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001481 } else { // Little endian
1482 SDValue LoadPtr = StackPtr;
1483 // The float may be wider than the integer we are going to load. Advance
1484 // the pointer so that the loaded integer will contain the sign bit.
1485 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1486 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1487 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(),
1488 LoadPtr, DAG.getIntPtrConstant(ByteOffset));
1489 // Load a legal integer containing the sign bit.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001490 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001491 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001492 // Move the sign bit to the top bit of the loaded integer.
1493 unsigned BitShift = LoadTy.getSizeInBits() -
1494 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1495 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1496 if (BitShift)
1497 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Anderson95771af2011-02-25 21:41:48 +00001498 DAG.getConstant(BitShift,
1499 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands5d54b412010-03-12 11:45:06 +00001500 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00001501 }
Duncan Sands5d54b412010-03-12 11:45:06 +00001502 // Now get the sign bit proper, by seeing whether the value is negative.
1503 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(SignBit.getValueType()),
1504 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1505 ISD::SETLT);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001506 // Get the absolute value of the result.
1507 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1508 // Select between the nabs and abs value based on the sign bit of
1509 // the input.
1510 return DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
1511 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1512 AbsVal);
1513}
1514
Eli Friedman4bc8c712009-05-27 12:20:41 +00001515void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1516 SmallVectorImpl<SDValue> &Results) {
1517 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1518 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1519 " not tell us which reg is the stack pointer!");
1520 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001521 EVT VT = Node->getValueType(0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001522 SDValue Tmp1 = SDValue(Node, 0);
1523 SDValue Tmp2 = SDValue(Node, 1);
1524 SDValue Tmp3 = Node->getOperand(2);
1525 SDValue Chain = Tmp1.getOperand(0);
1526
1527 // Chain the dynamic stack allocation so that it doesn't modify the stack
1528 // pointer when other instructions are using the stack.
1529 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
1530
1531 SDValue Size = Tmp2.getOperand(1);
1532 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1533 Chain = SP.getValue(1);
1534 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001535 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman4bc8c712009-05-27 12:20:41 +00001536 if (Align > StackAlign)
1537 SP = DAG.getNode(ISD::AND, dl, VT, SP,
1538 DAG.getConstant(-(uint64_t)Align, VT));
1539 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
1540 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1541
1542 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1543 DAG.getIntPtrConstant(0, true), SDValue());
1544
1545 Results.push_back(Tmp1);
1546 Results.push_back(Tmp2);
1547}
1548
Evan Cheng7f042682008-10-15 02:05:31 +00001549/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Dan Gohmanf77fc922009-10-17 01:37:38 +00001550/// condition code CC on the current target. This routine expands SETCC with
Evan Cheng7f042682008-10-15 02:05:31 +00001551/// illegal condition code into AND / OR of multiple SETCC values.
Owen Andersone50ed302009-08-10 22:56:29 +00001552void SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng7f042682008-10-15 02:05:31 +00001553 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00001554 SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +00001555 DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00001556 EVT OpVT = LHS.getValueType();
Evan Cheng7f042682008-10-15 02:05:31 +00001557 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
1558 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Chris Lattner35a38932010-04-07 23:47:51 +00001559 default: assert(0 && "Unknown condition code action!");
Evan Cheng7f042682008-10-15 02:05:31 +00001560 case TargetLowering::Legal:
1561 // Nothing to do.
1562 break;
1563 case TargetLowering::Expand: {
1564 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1565 unsigned Opc = 0;
1566 switch (CCCode) {
Chris Lattner35a38932010-04-07 23:47:51 +00001567 default: assert(0 && "Don't know how to expand this condition!");
Dan Gohmane7d238e2008-10-21 03:12:54 +00001568 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
1569 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
1570 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
1571 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
1572 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
1573 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
1574 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1575 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1576 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1577 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1578 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1579 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00001580 // FIXME: Implement more expansions.
1581 }
1582
Dale Johannesenbb5da912009-02-02 20:41:04 +00001583 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1584 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1585 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00001586 RHS = SDValue();
1587 CC = SDValue();
1588 break;
1589 }
1590 }
1591}
1592
Chris Lattner1401d152008-01-16 07:45:30 +00001593/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1594/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1595/// a load from the stack slot to DestVT, extending it if needed.
1596/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001597SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Andersone50ed302009-08-10 22:56:29 +00001598 EVT SlotVT,
1599 EVT DestVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00001600 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00001601 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001602 unsigned SrcAlign =
1603 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson23b9b192009-08-12 00:36:31 +00001604 getTypeForEVT(*DAG.getContext()));
Dan Gohman475871a2008-07-27 21:46:04 +00001605 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001606
Evan Chengff89dcb2009-10-18 18:16:27 +00001607 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1608 int SPFI = StackPtrFI->getIndex();
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001609 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Chengff89dcb2009-10-18 18:16:27 +00001610
Duncan Sands83ec4b62008-06-06 12:08:01 +00001611 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1612 unsigned SlotSize = SlotVT.getSizeInBits();
1613 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001614 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Evan Chengadf97992010-04-15 01:25:27 +00001615 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(DestType);
Scott Michelfdc40a02009-02-17 22:15:04 +00001616
Chris Lattner1401d152008-01-16 07:45:30 +00001617 // Emit a store to the stack slot. Use a truncstore if the input value is
1618 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00001619 SDValue Store;
Evan Chengff89dcb2009-10-18 18:16:27 +00001620
Chris Lattner1401d152008-01-16 07:45:30 +00001621 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00001622 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001623 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001624 else {
1625 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00001626 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001627 PtrInfo, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001628 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001629
Chris Lattner35481892005-12-23 00:16:34 +00001630 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00001631 if (SlotSize == DestSize)
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001632 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001633 false, false, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001634
Chris Lattner1401d152008-01-16 07:45:30 +00001635 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastingsa9011292011-02-16 16:23:55 +00001636 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001637 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00001638}
1639
Dan Gohman475871a2008-07-27 21:46:04 +00001640SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00001641 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00001642 // Create a vector sized/aligned stack slot, store the value to element #0,
1643 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00001644 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00001645
Evan Chengff89dcb2009-10-18 18:16:27 +00001646 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1647 int SPFI = StackPtrFI->getIndex();
1648
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001649 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1650 StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001651 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +00001652 Node->getValueType(0).getVectorElementType(),
1653 false, false, 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00001654 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001655 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001656 false, false, false, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001657}
1658
1659
Chris Lattnerce872152006-03-19 06:31:19 +00001660/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00001661/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00001662SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001663 unsigned NumElems = Node->getNumOperands();
Eli Friedman7a5e5552009-06-07 06:52:44 +00001664 SDValue Value1, Value2;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001665 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001666 EVT VT = Node->getValueType(0);
1667 EVT OpVT = Node->getOperand(0).getValueType();
1668 EVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001669
1670 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00001671 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00001672 bool isOnlyLowElement = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001673 bool MoreThanTwoValues = false;
Chris Lattner2eb86532006-03-24 07:29:17 +00001674 bool isConstant = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001675 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001676 SDValue V = Node->getOperand(i);
Eli Friedman7a5e5552009-06-07 06:52:44 +00001677 if (V.getOpcode() == ISD::UNDEF)
1678 continue;
1679 if (i > 0)
Chris Lattnerce872152006-03-19 06:31:19 +00001680 isOnlyLowElement = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001681 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner2eb86532006-03-24 07:29:17 +00001682 isConstant = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001683
1684 if (!Value1.getNode()) {
1685 Value1 = V;
1686 } else if (!Value2.getNode()) {
1687 if (V != Value1)
1688 Value2 = V;
1689 } else if (V != Value1 && V != Value2) {
1690 MoreThanTwoValues = true;
1691 }
Chris Lattnerce872152006-03-19 06:31:19 +00001692 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001693
Eli Friedman7a5e5552009-06-07 06:52:44 +00001694 if (!Value1.getNode())
1695 return DAG.getUNDEF(VT);
1696
1697 if (isOnlyLowElement)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001698 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001699
Chris Lattner2eb86532006-03-24 07:29:17 +00001700 // If all elements are constants, create a load from the constant pool.
1701 if (isConstant) {
Chris Lattner2eb86532006-03-24 07:29:17 +00001702 std::vector<Constant*> CV;
1703 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001704 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00001705 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00001706 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001707 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001708 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen9a645cd2009-11-10 23:16:41 +00001709 if (OpVT==EltVT)
1710 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1711 else {
1712 // If OpVT and EltVT don't match, EltVT is not legal and the
1713 // element values have been promoted/truncated earlier. Undo this;
1714 // we don't want a v16i8 to become a v16i32 for example.
1715 const ConstantInt *CI = V->getConstantIntValue();
1716 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1717 CI->getZExtValue()));
1718 }
Chris Lattner2eb86532006-03-24 07:29:17 +00001719 } else {
1720 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001721 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001722 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner2eb86532006-03-24 07:29:17 +00001723 }
1724 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00001725 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00001726 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00001727 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00001728 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00001729 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001730 false, false, false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00001731 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001732
Eli Friedman7a5e5552009-06-07 06:52:44 +00001733 if (!MoreThanTwoValues) {
1734 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1735 for (unsigned i = 0; i < NumElems; ++i) {
1736 SDValue V = Node->getOperand(i);
1737 if (V.getOpcode() == ISD::UNDEF)
1738 continue;
1739 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1740 }
1741 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00001742 // Get the splatted value into the low element of a vector register.
Eli Friedman7a5e5552009-06-07 06:52:44 +00001743 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1744 SDValue Vec2;
1745 if (Value2.getNode())
1746 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1747 else
1748 Vec2 = DAG.getUNDEF(VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001749
Chris Lattner87100e02006-03-20 01:52:29 +00001750 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Eli Friedman7a5e5552009-06-07 06:52:44 +00001751 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
Evan Cheng033e6812006-03-24 01:17:21 +00001752 }
1753 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001754
Eli Friedman7ef3d172009-06-06 07:04:42 +00001755 // Otherwise, we can't handle this case efficiently.
1756 return ExpandVectorBuildThroughStack(Node);
Chris Lattnerce872152006-03-19 06:31:19 +00001757}
1758
Chris Lattner77e77a62005-01-21 06:05:23 +00001759// ExpandLibCall - Expand a node into a call to a libcall. If the result value
1760// does not fit into a register, return the lo part and set the hi part to the
1761// by-reg argument. If it does fit into a single register, return the result
1762// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00001763SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedman47b41f72009-05-27 02:21:29 +00001764 bool isSigned) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001765 // The input chain to this libcall is the entry node of the function.
Chris Lattner6831a812006-02-13 09:18:02 +00001766 // Legalizing the call will automatically add the previous call to the
1767 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00001768 SDValue InChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00001769
Chris Lattner77e77a62005-01-21 06:05:23 +00001770 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00001771 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00001772 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00001773 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001774 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelfdc40a02009-02-17 22:15:04 +00001775 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00001776 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00001777 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00001778 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00001779 }
Bill Wendling056292f2008-09-16 21:48:12 +00001780 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00001781 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001782
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001783 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Cheng3d2125c2010-11-30 23:55:39 +00001784
1785 // isTailCall may be true since the callee does not reference caller stack
1786 // frame. Check if it's in the right position.
1787 bool isTailCall = isInTailCallPosition(DAG, Node, TLI);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001788 std::pair<SDValue, SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00001789 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001790 0, TLI.getLibcallCallingConv(LC), isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001791 /*isReturnValueUsed=*/true,
Bill Wendling46ada192010-03-02 01:55:18 +00001792 Callee, Args, DAG, Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00001793
Evan Cheng3d2125c2010-11-30 23:55:39 +00001794 if (!CallInfo.second.getNode())
1795 // It's a tailcall, return the chain (which is the DAG root).
1796 return DAG.getRoot();
1797
Eli Friedman74807f22009-05-26 08:55:52 +00001798 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00001799}
1800
Dan Gohmanf316eb72011-05-16 22:09:53 +00001801/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001802/// and returning a result of type RetVT.
1803SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1804 const SDValue *Ops, unsigned NumOps,
1805 bool isSigned, DebugLoc dl) {
1806 TargetLowering::ArgListTy Args;
1807 Args.reserve(NumOps);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001808
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001809 TargetLowering::ArgListEntry Entry;
1810 for (unsigned i = 0; i != NumOps; ++i) {
1811 Entry.Node = Ops[i];
1812 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1813 Entry.isSExt = isSigned;
1814 Entry.isZExt = !isSigned;
1815 Args.push_back(Entry);
1816 }
1817 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1818 TLI.getPointerTy());
Dan Gohmanf316eb72011-05-16 22:09:53 +00001819
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001820 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001821 std::pair<SDValue,SDValue> CallInfo =
1822 TLI.LowerCallTo(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1823 false, 0, TLI.getLibcallCallingConv(LC), false,
1824 /*isReturnValueUsed=*/true,
1825 Callee, Args, DAG, dl);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001826
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001827 return CallInfo.first;
1828}
1829
Jim Grosbache03262f2010-06-18 21:43:38 +00001830// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1831// ExpandLibCall except that the first operand is the in-chain.
1832std::pair<SDValue, SDValue>
1833SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1834 SDNode *Node,
1835 bool isSigned) {
Jim Grosbache03262f2010-06-18 21:43:38 +00001836 SDValue InChain = Node->getOperand(0);
1837
1838 TargetLowering::ArgListTy Args;
1839 TargetLowering::ArgListEntry Entry;
1840 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1841 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001842 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001843 Entry.Node = Node->getOperand(i);
1844 Entry.Ty = ArgTy;
1845 Entry.isSExt = isSigned;
1846 Entry.isZExt = !isSigned;
1847 Args.push_back(Entry);
1848 }
1849 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1850 TLI.getPointerTy());
1851
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001852 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001853 std::pair<SDValue, SDValue> CallInfo =
1854 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001855 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Jim Grosbache03262f2010-06-18 21:43:38 +00001856 /*isReturnValueUsed=*/true,
1857 Callee, Args, DAG, Node->getDebugLoc());
1858
Jim Grosbache03262f2010-06-18 21:43:38 +00001859 return CallInfo;
1860}
1861
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001862SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
1863 RTLIB::Libcall Call_F32,
1864 RTLIB::Libcall Call_F64,
1865 RTLIB::Libcall Call_F80,
1866 RTLIB::Libcall Call_PPCF128) {
1867 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001868 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Chris Lattner35a38932010-04-07 23:47:51 +00001869 default: assert(0 && "Unexpected request for libcall!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001870 case MVT::f32: LC = Call_F32; break;
1871 case MVT::f64: LC = Call_F64; break;
1872 case MVT::f80: LC = Call_F80; break;
1873 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001874 }
1875 return ExpandLibCall(LC, Node, false);
1876}
1877
1878SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001879 RTLIB::Libcall Call_I8,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001880 RTLIB::Libcall Call_I16,
1881 RTLIB::Libcall Call_I32,
1882 RTLIB::Libcall Call_I64,
1883 RTLIB::Libcall Call_I128) {
1884 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001885 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Chris Lattner35a38932010-04-07 23:47:51 +00001886 default: assert(0 && "Unexpected request for libcall!");
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001887 case MVT::i8: LC = Call_I8; break;
1888 case MVT::i16: LC = Call_I16; break;
1889 case MVT::i32: LC = Call_I32; break;
1890 case MVT::i64: LC = Call_I64; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001891 case MVT::i128: LC = Call_I128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001892 }
1893 return ExpandLibCall(LC, Node, isSigned);
1894}
1895
Evan Cheng65279cb2011-04-16 03:08:26 +00001896/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
1897static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
1898 const TargetLowering &TLI) {
Evan Cheng8e23e812011-04-01 00:42:02 +00001899 RTLIB::Libcall LC;
1900 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
1901 default: assert(0 && "Unexpected request for libcall!");
1902 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
1903 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
1904 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
1905 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
1906 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
1907 }
1908
Evan Cheng65279cb2011-04-16 03:08:26 +00001909 return TLI.getLibcallName(LC) != 0;
1910}
Evan Cheng8e23e812011-04-01 00:42:02 +00001911
Evan Cheng65279cb2011-04-16 03:08:26 +00001912/// UseDivRem - Only issue divrem libcall if both quotient and remainder are
1913/// needed.
1914static bool UseDivRem(SDNode *Node, bool isSigned, bool isDIV) {
Evan Cheng8e23e812011-04-01 00:42:02 +00001915 unsigned OtherOpcode = 0;
Evan Cheng65279cb2011-04-16 03:08:26 +00001916 if (isSigned)
Evan Cheng8e23e812011-04-01 00:42:02 +00001917 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00001918 else
Evan Cheng8e23e812011-04-01 00:42:02 +00001919 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00001920
Evan Cheng8e23e812011-04-01 00:42:02 +00001921 SDValue Op0 = Node->getOperand(0);
1922 SDValue Op1 = Node->getOperand(1);
1923 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
1924 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
1925 SDNode *User = *UI;
1926 if (User == Node)
1927 continue;
1928 if (User->getOpcode() == OtherOpcode &&
1929 User->getOperand(0) == Op0 &&
Evan Cheng65279cb2011-04-16 03:08:26 +00001930 User->getOperand(1) == Op1)
1931 return true;
Evan Cheng8e23e812011-04-01 00:42:02 +00001932 }
Evan Cheng65279cb2011-04-16 03:08:26 +00001933 return false;
1934}
Evan Cheng8e23e812011-04-01 00:42:02 +00001935
Evan Cheng65279cb2011-04-16 03:08:26 +00001936/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
1937/// pairs.
1938void
1939SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
1940 SmallVectorImpl<SDValue> &Results) {
1941 unsigned Opcode = Node->getOpcode();
1942 bool isSigned = Opcode == ISD::SDIVREM;
1943
1944 RTLIB::Libcall LC;
1945 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
1946 default: assert(0 && "Unexpected request for libcall!");
1947 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
1948 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
1949 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
1950 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
1951 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Cheng8e23e812011-04-01 00:42:02 +00001952 }
1953
1954 // The input chain to this libcall is the entry node of the function.
1955 // Legalizing the call will automatically add the previous call to the
1956 // dependence.
1957 SDValue InChain = DAG.getEntryNode();
1958
1959 EVT RetVT = Node->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001960 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00001961
1962 TargetLowering::ArgListTy Args;
1963 TargetLowering::ArgListEntry Entry;
1964 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1965 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001966 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00001967 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
1968 Entry.isSExt = isSigned;
1969 Entry.isZExt = !isSigned;
1970 Args.push_back(Entry);
1971 }
1972
1973 // Also pass the return address of the remainder.
1974 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
1975 Entry.Node = FIPtr;
1976 Entry.Ty = RetTy->getPointerTo();
1977 Entry.isSExt = isSigned;
1978 Entry.isZExt = !isSigned;
1979 Args.push_back(Entry);
1980
1981 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1982 TLI.getPointerTy());
1983
Evan Cheng8e23e812011-04-01 00:42:02 +00001984 DebugLoc dl = Node->getDebugLoc();
1985 std::pair<SDValue, SDValue> CallInfo =
1986 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
1987 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
1988 /*isReturnValueUsed=*/true, Callee, Args, DAG, dl);
1989
Evan Cheng8e23e812011-04-01 00:42:02 +00001990 // Remainder is loaded back from the stack frame.
Dan Gohman65fd6562011-11-03 21:49:52 +00001991 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001992 MachinePointerInfo(), false, false, false, 0);
Evan Cheng65279cb2011-04-16 03:08:26 +00001993 Results.push_back(CallInfo.first);
1994 Results.push_back(Rem);
Evan Cheng8e23e812011-04-01 00:42:02 +00001995}
1996
Chris Lattner22cde6a2006-01-28 08:25:58 +00001997/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
1998/// INT_TO_FP operation of the specified operand when the target requests that
1999/// we expand it. At this point, we know that the result and operand types are
2000/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00002001SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2002 SDValue Op0,
Owen Andersone50ed302009-08-10 22:56:29 +00002003 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002004 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002005 if (Op0.getValueType() == MVT::i32) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002006 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00002007
Chris Lattner23594d42008-01-16 07:03:22 +00002008 // Get the stack frame index of a 8 byte buffer.
Owen Anderson825b72b2009-08-11 20:47:22 +00002009 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00002010
Chris Lattner22cde6a2006-01-28 08:25:58 +00002011 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00002012 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00002013 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00002014 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00002015 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002016 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00002017 if (TLI.isLittleEndian())
2018 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00002019
Chris Lattner22cde6a2006-01-28 08:25:58 +00002020 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00002021 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002022 if (isSigned) {
2023 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson825b72b2009-08-11 20:47:22 +00002024 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2025 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002026 } else {
2027 Op0Mapped = Op0;
2028 }
2029 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00002030 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00002031 Op0Mapped, Lo, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002032 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002033 // initial hi portion of constructed double
Owen Anderson825b72b2009-08-11 20:47:22 +00002034 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002035 // store the hi of the constructed double - biased exponent
Chris Lattner6229d0a2010-09-21 18:41:36 +00002036 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2037 MachinePointerInfo(),
2038 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002039 // load the constructed double
Chris Lattnerecf42c42010-09-21 16:36:31 +00002040 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002041 MachinePointerInfo(), false, false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002042 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00002043 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002044 BitsToDouble(0x4330000080000000ULL) :
2045 BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00002046 MVT::f64);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002047 // subtract the bias
Owen Anderson825b72b2009-08-11 20:47:22 +00002048 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002049 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00002050 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002051 // handle final rounding
Owen Anderson825b72b2009-08-11 20:47:22 +00002052 if (DestVT == MVT::f64) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002053 // do nothing
2054 Result = Sub;
Owen Anderson825b72b2009-08-11 20:47:22 +00002055 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002056 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00002057 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002058 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002059 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002060 }
2061 return Result;
2062 }
2063 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002064 // Code below here assumes !isSigned without checking again.
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002065
2066 // Implementation of unsigned i64 to f64 following the algorithm in
2067 // __floatundidf in compiler_rt. This implementation has the advantage
2068 // of performing rounding correctly, both in the default rounding mode
2069 // and in all alternate rounding modes.
2070 // TODO: Generalize this for use with other types.
2071 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2072 SDValue TwoP52 =
2073 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2074 SDValue TwoP84PlusTwoP52 =
2075 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2076 SDValue TwoP84 =
2077 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2078
2079 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2080 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2081 DAG.getConstant(32, MVT::i64));
2082 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2083 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002084 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2085 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach6e992612010-07-02 17:41:59 +00002086 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2087 TwoP84PlusTwoP52);
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002088 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2089 }
2090
Owen Anderson3a9e7692010-10-05 17:24:05 +00002091 // Implementation of unsigned i64 to f32.
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002092 // TODO: Generalize this for use with other types.
2093 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Anderson3a9e7692010-10-05 17:24:05 +00002094 // For unsigned conversions, convert them to signed conversions using the
2095 // algorithm from the x86_64 __floatundidf in compiler_rt.
2096 if (!isSigned) {
2097 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002098
Owen Anderson95771af2011-02-25 21:41:48 +00002099 SDValue ShiftConst =
2100 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Anderson3a9e7692010-10-05 17:24:05 +00002101 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2102 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2103 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2104 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002105
Owen Anderson3a9e7692010-10-05 17:24:05 +00002106 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2107 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002108
Owen Anderson3a9e7692010-10-05 17:24:05 +00002109 // TODO: This really should be implemented using a branch rather than a
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002110 // select. We happen to get lucky and machinesink does the right
2111 // thing most of the time. This would be a good candidate for a
Owen Anderson3a9e7692010-10-05 17:24:05 +00002112 //pseudo-op, or, even better, for whole-function isel.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002113 SDValue SignBitTest = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002114 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
2115 return DAG.getNode(ISD::SELECT, dl, MVT::f32, SignBitTest, Slow, Fast);
2116 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002117
Owen Anderson3a9e7692010-10-05 17:24:05 +00002118 // Otherwise, implement the fully general conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002119
Jim Grosbach6e992612010-07-02 17:41:59 +00002120 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002121 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2122 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2123 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach6e992612010-07-02 17:41:59 +00002124 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002125 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
2126 SDValue Ne = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2127 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
2128 SDValue Sel = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ne, Or, Op0);
2129 SDValue Ge = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2130 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002131 ISD::SETUGE);
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002132 SDValue Sel2 = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ge, Sel, Op0);
Owen Anderson95771af2011-02-25 21:41:48 +00002133 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002134
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002135 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2136 DAG.getConstant(32, SHVT));
2137 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2138 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2139 SDValue TwoP32 =
2140 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2141 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2142 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2143 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2144 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2145 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2146 DAG.getIntPtrConstant(0));
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002147 }
2148
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002149 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002150
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002151 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
2152 Op0, DAG.getConstant(0, Op0.getValueType()),
2153 ISD::SETLT);
2154 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
2155 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
2156 SignSet, Four, Zero);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002157
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002158 // If the sign bit of the integer is set, the large number will be treated
2159 // as a negative number. To counteract this, the dynamic code adds an
2160 // offset depending on the data type.
2161 uint64_t FF;
2162 switch (Op0.getValueType().getSimpleVT().SimpleTy) {
Chris Lattner35a38932010-04-07 23:47:51 +00002163 default: assert(0 && "Unsupported integer type!");
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002164 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2165 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2166 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2167 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2168 }
2169 if (TLI.isLittleEndian()) FF <<= 32;
2170 Constant *FudgeFactor = ConstantInt::get(
2171 Type::getInt64Ty(*DAG.getContext()), FF);
2172
2173 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2174 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
2175 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
2176 Alignment = std::min(Alignment, 4u);
2177 SDValue FudgeInReg;
2178 if (DestVT == MVT::f32)
2179 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00002180 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002181 false, false, false, Alignment);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002182 else {
Dan Gohman65fd6562011-11-03 21:49:52 +00002183 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2184 DAG.getEntryNode(), CPIdx,
2185 MachinePointerInfo::getConstantPool(),
2186 MVT::f32, false, false, Alignment);
2187 HandleSDNode Handle(Load);
2188 LegalizeOp(Load.getNode());
2189 FudgeInReg = Handle.getValue();
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002190 }
2191
2192 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002193}
2194
2195/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2196/// *INT_TO_FP operation of the specified operand when the target requests that
2197/// we promote it. At this point, we know that the result and operand types are
2198/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2199/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00002200SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002201 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002202 bool isSigned,
2203 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002204 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002205 EVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002206
2207 unsigned OpToUse = 0;
2208
2209 // Scan for the appropriate larger type to use.
2210 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002211 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002212 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002213
2214 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002215 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2216 OpToUse = ISD::SINT_TO_FP;
2217 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002218 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002219 if (isSigned) continue;
2220
2221 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002222 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2223 OpToUse = ISD::UINT_TO_FP;
2224 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002225 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002226
2227 // Otherwise, try a larger type.
2228 }
2229
2230 // Okay, we found the operation and type to use. Zero extend our input to the
2231 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00002232 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00002233 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00002234 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002235}
2236
2237/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2238/// FP_TO_*INT operation of the specified operand when the target requests that
2239/// we promote it. At this point, we know that the result and operand types are
2240/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2241/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00002242SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002243 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002244 bool isSigned,
2245 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002246 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002247 EVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002248
2249 unsigned OpToUse = 0;
2250
2251 // Scan for the appropriate larger type to use.
2252 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002253 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002254 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002255
Eli Friedman3be2e512009-05-28 03:06:16 +00002256 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002257 OpToUse = ISD::FP_TO_SINT;
2258 break;
2259 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002260
Eli Friedman3be2e512009-05-28 03:06:16 +00002261 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002262 OpToUse = ISD::FP_TO_UINT;
2263 break;
2264 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002265
2266 // Otherwise, try a larger type.
2267 }
2268
Scott Michelfdc40a02009-02-17 22:15:04 +00002269
Chris Lattner27a6c732007-11-24 07:07:01 +00002270 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00002271 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00002272
Chris Lattner27a6c732007-11-24 07:07:01 +00002273 // Truncate the result of the extended FP_TO_*INT operation to the desired
2274 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00002275 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002276}
2277
2278/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2279///
Dale Johannesen8a782a22009-02-02 22:12:50 +00002280SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002281 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002282 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00002283 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson825b72b2009-08-11 20:47:22 +00002284 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner35a38932010-04-07 23:47:51 +00002285 default: assert(0 && "Unhandled Expand type in BSWAP!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002286 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002287 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2288 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2289 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002290 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002291 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2292 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2293 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2294 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2295 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2296 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2297 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2298 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2299 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002300 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002301 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2302 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2303 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2304 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2305 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2306 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2307 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2308 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2309 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2310 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2311 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2312 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2313 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2314 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2315 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2316 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2317 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2318 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2319 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2320 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2321 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002322 }
2323}
2324
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002325/// SplatByte - Distribute ByteVal over NumBits bits.
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002326// FIXME: Move this helper to a common place.
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002327static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
2328 APInt Val = APInt(NumBits, ByteVal);
2329 unsigned Shift = 8;
2330 for (unsigned i = NumBits; i > 8; i >>= 1) {
2331 Val = (Val << Shift) | Val;
2332 Shift <<= 1;
2333 }
2334 return Val;
2335}
2336
Chris Lattner22cde6a2006-01-28 08:25:58 +00002337/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2338///
Scott Michelfdc40a02009-02-17 22:15:04 +00002339SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00002340 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002341 switch (Opc) {
Chris Lattner35a38932010-04-07 23:47:51 +00002342 default: assert(0 && "Cannot expand this yet!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002343 case ISD::CTPOP: {
Owen Andersone50ed302009-08-10 22:56:29 +00002344 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002345 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002346 unsigned Len = VT.getSizeInBits();
2347
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002348 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2349 "CTPOP not implemented for this type.");
2350
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002351 // This is the "best" algorithm from
2352 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2353
2354 SDValue Mask55 = DAG.getConstant(SplatByte(Len, 0x55), VT);
2355 SDValue Mask33 = DAG.getConstant(SplatByte(Len, 0x33), VT);
2356 SDValue Mask0F = DAG.getConstant(SplatByte(Len, 0x0F), VT);
2357 SDValue Mask01 = DAG.getConstant(SplatByte(Len, 0x01), VT);
2358
2359 // v = v - ((v >> 1) & 0x55555555...)
2360 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2361 DAG.getNode(ISD::AND, dl, VT,
2362 DAG.getNode(ISD::SRL, dl, VT, Op,
2363 DAG.getConstant(1, ShVT)),
2364 Mask55));
2365 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2366 Op = DAG.getNode(ISD::ADD, dl, VT,
2367 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2368 DAG.getNode(ISD::AND, dl, VT,
2369 DAG.getNode(ISD::SRL, dl, VT, Op,
2370 DAG.getConstant(2, ShVT)),
2371 Mask33));
2372 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2373 Op = DAG.getNode(ISD::AND, dl, VT,
2374 DAG.getNode(ISD::ADD, dl, VT, Op,
2375 DAG.getNode(ISD::SRL, dl, VT, Op,
2376 DAG.getConstant(4, ShVT))),
2377 Mask0F);
2378 // v = (v * 0x01010101...) >> (Len - 8)
2379 Op = DAG.getNode(ISD::SRL, dl, VT,
2380 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2381 DAG.getConstant(Len - 8, ShVT));
Owen Anderson95771af2011-02-25 21:41:48 +00002382
Chris Lattner22cde6a2006-01-28 08:25:58 +00002383 return Op;
2384 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002385 case ISD::CTLZ_ZERO_UNDEF:
2386 // This trivially expands to CTLZ.
2387 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002388 case ISD::CTLZ: {
2389 // for now, we do this:
2390 // x = x | (x >> 1);
2391 // x = x | (x >> 2);
2392 // ...
2393 // x = x | (x >>16);
2394 // x = x | (x >>32); // for 64-bit input
2395 // return popcount(~x);
2396 //
2397 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002398 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002399 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002400 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002401 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002402 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002403 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00002404 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002405 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00002406 Op = DAG.getNOT(dl, Op, VT);
2407 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002408 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002409 case ISD::CTTZ_ZERO_UNDEF:
2410 // This trivially expands to CTTZ.
2411 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002412 case ISD::CTTZ: {
2413 // for now, we use: { return popcount(~x & (x - 1)); }
2414 // unless the target has ctlz but not ctpop, in which case we use:
2415 // { return 32 - nlz(~x & (x-1)); }
2416 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002417 EVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00002418 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2419 DAG.getNOT(dl, Op, VT),
2420 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00002421 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002422 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002423 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2424 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00002425 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002426 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00002427 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2428 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002429 }
2430 }
2431}
Chris Lattnere34b3962005-01-19 04:19:40 +00002432
Jim Grosbache03262f2010-06-18 21:43:38 +00002433std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2434 unsigned Opc = Node->getOpcode();
2435 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2436 RTLIB::Libcall LC;
2437
2438 switch (Opc) {
2439 default:
2440 llvm_unreachable("Unhandled atomic intrinsic Expand!");
2441 break;
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002442 case ISD::ATOMIC_SWAP:
2443 switch (VT.SimpleTy) {
2444 default: llvm_unreachable("Unexpected value type for atomic!");
2445 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2446 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2447 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2448 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
2449 }
2450 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002451 case ISD::ATOMIC_CMP_SWAP:
2452 switch (VT.SimpleTy) {
2453 default: llvm_unreachable("Unexpected value type for atomic!");
2454 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2455 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2456 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2457 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
2458 }
2459 break;
2460 case ISD::ATOMIC_LOAD_ADD:
2461 switch (VT.SimpleTy) {
2462 default: llvm_unreachable("Unexpected value type for atomic!");
2463 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2464 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2465 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2466 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
2467 }
2468 break;
2469 case ISD::ATOMIC_LOAD_SUB:
2470 switch (VT.SimpleTy) {
2471 default: llvm_unreachable("Unexpected value type for atomic!");
2472 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2473 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2474 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2475 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
2476 }
2477 break;
2478 case ISD::ATOMIC_LOAD_AND:
2479 switch (VT.SimpleTy) {
2480 default: llvm_unreachable("Unexpected value type for atomic!");
2481 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2482 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2483 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2484 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
2485 }
2486 break;
2487 case ISD::ATOMIC_LOAD_OR:
2488 switch (VT.SimpleTy) {
2489 default: llvm_unreachable("Unexpected value type for atomic!");
2490 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2491 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2492 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2493 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
2494 }
2495 break;
2496 case ISD::ATOMIC_LOAD_XOR:
2497 switch (VT.SimpleTy) {
2498 default: llvm_unreachable("Unexpected value type for atomic!");
2499 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2500 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2501 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2502 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
2503 }
2504 break;
2505 case ISD::ATOMIC_LOAD_NAND:
2506 switch (VT.SimpleTy) {
2507 default: llvm_unreachable("Unexpected value type for atomic!");
2508 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2509 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2510 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2511 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
2512 }
2513 break;
2514 }
2515
2516 return ExpandChainLibCall(LC, Node, false);
2517}
2518
Dan Gohman65fd6562011-11-03 21:49:52 +00002519void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2520 SmallVector<SDValue, 8> Results;
Eli Friedman8c377c72009-05-27 01:25:56 +00002521 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanbbdd9032009-05-28 20:40:34 +00002522 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Eli Friedman8c377c72009-05-27 01:25:56 +00002523 switch (Node->getOpcode()) {
2524 case ISD::CTPOP:
2525 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002526 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002527 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002528 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002529 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2530 Results.push_back(Tmp1);
2531 break;
2532 case ISD::BSWAP:
Bill Wendling775db972009-12-23 00:28:23 +00002533 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman8c377c72009-05-27 01:25:56 +00002534 break;
2535 case ISD::FRAMEADDR:
2536 case ISD::RETURNADDR:
2537 case ISD::FRAME_TO_ARGS_OFFSET:
2538 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2539 break;
2540 case ISD::FLT_ROUNDS_:
2541 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2542 break;
2543 case ISD::EH_RETURN:
Eli Friedman8c377c72009-05-27 01:25:56 +00002544 case ISD::EH_LABEL:
2545 case ISD::PREFETCH:
Eli Friedman8c377c72009-05-27 01:25:56 +00002546 case ISD::VAEND:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002547 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002548 // If the target didn't expand these, there's nothing to do, so just
2549 // preserve the chain and be done.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002550 Results.push_back(Node->getOperand(0));
2551 break;
2552 case ISD::EH_SJLJ_SETJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002553 // If the target didn't expand this, just return 'zero' and preserve the
2554 // chain.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002555 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman8c377c72009-05-27 01:25:56 +00002556 Results.push_back(Node->getOperand(0));
2557 break;
Eli Friedman14648462011-07-27 22:21:52 +00002558 case ISD::ATOMIC_FENCE:
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002559 case ISD::MEMBARRIER: {
2560 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman14648462011-07-27 22:21:52 +00002561 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002562 TargetLowering::ArgListTy Args;
2563 std::pair<SDValue, SDValue> CallResult =
2564 TLI.LowerCallTo(Node->getOperand(0), Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002565 false, false, false, false, 0, CallingConv::C,
2566 /*isTailCall=*/false,
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002567 /*isReturnValueUsed=*/true,
2568 DAG.getExternalSymbol("__sync_synchronize",
2569 TLI.getPointerTy()),
2570 Args, DAG, dl);
2571 Results.push_back(CallResult.second);
2572 break;
2573 }
Eli Friedman069e2ed2011-08-26 02:59:24 +00002574 case ISD::ATOMIC_LOAD: {
2575 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedman331120b2011-09-15 21:20:49 +00002576 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman069e2ed2011-08-26 02:59:24 +00002577 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2578 cast<AtomicSDNode>(Node)->getMemoryVT(),
2579 Node->getOperand(0),
2580 Node->getOperand(1), Zero, Zero,
2581 cast<AtomicSDNode>(Node)->getMemOperand(),
2582 cast<AtomicSDNode>(Node)->getOrdering(),
2583 cast<AtomicSDNode>(Node)->getSynchScope());
2584 Results.push_back(Swap.getValue(0));
2585 Results.push_back(Swap.getValue(1));
2586 break;
2587 }
2588 case ISD::ATOMIC_STORE: {
2589 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2590 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2591 cast<AtomicSDNode>(Node)->getMemoryVT(),
2592 Node->getOperand(0),
2593 Node->getOperand(1), Node->getOperand(2),
2594 cast<AtomicSDNode>(Node)->getMemOperand(),
2595 cast<AtomicSDNode>(Node)->getOrdering(),
2596 cast<AtomicSDNode>(Node)->getSynchScope());
2597 Results.push_back(Swap.getValue(1));
2598 break;
2599 }
Jim Grosbachb56ce812010-06-17 17:50:54 +00002600 // By default, atomic intrinsics are marked Legal and lowered. Targets
2601 // which don't support them directly, however, may want libcalls, in which
2602 // case they mark them Expand, and we get here.
Jim Grosbachb56ce812010-06-17 17:50:54 +00002603 case ISD::ATOMIC_SWAP:
2604 case ISD::ATOMIC_LOAD_ADD:
2605 case ISD::ATOMIC_LOAD_SUB:
2606 case ISD::ATOMIC_LOAD_AND:
2607 case ISD::ATOMIC_LOAD_OR:
2608 case ISD::ATOMIC_LOAD_XOR:
2609 case ISD::ATOMIC_LOAD_NAND:
2610 case ISD::ATOMIC_LOAD_MIN:
2611 case ISD::ATOMIC_LOAD_MAX:
2612 case ISD::ATOMIC_LOAD_UMIN:
2613 case ISD::ATOMIC_LOAD_UMAX:
Evan Chenga8457062010-06-18 22:01:37 +00002614 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbache03262f2010-06-18 21:43:38 +00002615 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2616 Results.push_back(Tmp.first);
2617 Results.push_back(Tmp.second);
Jim Grosbach59c38f32010-06-17 17:58:54 +00002618 break;
Evan Chenga8457062010-06-18 22:01:37 +00002619 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00002620 case ISD::DYNAMIC_STACKALLOC:
2621 ExpandDYNAMIC_STACKALLOC(Node, Results);
2622 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00002623 case ISD::MERGE_VALUES:
2624 for (unsigned i = 0; i < Node->getNumValues(); i++)
2625 Results.push_back(Node->getOperand(i));
2626 break;
2627 case ISD::UNDEF: {
Owen Andersone50ed302009-08-10 22:56:29 +00002628 EVT VT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00002629 if (VT.isInteger())
2630 Results.push_back(DAG.getConstant(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002631 else {
2632 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman8c377c72009-05-27 01:25:56 +00002633 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002634 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002635 break;
2636 }
2637 case ISD::TRAP: {
2638 // If this operation is not supported, lower it to 'abort()' call
2639 TargetLowering::ArgListTy Args;
2640 std::pair<SDValue, SDValue> CallResult =
Owen Anderson1d0be152009-08-13 21:58:54 +00002641 TLI.LowerCallTo(Node->getOperand(0), Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002642 false, false, false, false, 0, CallingConv::C,
2643 /*isTailCall=*/false,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002644 /*isReturnValueUsed=*/true,
Eli Friedman8c377c72009-05-27 01:25:56 +00002645 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00002646 Args, DAG, dl);
Eli Friedman8c377c72009-05-27 01:25:56 +00002647 Results.push_back(CallResult.second);
2648 break;
2649 }
2650 case ISD::FP_ROUND:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002651 case ISD::BITCAST:
Eli Friedman8c377c72009-05-27 01:25:56 +00002652 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2653 Node->getValueType(0), dl);
2654 Results.push_back(Tmp1);
2655 break;
2656 case ISD::FP_EXTEND:
2657 Tmp1 = EmitStackConvert(Node->getOperand(0),
2658 Node->getOperand(0).getValueType(),
2659 Node->getValueType(0), dl);
2660 Results.push_back(Tmp1);
2661 break;
2662 case ISD::SIGN_EXTEND_INREG: {
2663 // NOTE: we could fall back on load/store here too for targets without
2664 // SAR. However, it is doubtful that any exist.
Owen Andersone50ed302009-08-10 22:56:29 +00002665 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00002666 EVT VT = Node->getValueType(0);
Owen Anderson95771af2011-02-25 21:41:48 +00002667 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohmand1996362010-01-09 02:13:55 +00002668 if (VT.isVector())
Dan Gohman87862e72009-12-11 21:31:27 +00002669 ShiftAmountTy = VT;
Dan Gohmand1996362010-01-09 02:13:55 +00002670 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2671 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman87862e72009-12-11 21:31:27 +00002672 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman8c377c72009-05-27 01:25:56 +00002673 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2674 Node->getOperand(0), ShiftCst);
Bill Wendling775db972009-12-23 00:28:23 +00002675 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2676 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002677 break;
2678 }
2679 case ISD::FP_ROUND_INREG: {
2680 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002681 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman8c377c72009-05-27 01:25:56 +00002682
2683 // NOTE: there is a choice here between constantly creating new stack
2684 // slots and always reusing the same one. We currently always create
2685 // new ones, as reuse may inhibit scheduling.
Owen Andersone50ed302009-08-10 22:56:29 +00002686 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00002687 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2688 Node->getValueType(0), dl);
2689 Results.push_back(Tmp1);
2690 break;
2691 }
2692 case ISD::SINT_TO_FP:
2693 case ISD::UINT_TO_FP:
2694 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2695 Node->getOperand(0), Node->getValueType(0), dl);
2696 Results.push_back(Tmp1);
2697 break;
2698 case ISD::FP_TO_UINT: {
2699 SDValue True, False;
Owen Andersone50ed302009-08-10 22:56:29 +00002700 EVT VT = Node->getOperand(0).getValueType();
2701 EVT NVT = Node->getValueType(0);
Benjamin Kramer3069cbf2010-12-04 15:28:22 +00002702 APFloat apf(APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman8c377c72009-05-27 01:25:56 +00002703 APInt x = APInt::getSignBit(NVT.getSizeInBits());
2704 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
2705 Tmp1 = DAG.getConstantFP(apf, VT);
2706 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
2707 Node->getOperand(0),
2708 Tmp1, ISD::SETLT);
2709 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00002710 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
2711 DAG.getNode(ISD::FSUB, dl, VT,
2712 Node->getOperand(0), Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00002713 False = DAG.getNode(ISD::XOR, dl, NVT, False,
2714 DAG.getConstant(x, NVT));
2715 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2, True, False);
2716 Results.push_back(Tmp1);
2717 break;
2718 }
Eli Friedman509150f2009-05-27 07:58:35 +00002719 case ISD::VAARG: {
2720 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00002721 EVT VT = Node->getValueType(0);
Eli Friedman509150f2009-05-27 07:58:35 +00002722 Tmp1 = Node->getOperand(0);
2723 Tmp2 = Node->getOperand(1);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002724 unsigned Align = Node->getConstantOperandVal(3);
2725
Chris Lattnerecf42c42010-09-21 16:36:31 +00002726 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002727 MachinePointerInfo(V),
2728 false, false, false, 0);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002729 SDValue VAList = VAListLoad;
2730
Rafael Espindolacbeeae22010-07-11 04:01:49 +00002731 if (Align > TLI.getMinStackArgumentAlignment()) {
2732 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
2733
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002734 VAList = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2735 DAG.getConstant(Align - 1,
2736 TLI.getPointerTy()));
2737
2738 VAList = DAG.getNode(ISD::AND, dl, TLI.getPointerTy(), VAList,
Chris Lattner07e3a382010-10-10 18:36:26 +00002739 DAG.getConstant(-(int64_t)Align,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002740 TLI.getPointerTy()));
2741 }
2742
Eli Friedman509150f2009-05-27 07:58:35 +00002743 // Increment the pointer, VAList, to the next vaarg
2744 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2745 DAG.getConstant(TLI.getTargetData()->
Evan Chengadf97992010-04-15 01:25:27 +00002746 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Eli Friedman509150f2009-05-27 07:58:35 +00002747 TLI.getPointerTy()));
2748 // Store the incremented VAList to the legalized pointer
Chris Lattner6229d0a2010-09-21 18:41:36 +00002749 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
2750 MachinePointerInfo(V), false, false, 0);
Eli Friedman509150f2009-05-27 07:58:35 +00002751 // Load the actual argument out of the pointer VAList
Chris Lattnerecf42c42010-09-21 16:36:31 +00002752 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002753 false, false, false, 0));
Eli Friedman509150f2009-05-27 07:58:35 +00002754 Results.push_back(Results[0].getValue(1));
2755 break;
2756 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002757 case ISD::VACOPY: {
2758 // This defaults to loading a pointer from the input and storing it to the
2759 // output, returning the chain.
2760 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2761 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
2762 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattnerecf42c42010-09-21 16:36:31 +00002763 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002764 false, false, false, 0);
Chris Lattnerecf42c42010-09-21 16:36:31 +00002765 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
2766 MachinePointerInfo(VD), false, false, 0);
Bill Wendling775db972009-12-23 00:28:23 +00002767 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002768 break;
2769 }
2770 case ISD::EXTRACT_VECTOR_ELT:
2771 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
2772 // This must be an access of the only element. Return it.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002773 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman8c377c72009-05-27 01:25:56 +00002774 Node->getOperand(0));
2775 else
2776 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
2777 Results.push_back(Tmp1);
2778 break;
2779 case ISD::EXTRACT_SUBVECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002780 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman8c377c72009-05-27 01:25:56 +00002781 break;
David Greenecfe33c42011-01-26 19:13:22 +00002782 case ISD::INSERT_SUBVECTOR:
2783 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
2784 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002785 case ISD::CONCAT_VECTORS: {
Bill Wendling775db972009-12-23 00:28:23 +00002786 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman509150f2009-05-27 07:58:35 +00002787 break;
2788 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002789 case ISD::SCALAR_TO_VECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002790 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman8c377c72009-05-27 01:25:56 +00002791 break;
Eli Friedman3f727d62009-05-27 02:16:40 +00002792 case ISD::INSERT_VECTOR_ELT:
Bill Wendling775db972009-12-23 00:28:23 +00002793 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
2794 Node->getOperand(1),
2795 Node->getOperand(2), dl));
Eli Friedman3f727d62009-05-27 02:16:40 +00002796 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002797 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00002798 SmallVector<int, 32> NewMask;
2799 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00002800
Owen Andersone50ed302009-08-10 22:56:29 +00002801 EVT VT = Node->getValueType(0);
2802 EVT EltVT = VT.getVectorElementType();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002803 SDValue Op0 = Node->getOperand(0);
2804 SDValue Op1 = Node->getOperand(1);
2805 if (!TLI.isTypeLegal(EltVT)) {
2806
2807 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
2808
2809 // BUILD_VECTOR operands are allowed to be wider than the element type.
2810 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept it
2811 if (NewEltVT.bitsLT(EltVT)) {
2812
2813 // Convert shuffle node.
2814 // If original node was v4i64 and the new EltVT is i32,
2815 // cast operands to v8i32 and re-build the mask.
2816
2817 // Calculate new VT, the size of the new VT should be equal to original.
2818 EVT NewVT = EVT::getVectorVT(*DAG.getContext(), NewEltVT,
2819 VT.getSizeInBits()/NewEltVT.getSizeInBits());
2820 assert(NewVT.bitsEq(VT));
2821
2822 // cast operands to new VT
2823 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
2824 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
2825
2826 // Convert the shuffle mask
2827 unsigned int factor = NewVT.getVectorNumElements()/VT.getVectorNumElements();
2828
2829 // EltVT gets smaller
2830 assert(factor > 0);
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002831
2832 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
2833 if (Mask[i] < 0) {
2834 for (unsigned fi = 0; fi < factor; ++fi)
2835 NewMask.push_back(Mask[i]);
2836 }
2837 else {
2838 for (unsigned fi = 0; fi < factor; ++fi)
2839 NewMask.push_back(Mask[i]*factor+fi);
2840 }
2841 }
2842 Mask = NewMask;
2843 VT = NewVT;
2844 }
2845 EltVT = NewEltVT;
2846 }
Eli Friedman509150f2009-05-27 07:58:35 +00002847 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002848 SmallVector<SDValue, 16> Ops;
Eli Friedman509150f2009-05-27 07:58:35 +00002849 for (unsigned i = 0; i != NumElems; ++i) {
2850 if (Mask[i] < 0) {
2851 Ops.push_back(DAG.getUNDEF(EltVT));
2852 continue;
2853 }
2854 unsigned Idx = Mask[i];
2855 if (Idx < NumElems)
Bill Wendling775db972009-12-23 00:28:23 +00002856 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002857 Op0,
Bill Wendling775db972009-12-23 00:28:23 +00002858 DAG.getIntPtrConstant(Idx)));
Eli Friedman509150f2009-05-27 07:58:35 +00002859 else
Bill Wendling775db972009-12-23 00:28:23 +00002860 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002861 Op1,
Bill Wendling775db972009-12-23 00:28:23 +00002862 DAG.getIntPtrConstant(Idx - NumElems)));
Eli Friedman509150f2009-05-27 07:58:35 +00002863 }
Nadav Rotem6c0366c2012-01-10 14:28:46 +00002864
Eli Friedman509150f2009-05-27 07:58:35 +00002865 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Nadav Rotem6c0366c2012-01-10 14:28:46 +00002866 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
2867 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00002868 Results.push_back(Tmp1);
2869 break;
2870 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002871 case ISD::EXTRACT_ELEMENT: {
Owen Andersone50ed302009-08-10 22:56:29 +00002872 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman8c377c72009-05-27 01:25:56 +00002873 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
2874 // 1 -> Hi
2875 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
2876 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00002877 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman8c377c72009-05-27 01:25:56 +00002878 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
2879 } else {
2880 // 0 -> Lo
2881 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
2882 Node->getOperand(0));
2883 }
2884 Results.push_back(Tmp1);
2885 break;
2886 }
Eli Friedman3f727d62009-05-27 02:16:40 +00002887 case ISD::STACKSAVE:
2888 // Expand to CopyFromReg if the target set
2889 // StackPointerRegisterToSaveRestore.
2890 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendling775db972009-12-23 00:28:23 +00002891 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
2892 Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00002893 Results.push_back(Results[0].getValue(1));
2894 } else {
Bill Wendling775db972009-12-23 00:28:23 +00002895 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00002896 Results.push_back(Node->getOperand(0));
2897 }
2898 break;
2899 case ISD::STACKRESTORE:
Bill Wendling775db972009-12-23 00:28:23 +00002900 // Expand to CopyToReg if the target set
2901 // StackPointerRegisterToSaveRestore.
2902 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2903 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
2904 Node->getOperand(1)));
2905 } else {
2906 Results.push_back(Node->getOperand(0));
2907 }
Eli Friedman3f727d62009-05-27 02:16:40 +00002908 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00002909 case ISD::FCOPYSIGN:
Bill Wendling775db972009-12-23 00:28:23 +00002910 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00002911 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002912 case ISD::FNEG:
2913 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2914 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
2915 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
2916 Node->getOperand(0));
2917 Results.push_back(Tmp1);
2918 break;
2919 case ISD::FABS: {
2920 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Andersone50ed302009-08-10 22:56:29 +00002921 EVT VT = Node->getValueType(0);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002922 Tmp1 = Node->getOperand(0);
2923 Tmp2 = DAG.getConstantFP(0.0, VT);
Bill Wendling775db972009-12-23 00:28:23 +00002924 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002925 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendling775db972009-12-23 00:28:23 +00002926 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
2927 Tmp1 = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002928 Results.push_back(Tmp1);
2929 break;
2930 }
2931 case ISD::FSQRT:
Bill Wendling775db972009-12-23 00:28:23 +00002932 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
2933 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002934 break;
2935 case ISD::FSIN:
Bill Wendling775db972009-12-23 00:28:23 +00002936 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
2937 RTLIB::SIN_F80, RTLIB::SIN_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002938 break;
2939 case ISD::FCOS:
Bill Wendling775db972009-12-23 00:28:23 +00002940 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
2941 RTLIB::COS_F80, RTLIB::COS_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002942 break;
2943 case ISD::FLOG:
Bill Wendling775db972009-12-23 00:28:23 +00002944 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
2945 RTLIB::LOG_F80, RTLIB::LOG_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002946 break;
2947 case ISD::FLOG2:
Bill Wendling775db972009-12-23 00:28:23 +00002948 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
2949 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002950 break;
2951 case ISD::FLOG10:
Bill Wendling775db972009-12-23 00:28:23 +00002952 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
2953 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002954 break;
2955 case ISD::FEXP:
Bill Wendling775db972009-12-23 00:28:23 +00002956 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
2957 RTLIB::EXP_F80, RTLIB::EXP_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002958 break;
2959 case ISD::FEXP2:
Bill Wendling775db972009-12-23 00:28:23 +00002960 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
2961 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002962 break;
2963 case ISD::FTRUNC:
Bill Wendling775db972009-12-23 00:28:23 +00002964 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
2965 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002966 break;
2967 case ISD::FFLOOR:
Bill Wendling775db972009-12-23 00:28:23 +00002968 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
2969 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002970 break;
2971 case ISD::FCEIL:
Bill Wendling775db972009-12-23 00:28:23 +00002972 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
2973 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002974 break;
2975 case ISD::FRINT:
Bill Wendling775db972009-12-23 00:28:23 +00002976 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
2977 RTLIB::RINT_F80, RTLIB::RINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002978 break;
2979 case ISD::FNEARBYINT:
Bill Wendling775db972009-12-23 00:28:23 +00002980 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
2981 RTLIB::NEARBYINT_F64,
2982 RTLIB::NEARBYINT_F80,
2983 RTLIB::NEARBYINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002984 break;
2985 case ISD::FPOWI:
Bill Wendling775db972009-12-23 00:28:23 +00002986 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
2987 RTLIB::POWI_F80, RTLIB::POWI_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002988 break;
2989 case ISD::FPOW:
Bill Wendling775db972009-12-23 00:28:23 +00002990 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
2991 RTLIB::POW_F80, RTLIB::POW_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002992 break;
2993 case ISD::FDIV:
Bill Wendling775db972009-12-23 00:28:23 +00002994 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
2995 RTLIB::DIV_F80, RTLIB::DIV_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002996 break;
2997 case ISD::FREM:
Bill Wendling775db972009-12-23 00:28:23 +00002998 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
2999 RTLIB::REM_F80, RTLIB::REM_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003000 break;
Cameron Zwarich33390842011-07-08 21:39:21 +00003001 case ISD::FMA:
3002 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
3003 RTLIB::FMA_F80, RTLIB::FMA_PPCF128));
3004 break;
Anton Korobeynikov927411b2010-03-14 18:42:24 +00003005 case ISD::FP16_TO_FP32:
3006 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3007 break;
3008 case ISD::FP32_TO_FP16:
3009 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3010 break;
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003011 case ISD::ConstantFP: {
3012 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendling775db972009-12-23 00:28:23 +00003013 // Check to see if this FP immediate is already legal.
3014 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman65fd6562011-11-03 21:49:52 +00003015 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3016 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003017 break;
3018 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003019 case ISD::EHSELECTION: {
3020 unsigned Reg = TLI.getExceptionSelectorRegister();
3021 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003022 Results.push_back(DAG.getCopyFromReg(Node->getOperand(1), dl, Reg,
3023 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003024 Results.push_back(Results[0].getValue(1));
3025 break;
3026 }
3027 case ISD::EXCEPTIONADDR: {
3028 unsigned Reg = TLI.getExceptionAddressRegister();
3029 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003030 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, Reg,
3031 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003032 Results.push_back(Results[0].getValue(1));
3033 break;
3034 }
3035 case ISD::SUB: {
Owen Andersone50ed302009-08-10 22:56:29 +00003036 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003037 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3038 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3039 "Don't know how to expand this subtraction!");
3040 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3041 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Bill Wendling775db972009-12-23 00:28:23 +00003042 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp2, DAG.getConstant(1, VT));
3043 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003044 break;
3045 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003046 case ISD::UREM:
3047 case ISD::SREM: {
Owen Andersone50ed302009-08-10 22:56:29 +00003048 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003049 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003050 bool isSigned = Node->getOpcode() == ISD::SREM;
3051 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3052 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3053 Tmp2 = Node->getOperand(0);
3054 Tmp3 = Node->getOperand(1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003055 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3056 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
3057 UseDivRem(Node, isSigned, false))) {
Eli Friedman3be2e512009-05-28 03:06:16 +00003058 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3059 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003060 // X % Y -> X-X/Y*Y
3061 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3062 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3063 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003064 } else if (isSigned)
3065 Tmp1 = ExpandIntLibCall(Node, true,
3066 RTLIB::SREM_I8,
3067 RTLIB::SREM_I16, RTLIB::SREM_I32,
3068 RTLIB::SREM_I64, RTLIB::SREM_I128);
3069 else
3070 Tmp1 = ExpandIntLibCall(Node, false,
3071 RTLIB::UREM_I8,
3072 RTLIB::UREM_I16, RTLIB::UREM_I32,
3073 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003074 Results.push_back(Tmp1);
3075 break;
3076 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003077 case ISD::UDIV:
3078 case ISD::SDIV: {
3079 bool isSigned = Node->getOpcode() == ISD::SDIV;
3080 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Andersone50ed302009-08-10 22:56:29 +00003081 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003082 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Cheng65279cb2011-04-16 03:08:26 +00003083 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3084 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
3085 UseDivRem(Node, isSigned, true)))
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003086 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3087 Node->getOperand(1));
Evan Cheng65279cb2011-04-16 03:08:26 +00003088 else if (isSigned)
3089 Tmp1 = ExpandIntLibCall(Node, true,
3090 RTLIB::SDIV_I8,
3091 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3092 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3093 else
3094 Tmp1 = ExpandIntLibCall(Node, false,
3095 RTLIB::UDIV_I8,
3096 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3097 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003098 Results.push_back(Tmp1);
3099 break;
3100 }
3101 case ISD::MULHU:
3102 case ISD::MULHS: {
3103 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3104 ISD::SMUL_LOHI;
Owen Andersone50ed302009-08-10 22:56:29 +00003105 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003106 SDVTList VTs = DAG.getVTList(VT, VT);
3107 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3108 "If this wasn't legal, it shouldn't have been created!");
3109 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3110 Node->getOperand(1));
3111 Results.push_back(Tmp1.getValue(1));
3112 break;
3113 }
Evan Cheng65279cb2011-04-16 03:08:26 +00003114 case ISD::SDIVREM:
3115 case ISD::UDIVREM:
3116 // Expand into divrem libcall
3117 ExpandDivRemLibCall(Node, Results);
3118 break;
Eli Friedman26ea8f92009-05-27 07:05:37 +00003119 case ISD::MUL: {
Owen Andersone50ed302009-08-10 22:56:29 +00003120 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003121 SDVTList VTs = DAG.getVTList(VT, VT);
3122 // See if multiply or divide can be lowered using two-result operations.
3123 // We just need the low half of the multiply; try both the signed
3124 // and unsigned forms. If the target supports both SMUL_LOHI and
3125 // UMUL_LOHI, form a preference by checking which forms of plain
3126 // MULH it supports.
3127 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3128 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3129 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3130 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3131 unsigned OpToUse = 0;
3132 if (HasSMUL_LOHI && !HasMULHS) {
3133 OpToUse = ISD::SMUL_LOHI;
3134 } else if (HasUMUL_LOHI && !HasMULHU) {
3135 OpToUse = ISD::UMUL_LOHI;
3136 } else if (HasSMUL_LOHI) {
3137 OpToUse = ISD::SMUL_LOHI;
3138 } else if (HasUMUL_LOHI) {
3139 OpToUse = ISD::UMUL_LOHI;
3140 }
3141 if (OpToUse) {
Bill Wendling775db972009-12-23 00:28:23 +00003142 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3143 Node->getOperand(1)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003144 break;
3145 }
Anton Korobeynikov8983da72009-11-07 17:14:39 +00003146 Tmp1 = ExpandIntLibCall(Node, false,
3147 RTLIB::MUL_I8,
3148 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman26ea8f92009-05-27 07:05:37 +00003149 RTLIB::MUL_I64, RTLIB::MUL_I128);
3150 Results.push_back(Tmp1);
3151 break;
3152 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003153 case ISD::SADDO:
3154 case ISD::SSUBO: {
3155 SDValue LHS = Node->getOperand(0);
3156 SDValue RHS = Node->getOperand(1);
3157 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3158 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3159 LHS, RHS);
3160 Results.push_back(Sum);
Bill Wendling122d06d2009-12-23 00:05:09 +00003161 EVT OType = Node->getValueType(1);
Bill Wendling775db972009-12-23 00:28:23 +00003162
Eli Friedman4bc8c712009-05-27 12:20:41 +00003163 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3164
3165 // LHSSign -> LHS >= 0
3166 // RHSSign -> RHS >= 0
3167 // SumSign -> Sum >= 0
3168 //
3169 // Add:
3170 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3171 // Sub:
3172 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3173 //
3174 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3175 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3176 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3177 Node->getOpcode() == ISD::SADDO ?
3178 ISD::SETEQ : ISD::SETNE);
3179
3180 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3181 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3182
3183 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3184 Results.push_back(Cmp);
3185 break;
3186 }
3187 case ISD::UADDO:
3188 case ISD::USUBO: {
3189 SDValue LHS = Node->getOperand(0);
3190 SDValue RHS = Node->getOperand(1);
3191 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3192 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3193 LHS, RHS);
3194 Results.push_back(Sum);
Bill Wendling775db972009-12-23 00:28:23 +00003195 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3196 Node->getOpcode () == ISD::UADDO ?
3197 ISD::SETULT : ISD::SETUGT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003198 break;
3199 }
Eli Friedmandb3c1692009-06-16 06:58:29 +00003200 case ISD::UMULO:
3201 case ISD::SMULO: {
Owen Andersone50ed302009-08-10 22:56:29 +00003202 EVT VT = Node->getValueType(0);
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003203 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmandb3c1692009-06-16 06:58:29 +00003204 SDValue LHS = Node->getOperand(0);
3205 SDValue RHS = Node->getOperand(1);
3206 SDValue BottomHalf;
3207 SDValue TopHalf;
Nuno Lopesec9d8b02009-12-23 17:48:10 +00003208 static const unsigned Ops[2][3] =
Eli Friedmandb3c1692009-06-16 06:58:29 +00003209 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3210 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3211 bool isSigned = Node->getOpcode() == ISD::SMULO;
3212 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3213 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3214 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3215 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3216 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3217 RHS);
3218 TopHalf = BottomHalf.getValue(1);
Eric Christopher38a18262011-01-20 00:29:24 +00003219 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3220 VT.getSizeInBits() * 2))) {
Eli Friedmandb3c1692009-06-16 06:58:29 +00003221 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3222 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3223 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3224 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3225 DAG.getIntPtrConstant(0));
3226 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3227 DAG.getIntPtrConstant(1));
Eric Christopher38a18262011-01-20 00:29:24 +00003228 } else {
3229 // We can fall back to a libcall with an illegal type for the MUL if we
3230 // have a libcall big enough.
3231 // Also, we can fall back to a division in some cases, but that's a big
3232 // performance hit in the general case.
Eric Christopher38a18262011-01-20 00:29:24 +00003233 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3234 if (WideVT == MVT::i16)
3235 LC = RTLIB::MUL_I16;
3236 else if (WideVT == MVT::i32)
3237 LC = RTLIB::MUL_I32;
3238 else if (WideVT == MVT::i64)
3239 LC = RTLIB::MUL_I64;
3240 else if (WideVT == MVT::i128)
3241 LC = RTLIB::MUL_I128;
3242 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanf316eb72011-05-16 22:09:53 +00003243
3244 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003245 // part.
3246 unsigned LoSize = VT.getSizeInBits();
3247 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3248 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3249 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3250 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Anderson95771af2011-02-25 21:41:48 +00003251
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003252 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3253 // pre-lowered to the correct types. This all depends upon WideVT not
3254 // being a legal type for the architecture and thus has to be split to
3255 // two arguments.
3256 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3257 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3258 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3259 DAG.getIntPtrConstant(0));
3260 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3261 DAG.getIntPtrConstant(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00003262 // Ret is a node with an illegal type. Because such things are not
3263 // generally permitted during this phase of legalization, delete the
3264 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3265 DAG.DeleteNode(Ret.getNode());
Eli Friedmandb3c1692009-06-16 06:58:29 +00003266 }
Dan Gohmanf316eb72011-05-16 22:09:53 +00003267
Eli Friedmandb3c1692009-06-16 06:58:29 +00003268 if (isSigned) {
Owen Anderson95771af2011-02-25 21:41:48 +00003269 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3270 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmandb3c1692009-06-16 06:58:29 +00003271 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
3272 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf, Tmp1,
3273 ISD::SETNE);
3274 } else {
3275 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf,
3276 DAG.getConstant(0, VT), ISD::SETNE);
3277 }
3278 Results.push_back(BottomHalf);
3279 Results.push_back(TopHalf);
3280 break;
3281 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003282 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +00003283 EVT PairTy = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003284 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3285 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendling775db972009-12-23 00:28:23 +00003286 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003287 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003288 TLI.getShiftAmountTy(PairTy)));
Bill Wendling775db972009-12-23 00:28:23 +00003289 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003290 break;
3291 }
Eli Friedman509150f2009-05-27 07:58:35 +00003292 case ISD::SELECT:
3293 Tmp1 = Node->getOperand(0);
3294 Tmp2 = Node->getOperand(1);
3295 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003296 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman509150f2009-05-27 07:58:35 +00003297 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3298 Tmp2, Tmp3,
3299 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendling775db972009-12-23 00:28:23 +00003300 } else {
Eli Friedman509150f2009-05-27 07:58:35 +00003301 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3302 DAG.getConstant(0, Tmp1.getValueType()),
3303 Tmp2, Tmp3, ISD::SETNE);
Bill Wendling775db972009-12-23 00:28:23 +00003304 }
Eli Friedman509150f2009-05-27 07:58:35 +00003305 Results.push_back(Tmp1);
3306 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003307 case ISD::BR_JT: {
3308 SDValue Chain = Node->getOperand(0);
3309 SDValue Table = Node->getOperand(1);
3310 SDValue Index = Node->getOperand(2);
3311
Owen Andersone50ed302009-08-10 22:56:29 +00003312 EVT PTy = TLI.getPointerTy();
Chris Lattner071c62f2010-01-25 23:26:13 +00003313
3314 const TargetData &TD = *TLI.getTargetData();
3315 unsigned EntrySize =
3316 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach6e992612010-07-02 17:41:59 +00003317
Chris Lattner071c62f2010-01-25 23:26:13 +00003318 Index = DAG.getNode(ISD::MUL, dl, PTy,
Eli Friedman4bc8c712009-05-27 12:20:41 +00003319 Index, DAG.getConstant(EntrySize, PTy));
3320 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3321
Owen Anderson23b9b192009-08-12 00:36:31 +00003322 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastingsa9011292011-02-16 16:23:55 +00003323 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattner85ca1062010-09-21 07:32:19 +00003324 MachinePointerInfo::getJumpTable(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00003325 false, false, 0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003326 Addr = LD;
Dan Gohman55e59c12010-04-19 19:05:59 +00003327 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman4bc8c712009-05-27 12:20:41 +00003328 // For PIC, the sequence is:
Bill Wendling775db972009-12-23 00:28:23 +00003329 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman4bc8c712009-05-27 12:20:41 +00003330 // RelocBase can be JumpTable, GOT or some sort of global base.
3331 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3332 TLI.getPICJumpTableRelocBase(Table, DAG));
3333 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003334 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003335 Results.push_back(Tmp1);
3336 break;
3337 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003338 case ISD::BRCOND:
3339 // Expand brcond's setcc into its constituent parts and create a BR_CC
3340 // Node.
3341 Tmp1 = Node->getOperand(0);
3342 Tmp2 = Node->getOperand(1);
Bill Wendling775db972009-12-23 00:28:23 +00003343 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003344 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003345 Tmp1, Tmp2.getOperand(2),
3346 Tmp2.getOperand(0), Tmp2.getOperand(1),
3347 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003348 } else {
Stuart Hastings88882242011-05-13 00:51:54 +00003349 // We test only the i1 bit. Skip the AND if UNDEF.
3350 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3351 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3352 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003353 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastings88882242011-05-13 00:51:54 +00003354 DAG.getCondCode(ISD::SETNE), Tmp3,
3355 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003356 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003357 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003358 Results.push_back(Tmp1);
3359 break;
Eli Friedmanad754602009-05-28 03:56:57 +00003360 case ISD::SETCC: {
3361 Tmp1 = Node->getOperand(0);
3362 Tmp2 = Node->getOperand(1);
3363 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003364 LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Eli Friedmanad754602009-05-28 03:56:57 +00003365
3366 // If we expanded the SETCC into an AND/OR, return the new node
3367 if (Tmp2.getNode() == 0) {
3368 Results.push_back(Tmp1);
3369 break;
3370 }
3371
3372 // Otherwise, SETCC for the given comparison type must be completely
3373 // illegal; expand it into a SELECT_CC.
Owen Andersone50ed302009-08-10 22:56:29 +00003374 EVT VT = Node->getValueType(0);
Eli Friedmanad754602009-05-28 03:56:57 +00003375 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
3376 DAG.getConstant(1, VT), DAG.getConstant(0, VT), Tmp3);
3377 Results.push_back(Tmp1);
3378 break;
3379 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003380 case ISD::SELECT_CC: {
3381 Tmp1 = Node->getOperand(0); // LHS
3382 Tmp2 = Node->getOperand(1); // RHS
3383 Tmp3 = Node->getOperand(2); // True
3384 Tmp4 = Node->getOperand(3); // False
3385 SDValue CC = Node->getOperand(4);
3386
3387 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp1.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003388 Tmp1, Tmp2, CC, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003389
3390 assert(!Tmp2.getNode() && "Can't legalize SELECT_CC with legal condition!");
3391 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3392 CC = DAG.getCondCode(ISD::SETNE);
3393 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, Tmp2,
3394 Tmp3, Tmp4, CC);
3395 Results.push_back(Tmp1);
3396 break;
3397 }
3398 case ISD::BR_CC: {
3399 Tmp1 = Node->getOperand(0); // Chain
3400 Tmp2 = Node->getOperand(2); // LHS
3401 Tmp3 = Node->getOperand(3); // RHS
3402 Tmp4 = Node->getOperand(1); // CC
3403
3404 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp2.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003405 Tmp2, Tmp3, Tmp4, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003406
3407 assert(!Tmp3.getNode() && "Can't legalize BR_CC with legal condition!");
3408 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3409 Tmp4 = DAG.getCondCode(ISD::SETNE);
3410 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, Tmp2,
3411 Tmp3, Node->getOperand(4));
3412 Results.push_back(Tmp1);
3413 break;
3414 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003415 case ISD::BUILD_VECTOR:
3416 Results.push_back(ExpandBUILD_VECTOR(Node));
3417 break;
3418 case ISD::SRA:
3419 case ISD::SRL:
3420 case ISD::SHL: {
3421 // Scalarize vector SRA/SRL/SHL.
3422 EVT VT = Node->getValueType(0);
3423 assert(VT.isVector() && "Unable to legalize non-vector shift");
3424 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3425 unsigned NumElem = VT.getVectorNumElements();
3426
3427 SmallVector<SDValue, 8> Scalars;
3428 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3429 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3430 VT.getScalarType(),
3431 Node->getOperand(0), DAG.getIntPtrConstant(Idx));
3432 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3433 VT.getScalarType(),
3434 Node->getOperand(1), DAG.getIntPtrConstant(Idx));
3435 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3436 VT.getScalarType(), Ex, Sh));
3437 }
3438 SDValue Result =
3439 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3440 &Scalars[0], Scalars.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +00003441 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +00003442 break;
3443 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003444 case ISD::GLOBAL_OFFSET_TABLE:
3445 case ISD::GlobalAddress:
3446 case ISD::GlobalTLSAddress:
3447 case ISD::ExternalSymbol:
3448 case ISD::ConstantPool:
3449 case ISD::JumpTable:
3450 case ISD::INTRINSIC_W_CHAIN:
3451 case ISD::INTRINSIC_WO_CHAIN:
3452 case ISD::INTRINSIC_VOID:
3453 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedman3f727d62009-05-27 02:16:40 +00003454 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00003455 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003456
3457 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003458 if (!Results.empty())
3459 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003460}
Dan Gohman65fd6562011-11-03 21:49:52 +00003461
3462void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3463 SmallVector<SDValue, 8> Results;
Owen Andersone50ed302009-08-10 22:56:29 +00003464 EVT OVT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00003465 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedmana64eb922009-07-17 05:16:04 +00003466 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendling775db972009-12-23 00:28:23 +00003467 Node->getOpcode() == ISD::SETCC) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003468 OVT = Node->getOperand(0).getValueType();
Bill Wendling775db972009-12-23 00:28:23 +00003469 }
Owen Andersone50ed302009-08-10 22:56:29 +00003470 EVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Eli Friedman8c377c72009-05-27 01:25:56 +00003471 DebugLoc dl = Node->getDebugLoc();
Eli Friedman509150f2009-05-27 07:58:35 +00003472 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman8c377c72009-05-27 01:25:56 +00003473 switch (Node->getOpcode()) {
3474 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003475 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003476 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003477 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003478 case ISD::CTPOP:
3479 // Zero extend the argument.
3480 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00003481 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
3482 // already the correct result.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003483 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003484 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth63974b22011-12-13 01:56:10 +00003485 // FIXME: This should set a bit in the zero extended value instead.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003486 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Eli Friedman8c377c72009-05-27 01:25:56 +00003487 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3488 ISD::SETEQ);
3489 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
3490 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth63974b22011-12-13 01:56:10 +00003491 } else if (Node->getOpcode() == ISD::CTLZ ||
3492 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003493 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3494 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3495 DAG.getConstant(NVT.getSizeInBits() -
3496 OVT.getSizeInBits(), NVT));
3497 }
Bill Wendling775db972009-12-23 00:28:23 +00003498 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00003499 break;
3500 case ISD::BSWAP: {
3501 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling167bea72009-12-22 22:53:39 +00003502 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00003503 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3504 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Anderson95771af2011-02-25 21:41:48 +00003505 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendling775db972009-12-23 00:28:23 +00003506 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003507 break;
3508 }
3509 case ISD::FP_TO_UINT:
3510 case ISD::FP_TO_SINT:
3511 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3512 Node->getOpcode() == ISD::FP_TO_SINT, dl);
3513 Results.push_back(Tmp1);
3514 break;
3515 case ISD::UINT_TO_FP:
3516 case ISD::SINT_TO_FP:
3517 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3518 Node->getOpcode() == ISD::SINT_TO_FP, dl);
3519 Results.push_back(Tmp1);
3520 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003521 case ISD::AND:
3522 case ISD::OR:
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003523 case ISD::XOR: {
3524 unsigned ExtOp, TruncOp;
3525 if (OVT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003526 ExtOp = ISD::BITCAST;
3527 TruncOp = ISD::BITCAST;
Chris Lattner35a38932010-04-07 23:47:51 +00003528 } else {
3529 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003530 ExtOp = ISD::ANY_EXTEND;
3531 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003532 }
3533 // Promote each of the values to the new type.
3534 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3535 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3536 // Perform the larger operation, then convert back
Bill Wendling775db972009-12-23 00:28:23 +00003537 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3538 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003539 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003540 }
3541 case ISD::SELECT: {
Eli Friedman509150f2009-05-27 07:58:35 +00003542 unsigned ExtOp, TruncOp;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003543 if (Node->getValueType(0).isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003544 ExtOp = ISD::BITCAST;
3545 TruncOp = ISD::BITCAST;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003546 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman509150f2009-05-27 07:58:35 +00003547 ExtOp = ISD::ANY_EXTEND;
3548 TruncOp = ISD::TRUNCATE;
3549 } else {
3550 ExtOp = ISD::FP_EXTEND;
3551 TruncOp = ISD::FP_ROUND;
3552 }
3553 Tmp1 = Node->getOperand(0);
3554 // Promote each of the values to the new type.
3555 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3556 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
3557 // Perform the larger operation, then round down.
3558 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
3559 if (TruncOp != ISD::FP_ROUND)
Bill Wendling775db972009-12-23 00:28:23 +00003560 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003561 else
Bill Wendling775db972009-12-23 00:28:23 +00003562 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman509150f2009-05-27 07:58:35 +00003563 DAG.getIntPtrConstant(0));
Bill Wendling775db972009-12-23 00:28:23 +00003564 Results.push_back(Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003565 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003566 }
Eli Friedman509150f2009-05-27 07:58:35 +00003567 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003568 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003569
3570 // Cast the two input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003571 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
3572 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman509150f2009-05-27 07:58:35 +00003573
3574 // Convert the shuffle mask to the right # elements.
Bill Wendling775db972009-12-23 00:28:23 +00003575 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003576 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003577 Results.push_back(Tmp1);
3578 break;
3579 }
Eli Friedmanad754602009-05-28 03:56:57 +00003580 case ISD::SETCC: {
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003581 unsigned ExtOp = ISD::FP_EXTEND;
3582 if (NVT.isInteger()) {
3583 ISD::CondCode CCCode =
3584 cast<CondCodeSDNode>(Node->getOperand(2))->get();
3585 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedmanad754602009-05-28 03:56:57 +00003586 }
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003587 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3588 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedmanad754602009-05-28 03:56:57 +00003589 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3590 Tmp1, Tmp2, Node->getOperand(2)));
3591 break;
3592 }
Pete Cooperd578b902012-01-12 21:46:18 +00003593 case ISD::FPOW: {
3594 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3595 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
3596 Tmp3 = DAG.getNode(ISD::FPOW, dl, NVT, Tmp1, Tmp2);
3597 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3598 Tmp3, DAG.getIntPtrConstant(0)));
3599 break;
3600 }
3601 case ISD::FLOG2:
3602 case ISD::FEXP2:
3603 case ISD::FLOG:
3604 case ISD::FEXP: {
3605 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3606 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
3607 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3608 Tmp2, DAG.getIntPtrConstant(0)));
3609 break;
3610 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003611 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003612
3613 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003614 if (!Results.empty())
3615 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003616}
3617
Chris Lattner3e928bb2005-01-07 07:47:09 +00003618// SelectionDAG::Legalize - This is the entry point for the file.
3619//
Dan Gohman975716a2011-05-16 22:19:54 +00003620void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00003621 /// run - This is the main entry point to this class.
3622 ///
Dan Gohman975716a2011-05-16 22:19:54 +00003623 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00003624}