blob: 10852bff92db177e69f37cabeb2e35dae4704538 [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
Chandler Carruthd04a8d42012-12-03 16:50:05 +000014#include "llvm/CodeGen/SelectionDAG.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
16#include "llvm/ADT/SmallVector.h"
Paul Redmond86cdbc92013-02-15 18:45:18 +000017#include "llvm/ADT/Triple.h"
Evan Cheng3d2125c2010-11-30 23:55:39 +000018#include "llvm/CodeGen/Analysis.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000019#include "llvm/CodeGen/MachineFunction.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000020#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000021#include "llvm/DebugInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000022#include "llvm/IR/CallingConv.h"
23#include "llvm/IR/Constants.h"
24#include "llvm/IR/DataLayout.h"
25#include "llvm/IR/DerivedTypes.h"
Chandler Carruth40b2c322013-01-08 05:11:57 +000026#include "llvm/IR/Function.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000027#include "llvm/IR/LLVMContext.h"
David Greene993aace2010-01-05 01:24:53 +000028#include "llvm/Support/Debug.h"
Jim Grosbache03262f2010-06-18 21:43:38 +000029#include "llvm/Support/ErrorHandling.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000030#include "llvm/Support/MathExtras.h"
Chris Lattner45cfe542009-08-23 06:03:38 +000031#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000032#include "llvm/Target/TargetFrameLowering.h"
33#include "llvm/Target/TargetLowering.h"
34#include "llvm/Target/TargetMachine.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000035using namespace llvm;
36
37//===----------------------------------------------------------------------===//
38/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
39/// hacks on it until the target machine can handle it. This involves
40/// eliminating value sizes the machine cannot handle (promoting small sizes to
41/// large sizes or splitting up large values into small values) as well as
42/// eliminating operations the machine cannot handle.
43///
44/// This code also does a small amount of optimization and recognition of idioms
45/// as part of its processing. For example, if a target does not support a
46/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
47/// will attempt merge setcc and brc instructions into brcc's.
48///
49namespace {
Dan Gohman65fd6562011-11-03 21:49:52 +000050class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
Dan Gohman55e59c12010-04-19 19:05:59 +000051 const TargetMachine &TM;
Dan Gohmand858e902010-04-17 15:26:15 +000052 const TargetLowering &TLI;
Chris Lattner3e928bb2005-01-07 07:47:09 +000053 SelectionDAG &DAG;
54
Dan Gohman65fd6562011-11-03 21:49:52 +000055 /// LegalizePosition - The iterator for walking through the node list.
56 SelectionDAG::allnodes_iterator LegalizePosition;
57
58 /// LegalizedNodes - The set of nodes which have already been legalized.
59 SmallPtrSet<SDNode *, 16> LegalizedNodes;
60
Matt Arsenault225ed702013-05-18 00:21:46 +000061 EVT getSetCCResultType(EVT VT) const {
62 return TLI.getSetCCResultType(*DAG.getContext(), VT);
63 }
64
Chris Lattner6831a812006-02-13 09:18:02 +000065 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000066
Chris Lattner3e928bb2005-01-07 07:47:09 +000067public:
Dan Gohman975716a2011-05-16 22:19:54 +000068 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +000069
Chris Lattner3e928bb2005-01-07 07:47:09 +000070 void LegalizeDAG();
71
Chris Lattner456a93a2006-01-28 07:39:30 +000072private:
Dan Gohman65fd6562011-11-03 21:49:52 +000073 /// LegalizeOp - Legalizes the given operation.
74 void LegalizeOp(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +000075
Eli Friedman7ef3d172009-06-06 07:04:42 +000076 SDValue OptimizeFloatStore(StoreSDNode *ST);
77
Nadav Rotemb6e89f02012-07-11 08:52:09 +000078 void LegalizeLoadOps(SDNode *Node);
79 void LegalizeStoreOps(SDNode *Node);
80
Nate Begeman68679912008-04-25 18:07:40 +000081 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
82 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
83 /// is necessary to spill the vector being inserted into to memory, perform
84 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +000085 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Andrew Trickac6d9be2013-05-25 02:42:55 +000086 SDValue Idx, SDLoc dl);
Eli Friedman3f727d62009-05-27 02:16:40 +000087 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
Andrew Trickac6d9be2013-05-25 02:42:55 +000088 SDValue Idx, SDLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +000089
Nate Begeman5a5ca152009-04-29 05:20:52 +000090 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
91 /// performs the same shuffe in terms of order or result bytes, but on a type
92 /// whose vector element type is narrower than the original shuffle type.
93 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Andrew Trickac6d9be2013-05-25 02:42:55 +000094 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Jim Grosbach6e992612010-07-02 17:41:59 +000095 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +000096 ArrayRef<int> Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +000097
Tom Stellard8a9879a2013-09-28 02:50:32 +000098 bool LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +000099 SDLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000100
Eli Friedman47b41f72009-05-27 02:21:29 +0000101 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherabbbfbd2011-04-20 01:19:45 +0000102 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000103 unsigned NumOps, bool isSigned, SDLoc dl);
Eric Christopherabbbfbd2011-04-20 01:19:45 +0000104
Jim Grosbache03262f2010-06-18 21:43:38 +0000105 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
106 SDNode *Node, bool isSigned);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000107 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
108 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
Evan Cheng8688a582013-01-29 02:32:37 +0000109 RTLIB::Libcall Call_F128,
110 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000111 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
112 RTLIB::Libcall Call_I8,
113 RTLIB::Libcall Call_I16,
114 RTLIB::Libcall Call_I32,
115 RTLIB::Libcall Call_I64,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000116 RTLIB::Libcall Call_I128);
Evan Cheng65279cb2011-04-16 03:08:26 +0000117 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Evan Cheng8688a582013-01-29 02:32:37 +0000118 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnercad063f2005-07-16 00:19:57 +0000119
Andrew Trickac6d9be2013-05-25 02:42:55 +0000120 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, SDLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000121 SDValue ExpandBUILD_VECTOR(SDNode *Node);
122 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +0000123 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
124 SmallVectorImpl<SDValue> &Results);
125 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Andersone50ed302009-08-10 22:56:29 +0000126 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000127 SDLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000128 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000129 SDLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000130 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000131 SDLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000132
Andrew Trickac6d9be2013-05-25 02:42:55 +0000133 SDValue ExpandBSWAP(SDValue Op, SDLoc dl);
134 SDValue ExpandBitCount(unsigned Opc, SDValue Op, SDLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000135
Eli Friedman3d43b3f2009-05-23 22:37:25 +0000136 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenecfe33c42011-01-26 19:13:22 +0000137 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000138 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman8c377c72009-05-27 01:25:56 +0000139
Dan Gohman65fd6562011-11-03 21:49:52 +0000140 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
141
Jim Grosbache03262f2010-06-18 21:43:38 +0000142 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
143
Dan Gohman65fd6562011-11-03 21:49:52 +0000144 void ExpandNode(SDNode *Node);
145 void PromoteNode(SDNode *Node);
146
Eli Friedman0e3642a2011-11-11 23:58:27 +0000147 void ForgetNode(SDNode *N) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000148 LegalizedNodes.erase(N);
149 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
150 ++LegalizePosition;
151 }
152
Eli Friedman0e3642a2011-11-11 23:58:27 +0000153public:
154 // DAGUpdateListener implementation.
155 virtual void NodeDeleted(SDNode *N, SDNode *E) {
156 ForgetNode(N);
157 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000158 virtual void NodeUpdated(SDNode *N) {}
Eli Friedman0e3642a2011-11-11 23:58:27 +0000159
160 // Node replacement helpers
161 void ReplacedNode(SDNode *N) {
162 if (N->use_empty()) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000163 DAG.RemoveDeadNode(N);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000164 } else {
165 ForgetNode(N);
166 }
167 }
168 void ReplaceNode(SDNode *Old, SDNode *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000169 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000170 ReplacedNode(Old);
171 }
172 void ReplaceNode(SDValue Old, SDValue New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000173 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000174 ReplacedNode(Old.getNode());
175 }
176 void ReplaceNode(SDNode *Old, const SDValue *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000177 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000178 ReplacedNode(Old);
179 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000180};
181}
182
Nate Begeman5a5ca152009-04-29 05:20:52 +0000183/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
184/// performs the same shuffe in terms of order or result bytes, but on a type
185/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000186/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach6e992612010-07-02 17:41:59 +0000187SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +0000188SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Nate Begeman5a5ca152009-04-29 05:20:52 +0000189 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +0000190 ArrayRef<int> Mask) const {
Nate Begeman5a5ca152009-04-29 05:20:52 +0000191 unsigned NumMaskElts = VT.getVectorNumElements();
192 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000193 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000194
Nate Begeman9008ca62009-04-27 18:41:29 +0000195 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
196
197 if (NumEltsGrowth == 1)
198 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach6e992612010-07-02 17:41:59 +0000199
Nate Begeman9008ca62009-04-27 18:41:29 +0000200 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000201 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000202 int Idx = Mask[i];
203 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach6e992612010-07-02 17:41:59 +0000204 if (Idx < 0)
Nate Begeman9008ca62009-04-27 18:41:29 +0000205 NewMask.push_back(-1);
206 else
207 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000208 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000209 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000210 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000211 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
212 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000213}
214
Dan Gohman975716a2011-05-16 22:19:54 +0000215SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000216 : SelectionDAG::DAGUpdateListener(dag),
217 TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
Dan Gohmanea027022011-07-15 22:19:02 +0000218 DAG(dag) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000219}
220
Chris Lattner3e928bb2005-01-07 07:47:09 +0000221void SelectionDAGLegalize::LegalizeDAG() {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000222 DAG.AssignTopologicalOrder();
Dan Gohman2ba60e52011-10-28 01:29:32 +0000223
Dan Gohman65fd6562011-11-03 21:49:52 +0000224 // Visit all the nodes. We start in topological order, so that we see
225 // nodes with their original operands intact. Legalization can produce
226 // new nodes which may themselves need to be legalized. Iterate until all
227 // nodes have been legalized.
228 for (;;) {
229 bool AnyLegalized = false;
230 for (LegalizePosition = DAG.allnodes_end();
231 LegalizePosition != DAG.allnodes_begin(); ) {
232 --LegalizePosition;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000233
Dan Gohman65fd6562011-11-03 21:49:52 +0000234 SDNode *N = LegalizePosition;
235 if (LegalizedNodes.insert(N)) {
236 AnyLegalized = true;
237 LegalizeOp(N);
238 }
239 }
240 if (!AnyLegalized)
241 break;
242
243 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000244
245 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000246 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000247}
248
Evan Cheng9f877882006-12-13 20:57:08 +0000249/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
250/// a load from the constant pool.
Dan Gohman65fd6562011-11-03 21:49:52 +0000251SDValue
252SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng00495212006-12-12 21:32:44 +0000253 bool Extend = false;
Andrew Trickac6d9be2013-05-25 02:42:55 +0000254 SDLoc dl(CFP);
Evan Cheng00495212006-12-12 21:32:44 +0000255
256 // If a FP immediate is precise when represented as a float and if the
257 // target can do an extending load from float to double, we put it into
258 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000259 // double. This shrinks FP constants and canonicalizes them for targets where
260 // an FP extending load is the same cost as a normal load (such as on the x87
261 // fp stack or PPC FP unit).
Owen Andersone50ed302009-08-10 22:56:29 +0000262 EVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000263 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000264 if (!UseCP) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000265 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000266 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000267 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000268 }
269
Owen Andersone50ed302009-08-10 22:56:29 +0000270 EVT OrigVT = VT;
271 EVT SVT = VT;
Owen Anderson825b72b2009-08-11 20:47:22 +0000272 while (SVT != MVT::f32) {
273 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman7720cb32010-06-18 14:01:07 +0000274 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Chengef120572008-03-04 08:05:30 +0000275 // Only do this if the target has a native EXTLOAD instruction from
276 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000277 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000278 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000279 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Andersonbaf3c402009-07-29 18:55:55 +0000280 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Chengef120572008-03-04 08:05:30 +0000281 VT = SVT;
282 Extend = true;
283 }
Evan Cheng00495212006-12-12 21:32:44 +0000284 }
285
Dan Gohman475871a2008-07-27 21:46:04 +0000286 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000287 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman65fd6562011-11-03 21:49:52 +0000288 if (Extend) {
289 SDValue Result =
290 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
291 DAG.getEntryNode(),
292 CPIdx, MachinePointerInfo::getConstantPool(),
293 VT, false, false, Alignment);
294 return Result;
295 }
296 SDValue Result =
297 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000298 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman65fd6562011-11-03 21:49:52 +0000299 Alignment);
300 return Result;
Evan Cheng00495212006-12-12 21:32:44 +0000301}
302
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000303/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman65fd6562011-11-03 21:49:52 +0000304static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
305 const TargetLowering &TLI,
Eli Friedman0e3642a2011-11-11 23:58:27 +0000306 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000307 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
308 "unaligned indexed stores not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000309 SDValue Chain = ST->getChain();
310 SDValue Ptr = ST->getBasePtr();
311 SDValue Val = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +0000312 EVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000313 int Alignment = ST->getAlignment();
Matt Arsenault4f17f882013-10-30 23:30:05 +0000314 unsigned AS = ST->getAddressSpace();
315
Andrew Trickac6d9be2013-05-25 02:42:55 +0000316 SDLoc dl(ST);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000317 if (ST->getMemoryVT().isFloatingPoint() ||
318 ST->getMemoryVT().isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000319 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000320 if (TLI.isTypeLegal(intVT)) {
321 // Expand to a bitconvert of the value to the integer type of the
322 // same size, then a (misaligned) int store.
323 // FIXME: Does not handle truncating floating point stores!
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000324 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman65fd6562011-11-03 21:49:52 +0000325 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
326 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000327 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000328 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000329 }
Dan Gohman1b328962011-05-17 22:22:52 +0000330 // Do a (aligned) store to a stack slot, then copy from the stack slot
331 // to the final destination using (unaligned) integer loads and stores.
332 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000333 MVT RegVT =
Dan Gohman1b328962011-05-17 22:22:52 +0000334 TLI.getRegisterType(*DAG.getContext(),
335 EVT::getIntegerVT(*DAG.getContext(),
336 StoredVT.getSizeInBits()));
337 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
338 unsigned RegBytes = RegVT.getSizeInBits() / 8;
339 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
340
341 // Make sure the stack slot is also aligned for the register type.
342 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
343
344 // Perform the original store, only redirected to the stack slot.
345 SDValue Store = DAG.getTruncStore(Chain, dl,
346 Val, StackPtr, MachinePointerInfo(),
347 StoredVT, false, false, 0);
Matt Arsenault4f17f882013-10-30 23:30:05 +0000348 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy(AS));
Dan Gohman1b328962011-05-17 22:22:52 +0000349 SmallVector<SDValue, 8> Stores;
350 unsigned Offset = 0;
351
352 // Do all but one copies using the full register width.
353 for (unsigned i = 1; i < NumRegs; i++) {
354 // Load one integer register's worth from the stack slot.
355 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
356 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000357 false, false, false, 0);
Dan Gohman1b328962011-05-17 22:22:52 +0000358 // Store it to the final location. Remember the store.
359 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
360 ST->getPointerInfo().getWithOffset(Offset),
361 ST->isVolatile(), ST->isNonTemporal(),
362 MinAlign(ST->getAlignment(), Offset)));
363 // Increment the pointers.
364 Offset += RegBytes;
365 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
366 Increment);
367 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
368 }
369
370 // The last store may be partial. Do a truncating store. On big-endian
371 // machines this requires an extending load from the stack slot to ensure
372 // that the bits are in the right place.
373 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
374 8 * (StoredBytes - Offset));
375
376 // Load from the stack slot.
377 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
378 MachinePointerInfo(),
379 MemVT, false, false, 0);
380
381 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
382 ST->getPointerInfo()
383 .getWithOffset(Offset),
384 MemVT, ST->isVolatile(),
385 ST->isNonTemporal(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000386 MinAlign(ST->getAlignment(), Offset),
387 ST->getTBAAInfo()));
Dan Gohman1b328962011-05-17 22:22:52 +0000388 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman65fd6562011-11-03 21:49:52 +0000389 SDValue Result =
390 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
391 Stores.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +0000392 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000393 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000394 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000395 assert(ST->getMemoryVT().isInteger() &&
396 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000397 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000398 // Get the half-size VT
Ken Dyckbceddbd2009-12-17 20:09:43 +0000399 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000400 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000401 int IncrementSize = NumBits / 8;
402
403 // Divide the stored value in two parts.
Owen Anderson95771af2011-02-25 21:41:48 +0000404 SDValue ShiftAmount = DAG.getConstant(NumBits,
405 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman475871a2008-07-27 21:46:04 +0000406 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000407 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000408
409 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000410 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000411 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000412 ST->getPointerInfo(), NewStoredVT,
David Greene1e559442010-02-15 17:00:31 +0000413 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Matt Arsenault4f17f882013-10-30 23:30:05 +0000414
Dale Johannesenbb5da912009-02-02 20:41:04 +0000415 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Matt Arsenault4f17f882013-10-30 23:30:05 +0000416 DAG.getConstant(IncrementSize, TLI.getPointerTy(AS)));
Duncan Sandsdc846502007-10-28 12:59:45 +0000417 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000418 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000419 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene1e559442010-02-15 17:00:31 +0000420 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000421 Alignment, ST->getTBAAInfo());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000422
Dan Gohman65fd6562011-11-03 21:49:52 +0000423 SDValue Result =
424 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000425 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000426}
427
428/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman65fd6562011-11-03 21:49:52 +0000429static void
430ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
431 const TargetLowering &TLI,
432 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000433 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
434 "unaligned indexed loads not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000435 SDValue Chain = LD->getChain();
436 SDValue Ptr = LD->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +0000437 EVT VT = LD->getValueType(0);
438 EVT LoadedVT = LD->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000439 SDLoc dl(LD);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000440 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000441 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000442 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000443 // Expand to a (misaligned) integer load of the same size,
444 // then bitconvert to floating point or vector.
Richard Sandiford66589dc2013-10-28 11:17:59 +0000445 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr,
446 LD->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000447 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000448 if (LoadedVT != VT)
449 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
450 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000451
Dan Gohman65fd6562011-11-03 21:49:52 +0000452 ValResult = Result;
453 ChainResult = Chain;
454 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000455 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000456
Chris Lattnerecf42c42010-09-21 16:36:31 +0000457 // Copy the value to a (aligned) stack slot using (unaligned) integer
458 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000459 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattnerecf42c42010-09-21 16:36:31 +0000460 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
461 unsigned RegBytes = RegVT.getSizeInBits() / 8;
462 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
463
464 // Make sure the stack slot is also aligned for the register type.
465 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
466
467 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
468 SmallVector<SDValue, 8> Stores;
469 SDValue StackPtr = StackBase;
470 unsigned Offset = 0;
471
472 // Do all but one copies using the full register width.
473 for (unsigned i = 1; i < NumRegs; i++) {
474 // Load one integer register's worth from the original location.
475 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
476 LD->getPointerInfo().getWithOffset(Offset),
477 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000478 LD->isInvariant(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000479 MinAlign(LD->getAlignment(), Offset),
480 LD->getTBAAInfo());
Chris Lattnerecf42c42010-09-21 16:36:31 +0000481 // Follow the load with a store to the stack slot. Remember the store.
482 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000483 MachinePointerInfo(), false, false, 0));
Chris Lattnerecf42c42010-09-21 16:36:31 +0000484 // Increment the pointers.
485 Offset += RegBytes;
486 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
487 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
488 Increment);
489 }
490
491 // The last copy may be partial. Do an extending load.
492 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
493 8 * (LoadedBytes - Offset));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000494 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000495 LD->getPointerInfo().getWithOffset(Offset),
496 MemVT, LD->isVolatile(),
497 LD->isNonTemporal(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000498 MinAlign(LD->getAlignment(), Offset),
499 LD->getTBAAInfo());
Chris Lattnerecf42c42010-09-21 16:36:31 +0000500 // Follow the load with a store to the stack slot. Remember the store.
501 // On big-endian machines this requires a truncating store to ensure
502 // that the bits end up in the right place.
503 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
504 MachinePointerInfo(), MemVT,
505 false, false, 0));
506
507 // The order of the stores doesn't matter - say it with a TokenFactor.
508 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
509 Stores.size());
510
511 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastingsa9011292011-02-16 16:23:55 +0000512 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000513 MachinePointerInfo(), LoadedVT, false, false, 0);
514
515 // Callers expect a MERGE_VALUES node.
Dan Gohman65fd6562011-11-03 21:49:52 +0000516 ValResult = Load;
517 ChainResult = TF;
518 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000519 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000520 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000521 "Unaligned load of unsupported type.");
522
Dale Johannesen8155d642008-02-27 22:36:00 +0000523 // Compute the new VT that is half the size of the old one. This is an
524 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000525 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Andersone50ed302009-08-10 22:56:29 +0000526 EVT NewLoadedVT;
Owen Anderson23b9b192009-08-12 00:36:31 +0000527 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000528 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000529
Chris Lattnere400af82007-11-19 21:38:03 +0000530 unsigned Alignment = LD->getAlignment();
531 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000532 ISD::LoadExtType HiExtType = LD->getExtensionType();
533
534 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
535 if (HiExtType == ISD::NON_EXTLOAD)
536 HiExtType = ISD::ZEXTLOAD;
537
538 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000539 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000540 if (TLI.isLittleEndian()) {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000541 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000542 NewLoadedVT, LD->isVolatile(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000543 LD->isNonTemporal(), Alignment, LD->getTBAAInfo());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000544 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +0000545 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000546 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000547 LD->getPointerInfo().getWithOffset(IncrementSize),
548 NewLoadedVT, LD->isVolatile(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000549 LD->isNonTemporal(), MinAlign(Alignment, IncrementSize),
550 LD->getTBAAInfo());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000551 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000552 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000553 NewLoadedVT, LD->isVolatile(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000554 LD->isNonTemporal(), Alignment, LD->getTBAAInfo());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000555 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +0000556 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000557 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000558 LD->getPointerInfo().getWithOffset(IncrementSize),
559 NewLoadedVT, LD->isVolatile(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000560 LD->isNonTemporal(), MinAlign(Alignment, IncrementSize),
561 LD->getTBAAInfo());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000562 }
563
564 // aggregate the two parts
Owen Anderson95771af2011-02-25 21:41:48 +0000565 SDValue ShiftAmount = DAG.getConstant(NumBits,
566 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000567 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
568 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000569
Owen Anderson825b72b2009-08-11 20:47:22 +0000570 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000571 Hi.getValue(1));
572
Dan Gohman65fd6562011-11-03 21:49:52 +0000573 ValResult = Result;
574 ChainResult = TF;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000575}
Evan Cheng912095b2007-01-04 21:56:39 +0000576
Nate Begeman68679912008-04-25 18:07:40 +0000577/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
578/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
579/// is necessary to spill the vector being inserted into to memory, perform
580/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000581SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000582PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000583 SDLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000584 SDValue Tmp1 = Vec;
585 SDValue Tmp2 = Val;
586 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000587
Nate Begeman68679912008-04-25 18:07:40 +0000588 // If the target doesn't support this, we have to spill the input vector
589 // to a temporary stack slot, update the element, then reload it. This is
590 // badness. We could also load the value into a vector register (either
591 // with a "move to register" or "extload into register" instruction, then
592 // permute it into place, if the idx is a constant and if the idx is
593 // supported by the target.
Owen Andersone50ed302009-08-10 22:56:29 +0000594 EVT VT = Tmp1.getValueType();
595 EVT EltVT = VT.getVectorElementType();
596 EVT IdxVT = Tmp3.getValueType();
597 EVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000598 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000599
Evan Chengff89dcb2009-10-18 18:16:27 +0000600 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
601
Nate Begeman68679912008-04-25 18:07:40 +0000602 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000603 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +0000604 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +0000605 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000606
607 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000608 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000609 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000610 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +0000611 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000612 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
613 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000614 // Store the scalar value.
Chris Lattner85ca1062010-09-21 07:32:19 +0000615 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene1e559442010-02-15 17:00:31 +0000616 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000617 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000618 return DAG.getLoad(VT, dl, Ch, StackPtr,
Stephen Lin155615d2013-07-08 00:37:03 +0000619 MachinePointerInfo::getFixedStack(SPFI), false, false,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000620 false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000621}
622
Mon P Wange9f10152008-12-09 05:46:39 +0000623
Eli Friedman3f727d62009-05-27 02:16:40 +0000624SDValue SelectionDAGLegalize::
Andrew Trickac6d9be2013-05-25 02:42:55 +0000625ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) {
Eli Friedman3f727d62009-05-27 02:16:40 +0000626 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
627 // SCALAR_TO_VECTOR requires that the type of the value being inserted
628 // match the element type of the vector being created, except for
629 // integers in which case the inserted value can be over width.
Owen Andersone50ed302009-08-10 22:56:29 +0000630 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedman3f727d62009-05-27 02:16:40 +0000631 if (Val.getValueType() == EltVT ||
632 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
633 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
634 Vec.getValueType(), Val);
635
636 unsigned NumElts = Vec.getValueType().getVectorNumElements();
637 // We generate a shuffle of InVec and ScVec, so the shuffle mask
638 // should be 0,1,2,3,4,5... with the appropriate element replaced with
639 // elt 0 of the RHS.
640 SmallVector<int, 8> ShufOps;
641 for (unsigned i = 0; i != NumElts; ++i)
642 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
643
644 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
645 &ShufOps[0]);
646 }
647 }
648 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
649}
650
Eli Friedman7ef3d172009-06-06 07:04:42 +0000651SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
652 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
653 // FIXME: We shouldn't do this for TargetConstantFP's.
654 // FIXME: move this to the DAG Combiner! Note that we can't regress due
655 // to phase ordering between legalized code and the dag combiner. This
656 // probably means that we need to integrate dag combiner and legalizer
657 // together.
658 // We generally can't do this one for long doubles.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000659 SDValue Chain = ST->getChain();
660 SDValue Ptr = ST->getBasePtr();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000661 unsigned Alignment = ST->getAlignment();
662 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +0000663 bool isNonTemporal = ST->isNonTemporal();
Richard Sandiford66589dc2013-10-28 11:17:59 +0000664 const MDNode *TBAAInfo = ST->getTBAAInfo();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000665 SDLoc dl(ST);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000666 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000667 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohman75b10042011-07-15 22:39:09 +0000668 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000669 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedman7ef3d172009-06-06 07:04:42 +0000670 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson825b72b2009-08-11 20:47:22 +0000671 MVT::i32);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000672 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000673 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000674 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000675
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000676 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000677 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohman75b10042011-07-15 22:39:09 +0000678 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000679 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +0000680 zextOrTrunc(64), MVT::i64);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000681 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000682 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000683 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000684
Dan Gohman75b10042011-07-15 22:39:09 +0000685 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000686 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
687 // stores. If the target supports neither 32- nor 64-bits, this
688 // xform is certainly not worth it.
689 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad40f8f622010-12-07 08:25:19 +0000690 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000691 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000692 if (TLI.isBigEndian()) std::swap(Lo, Hi);
693
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000694 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Richard Sandiford66589dc2013-10-28 11:17:59 +0000695 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000696 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +0000697 DAG.getConstant(4, Ptr.getValueType()));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000698 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000699 ST->getPointerInfo().getWithOffset(4),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000700 isVolatile, isNonTemporal, MinAlign(Alignment, 4U),
701 TBAAInfo);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000702
Owen Anderson825b72b2009-08-11 20:47:22 +0000703 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000704 }
705 }
706 }
Evan Cheng8e23e812011-04-01 00:42:02 +0000707 return SDValue(0, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000708}
709
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000710void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
711 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000712 SDValue Chain = ST->getChain();
713 SDValue Ptr = ST->getBasePtr();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000714 SDLoc dl(Node);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000715
716 unsigned Alignment = ST->getAlignment();
717 bool isVolatile = ST->isVolatile();
718 bool isNonTemporal = ST->isNonTemporal();
Richard Sandiford66589dc2013-10-28 11:17:59 +0000719 const MDNode *TBAAInfo = ST->getTBAAInfo();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000720
721 if (!ST->isTruncatingStore()) {
722 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
723 ReplaceNode(ST, OptStore);
724 return;
725 }
726
727 {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000728 SDValue Value = ST->getValue();
Patrik Hagglund319bb392012-12-19 11:21:04 +0000729 MVT VT = Value.getSimpleValueType();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000730 switch (TLI.getOperationAction(ISD::STORE, VT)) {
731 default: llvm_unreachable("This action is not supported yet!");
732 case TargetLowering::Legal:
733 // If this is an unaligned store and the target doesn't support it,
734 // expand it.
735 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
736 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000737 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000738 if (ST->getAlignment() < ABIAlignment)
739 ExpandUnalignedStore(cast<StoreSDNode>(Node),
740 DAG, TLI, this);
741 }
742 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000743 case TargetLowering::Custom: {
744 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
745 if (Res.getNode())
746 ReplaceNode(SDValue(Node, 0), Res);
747 return;
748 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000749 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000750 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellard8b7f16e2012-12-10 21:41:54 +0000751 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
752 "Can only promote stores to same size type");
753 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000754 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000755 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000756 ST->getPointerInfo(), isVolatile,
Richard Sandiford66589dc2013-10-28 11:17:59 +0000757 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000758 ReplaceNode(SDValue(Node, 0), Result);
759 break;
760 }
761 }
762 return;
763 }
764 } else {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000765 SDValue Value = ST->getValue();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000766
767 EVT StVT = ST->getMemoryVT();
768 unsigned StWidth = StVT.getSizeInBits();
769
770 if (StWidth != StVT.getStoreSizeInBits()) {
771 // Promote to a byte-sized store with upper bits zero if not
772 // storing an integral number of bytes. For example, promote
773 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
774 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
775 StVT.getStoreSizeInBits());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000776 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000777 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000778 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000779 NVT, isVolatile, isNonTemporal, Alignment,
780 TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000781 ReplaceNode(SDValue(Node, 0), Result);
782 } else if (StWidth & (StWidth - 1)) {
783 // If not storing a power-of-2 number of bits, expand as two stores.
784 assert(!StVT.isVector() && "Unsupported truncstore!");
785 unsigned RoundWidth = 1 << Log2_32(StWidth);
786 assert(RoundWidth < StWidth);
787 unsigned ExtraWidth = StWidth - RoundWidth;
788 assert(ExtraWidth < RoundWidth);
789 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
790 "Store size not an integral number of bytes!");
791 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
792 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
793 SDValue Lo, Hi;
794 unsigned IncrementSize;
795
796 if (TLI.isLittleEndian()) {
797 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
798 // Store the bottom RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000799 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000800 RoundVT,
Richard Sandiford66589dc2013-10-28 11:17:59 +0000801 isVolatile, isNonTemporal, Alignment,
802 TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000803
804 // Store the remaining ExtraWidth bits.
805 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000806 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +0000807 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000808 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000809 DAG.getConstant(RoundWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000810 TLI.getShiftAmountTy(Value.getValueType())));
811 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000812 ST->getPointerInfo().getWithOffset(IncrementSize),
813 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford66589dc2013-10-28 11:17:59 +0000814 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000815 } else {
816 // Big endian - avoid unaligned stores.
817 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
818 // Store the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000819 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000820 DAG.getConstant(ExtraWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000821 TLI.getShiftAmountTy(Value.getValueType())));
822 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000823 RoundVT, isVolatile, isNonTemporal, Alignment,
824 TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000825
826 // Store the remaining ExtraWidth bits.
827 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000828 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +0000829 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000830 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000831 ST->getPointerInfo().getWithOffset(IncrementSize),
832 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford66589dc2013-10-28 11:17:59 +0000833 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000834 }
835
836 // The order of the stores doesn't matter.
837 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
838 ReplaceNode(SDValue(Node, 0), Result);
839 } else {
Patrik Hagglund88ef5142012-12-19 08:28:51 +0000840 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
841 StVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000842 default: llvm_unreachable("This action is not supported yet!");
843 case TargetLowering::Legal:
844 // If this is an unaligned store and the target doesn't support it,
845 // expand it.
846 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
847 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000848 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000849 if (ST->getAlignment() < ABIAlignment)
850 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
851 }
852 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000853 case TargetLowering::Custom: {
854 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
855 if (Res.getNode())
856 ReplaceNode(SDValue(Node, 0), Res);
857 return;
858 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000859 case TargetLowering::Expand:
860 assert(!StVT.isVector() &&
861 "Vector Stores are handled in LegalizeVectorOps");
862
863 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000864 assert(TLI.isTypeLegal(StVT) &&
865 "Do not know how to expand this store!");
866 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000867 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000868 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000869 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000870 ReplaceNode(SDValue(Node, 0), Result);
871 break;
872 }
873 }
874 }
875}
876
877void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
878 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000879 SDValue Chain = LD->getChain(); // The chain.
880 SDValue Ptr = LD->getBasePtr(); // The base pointer.
881 SDValue Value; // The value returned by the load op.
Andrew Trickac6d9be2013-05-25 02:42:55 +0000882 SDLoc dl(Node);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000883
884 ISD::LoadExtType ExtType = LD->getExtensionType();
885 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000886 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000887 SDValue RVal = SDValue(Node, 0);
888 SDValue RChain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000889
890 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
891 default: llvm_unreachable("This action is not supported yet!");
892 case TargetLowering::Legal:
Evan Chengfe257cc2012-09-18 01:34:40 +0000893 // If this is an unaligned load and the target doesn't support it,
894 // expand it.
895 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
896 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
897 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +0000898 TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Chengfe257cc2012-09-18 01:34:40 +0000899 if (LD->getAlignment() < ABIAlignment){
900 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
901 }
902 }
903 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000904 case TargetLowering::Custom: {
Evan Chengfe257cc2012-09-18 01:34:40 +0000905 SDValue Res = TLI.LowerOperation(RVal, DAG);
906 if (Res.getNode()) {
907 RVal = Res;
908 RChain = Res.getValue(1);
909 }
910 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000911 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000912 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000913 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellardf45d11b2012-12-10 21:41:58 +0000914 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
915 "Can only promote loads to same size type");
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000916
Richard Sandiford66589dc2013-10-28 11:17:59 +0000917 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000918 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
919 RChain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000920 break;
921 }
922 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000923 if (RChain.getNode() != Node) {
924 assert(RVal.getNode() != Node && "Load must be completely replaced");
925 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
926 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000927 ReplacedNode(Node);
928 }
929 return;
930 }
931
932 EVT SrcVT = LD->getMemoryVT();
933 unsigned SrcWidth = SrcVT.getSizeInBits();
934 unsigned Alignment = LD->getAlignment();
935 bool isVolatile = LD->isVolatile();
936 bool isNonTemporal = LD->isNonTemporal();
Richard Sandiford66589dc2013-10-28 11:17:59 +0000937 const MDNode *TBAAInfo = LD->getTBAAInfo();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000938
939 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
940 // Some targets pretend to have an i1 loading operation, and actually
941 // load an i8. This trick is correct for ZEXTLOAD because the top 7
942 // bits are guaranteed to be zero; it helps the optimizers understand
943 // that these bits are zero. It is also useful for EXTLOAD, since it
944 // tells the optimizers that those bits are undefined. It would be
945 // nice to have an effective generic way of getting these benefits...
946 // Until such a way is found, don't insist on promoting i1 here.
947 (SrcVT != MVT::i1 ||
948 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
949 // Promote to a byte-sized load if not loading an integral number of
950 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
951 unsigned NewWidth = SrcVT.getStoreSizeInBits();
952 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
953 SDValue Ch;
954
955 // The extra bits are guaranteed to be zero, since we stored them that
956 // way. A zext load from NVT thus automatically gives zext from SrcVT.
957
958 ISD::LoadExtType NewExtType =
959 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
960
961 SDValue Result =
962 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000963 Chain, Ptr, LD->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000964 NVT, isVolatile, isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000965
966 Ch = Result.getValue(1); // The chain.
967
968 if (ExtType == ISD::SEXTLOAD)
969 // Having the top bits zero doesn't help when sign extending.
970 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
971 Result.getValueType(),
972 Result, DAG.getValueType(SrcVT));
973 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
974 // All the top bits are guaranteed to be zero - inform the optimizers.
975 Result = DAG.getNode(ISD::AssertZext, dl,
976 Result.getValueType(), Result,
977 DAG.getValueType(SrcVT));
978
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000979 Value = Result;
980 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000981 } else if (SrcWidth & (SrcWidth - 1)) {
982 // If not loading a power-of-2 number of bits, expand as two loads.
983 assert(!SrcVT.isVector() && "Unsupported extload!");
984 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
985 assert(RoundWidth < SrcWidth);
986 unsigned ExtraWidth = SrcWidth - RoundWidth;
987 assert(ExtraWidth < RoundWidth);
988 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
989 "Load size not an integral number of bytes!");
990 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
991 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
992 SDValue Lo, Hi, Ch;
993 unsigned IncrementSize;
994
995 if (TLI.isLittleEndian()) {
996 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
997 // Load the bottom RoundWidth bits.
998 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000999 Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001000 LD->getPointerInfo(), RoundVT, isVolatile,
Richard Sandiford66589dc2013-10-28 11:17:59 +00001001 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001002
1003 // Load the remaining ExtraWidth bits.
1004 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001005 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +00001006 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001007 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001008 LD->getPointerInfo().getWithOffset(IncrementSize),
1009 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford66589dc2013-10-28 11:17:59 +00001010 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001011
1012 // Build a factor node to remember that this load is independent of
1013 // the other one.
1014 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1015 Hi.getValue(1));
1016
1017 // Move the top bits to the right place.
1018 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1019 DAG.getConstant(RoundWidth,
1020 TLI.getShiftAmountTy(Hi.getValueType())));
1021
1022 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001023 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001024 } else {
1025 // Big endian - avoid unaligned loads.
1026 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1027 // Load the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001028 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001029 LD->getPointerInfo(), RoundVT, isVolatile,
Richard Sandiford66589dc2013-10-28 11:17:59 +00001030 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001031
1032 // Load the remaining ExtraWidth bits.
1033 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001034 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +00001035 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001036 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001037 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001038 LD->getPointerInfo().getWithOffset(IncrementSize),
1039 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford66589dc2013-10-28 11:17:59 +00001040 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001041
1042 // Build a factor node to remember that this load is independent of
1043 // the other one.
1044 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1045 Hi.getValue(1));
1046
1047 // Move the top bits to the right place.
1048 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1049 DAG.getConstant(ExtraWidth,
1050 TLI.getShiftAmountTy(Hi.getValueType())));
1051
1052 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001053 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001054 }
1055
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001056 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001057 } else {
1058 bool isCustom = false;
Patrik Hagglund702474d2012-12-14 09:05:13 +00001059 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001060 default: llvm_unreachable("This action is not supported yet!");
1061 case TargetLowering::Custom:
1062 isCustom = true;
1063 // FALLTHROUGH
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001064 case TargetLowering::Legal: {
1065 Value = SDValue(Node, 0);
1066 Chain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001067
1068 if (isCustom) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001069 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1070 if (Res.getNode()) {
1071 Value = Res;
1072 Chain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001073 }
1074 } else {
1075 // If this is an unaligned load and the target doesn't support it,
1076 // expand it.
1077 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
1078 Type *Ty =
1079 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1080 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +00001081 TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001082 if (LD->getAlignment() < ABIAlignment){
1083 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001084 DAG, TLI, Value, Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001085 }
1086 }
1087 }
1088 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001089 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001090 case TargetLowering::Expand:
1091 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) && TLI.isTypeLegal(SrcVT)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001092 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
Richard Sandiford66589dc2013-10-28 11:17:59 +00001093 LD->getMemOperand());
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001094 unsigned ExtendOp;
1095 switch (ExtType) {
1096 case ISD::EXTLOAD:
1097 ExtendOp = (SrcVT.isFloatingPoint() ?
1098 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1099 break;
1100 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1101 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1102 default: llvm_unreachable("Unexpected extend load type!");
1103 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001104 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1105 Chain = Load.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001106 break;
1107 }
1108
1109 assert(!SrcVT.isVector() &&
1110 "Vector Loads are handled in LegalizeVectorOps");
1111
1112 // FIXME: This does not work for vectors on most targets. Sign- and
1113 // zero-extend operations are currently folded into extending loads,
1114 // whether they are legal or not, and then we end up here without any
1115 // support for legalizing them.
1116 assert(ExtType != ISD::EXTLOAD &&
1117 "EXTLOAD should always be supported!");
1118 // Turn the unsupported load into an EXTLOAD followed by an explicit
1119 // zero/sign extend inreg.
1120 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Richard Sandiford66589dc2013-10-28 11:17:59 +00001121 Chain, Ptr, SrcVT,
1122 LD->getMemOperand());
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001123 SDValue ValRes;
1124 if (ExtType == ISD::SEXTLOAD)
1125 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1126 Result.getValueType(),
1127 Result, DAG.getValueType(SrcVT));
1128 else
1129 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001130 Value = ValRes;
1131 Chain = Result.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001132 break;
1133 }
1134 }
1135
1136 // Since loads produce two values, make sure to remember that we legalized
1137 // both of them.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001138 if (Chain.getNode() != Node) {
1139 assert(Value.getNode() != Node && "Load must be completely replaced");
1140 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1141 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001142 ReplacedNode(Node);
1143 }
1144}
1145
Dan Gohman6a109f92011-07-15 21:42:20 +00001146/// LegalizeOp - Return a legal replacement for the given operation, with
1147/// all legal operands.
Dan Gohman65fd6562011-11-03 21:49:52 +00001148void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1149 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1150 return;
Scott Michelfdc40a02009-02-17 22:15:04 +00001151
Eli Friedman1fde9c52009-05-24 02:46:31 +00001152 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001153 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1154 TargetLowering::TypeLegal &&
Eli Friedman1fde9c52009-05-24 02:46:31 +00001155 "Unexpected illegal type!");
1156
1157 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001158 assert((TLI.getTypeAction(*DAG.getContext(),
1159 Node->getOperand(i).getValueType()) ==
1160 TargetLowering::TypeLegal ||
Eli Friedman1fde9c52009-05-24 02:46:31 +00001161 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1162 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001163
Eli Friedman8c377c72009-05-27 01:25:56 +00001164 // Figure out the correct action; the way to query this varies by opcode
Bill Wendling6b9a2932011-01-26 22:21:35 +00001165 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman8c377c72009-05-27 01:25:56 +00001166 bool SimpleFinishLegalizing = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001167 switch (Node->getOpcode()) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001168 case ISD::INTRINSIC_W_CHAIN:
1169 case ISD::INTRINSIC_WO_CHAIN:
1170 case ISD::INTRINSIC_VOID:
Eli Friedman8c377c72009-05-27 01:25:56 +00001171 case ISD::STACKSAVE:
Owen Anderson825b72b2009-08-11 20:47:22 +00001172 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman8c377c72009-05-27 01:25:56 +00001173 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00001174 case ISD::VAARG:
1175 Action = TLI.getOperationAction(Node->getOpcode(),
1176 Node->getValueType(0));
1177 if (Action != TargetLowering::Promote)
1178 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1179 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001180 case ISD::SINT_TO_FP:
1181 case ISD::UINT_TO_FP:
1182 case ISD::EXTRACT_VECTOR_ELT:
1183 Action = TLI.getOperationAction(Node->getOpcode(),
1184 Node->getOperand(0).getValueType());
1185 break;
1186 case ISD::FP_ROUND_INREG:
1187 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00001188 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00001189 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1190 break;
1191 }
Eli Friedman327236c2011-08-24 20:50:09 +00001192 case ISD::ATOMIC_STORE: {
1193 Action = TLI.getOperationAction(Node->getOpcode(),
1194 Node->getOperand(2).getValueType());
1195 break;
1196 }
Eli Friedman3be2e512009-05-28 03:06:16 +00001197 case ISD::SELECT_CC:
1198 case ISD::SETCC:
1199 case ISD::BR_CC: {
1200 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1201 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1202 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001203 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedman3be2e512009-05-28 03:06:16 +00001204 ISD::CondCode CCCode =
1205 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1206 Action = TLI.getCondCodeAction(CCCode, OpVT);
1207 if (Action == TargetLowering::Legal) {
1208 if (Node->getOpcode() == ISD::SELECT_CC)
1209 Action = TLI.getOperationAction(Node->getOpcode(),
1210 Node->getValueType(0));
1211 else
1212 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1213 }
1214 break;
1215 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001216 case ISD::LOAD:
1217 case ISD::STORE:
Eli Friedmanad754602009-05-28 03:56:57 +00001218 // FIXME: Model these properly. LOAD and STORE are complicated, and
1219 // STORE expects the unlegalized operand in some cases.
1220 SimpleFinishLegalizing = false;
1221 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001222 case ISD::CALLSEQ_START:
1223 case ISD::CALLSEQ_END:
Eli Friedmanad754602009-05-28 03:56:57 +00001224 // FIXME: This shouldn't be necessary. These nodes have special properties
1225 // dealing with the recursive nature of legalization. Removing this
1226 // special case should be done as part of making LegalizeDAG non-recursive.
1227 SimpleFinishLegalizing = false;
1228 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001229 case ISD::EXTRACT_ELEMENT:
1230 case ISD::FLT_ROUNDS_:
1231 case ISD::SADDO:
1232 case ISD::SSUBO:
1233 case ISD::UADDO:
1234 case ISD::USUBO:
1235 case ISD::SMULO:
1236 case ISD::UMULO:
1237 case ISD::FPOWI:
1238 case ISD::MERGE_VALUES:
1239 case ISD::EH_RETURN:
1240 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00001241 case ISD::EH_SJLJ_SETJMP:
1242 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001243 // These operations lie about being legal: when they claim to be legal,
1244 // they should actually be expanded.
Eli Friedman8c377c72009-05-27 01:25:56 +00001245 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1246 if (Action == TargetLowering::Legal)
1247 Action = TargetLowering::Expand;
1248 break;
Duncan Sands4a544a72011-09-06 13:37:06 +00001249 case ISD::INIT_TRAMPOLINE:
1250 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman8c377c72009-05-27 01:25:56 +00001251 case ISD::FRAMEADDR:
1252 case ISD::RETURNADDR:
Eli Friedman4bc8c712009-05-27 12:20:41 +00001253 // These operations lie about being legal: when they claim to be legal,
1254 // they should actually be custom-lowered.
1255 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1256 if (Action == TargetLowering::Legal)
1257 Action = TargetLowering::Custom;
Eli Friedman8c377c72009-05-27 01:25:56 +00001258 break;
Shuxin Yang970755e2012-10-19 20:11:16 +00001259 case ISD::DEBUGTRAP:
1260 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1261 if (Action == TargetLowering::Expand) {
1262 // replace ISD::DEBUGTRAP with ISD::TRAP
1263 SDValue NewVal;
Andrew Trickac6d9be2013-05-25 02:42:55 +00001264 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yangcfc6cb02012-10-19 23:00:20 +00001265 Node->getOperand(0));
Shuxin Yang970755e2012-10-19 20:11:16 +00001266 ReplaceNode(Node, NewVal.getNode());
1267 LegalizeOp(NewVal.getNode());
1268 return;
1269 }
1270 break;
1271
Chris Lattner3e928bb2005-01-07 07:47:09 +00001272 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001273 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001274 Action = TargetLowering::Legal;
1275 } else {
1276 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001277 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001278 break;
1279 }
1280
1281 if (SimpleFinishLegalizing) {
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001282 SDNode *NewNode = Node;
Eli Friedman8c377c72009-05-27 01:25:56 +00001283 switch (Node->getOpcode()) {
1284 default: break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001285 case ISD::SHL:
1286 case ISD::SRL:
1287 case ISD::SRA:
1288 case ISD::ROTL:
1289 case ISD::ROTR:
1290 // Legalizing shifts/rotates requires adjusting the shift amount
1291 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001292 if (!Node->getOperand(1).getValueType().isVector()) {
1293 SDValue SAO =
1294 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1295 Node->getOperand(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00001296 HandleSDNode Handle(SAO);
1297 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001298 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1299 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001300 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001301 break;
Dan Gohmandb8dc2b2009-08-18 23:36:17 +00001302 case ISD::SRL_PARTS:
1303 case ISD::SRA_PARTS:
1304 case ISD::SHL_PARTS:
1305 // Legalizing shifts/rotates requires adjusting the shift amount
1306 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001307 if (!Node->getOperand(2).getValueType().isVector()) {
1308 SDValue SAO =
1309 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1310 Node->getOperand(2));
Dan Gohman65fd6562011-11-03 21:49:52 +00001311 HandleSDNode Handle(SAO);
1312 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001313 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1314 Node->getOperand(1),
1315 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001316 }
Dan Gohman2c9489d2009-08-18 23:52:48 +00001317 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001318 }
1319
Dan Gohman65fd6562011-11-03 21:49:52 +00001320 if (NewNode != Node) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001321 DAG.ReplaceAllUsesWith(Node, NewNode);
Dan Gohman65fd6562011-11-03 21:49:52 +00001322 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1323 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman0e3642a2011-11-11 23:58:27 +00001324 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001325 Node = NewNode;
1326 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001327 switch (Action) {
1328 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +00001329 return;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001330 case TargetLowering::Custom: {
Eli Friedman8c377c72009-05-27 01:25:56 +00001331 // FIXME: The handling for custom lowering with multiple results is
1332 // a complete mess.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001333 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1334 if (Res.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001335 SmallVector<SDValue, 8> ResultVals;
Eli Friedman8c377c72009-05-27 01:25:56 +00001336 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1337 if (e == 1)
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001338 ResultVals.push_back(Res);
Eli Friedman8c377c72009-05-27 01:25:56 +00001339 else
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001340 ResultVals.push_back(Res.getValue(i));
Eli Friedman8c377c72009-05-27 01:25:56 +00001341 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001342 if (Res.getNode() != Node || Res.getResNo() != 0) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001343 DAG.ReplaceAllUsesWith(Node, ResultVals.data());
Dan Gohman65fd6562011-11-03 21:49:52 +00001344 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1345 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001346 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001347 }
1348 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001349 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001350 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001351 // FALL THROUGH
1352 case TargetLowering::Expand:
Dan Gohman65fd6562011-11-03 21:49:52 +00001353 ExpandNode(Node);
1354 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001355 case TargetLowering::Promote:
Dan Gohman65fd6562011-11-03 21:49:52 +00001356 PromoteNode(Node);
1357 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001358 }
1359 }
1360
1361 switch (Node->getOpcode()) {
1362 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001363#ifndef NDEBUG
David Greene993aace2010-01-05 01:24:53 +00001364 dbgs() << "NODE: ";
1365 Node->dump( &DAG);
1366 dbgs() << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001367#endif
Craig Topper5e25ee82012-02-05 08:31:47 +00001368 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001369
Dan Gohman65fd6562011-11-03 21:49:52 +00001370 case ISD::CALLSEQ_START:
Dan Gohman6f3ddef2011-10-29 00:41:52 +00001371 case ISD::CALLSEQ_END:
Dan Gohman65fd6562011-11-03 21:49:52 +00001372 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001373 case ISD::LOAD: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001374 return LegalizeLoadOps(Node);
Chris Lattner01ff7212005-04-10 22:54:25 +00001375 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001376 case ISD::STORE: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001377 return LegalizeStoreOps(Node);
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001378 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001379 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001380}
1381
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001382SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1383 SDValue Vec = Op.getOperand(0);
1384 SDValue Idx = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001385 SDLoc dl(Op);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001386 // Store the value to a temporary stack slot, then LOAD the returned part.
1387 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Chris Lattner6229d0a2010-09-21 18:41:36 +00001388 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1389 MachinePointerInfo(), false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001390
1391 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001392 unsigned EltSize =
1393 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001394 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1395 DAG.getConstant(EltSize, Idx.getValueType()));
1396
1397 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1398 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1399 else
1400 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1401
1402 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1403
Eli Friedmanc680ac92009-07-09 22:01:03 +00001404 if (Op.getValueType().isVector())
Chris Lattnerecf42c42010-09-21 16:36:31 +00001405 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001406 false, false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00001407 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001408 MachinePointerInfo(),
1409 Vec.getValueType().getVectorElementType(),
1410 false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001411}
1412
David Greenecfe33c42011-01-26 19:13:22 +00001413SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1414 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1415
1416 SDValue Vec = Op.getOperand(0);
1417 SDValue Part = Op.getOperand(1);
1418 SDValue Idx = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001419 SDLoc dl(Op);
David Greenecfe33c42011-01-26 19:13:22 +00001420
1421 // Store the value to a temporary stack slot, then LOAD the returned part.
1422
1423 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1424 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1425 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1426
1427 // First store the whole vector.
1428 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1429 false, false, 0);
1430
1431 // Then store the inserted part.
1432
1433 // Add the offset to the index.
1434 unsigned EltSize =
1435 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1436
1437 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1438 DAG.getConstant(EltSize, Idx.getValueType()));
1439
1440 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1441 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1442 else
1443 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1444
1445 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1446 StackPtr);
1447
1448 // Store the subvector.
1449 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1450 MachinePointerInfo(), false, false, 0);
1451
1452 // Finally, load the updated vector.
1453 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001454 false, false, false, 0);
David Greenecfe33c42011-01-26 19:13:22 +00001455}
1456
Eli Friedman7ef3d172009-06-06 07:04:42 +00001457SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1458 // We can't handle this case efficiently. Allocate a sufficiently
1459 // aligned object on the stack, store each element into it, then load
1460 // the result as a vector.
1461 // Create the stack frame object.
Owen Andersone50ed302009-08-10 22:56:29 +00001462 EVT VT = Node->getValueType(0);
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001463 EVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001464 SDLoc dl(Node);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001465 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Chengff89dcb2009-10-18 18:16:27 +00001466 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattnerecf42c42010-09-21 16:36:31 +00001467 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001468
1469 // Emit a store of each element to the stack slot.
1470 SmallVector<SDValue, 8> Stores;
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001471 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedman7ef3d172009-06-06 07:04:42 +00001472 // Store (in the right endianness) the elements to memory.
1473 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1474 // Ignore undef elements.
1475 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1476
1477 unsigned Offset = TypeByteSize*i;
1478
1479 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1480 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1481
Dan Gohman9949dd62010-02-25 20:30:49 +00001482 // If the destination vector element type is narrower than the source
1483 // element type, only store the bits necessary.
1484 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001485 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001486 Node->getOperand(i), Idx,
1487 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001488 EltVT, false, false, 0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00001489 } else
Jim Grosbach6e992612010-07-02 17:41:59 +00001490 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001491 Node->getOperand(i), Idx,
1492 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001493 false, false, 0));
Eli Friedman7ef3d172009-06-06 07:04:42 +00001494 }
1495
1496 SDValue StoreChain;
1497 if (!Stores.empty()) // Not all undef elements?
Owen Anderson825b72b2009-08-11 20:47:22 +00001498 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedman7ef3d172009-06-06 07:04:42 +00001499 &Stores[0], Stores.size());
1500 else
1501 StoreChain = DAG.getEntryNode();
1502
1503 // Result is a load from the stack slot.
Stephen Lin155615d2013-07-08 00:37:03 +00001504 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001505 false, false, false, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001506}
1507
Eli Friedman4bc8c712009-05-27 12:20:41 +00001508SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001509 SDLoc dl(Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001510 SDValue Tmp1 = Node->getOperand(0);
1511 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands5d54b412010-03-12 11:45:06 +00001512
1513 // Get the sign bit of the RHS. First obtain a value that has the same
1514 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001515 SDValue SignBit;
Duncan Sands5d54b412010-03-12 11:45:06 +00001516 EVT FloatVT = Tmp2.getValueType();
1517 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohman75b10042011-07-15 22:39:09 +00001518 if (TLI.isTypeLegal(IVT)) {
Duncan Sands5d54b412010-03-12 11:45:06 +00001519 // Convert to an integer with the same sign bit.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001520 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001521 } else {
Duncan Sands5d54b412010-03-12 11:45:06 +00001522 // Store the float to memory, then load the sign part out as an integer.
1523 MVT LoadTy = TLI.getPointerTy();
1524 // First create a temporary that is aligned for both the load and store.
1525 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1526 // Then store the float to it.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001527 SDValue Ch =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001528 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00001529 false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001530 if (TLI.isBigEndian()) {
1531 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1532 // Load out a legal integer with the same sign bit as the float.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001533 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001534 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001535 } else { // Little endian
1536 SDValue LoadPtr = StackPtr;
1537 // The float may be wider than the integer we are going to load. Advance
1538 // the pointer so that the loaded integer will contain the sign bit.
1539 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1540 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1541 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(),
Tom Stellardedd08f72013-08-26 15:06:10 +00001542 LoadPtr,
1543 DAG.getConstant(ByteOffset, LoadPtr.getValueType()));
Duncan Sands5d54b412010-03-12 11:45:06 +00001544 // Load a legal integer containing the sign bit.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001545 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001546 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001547 // Move the sign bit to the top bit of the loaded integer.
1548 unsigned BitShift = LoadTy.getSizeInBits() -
1549 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1550 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1551 if (BitShift)
1552 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Anderson95771af2011-02-25 21:41:48 +00001553 DAG.getConstant(BitShift,
1554 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands5d54b412010-03-12 11:45:06 +00001555 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00001556 }
Duncan Sands5d54b412010-03-12 11:45:06 +00001557 // Now get the sign bit proper, by seeing whether the value is negative.
Matt Arsenault225ed702013-05-18 00:21:46 +00001558 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
Duncan Sands5d54b412010-03-12 11:45:06 +00001559 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1560 ISD::SETLT);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001561 // Get the absolute value of the result.
1562 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1563 // Select between the nabs and abs value based on the sign bit of
1564 // the input.
Matt Arsenaultb05e4772013-06-14 22:04:37 +00001565 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
1566 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1567 AbsVal);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001568}
1569
Eli Friedman4bc8c712009-05-27 12:20:41 +00001570void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1571 SmallVectorImpl<SDValue> &Results) {
1572 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1573 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1574 " not tell us which reg is the stack pointer!");
Andrew Trickac6d9be2013-05-25 02:42:55 +00001575 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +00001576 EVT VT = Node->getValueType(0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001577 SDValue Tmp1 = SDValue(Node, 0);
1578 SDValue Tmp2 = SDValue(Node, 1);
1579 SDValue Tmp3 = Node->getOperand(2);
1580 SDValue Chain = Tmp1.getOperand(0);
1581
1582 // Chain the dynamic stack allocation so that it doesn't modify the stack
1583 // pointer when other instructions are using the stack.
Andrew Trick6e0b2a02013-05-29 22:03:55 +00001584 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
1585 SDLoc(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00001586
1587 SDValue Size = Tmp2.getOperand(1);
1588 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1589 Chain = SP.getValue(1);
1590 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001591 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman4bc8c712009-05-27 12:20:41 +00001592 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Elena Demikhovsky55240a52013-10-14 07:26:51 +00001593 if (Align > StackAlign)
1594 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
1595 DAG.getConstant(-(uint64_t)Align, VT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00001596 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1597
1598 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00001599 DAG.getIntPtrConstant(0, true), SDValue(),
1600 SDLoc(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00001601
1602 Results.push_back(Tmp1);
1603 Results.push_back(Tmp2);
1604}
1605
Evan Cheng7f042682008-10-15 02:05:31 +00001606/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Tom Stellard8a9879a2013-09-28 02:50:32 +00001607/// condition code CC on the current target.
1608/// If the SETCC has been legalized using AND / OR, then the legalized node
Tom Stellard20a3bc62013-10-01 02:09:00 +00001609/// will be stored in LHS. RHS and CC will be set to SDValue().
Tom Stellard8a9879a2013-09-28 02:50:32 +00001610/// If the SETCC has been legalized by using getSetCCSwappedOperands(),
1611/// then the values of LHS and RHS will be swapped and CC will be set to the
1612/// new condition.
1613/// \returns true if the SetCC has been legalized, false if it hasn't.
1614bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng7f042682008-10-15 02:05:31 +00001615 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00001616 SDValue &CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001617 SDLoc dl) {
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001618 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng7f042682008-10-15 02:05:31 +00001619 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
1620 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001621 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng7f042682008-10-15 02:05:31 +00001622 case TargetLowering::Legal:
1623 // Nothing to do.
1624 break;
1625 case TargetLowering::Expand: {
Tom Stellard12d43f92013-09-28 02:50:38 +00001626 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1627 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1628 std::swap(LHS, RHS);
1629 CC = DAG.getCondCode(InvCC);
1630 return true;
1631 }
Evan Cheng7f042682008-10-15 02:05:31 +00001632 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1633 unsigned Opc = 0;
1634 switch (CCCode) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001635 default: llvm_unreachable("Don't know how to expand this condition!");
Stephen Lin155615d2013-07-08 00:37:03 +00001636 case ISD::SETO:
Micah Villmowd6458a02012-10-10 20:50:51 +00001637 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1638 == TargetLowering::Legal
1639 && "If SETO is expanded, SETOEQ must be legal!");
1640 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
Stephen Lin155615d2013-07-08 00:37:03 +00001641 case ISD::SETUO:
Micah Villmowd6458a02012-10-10 20:50:51 +00001642 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1643 == TargetLowering::Legal
1644 && "If SETUO is expanded, SETUNE must be legal!");
1645 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1646 case ISD::SETOEQ:
1647 case ISD::SETOGT:
1648 case ISD::SETOGE:
1649 case ISD::SETOLT:
1650 case ISD::SETOLE:
Stephen Lin155615d2013-07-08 00:37:03 +00001651 case ISD::SETONE:
1652 case ISD::SETUEQ:
1653 case ISD::SETUNE:
1654 case ISD::SETUGT:
1655 case ISD::SETUGE:
1656 case ISD::SETULT:
Micah Villmowd6458a02012-10-10 20:50:51 +00001657 case ISD::SETULE:
1658 // If we are floating point, assign and break, otherwise fall through.
1659 if (!OpVT.isInteger()) {
1660 // We can use the 4th bit to tell if we are the unordered
1661 // or ordered version of the opcode.
1662 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1663 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1664 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1665 break;
1666 }
1667 // Fallthrough if we are unsigned integer.
1668 case ISD::SETLE:
1669 case ISD::SETGT:
1670 case ISD::SETGE:
1671 case ISD::SETLT:
1672 case ISD::SETNE:
1673 case ISD::SETEQ:
Tom Stellard12d43f92013-09-28 02:50:38 +00001674 // We only support using the inverted operation, which is computed above
1675 // and not a different manner of supporting expanding these cases.
1676 llvm_unreachable("Don't know how to expand this condition!");
Evan Cheng7f042682008-10-15 02:05:31 +00001677 }
Stephen Lin155615d2013-07-08 00:37:03 +00001678
Micah Villmowd6458a02012-10-10 20:50:51 +00001679 SDValue SetCC1, SetCC2;
1680 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1681 // If we aren't the ordered or unorder operation,
1682 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1683 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1684 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1685 } else {
1686 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1687 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1688 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1689 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001690 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00001691 RHS = SDValue();
1692 CC = SDValue();
Tom Stellard8a9879a2013-09-28 02:50:32 +00001693 return true;
Evan Cheng7f042682008-10-15 02:05:31 +00001694 }
1695 }
Tom Stellard8a9879a2013-09-28 02:50:32 +00001696 return false;
Evan Cheng7f042682008-10-15 02:05:31 +00001697}
1698
Chris Lattner1401d152008-01-16 07:45:30 +00001699/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1700/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1701/// a load from the stack slot to DestVT, extending it if needed.
1702/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001703SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Andersone50ed302009-08-10 22:56:29 +00001704 EVT SlotVT,
1705 EVT DestVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001706 SDLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00001707 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001708 unsigned SrcAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00001709 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson23b9b192009-08-12 00:36:31 +00001710 getTypeForEVT(*DAG.getContext()));
Dan Gohman475871a2008-07-27 21:46:04 +00001711 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001712
Evan Chengff89dcb2009-10-18 18:16:27 +00001713 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1714 int SPFI = StackPtrFI->getIndex();
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001715 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Chengff89dcb2009-10-18 18:16:27 +00001716
Duncan Sands83ec4b62008-06-06 12:08:01 +00001717 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1718 unsigned SlotSize = SlotVT.getSizeInBits();
1719 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001720 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00001721 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelfdc40a02009-02-17 22:15:04 +00001722
Chris Lattner1401d152008-01-16 07:45:30 +00001723 // Emit a store to the stack slot. Use a truncstore if the input value is
1724 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00001725 SDValue Store;
Evan Chengff89dcb2009-10-18 18:16:27 +00001726
Chris Lattner1401d152008-01-16 07:45:30 +00001727 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00001728 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001729 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001730 else {
1731 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00001732 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001733 PtrInfo, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001734 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001735
Chris Lattner35481892005-12-23 00:16:34 +00001736 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00001737 if (SlotSize == DestSize)
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001738 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001739 false, false, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001740
Chris Lattner1401d152008-01-16 07:45:30 +00001741 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastingsa9011292011-02-16 16:23:55 +00001742 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001743 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00001744}
1745
Dan Gohman475871a2008-07-27 21:46:04 +00001746SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001747 SDLoc dl(Node);
Chris Lattner4352cc92006-04-04 17:23:26 +00001748 // Create a vector sized/aligned stack slot, store the value to element #0,
1749 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00001750 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00001751
Evan Chengff89dcb2009-10-18 18:16:27 +00001752 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1753 int SPFI = StackPtrFI->getIndex();
1754
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001755 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1756 StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001757 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +00001758 Node->getValueType(0).getVectorElementType(),
1759 false, false, 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00001760 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001761 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001762 false, false, false, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001763}
1764
1765
Chris Lattnerce872152006-03-19 06:31:19 +00001766/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00001767/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00001768SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001769 unsigned NumElems = Node->getNumOperands();
Eli Friedman7a5e5552009-06-07 06:52:44 +00001770 SDValue Value1, Value2;
Andrew Trickac6d9be2013-05-25 02:42:55 +00001771 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +00001772 EVT VT = Node->getValueType(0);
1773 EVT OpVT = Node->getOperand(0).getValueType();
1774 EVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001775
1776 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00001777 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00001778 bool isOnlyLowElement = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001779 bool MoreThanTwoValues = false;
Chris Lattner2eb86532006-03-24 07:29:17 +00001780 bool isConstant = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001781 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001782 SDValue V = Node->getOperand(i);
Eli Friedman7a5e5552009-06-07 06:52:44 +00001783 if (V.getOpcode() == ISD::UNDEF)
1784 continue;
1785 if (i > 0)
Chris Lattnerce872152006-03-19 06:31:19 +00001786 isOnlyLowElement = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001787 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner2eb86532006-03-24 07:29:17 +00001788 isConstant = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001789
1790 if (!Value1.getNode()) {
1791 Value1 = V;
1792 } else if (!Value2.getNode()) {
1793 if (V != Value1)
1794 Value2 = V;
1795 } else if (V != Value1 && V != Value2) {
1796 MoreThanTwoValues = true;
1797 }
Chris Lattnerce872152006-03-19 06:31:19 +00001798 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001799
Eli Friedman7a5e5552009-06-07 06:52:44 +00001800 if (!Value1.getNode())
1801 return DAG.getUNDEF(VT);
1802
1803 if (isOnlyLowElement)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001804 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001805
Chris Lattner2eb86532006-03-24 07:29:17 +00001806 // If all elements are constants, create a load from the constant pool.
1807 if (isConstant) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001808 SmallVector<Constant*, 16> CV;
Chris Lattner2eb86532006-03-24 07:29:17 +00001809 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001810 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00001811 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00001812 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001813 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001814 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen9a645cd2009-11-10 23:16:41 +00001815 if (OpVT==EltVT)
1816 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1817 else {
1818 // If OpVT and EltVT don't match, EltVT is not legal and the
1819 // element values have been promoted/truncated earlier. Undo this;
1820 // we don't want a v16i8 to become a v16i32 for example.
1821 const ConstantInt *CI = V->getConstantIntValue();
1822 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1823 CI->getZExtValue()));
1824 }
Chris Lattner2eb86532006-03-24 07:29:17 +00001825 } else {
1826 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001827 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001828 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner2eb86532006-03-24 07:29:17 +00001829 }
1830 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00001831 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00001832 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00001833 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00001834 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00001835 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001836 false, false, false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00001837 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001838
Eli Friedman7a5e5552009-06-07 06:52:44 +00001839 if (!MoreThanTwoValues) {
1840 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1841 for (unsigned i = 0; i < NumElems; ++i) {
1842 SDValue V = Node->getOperand(i);
1843 if (V.getOpcode() == ISD::UNDEF)
1844 continue;
1845 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1846 }
1847 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00001848 // Get the splatted value into the low element of a vector register.
Eli Friedman7a5e5552009-06-07 06:52:44 +00001849 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1850 SDValue Vec2;
1851 if (Value2.getNode())
1852 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1853 else
1854 Vec2 = DAG.getUNDEF(VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001855
Chris Lattner87100e02006-03-20 01:52:29 +00001856 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Eli Friedman7a5e5552009-06-07 06:52:44 +00001857 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
Evan Cheng033e6812006-03-24 01:17:21 +00001858 }
1859 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001860
Eli Friedman7ef3d172009-06-06 07:04:42 +00001861 // Otherwise, we can't handle this case efficiently.
1862 return ExpandVectorBuildThroughStack(Node);
Chris Lattnerce872152006-03-19 06:31:19 +00001863}
1864
Chris Lattner77e77a62005-01-21 06:05:23 +00001865// ExpandLibCall - Expand a node into a call to a libcall. If the result value
1866// does not fit into a register, return the lo part and set the hi part to the
1867// by-reg argument. If it does fit into a single register, return the result
1868// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00001869SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedman47b41f72009-05-27 02:21:29 +00001870 bool isSigned) {
Chris Lattner77e77a62005-01-21 06:05:23 +00001871 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00001872 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00001873 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00001874 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001875 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelfdc40a02009-02-17 22:15:04 +00001876 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00001877 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00001878 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00001879 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00001880 }
Bill Wendling056292f2008-09-16 21:48:12 +00001881 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00001882 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001883
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001884 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Cheng3d2125c2010-11-30 23:55:39 +00001885
Evan Chengbf010eb2012-04-10 01:51:00 +00001886 // By default, the input chain to this libcall is the entry node of the
1887 // function. If the libcall is going to be emitted as a tail call then
1888 // TLI.isUsedByReturnOnly will change it to the right chain if the return
1889 // node which is being folded has a non-entry input chain.
1890 SDValue InChain = DAG.getEntryNode();
1891
Evan Cheng3d2125c2010-11-30 23:55:39 +00001892 // isTailCall may be true since the callee does not reference caller stack
1893 // frame. Check if it's in the right position.
Evan Chengb52ba492012-04-10 03:15:18 +00001894 SDValue TCChain = InChain;
Tim Northover2c8cf4b2013-01-09 13:18:15 +00001895 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Chengb52ba492012-04-10 03:15:18 +00001896 if (isTailCall)
1897 InChain = TCChain;
1898
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001899 TargetLowering::
1900 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001901 0, TLI.getLibcallCallingConv(LC), isTailCall,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001902 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001903 Callee, Args, DAG, SDLoc(Node));
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001904 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
1905
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00001906
Evan Cheng3d2125c2010-11-30 23:55:39 +00001907 if (!CallInfo.second.getNode())
1908 // It's a tailcall, return the chain (which is the DAG root).
1909 return DAG.getRoot();
1910
Eli Friedman74807f22009-05-26 08:55:52 +00001911 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00001912}
1913
Dan Gohmanf316eb72011-05-16 22:09:53 +00001914/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001915/// and returning a result of type RetVT.
1916SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1917 const SDValue *Ops, unsigned NumOps,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001918 bool isSigned, SDLoc dl) {
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001919 TargetLowering::ArgListTy Args;
1920 Args.reserve(NumOps);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001921
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001922 TargetLowering::ArgListEntry Entry;
1923 for (unsigned i = 0; i != NumOps; ++i) {
1924 Entry.Node = Ops[i];
1925 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1926 Entry.isSExt = isSigned;
1927 Entry.isZExt = !isSigned;
1928 Args.push_back(Entry);
1929 }
1930 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1931 TLI.getPointerTy());
Dan Gohmanf316eb72011-05-16 22:09:53 +00001932
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001933 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001934 TargetLowering::
1935 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1936 false, 0, TLI.getLibcallCallingConv(LC),
1937 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001938 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001939 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001940 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001941
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001942 return CallInfo.first;
1943}
1944
Jim Grosbache03262f2010-06-18 21:43:38 +00001945// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1946// ExpandLibCall except that the first operand is the in-chain.
1947std::pair<SDValue, SDValue>
1948SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1949 SDNode *Node,
1950 bool isSigned) {
Jim Grosbache03262f2010-06-18 21:43:38 +00001951 SDValue InChain = Node->getOperand(0);
1952
1953 TargetLowering::ArgListTy Args;
1954 TargetLowering::ArgListEntry Entry;
1955 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1956 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001957 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001958 Entry.Node = Node->getOperand(i);
1959 Entry.Ty = ArgTy;
1960 Entry.isSExt = isSigned;
1961 Entry.isZExt = !isSigned;
1962 Args.push_back(Entry);
1963 }
1964 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1965 TLI.getPointerTy());
1966
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001967 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001968 TargetLowering::
1969 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001970 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001971 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001972 Callee, Args, DAG, SDLoc(Node));
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001973 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbache03262f2010-06-18 21:43:38 +00001974
Jim Grosbache03262f2010-06-18 21:43:38 +00001975 return CallInfo;
1976}
1977
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001978SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
1979 RTLIB::Libcall Call_F32,
1980 RTLIB::Libcall Call_F64,
1981 RTLIB::Libcall Call_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00001982 RTLIB::Libcall Call_F128,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001983 RTLIB::Libcall Call_PPCF128) {
1984 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00001985 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001986 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001987 case MVT::f32: LC = Call_F32; break;
1988 case MVT::f64: LC = Call_F64; break;
1989 case MVT::f80: LC = Call_F80; break;
Tim Northover24d315d2013-01-08 17:09:59 +00001990 case MVT::f128: LC = Call_F128; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001991 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001992 }
1993 return ExpandLibCall(LC, Node, false);
1994}
1995
1996SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001997 RTLIB::Libcall Call_I8,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001998 RTLIB::Libcall Call_I16,
1999 RTLIB::Libcall Call_I32,
2000 RTLIB::Libcall Call_I64,
2001 RTLIB::Libcall Call_I128) {
2002 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002003 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002004 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikov8983da72009-11-07 17:14:39 +00002005 case MVT::i8: LC = Call_I8; break;
2006 case MVT::i16: LC = Call_I16; break;
2007 case MVT::i32: LC = Call_I32; break;
2008 case MVT::i64: LC = Call_I64; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002009 case MVT::i128: LC = Call_I128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002010 }
2011 return ExpandLibCall(LC, Node, isSigned);
2012}
2013
Evan Cheng65279cb2011-04-16 03:08:26 +00002014/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
2015static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2016 const TargetLowering &TLI) {
Evan Cheng8e23e812011-04-01 00:42:02 +00002017 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002018 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002019 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng8e23e812011-04-01 00:42:02 +00002020 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2021 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2022 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2023 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2024 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2025 }
2026
Evan Cheng65279cb2011-04-16 03:08:26 +00002027 return TLI.getLibcallName(LC) != 0;
2028}
Evan Cheng8e23e812011-04-01 00:42:02 +00002029
Evan Cheng8ef09682012-06-21 05:56:05 +00002030/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Cheng65279cb2011-04-16 03:08:26 +00002031/// needed.
Evan Cheng8ef09682012-06-21 05:56:05 +00002032static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2033 // The other use might have been replaced with a divrem already.
2034 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Cheng8e23e812011-04-01 00:42:02 +00002035 unsigned OtherOpcode = 0;
Evan Cheng65279cb2011-04-16 03:08:26 +00002036 if (isSigned)
Evan Cheng8e23e812011-04-01 00:42:02 +00002037 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002038 else
Evan Cheng8e23e812011-04-01 00:42:02 +00002039 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002040
Evan Cheng8e23e812011-04-01 00:42:02 +00002041 SDValue Op0 = Node->getOperand(0);
2042 SDValue Op1 = Node->getOperand(1);
2043 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2044 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2045 SDNode *User = *UI;
2046 if (User == Node)
2047 continue;
Evan Cheng8ef09682012-06-21 05:56:05 +00002048 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Cheng8e23e812011-04-01 00:42:02 +00002049 User->getOperand(0) == Op0 &&
Evan Cheng65279cb2011-04-16 03:08:26 +00002050 User->getOperand(1) == Op1)
2051 return true;
Evan Cheng8e23e812011-04-01 00:42:02 +00002052 }
Evan Cheng65279cb2011-04-16 03:08:26 +00002053 return false;
2054}
Evan Cheng8e23e812011-04-01 00:42:02 +00002055
Evan Cheng65279cb2011-04-16 03:08:26 +00002056/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2057/// pairs.
2058void
2059SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2060 SmallVectorImpl<SDValue> &Results) {
2061 unsigned Opcode = Node->getOpcode();
2062 bool isSigned = Opcode == ISD::SDIVREM;
2063
2064 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002065 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002066 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng65279cb2011-04-16 03:08:26 +00002067 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2068 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2069 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2070 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2071 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Cheng8e23e812011-04-01 00:42:02 +00002072 }
2073
2074 // The input chain to this libcall is the entry node of the function.
2075 // Legalizing the call will automatically add the previous call to the
2076 // dependence.
2077 SDValue InChain = DAG.getEntryNode();
2078
2079 EVT RetVT = Node->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002080 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002081
2082 TargetLowering::ArgListTy Args;
2083 TargetLowering::ArgListEntry Entry;
2084 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2085 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002086 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002087 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2088 Entry.isSExt = isSigned;
2089 Entry.isZExt = !isSigned;
2090 Args.push_back(Entry);
2091 }
2092
2093 // Also pass the return address of the remainder.
2094 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2095 Entry.Node = FIPtr;
Micah Villmowb8bce922012-10-24 17:25:11 +00002096 Entry.Ty = RetTy->getPointerTo();
Evan Cheng8e23e812011-04-01 00:42:02 +00002097 Entry.isSExt = isSigned;
2098 Entry.isZExt = !isSigned;
2099 Args.push_back(Entry);
2100
2101 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2102 TLI.getPointerTy());
2103
Andrew Trickac6d9be2013-05-25 02:42:55 +00002104 SDLoc dl(Node);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002105 TargetLowering::
2106 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng8e23e812011-04-01 00:42:02 +00002107 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002108 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2109 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002110 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Cheng8e23e812011-04-01 00:42:02 +00002111
Evan Cheng8e23e812011-04-01 00:42:02 +00002112 // Remainder is loaded back from the stack frame.
Dan Gohman65fd6562011-11-03 21:49:52 +00002113 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002114 MachinePointerInfo(), false, false, false, 0);
Evan Cheng65279cb2011-04-16 03:08:26 +00002115 Results.push_back(CallInfo.first);
2116 Results.push_back(Rem);
Evan Cheng8e23e812011-04-01 00:42:02 +00002117}
2118
Evan Cheng8688a582013-01-29 02:32:37 +00002119/// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2120static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2121 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002122 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng8688a582013-01-29 02:32:37 +00002123 default: llvm_unreachable("Unexpected request for libcall!");
2124 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2125 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2126 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2127 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2128 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2129 }
2130 return TLI.getLibcallName(LC) != 0;
2131}
2132
Paul Redmond86cdbc92013-02-15 18:45:18 +00002133/// canCombineSinCosLibcall - Return true if sincos libcall is available and
2134/// can be used to combine sin and cos.
2135static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2136 const TargetMachine &TM) {
2137 if (!isSinCosLibcallAvailable(Node, TLI))
2138 return false;
2139 // GNU sin/cos functions set errno while sincos does not. Therefore
2140 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2141 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2142 if (isGNU && !TM.Options.UnsafeFPMath)
2143 return false;
2144 return true;
2145}
2146
Evan Cheng8688a582013-01-29 02:32:37 +00002147/// useSinCos - Only issue sincos libcall if both sin and cos are
2148/// needed.
2149static bool useSinCos(SDNode *Node) {
2150 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2151 ? ISD::FCOS : ISD::FSIN;
Stephen Lin155615d2013-07-08 00:37:03 +00002152
Evan Cheng8688a582013-01-29 02:32:37 +00002153 SDValue Op0 = Node->getOperand(0);
2154 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2155 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2156 SDNode *User = *UI;
2157 if (User == Node)
2158 continue;
2159 // The other user might have been turned into sincos already.
2160 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2161 return true;
2162 }
2163 return false;
2164}
2165
2166/// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2167/// pairs.
2168void
2169SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2170 SmallVectorImpl<SDValue> &Results) {
2171 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002172 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng8688a582013-01-29 02:32:37 +00002173 default: llvm_unreachable("Unexpected request for libcall!");
2174 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2175 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2176 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2177 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2178 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2179 }
Stephen Lin155615d2013-07-08 00:37:03 +00002180
Evan Cheng8688a582013-01-29 02:32:37 +00002181 // The input chain to this libcall is the entry node of the function.
2182 // Legalizing the call will automatically add the previous call to the
2183 // dependence.
2184 SDValue InChain = DAG.getEntryNode();
Stephen Lin155615d2013-07-08 00:37:03 +00002185
Evan Cheng8688a582013-01-29 02:32:37 +00002186 EVT RetVT = Node->getValueType(0);
2187 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Stephen Lin155615d2013-07-08 00:37:03 +00002188
Evan Cheng8688a582013-01-29 02:32:37 +00002189 TargetLowering::ArgListTy Args;
2190 TargetLowering::ArgListEntry Entry;
Stephen Lin155615d2013-07-08 00:37:03 +00002191
Evan Cheng8688a582013-01-29 02:32:37 +00002192 // Pass the argument.
2193 Entry.Node = Node->getOperand(0);
2194 Entry.Ty = RetTy;
2195 Entry.isSExt = false;
2196 Entry.isZExt = false;
2197 Args.push_back(Entry);
Stephen Lin155615d2013-07-08 00:37:03 +00002198
Evan Cheng8688a582013-01-29 02:32:37 +00002199 // Pass the return address of sin.
2200 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2201 Entry.Node = SinPtr;
2202 Entry.Ty = RetTy->getPointerTo();
2203 Entry.isSExt = false;
2204 Entry.isZExt = false;
2205 Args.push_back(Entry);
Stephen Lin155615d2013-07-08 00:37:03 +00002206
Evan Cheng8688a582013-01-29 02:32:37 +00002207 // Also pass the return address of the cos.
2208 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2209 Entry.Node = CosPtr;
2210 Entry.Ty = RetTy->getPointerTo();
2211 Entry.isSExt = false;
2212 Entry.isZExt = false;
2213 Args.push_back(Entry);
Stephen Lin155615d2013-07-08 00:37:03 +00002214
Evan Cheng8688a582013-01-29 02:32:37 +00002215 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2216 TLI.getPointerTy());
Stephen Lin155615d2013-07-08 00:37:03 +00002217
Andrew Trickac6d9be2013-05-25 02:42:55 +00002218 SDLoc dl(Node);
Evan Cheng8688a582013-01-29 02:32:37 +00002219 TargetLowering::
2220 CallLoweringInfo CLI(InChain, Type::getVoidTy(*DAG.getContext()),
2221 false, false, false, false,
2222 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
2223 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2224 Callee, Args, DAG, dl);
2225 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2226
2227 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2228 MachinePointerInfo(), false, false, false, 0));
2229 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2230 MachinePointerInfo(), false, false, false, 0));
2231}
2232
Chris Lattner22cde6a2006-01-28 08:25:58 +00002233/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2234/// INT_TO_FP operation of the specified operand when the target requests that
2235/// we expand it. At this point, we know that the result and operand types are
2236/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00002237SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2238 SDValue Op0,
Owen Andersone50ed302009-08-10 22:56:29 +00002239 EVT DestVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002240 SDLoc dl) {
Akira Hatanaka1d522382012-08-28 02:12:42 +00002241 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002242 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00002243
Chris Lattner23594d42008-01-16 07:03:22 +00002244 // Get the stack frame index of a 8 byte buffer.
Owen Anderson825b72b2009-08-11 20:47:22 +00002245 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00002246
Chris Lattner22cde6a2006-01-28 08:25:58 +00002247 // word offset constant for Hi/Lo address computation
Tom Stellardedd08f72013-08-26 15:06:10 +00002248 SDValue WordOff = DAG.getConstant(sizeof(int), StackSlot.getValueType());
Chris Lattner22cde6a2006-01-28 08:25:58 +00002249 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00002250 SDValue Hi = StackSlot;
Tom Stellardedd08f72013-08-26 15:06:10 +00002251 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2252 StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00002253 if (TLI.isLittleEndian())
2254 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00002255
Chris Lattner22cde6a2006-01-28 08:25:58 +00002256 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00002257 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002258 if (isSigned) {
2259 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson825b72b2009-08-11 20:47:22 +00002260 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2261 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002262 } else {
2263 Op0Mapped = Op0;
2264 }
2265 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00002266 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00002267 Op0Mapped, Lo, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002268 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002269 // initial hi portion of constructed double
Owen Anderson825b72b2009-08-11 20:47:22 +00002270 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002271 // store the hi of the constructed double - biased exponent
Chris Lattner6229d0a2010-09-21 18:41:36 +00002272 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2273 MachinePointerInfo(),
2274 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002275 // load the constructed double
Chris Lattnerecf42c42010-09-21 16:36:31 +00002276 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002277 MachinePointerInfo(), false, false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002278 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00002279 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002280 BitsToDouble(0x4330000080000000ULL) :
2281 BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00002282 MVT::f64);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002283 // subtract the bias
Owen Anderson825b72b2009-08-11 20:47:22 +00002284 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002285 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00002286 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002287 // handle final rounding
Owen Anderson825b72b2009-08-11 20:47:22 +00002288 if (DestVT == MVT::f64) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002289 // do nothing
2290 Result = Sub;
Owen Anderson825b72b2009-08-11 20:47:22 +00002291 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002292 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00002293 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002294 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002295 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002296 }
2297 return Result;
2298 }
2299 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002300 // Code below here assumes !isSigned without checking again.
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002301
2302 // Implementation of unsigned i64 to f64 following the algorithm in
2303 // __floatundidf in compiler_rt. This implementation has the advantage
2304 // of performing rounding correctly, both in the default rounding mode
2305 // and in all alternate rounding modes.
2306 // TODO: Generalize this for use with other types.
2307 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2308 SDValue TwoP52 =
2309 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2310 SDValue TwoP84PlusTwoP52 =
2311 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2312 SDValue TwoP84 =
2313 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2314
2315 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2316 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2317 DAG.getConstant(32, MVT::i64));
2318 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2319 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002320 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2321 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach6e992612010-07-02 17:41:59 +00002322 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2323 TwoP84PlusTwoP52);
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002324 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2325 }
2326
Owen Anderson3a9e7692010-10-05 17:24:05 +00002327 // Implementation of unsigned i64 to f32.
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002328 // TODO: Generalize this for use with other types.
2329 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Anderson3a9e7692010-10-05 17:24:05 +00002330 // For unsigned conversions, convert them to signed conversions using the
2331 // algorithm from the x86_64 __floatundidf in compiler_rt.
2332 if (!isSigned) {
2333 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002334
Owen Anderson95771af2011-02-25 21:41:48 +00002335 SDValue ShiftConst =
2336 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Anderson3a9e7692010-10-05 17:24:05 +00002337 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2338 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2339 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2340 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002341
Owen Anderson3a9e7692010-10-05 17:24:05 +00002342 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2343 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002344
Owen Anderson3a9e7692010-10-05 17:24:05 +00002345 // TODO: This really should be implemented using a branch rather than a
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002346 // select. We happen to get lucky and machinesink does the right
2347 // thing most of the time. This would be a good candidate for a
Owen Anderson3a9e7692010-10-05 17:24:05 +00002348 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault225ed702013-05-18 00:21:46 +00002349 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002350 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002351 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Anderson3a9e7692010-10-05 17:24:05 +00002352 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002353
Owen Anderson3a9e7692010-10-05 17:24:05 +00002354 // Otherwise, implement the fully general conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002355
Jim Grosbach6e992612010-07-02 17:41:59 +00002356 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002357 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2358 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2359 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach6e992612010-07-02 17:41:59 +00002360 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002361 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
Matt Arsenault225ed702013-05-18 00:21:46 +00002362 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002363 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002364 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Matt Arsenault225ed702013-05-18 00:21:46 +00002365 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002366 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002367 ISD::SETUGE);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002368 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Owen Anderson95771af2011-02-25 21:41:48 +00002369 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002370
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002371 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2372 DAG.getConstant(32, SHVT));
2373 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2374 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2375 SDValue TwoP32 =
2376 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2377 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2378 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2379 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2380 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2381 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2382 DAG.getIntPtrConstant(0));
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002383 }
2384
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002385 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002386
Matt Arsenault225ed702013-05-18 00:21:46 +00002387 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002388 Op0, DAG.getConstant(0, Op0.getValueType()),
2389 ISD::SETLT);
2390 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002391 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002392 SignSet, Four, Zero);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002393
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002394 // If the sign bit of the integer is set, the large number will be treated
2395 // as a negative number. To counteract this, the dynamic code adds an
2396 // offset depending on the data type.
2397 uint64_t FF;
Craig Topper0ff11902013-08-15 02:44:19 +00002398 switch (Op0.getSimpleValueType().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002399 default: llvm_unreachable("Unsupported integer type!");
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002400 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2401 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2402 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2403 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2404 }
2405 if (TLI.isLittleEndian()) FF <<= 32;
2406 Constant *FudgeFactor = ConstantInt::get(
2407 Type::getInt64Ty(*DAG.getContext()), FF);
2408
2409 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2410 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Tom Stellardedd08f72013-08-26 15:06:10 +00002411 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002412 Alignment = std::min(Alignment, 4u);
2413 SDValue FudgeInReg;
2414 if (DestVT == MVT::f32)
2415 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00002416 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002417 false, false, false, Alignment);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002418 else {
Dan Gohman65fd6562011-11-03 21:49:52 +00002419 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2420 DAG.getEntryNode(), CPIdx,
2421 MachinePointerInfo::getConstantPool(),
2422 MVT::f32, false, false, Alignment);
2423 HandleSDNode Handle(Load);
2424 LegalizeOp(Load.getNode());
2425 FudgeInReg = Handle.getValue();
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002426 }
2427
2428 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002429}
2430
2431/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2432/// *INT_TO_FP operation of the specified operand when the target requests that
2433/// we promote it. At this point, we know that the result and operand types are
2434/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2435/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00002436SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002437 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002438 bool isSigned,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002439 SDLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002440 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002441 EVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002442
2443 unsigned OpToUse = 0;
2444
2445 // Scan for the appropriate larger type to use.
2446 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002447 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002448 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002449
2450 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002451 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2452 OpToUse = ISD::SINT_TO_FP;
2453 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002454 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002455 if (isSigned) continue;
2456
2457 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002458 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2459 OpToUse = ISD::UINT_TO_FP;
2460 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002461 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002462
2463 // Otherwise, try a larger type.
2464 }
2465
2466 // Okay, we found the operation and type to use. Zero extend our input to the
2467 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00002468 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00002469 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00002470 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002471}
2472
2473/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2474/// FP_TO_*INT operation of the specified operand when the target requests that
2475/// we promote it. At this point, we know that the result and operand types are
2476/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2477/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00002478SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002479 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002480 bool isSigned,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002481 SDLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002482 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002483 EVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002484
2485 unsigned OpToUse = 0;
2486
2487 // Scan for the appropriate larger type to use.
2488 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002489 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002490 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002491
Eli Friedman3be2e512009-05-28 03:06:16 +00002492 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002493 OpToUse = ISD::FP_TO_SINT;
2494 break;
2495 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002496
Eli Friedman3be2e512009-05-28 03:06:16 +00002497 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002498 OpToUse = ISD::FP_TO_UINT;
2499 break;
2500 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002501
2502 // Otherwise, try a larger type.
2503 }
2504
Scott Michelfdc40a02009-02-17 22:15:04 +00002505
Chris Lattner27a6c732007-11-24 07:07:01 +00002506 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00002507 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00002508
Chris Lattner27a6c732007-11-24 07:07:01 +00002509 // Truncate the result of the extended FP_TO_*INT operation to the desired
2510 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00002511 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002512}
2513
2514/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2515///
Andrew Trickac6d9be2013-05-25 02:42:55 +00002516SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002517 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002518 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00002519 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson825b72b2009-08-11 20:47:22 +00002520 switch (VT.getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002521 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002522 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002523 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2524 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2525 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002526 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002527 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2528 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2529 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2530 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2531 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2532 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2533 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2534 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2535 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002536 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002537 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2538 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2539 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2540 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2541 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2542 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2543 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2544 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2545 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2546 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2547 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2548 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2549 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2550 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2551 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2552 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2553 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2554 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2555 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2556 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2557 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002558 }
2559}
2560
2561/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2562///
Scott Michelfdc40a02009-02-17 22:15:04 +00002563SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002564 SDLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002565 switch (Opc) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002566 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002567 case ISD::CTPOP: {
Owen Andersone50ed302009-08-10 22:56:29 +00002568 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002569 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002570 unsigned Len = VT.getSizeInBits();
2571
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002572 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2573 "CTPOP not implemented for this type.");
2574
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002575 // This is the "best" algorithm from
2576 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2577
Benjamin Kramerad4da0f2013-02-20 13:00:06 +00002578 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), VT);
2579 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), VT);
2580 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), VT);
2581 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002582
2583 // v = v - ((v >> 1) & 0x55555555...)
2584 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2585 DAG.getNode(ISD::AND, dl, VT,
2586 DAG.getNode(ISD::SRL, dl, VT, Op,
2587 DAG.getConstant(1, ShVT)),
2588 Mask55));
2589 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2590 Op = DAG.getNode(ISD::ADD, dl, VT,
2591 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2592 DAG.getNode(ISD::AND, dl, VT,
2593 DAG.getNode(ISD::SRL, dl, VT, Op,
2594 DAG.getConstant(2, ShVT)),
2595 Mask33));
2596 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2597 Op = DAG.getNode(ISD::AND, dl, VT,
2598 DAG.getNode(ISD::ADD, dl, VT, Op,
2599 DAG.getNode(ISD::SRL, dl, VT, Op,
2600 DAG.getConstant(4, ShVT))),
2601 Mask0F);
2602 // v = (v * 0x01010101...) >> (Len - 8)
2603 Op = DAG.getNode(ISD::SRL, dl, VT,
2604 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2605 DAG.getConstant(Len - 8, ShVT));
Owen Anderson95771af2011-02-25 21:41:48 +00002606
Chris Lattner22cde6a2006-01-28 08:25:58 +00002607 return Op;
2608 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002609 case ISD::CTLZ_ZERO_UNDEF:
2610 // This trivially expands to CTLZ.
2611 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002612 case ISD::CTLZ: {
2613 // for now, we do this:
2614 // x = x | (x >> 1);
2615 // x = x | (x >> 2);
2616 // ...
2617 // x = x | (x >>16);
2618 // x = x | (x >>32); // for 64-bit input
2619 // return popcount(~x);
2620 //
2621 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002622 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002623 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002624 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002625 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002626 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002627 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00002628 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002629 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00002630 Op = DAG.getNOT(dl, Op, VT);
2631 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002632 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002633 case ISD::CTTZ_ZERO_UNDEF:
2634 // This trivially expands to CTTZ.
2635 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002636 case ISD::CTTZ: {
2637 // for now, we use: { return popcount(~x & (x - 1)); }
2638 // unless the target has ctlz but not ctpop, in which case we use:
2639 // { return 32 - nlz(~x & (x-1)); }
2640 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002641 EVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00002642 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2643 DAG.getNOT(dl, Op, VT),
2644 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00002645 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002646 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002647 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2648 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00002649 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002650 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00002651 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2652 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002653 }
2654 }
2655}
Chris Lattnere34b3962005-01-19 04:19:40 +00002656
Jim Grosbache03262f2010-06-18 21:43:38 +00002657std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2658 unsigned Opc = Node->getOpcode();
2659 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2660 RTLIB::Libcall LC;
2661
2662 switch (Opc) {
2663 default:
2664 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002665 case ISD::ATOMIC_SWAP:
2666 switch (VT.SimpleTy) {
2667 default: llvm_unreachable("Unexpected value type for atomic!");
2668 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2669 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2670 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2671 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002672 case MVT::i128:LC = RTLIB::SYNC_LOCK_TEST_AND_SET_16;break;
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002673 }
2674 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002675 case ISD::ATOMIC_CMP_SWAP:
2676 switch (VT.SimpleTy) {
2677 default: llvm_unreachable("Unexpected value type for atomic!");
2678 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2679 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2680 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2681 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002682 case MVT::i128:LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002683 }
2684 break;
2685 case ISD::ATOMIC_LOAD_ADD:
2686 switch (VT.SimpleTy) {
2687 default: llvm_unreachable("Unexpected value type for atomic!");
2688 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2689 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2690 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2691 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002692 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_ADD_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002693 }
2694 break;
2695 case ISD::ATOMIC_LOAD_SUB:
2696 switch (VT.SimpleTy) {
2697 default: llvm_unreachable("Unexpected value type for atomic!");
2698 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2699 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2700 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2701 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002702 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_SUB_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002703 }
2704 break;
2705 case ISD::ATOMIC_LOAD_AND:
2706 switch (VT.SimpleTy) {
2707 default: llvm_unreachable("Unexpected value type for atomic!");
2708 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2709 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2710 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2711 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002712 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_AND_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002713 }
2714 break;
2715 case ISD::ATOMIC_LOAD_OR:
2716 switch (VT.SimpleTy) {
2717 default: llvm_unreachable("Unexpected value type for atomic!");
2718 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2719 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2720 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2721 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002722 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_OR_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002723 }
2724 break;
2725 case ISD::ATOMIC_LOAD_XOR:
2726 switch (VT.SimpleTy) {
2727 default: llvm_unreachable("Unexpected value type for atomic!");
2728 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2729 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2730 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2731 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002732 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_XOR_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002733 }
2734 break;
2735 case ISD::ATOMIC_LOAD_NAND:
2736 switch (VT.SimpleTy) {
2737 default: llvm_unreachable("Unexpected value type for atomic!");
2738 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2739 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2740 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2741 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002742 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_NAND_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002743 }
2744 break;
Tim Northover5a42ae82013-10-25 09:30:20 +00002745 case ISD::ATOMIC_LOAD_MAX:
2746 switch (VT.SimpleTy) {
2747 default: llvm_unreachable("Unexpected value type for atomic!");
2748 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MAX_1; break;
2749 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MAX_2; break;
2750 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MAX_4; break;
2751 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MAX_8; break;
2752 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MAX_16;break;
2753 }
2754 break;
2755 case ISD::ATOMIC_LOAD_UMAX:
2756 switch (VT.SimpleTy) {
2757 default: llvm_unreachable("Unexpected value type for atomic!");
2758 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMAX_1; break;
2759 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMAX_2; break;
2760 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMAX_4; break;
2761 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMAX_8; break;
2762 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMAX_16;break;
2763 }
2764 break;
2765 case ISD::ATOMIC_LOAD_MIN:
2766 switch (VT.SimpleTy) {
2767 default: llvm_unreachable("Unexpected value type for atomic!");
2768 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MIN_1; break;
2769 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MIN_2; break;
2770 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MIN_4; break;
2771 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MIN_8; break;
2772 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MIN_16;break;
2773 }
2774 break;
2775 case ISD::ATOMIC_LOAD_UMIN:
2776 switch (VT.SimpleTy) {
2777 default: llvm_unreachable("Unexpected value type for atomic!");
2778 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMIN_1; break;
2779 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMIN_2; break;
2780 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMIN_4; break;
2781 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMIN_8; break;
2782 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMIN_16;break;
2783 }
2784 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002785 }
2786
2787 return ExpandChainLibCall(LC, Node, false);
2788}
2789
Dan Gohman65fd6562011-11-03 21:49:52 +00002790void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2791 SmallVector<SDValue, 8> Results;
Andrew Trickac6d9be2013-05-25 02:42:55 +00002792 SDLoc dl(Node);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00002793 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Eli Friedman8c377c72009-05-27 01:25:56 +00002794 switch (Node->getOpcode()) {
2795 case ISD::CTPOP:
2796 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002797 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002798 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002799 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002800 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2801 Results.push_back(Tmp1);
2802 break;
2803 case ISD::BSWAP:
Bill Wendling775db972009-12-23 00:28:23 +00002804 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman8c377c72009-05-27 01:25:56 +00002805 break;
2806 case ISD::FRAMEADDR:
2807 case ISD::RETURNADDR:
2808 case ISD::FRAME_TO_ARGS_OFFSET:
2809 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2810 break;
2811 case ISD::FLT_ROUNDS_:
2812 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2813 break;
2814 case ISD::EH_RETURN:
Eli Friedman8c377c72009-05-27 01:25:56 +00002815 case ISD::EH_LABEL:
2816 case ISD::PREFETCH:
Eli Friedman8c377c72009-05-27 01:25:56 +00002817 case ISD::VAEND:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002818 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002819 // If the target didn't expand these, there's nothing to do, so just
2820 // preserve the chain and be done.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002821 Results.push_back(Node->getOperand(0));
2822 break;
2823 case ISD::EH_SJLJ_SETJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002824 // If the target didn't expand this, just return 'zero' and preserve the
2825 // chain.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002826 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman8c377c72009-05-27 01:25:56 +00002827 Results.push_back(Node->getOperand(0));
2828 break;
Tim Northover6265d5c2013-04-20 12:32:17 +00002829 case ISD::ATOMIC_FENCE: {
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002830 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman14648462011-07-27 22:21:52 +00002831 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002832 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002833 TargetLowering::
2834 CallLoweringInfo CLI(Node->getOperand(0),
2835 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002836 false, false, false, false, 0, CallingConv::C,
2837 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002838 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002839 DAG.getExternalSymbol("__sync_synchronize",
2840 TLI.getPointerTy()),
2841 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002842 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2843
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002844 Results.push_back(CallResult.second);
2845 break;
2846 }
Eli Friedman069e2ed2011-08-26 02:59:24 +00002847 case ISD::ATOMIC_LOAD: {
2848 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedman331120b2011-09-15 21:20:49 +00002849 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman069e2ed2011-08-26 02:59:24 +00002850 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2851 cast<AtomicSDNode>(Node)->getMemoryVT(),
2852 Node->getOperand(0),
2853 Node->getOperand(1), Zero, Zero,
2854 cast<AtomicSDNode>(Node)->getMemOperand(),
2855 cast<AtomicSDNode>(Node)->getOrdering(),
2856 cast<AtomicSDNode>(Node)->getSynchScope());
2857 Results.push_back(Swap.getValue(0));
2858 Results.push_back(Swap.getValue(1));
2859 break;
2860 }
2861 case ISD::ATOMIC_STORE: {
2862 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2863 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2864 cast<AtomicSDNode>(Node)->getMemoryVT(),
2865 Node->getOperand(0),
2866 Node->getOperand(1), Node->getOperand(2),
2867 cast<AtomicSDNode>(Node)->getMemOperand(),
2868 cast<AtomicSDNode>(Node)->getOrdering(),
2869 cast<AtomicSDNode>(Node)->getSynchScope());
2870 Results.push_back(Swap.getValue(1));
2871 break;
2872 }
Jim Grosbachb56ce812010-06-17 17:50:54 +00002873 // By default, atomic intrinsics are marked Legal and lowered. Targets
2874 // which don't support them directly, however, may want libcalls, in which
2875 // case they mark them Expand, and we get here.
Jim Grosbachb56ce812010-06-17 17:50:54 +00002876 case ISD::ATOMIC_SWAP:
2877 case ISD::ATOMIC_LOAD_ADD:
2878 case ISD::ATOMIC_LOAD_SUB:
2879 case ISD::ATOMIC_LOAD_AND:
2880 case ISD::ATOMIC_LOAD_OR:
2881 case ISD::ATOMIC_LOAD_XOR:
2882 case ISD::ATOMIC_LOAD_NAND:
2883 case ISD::ATOMIC_LOAD_MIN:
2884 case ISD::ATOMIC_LOAD_MAX:
2885 case ISD::ATOMIC_LOAD_UMIN:
2886 case ISD::ATOMIC_LOAD_UMAX:
Evan Chenga8457062010-06-18 22:01:37 +00002887 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbache03262f2010-06-18 21:43:38 +00002888 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2889 Results.push_back(Tmp.first);
2890 Results.push_back(Tmp.second);
Jim Grosbach59c38f32010-06-17 17:58:54 +00002891 break;
Evan Chenga8457062010-06-18 22:01:37 +00002892 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00002893 case ISD::DYNAMIC_STACKALLOC:
2894 ExpandDYNAMIC_STACKALLOC(Node, Results);
2895 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00002896 case ISD::MERGE_VALUES:
2897 for (unsigned i = 0; i < Node->getNumValues(); i++)
2898 Results.push_back(Node->getOperand(i));
2899 break;
2900 case ISD::UNDEF: {
Owen Andersone50ed302009-08-10 22:56:29 +00002901 EVT VT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00002902 if (VT.isInteger())
2903 Results.push_back(DAG.getConstant(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002904 else {
2905 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman8c377c72009-05-27 01:25:56 +00002906 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002907 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002908 break;
2909 }
2910 case ISD::TRAP: {
2911 // If this operation is not supported, lower it to 'abort()' call
2912 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002913 TargetLowering::
2914 CallLoweringInfo CLI(Node->getOperand(0),
2915 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002916 false, false, false, false, 0, CallingConv::C,
2917 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002918 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eli Friedman8c377c72009-05-27 01:25:56 +00002919 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00002920 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002921 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2922
Eli Friedman8c377c72009-05-27 01:25:56 +00002923 Results.push_back(CallResult.second);
2924 break;
2925 }
2926 case ISD::FP_ROUND:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002927 case ISD::BITCAST:
Eli Friedman8c377c72009-05-27 01:25:56 +00002928 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2929 Node->getValueType(0), dl);
2930 Results.push_back(Tmp1);
2931 break;
2932 case ISD::FP_EXTEND:
2933 Tmp1 = EmitStackConvert(Node->getOperand(0),
2934 Node->getOperand(0).getValueType(),
2935 Node->getValueType(0), dl);
2936 Results.push_back(Tmp1);
2937 break;
2938 case ISD::SIGN_EXTEND_INREG: {
2939 // NOTE: we could fall back on load/store here too for targets without
2940 // SAR. However, it is doubtful that any exist.
Owen Andersone50ed302009-08-10 22:56:29 +00002941 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00002942 EVT VT = Node->getValueType(0);
Owen Anderson95771af2011-02-25 21:41:48 +00002943 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohmand1996362010-01-09 02:13:55 +00002944 if (VT.isVector())
Dan Gohman87862e72009-12-11 21:31:27 +00002945 ShiftAmountTy = VT;
Dan Gohmand1996362010-01-09 02:13:55 +00002946 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2947 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman87862e72009-12-11 21:31:27 +00002948 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman8c377c72009-05-27 01:25:56 +00002949 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2950 Node->getOperand(0), ShiftCst);
Bill Wendling775db972009-12-23 00:28:23 +00002951 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2952 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002953 break;
2954 }
2955 case ISD::FP_ROUND_INREG: {
2956 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002957 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman8c377c72009-05-27 01:25:56 +00002958
2959 // NOTE: there is a choice here between constantly creating new stack
2960 // slots and always reusing the same one. We currently always create
2961 // new ones, as reuse may inhibit scheduling.
Owen Andersone50ed302009-08-10 22:56:29 +00002962 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00002963 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2964 Node->getValueType(0), dl);
2965 Results.push_back(Tmp1);
2966 break;
2967 }
2968 case ISD::SINT_TO_FP:
2969 case ISD::UINT_TO_FP:
2970 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2971 Node->getOperand(0), Node->getValueType(0), dl);
2972 Results.push_back(Tmp1);
2973 break;
2974 case ISD::FP_TO_UINT: {
2975 SDValue True, False;
Owen Andersone50ed302009-08-10 22:56:29 +00002976 EVT VT = Node->getOperand(0).getValueType();
2977 EVT NVT = Node->getValueType(0);
Tim Northover0a29cb02013-01-22 09:46:31 +00002978 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
2979 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman8c377c72009-05-27 01:25:56 +00002980 APInt x = APInt::getSignBit(NVT.getSizeInBits());
2981 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
2982 Tmp1 = DAG.getConstantFP(apf, VT);
Matt Arsenault225ed702013-05-18 00:21:46 +00002983 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman8c377c72009-05-27 01:25:56 +00002984 Node->getOperand(0),
2985 Tmp1, ISD::SETLT);
2986 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00002987 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
2988 DAG.getNode(ISD::FSUB, dl, VT,
2989 Node->getOperand(0), Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00002990 False = DAG.getNode(ISD::XOR, dl, NVT, False,
2991 DAG.getConstant(x, NVT));
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002992 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman8c377c72009-05-27 01:25:56 +00002993 Results.push_back(Tmp1);
2994 break;
2995 }
Eli Friedman509150f2009-05-27 07:58:35 +00002996 case ISD::VAARG: {
2997 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00002998 EVT VT = Node->getValueType(0);
Eli Friedman509150f2009-05-27 07:58:35 +00002999 Tmp1 = Node->getOperand(0);
3000 Tmp2 = Node->getOperand(1);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00003001 unsigned Align = Node->getConstantOperandVal(3);
3002
Chris Lattnerecf42c42010-09-21 16:36:31 +00003003 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Stephen Lin155615d2013-07-08 00:37:03 +00003004 MachinePointerInfo(V),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003005 false, false, false, 0);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00003006 SDValue VAList = VAListLoad;
3007
Rafael Espindolacbeeae22010-07-11 04:01:49 +00003008 if (Align > TLI.getMinStackArgumentAlignment()) {
3009 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
3010
Tom Stellardedd08f72013-08-26 15:06:10 +00003011 VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00003012 DAG.getConstant(Align - 1,
Tom Stellardedd08f72013-08-26 15:06:10 +00003013 VAList.getValueType()));
Rafael Espindola72d13ff2010-06-26 18:22:20 +00003014
Tom Stellardedd08f72013-08-26 15:06:10 +00003015 VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList,
Chris Lattner07e3a382010-10-10 18:36:26 +00003016 DAG.getConstant(-(int64_t)Align,
Tom Stellardedd08f72013-08-26 15:06:10 +00003017 VAList.getValueType()));
Rafael Espindola72d13ff2010-06-26 18:22:20 +00003018 }
3019
Eli Friedman509150f2009-05-27 07:58:35 +00003020 // Increment the pointer, VAList, to the next vaarg
Tom Stellardedd08f72013-08-26 15:06:10 +00003021 Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Micah Villmow3574eca2012-10-08 16:38:25 +00003022 DAG.getConstant(TLI.getDataLayout()->
Evan Chengadf97992010-04-15 01:25:27 +00003023 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Tom Stellardedd08f72013-08-26 15:06:10 +00003024 VAList.getValueType()));
Eli Friedman509150f2009-05-27 07:58:35 +00003025 // Store the incremented VAList to the legalized pointer
Chris Lattner6229d0a2010-09-21 18:41:36 +00003026 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
3027 MachinePointerInfo(V), false, false, 0);
Eli Friedman509150f2009-05-27 07:58:35 +00003028 // Load the actual argument out of the pointer VAList
Chris Lattnerecf42c42010-09-21 16:36:31 +00003029 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003030 false, false, false, 0));
Eli Friedman509150f2009-05-27 07:58:35 +00003031 Results.push_back(Results[0].getValue(1));
3032 break;
3033 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003034 case ISD::VACOPY: {
3035 // This defaults to loading a pointer from the input and storing it to the
3036 // output, returning the chain.
3037 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3038 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3039 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattnerecf42c42010-09-21 16:36:31 +00003040 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003041 false, false, false, 0);
Chris Lattnerecf42c42010-09-21 16:36:31 +00003042 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
3043 MachinePointerInfo(VD), false, false, 0);
Bill Wendling775db972009-12-23 00:28:23 +00003044 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003045 break;
3046 }
3047 case ISD::EXTRACT_VECTOR_ELT:
3048 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3049 // This must be an access of the only element. Return it.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003050 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman8c377c72009-05-27 01:25:56 +00003051 Node->getOperand(0));
3052 else
3053 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3054 Results.push_back(Tmp1);
3055 break;
3056 case ISD::EXTRACT_SUBVECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00003057 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman8c377c72009-05-27 01:25:56 +00003058 break;
David Greenecfe33c42011-01-26 19:13:22 +00003059 case ISD::INSERT_SUBVECTOR:
3060 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3061 break;
Eli Friedman509150f2009-05-27 07:58:35 +00003062 case ISD::CONCAT_VECTORS: {
Bill Wendling775db972009-12-23 00:28:23 +00003063 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman509150f2009-05-27 07:58:35 +00003064 break;
3065 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003066 case ISD::SCALAR_TO_VECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00003067 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman8c377c72009-05-27 01:25:56 +00003068 break;
Eli Friedman3f727d62009-05-27 02:16:40 +00003069 case ISD::INSERT_VECTOR_ELT:
Bill Wendling775db972009-12-23 00:28:23 +00003070 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3071 Node->getOperand(1),
3072 Node->getOperand(2), dl));
Eli Friedman3f727d62009-05-27 02:16:40 +00003073 break;
Eli Friedman509150f2009-05-27 07:58:35 +00003074 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003075 SmallVector<int, 32> NewMask;
3076 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003077
Owen Andersone50ed302009-08-10 22:56:29 +00003078 EVT VT = Node->getValueType(0);
3079 EVT EltVT = VT.getVectorElementType();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003080 SDValue Op0 = Node->getOperand(0);
3081 SDValue Op1 = Node->getOperand(1);
3082 if (!TLI.isTypeLegal(EltVT)) {
3083
3084 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3085
3086 // BUILD_VECTOR operands are allowed to be wider than the element type.
3087 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept it
3088 if (NewEltVT.bitsLT(EltVT)) {
3089
3090 // Convert shuffle node.
3091 // If original node was v4i64 and the new EltVT is i32,
3092 // cast operands to v8i32 and re-build the mask.
3093
3094 // Calculate new VT, the size of the new VT should be equal to original.
Stephen Lin155615d2013-07-08 00:37:03 +00003095 EVT NewVT = EVT::getVectorVT(*DAG.getContext(), NewEltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003096 VT.getSizeInBits()/NewEltVT.getSizeInBits());
3097 assert(NewVT.bitsEq(VT));
3098
3099 // cast operands to new VT
3100 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3101 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3102
3103 // Convert the shuffle mask
3104 unsigned int factor = NewVT.getVectorNumElements()/VT.getVectorNumElements();
3105
3106 // EltVT gets smaller
3107 assert(factor > 0);
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003108
3109 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3110 if (Mask[i] < 0) {
3111 for (unsigned fi = 0; fi < factor; ++fi)
3112 NewMask.push_back(Mask[i]);
3113 }
3114 else {
3115 for (unsigned fi = 0; fi < factor; ++fi)
3116 NewMask.push_back(Mask[i]*factor+fi);
3117 }
3118 }
3119 Mask = NewMask;
3120 VT = NewVT;
3121 }
3122 EltVT = NewEltVT;
3123 }
Eli Friedman509150f2009-05-27 07:58:35 +00003124 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003125 SmallVector<SDValue, 16> Ops;
Eli Friedman509150f2009-05-27 07:58:35 +00003126 for (unsigned i = 0; i != NumElems; ++i) {
3127 if (Mask[i] < 0) {
3128 Ops.push_back(DAG.getUNDEF(EltVT));
3129 continue;
3130 }
3131 unsigned Idx = Mask[i];
3132 if (Idx < NumElems)
Bill Wendling775db972009-12-23 00:28:23 +00003133 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003134 Op0,
Tom Stellard425b76c2013-08-05 22:22:01 +00003135 DAG.getConstant(Idx, TLI.getVectorIdxTy())));
Eli Friedman509150f2009-05-27 07:58:35 +00003136 else
Bill Wendling775db972009-12-23 00:28:23 +00003137 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003138 Op1,
Tom Stellard425b76c2013-08-05 22:22:01 +00003139 DAG.getConstant(Idx - NumElems,
3140 TLI.getVectorIdxTy())));
Eli Friedman509150f2009-05-27 07:58:35 +00003141 }
Nadav Rotem6c0366c2012-01-10 14:28:46 +00003142
Eli Friedman509150f2009-05-27 07:58:35 +00003143 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Nadav Rotem6c0366c2012-01-10 14:28:46 +00003144 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3145 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003146 Results.push_back(Tmp1);
3147 break;
3148 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003149 case ISD::EXTRACT_ELEMENT: {
Owen Andersone50ed302009-08-10 22:56:29 +00003150 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman8c377c72009-05-27 01:25:56 +00003151 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3152 // 1 -> Hi
3153 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3154 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003155 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman8c377c72009-05-27 01:25:56 +00003156 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3157 } else {
3158 // 0 -> Lo
3159 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3160 Node->getOperand(0));
3161 }
3162 Results.push_back(Tmp1);
3163 break;
3164 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003165 case ISD::STACKSAVE:
3166 // Expand to CopyFromReg if the target set
3167 // StackPointerRegisterToSaveRestore.
3168 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendling775db972009-12-23 00:28:23 +00003169 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3170 Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003171 Results.push_back(Results[0].getValue(1));
3172 } else {
Bill Wendling775db972009-12-23 00:28:23 +00003173 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003174 Results.push_back(Node->getOperand(0));
3175 }
3176 break;
3177 case ISD::STACKRESTORE:
Bill Wendling775db972009-12-23 00:28:23 +00003178 // Expand to CopyToReg if the target set
3179 // StackPointerRegisterToSaveRestore.
3180 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3181 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3182 Node->getOperand(1)));
3183 } else {
3184 Results.push_back(Node->getOperand(0));
3185 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003186 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003187 case ISD::FCOPYSIGN:
Bill Wendling775db972009-12-23 00:28:23 +00003188 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003189 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003190 case ISD::FNEG:
3191 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3192 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3193 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3194 Node->getOperand(0));
3195 Results.push_back(Tmp1);
3196 break;
3197 case ISD::FABS: {
3198 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Andersone50ed302009-08-10 22:56:29 +00003199 EVT VT = Node->getValueType(0);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003200 Tmp1 = Node->getOperand(0);
3201 Tmp2 = DAG.getConstantFP(0.0, VT);
Matt Arsenault225ed702013-05-18 00:21:46 +00003202 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003203 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendling775db972009-12-23 00:28:23 +00003204 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00003205 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003206 Results.push_back(Tmp1);
3207 break;
3208 }
3209 case ISD::FSQRT:
Bill Wendling775db972009-12-23 00:28:23 +00003210 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003211 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3212 RTLIB::SQRT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003213 break;
3214 case ISD::FSIN:
Evan Cheng8688a582013-01-29 02:32:37 +00003215 case ISD::FCOS: {
3216 EVT VT = Node->getValueType(0);
3217 bool isSIN = Node->getOpcode() == ISD::FSIN;
3218 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3219 // fcos which share the same operand and both are used.
3220 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmond86cdbc92013-02-15 18:45:18 +00003221 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng8688a582013-01-29 02:32:37 +00003222 && useSinCos(Node)) {
3223 SDVTList VTs = DAG.getVTList(VT, VT);
3224 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3225 if (!isSIN)
3226 Tmp1 = Tmp1.getValue(1);
3227 Results.push_back(Tmp1);
3228 } else if (isSIN) {
3229 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3230 RTLIB::SIN_F80, RTLIB::SIN_F128,
3231 RTLIB::SIN_PPCF128));
3232 } else {
3233 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3234 RTLIB::COS_F80, RTLIB::COS_F128,
3235 RTLIB::COS_PPCF128));
3236 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003237 break;
Evan Cheng8688a582013-01-29 02:32:37 +00003238 }
3239 case ISD::FSINCOS:
3240 // Expand into sincos libcall.
3241 ExpandSinCosLibCall(Node, Results);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003242 break;
3243 case ISD::FLOG:
Bill Wendling775db972009-12-23 00:28:23 +00003244 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003245 RTLIB::LOG_F80, RTLIB::LOG_F128,
3246 RTLIB::LOG_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003247 break;
3248 case ISD::FLOG2:
Bill Wendling775db972009-12-23 00:28:23 +00003249 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003250 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3251 RTLIB::LOG2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003252 break;
3253 case ISD::FLOG10:
Bill Wendling775db972009-12-23 00:28:23 +00003254 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003255 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3256 RTLIB::LOG10_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003257 break;
3258 case ISD::FEXP:
Bill Wendling775db972009-12-23 00:28:23 +00003259 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003260 RTLIB::EXP_F80, RTLIB::EXP_F128,
3261 RTLIB::EXP_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003262 break;
3263 case ISD::FEXP2:
Bill Wendling775db972009-12-23 00:28:23 +00003264 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003265 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3266 RTLIB::EXP2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003267 break;
3268 case ISD::FTRUNC:
Bill Wendling775db972009-12-23 00:28:23 +00003269 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003270 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3271 RTLIB::TRUNC_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003272 break;
3273 case ISD::FFLOOR:
Bill Wendling775db972009-12-23 00:28:23 +00003274 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003275 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3276 RTLIB::FLOOR_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003277 break;
3278 case ISD::FCEIL:
Bill Wendling775db972009-12-23 00:28:23 +00003279 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003280 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3281 RTLIB::CEIL_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003282 break;
3283 case ISD::FRINT:
Bill Wendling775db972009-12-23 00:28:23 +00003284 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003285 RTLIB::RINT_F80, RTLIB::RINT_F128,
3286 RTLIB::RINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003287 break;
3288 case ISD::FNEARBYINT:
Bill Wendling775db972009-12-23 00:28:23 +00003289 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3290 RTLIB::NEARBYINT_F64,
3291 RTLIB::NEARBYINT_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00003292 RTLIB::NEARBYINT_F128,
Bill Wendling775db972009-12-23 00:28:23 +00003293 RTLIB::NEARBYINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003294 break;
Hal Finkel41418d12013-08-07 22:49:12 +00003295 case ISD::FROUND:
3296 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3297 RTLIB::ROUND_F64,
3298 RTLIB::ROUND_F80,
3299 RTLIB::ROUND_F128,
3300 RTLIB::ROUND_PPCF128));
3301 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003302 case ISD::FPOWI:
Bill Wendling775db972009-12-23 00:28:23 +00003303 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003304 RTLIB::POWI_F80, RTLIB::POWI_F128,
3305 RTLIB::POWI_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003306 break;
3307 case ISD::FPOW:
Bill Wendling775db972009-12-23 00:28:23 +00003308 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003309 RTLIB::POW_F80, RTLIB::POW_F128,
3310 RTLIB::POW_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003311 break;
3312 case ISD::FDIV:
Bill Wendling775db972009-12-23 00:28:23 +00003313 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003314 RTLIB::DIV_F80, RTLIB::DIV_F128,
3315 RTLIB::DIV_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003316 break;
3317 case ISD::FREM:
Bill Wendling775db972009-12-23 00:28:23 +00003318 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003319 RTLIB::REM_F80, RTLIB::REM_F128,
3320 RTLIB::REM_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003321 break;
Cameron Zwarich33390842011-07-08 21:39:21 +00003322 case ISD::FMA:
3323 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003324 RTLIB::FMA_F80, RTLIB::FMA_F128,
3325 RTLIB::FMA_PPCF128));
Cameron Zwarich33390842011-07-08 21:39:21 +00003326 break;
Anton Korobeynikov927411b2010-03-14 18:42:24 +00003327 case ISD::FP16_TO_FP32:
3328 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3329 break;
3330 case ISD::FP32_TO_FP16:
3331 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3332 break;
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003333 case ISD::ConstantFP: {
3334 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendling775db972009-12-23 00:28:23 +00003335 // Check to see if this FP immediate is already legal.
3336 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman65fd6562011-11-03 21:49:52 +00003337 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3338 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003339 break;
3340 }
Owen Andersonafd3d562012-03-06 00:29:31 +00003341 case ISD::FSUB: {
3342 EVT VT = Node->getValueType(0);
3343 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3344 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3345 "Don't know how to expand this FP subtraction!");
3346 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3347 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3348 Results.push_back(Tmp1);
3349 break;
3350 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003351 case ISD::SUB: {
Owen Andersone50ed302009-08-10 22:56:29 +00003352 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003353 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3354 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3355 "Don't know how to expand this subtraction!");
3356 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3357 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Anderson4b6e6752012-05-21 22:39:20 +00003358 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendling775db972009-12-23 00:28:23 +00003359 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003360 break;
3361 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003362 case ISD::UREM:
3363 case ISD::SREM: {
Owen Andersone50ed302009-08-10 22:56:29 +00003364 EVT VT = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003365 bool isSigned = Node->getOpcode() == ISD::SREM;
3366 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3367 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3368 Tmp2 = Node->getOperand(0);
3369 Tmp3 = Node->getOperand(1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003370 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3371 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Chengd36696c2012-10-12 01:15:47 +00003372 // If div is legal, it's better to do the normal expansion
3373 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003374 useDivRem(Node, isSigned, false))) {
Evan Cheng8688a582013-01-29 02:32:37 +00003375 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedman3be2e512009-05-28 03:06:16 +00003376 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3377 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003378 // X % Y -> X-X/Y*Y
3379 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3380 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3381 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003382 } else if (isSigned)
3383 Tmp1 = ExpandIntLibCall(Node, true,
3384 RTLIB::SREM_I8,
3385 RTLIB::SREM_I16, RTLIB::SREM_I32,
3386 RTLIB::SREM_I64, RTLIB::SREM_I128);
3387 else
3388 Tmp1 = ExpandIntLibCall(Node, false,
3389 RTLIB::UREM_I8,
3390 RTLIB::UREM_I16, RTLIB::UREM_I32,
3391 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003392 Results.push_back(Tmp1);
3393 break;
3394 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003395 case ISD::UDIV:
3396 case ISD::SDIV: {
3397 bool isSigned = Node->getOpcode() == ISD::SDIV;
3398 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Andersone50ed302009-08-10 22:56:29 +00003399 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003400 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Cheng65279cb2011-04-16 03:08:26 +00003401 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3402 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003403 useDivRem(Node, isSigned, true)))
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003404 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3405 Node->getOperand(1));
Evan Cheng65279cb2011-04-16 03:08:26 +00003406 else if (isSigned)
3407 Tmp1 = ExpandIntLibCall(Node, true,
3408 RTLIB::SDIV_I8,
3409 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3410 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3411 else
3412 Tmp1 = ExpandIntLibCall(Node, false,
3413 RTLIB::UDIV_I8,
3414 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3415 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003416 Results.push_back(Tmp1);
3417 break;
3418 }
3419 case ISD::MULHU:
3420 case ISD::MULHS: {
3421 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3422 ISD::SMUL_LOHI;
Owen Andersone50ed302009-08-10 22:56:29 +00003423 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003424 SDVTList VTs = DAG.getVTList(VT, VT);
3425 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3426 "If this wasn't legal, it shouldn't have been created!");
3427 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3428 Node->getOperand(1));
3429 Results.push_back(Tmp1.getValue(1));
3430 break;
3431 }
Evan Cheng65279cb2011-04-16 03:08:26 +00003432 case ISD::SDIVREM:
3433 case ISD::UDIVREM:
3434 // Expand into divrem libcall
3435 ExpandDivRemLibCall(Node, Results);
3436 break;
Eli Friedman26ea8f92009-05-27 07:05:37 +00003437 case ISD::MUL: {
Owen Andersone50ed302009-08-10 22:56:29 +00003438 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003439 SDVTList VTs = DAG.getVTList(VT, VT);
3440 // See if multiply or divide can be lowered using two-result operations.
3441 // We just need the low half of the multiply; try both the signed
3442 // and unsigned forms. If the target supports both SMUL_LOHI and
3443 // UMUL_LOHI, form a preference by checking which forms of plain
3444 // MULH it supports.
3445 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3446 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3447 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3448 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3449 unsigned OpToUse = 0;
3450 if (HasSMUL_LOHI && !HasMULHS) {
3451 OpToUse = ISD::SMUL_LOHI;
3452 } else if (HasUMUL_LOHI && !HasMULHU) {
3453 OpToUse = ISD::UMUL_LOHI;
3454 } else if (HasSMUL_LOHI) {
3455 OpToUse = ISD::SMUL_LOHI;
3456 } else if (HasUMUL_LOHI) {
3457 OpToUse = ISD::UMUL_LOHI;
3458 }
3459 if (OpToUse) {
Bill Wendling775db972009-12-23 00:28:23 +00003460 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3461 Node->getOperand(1)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003462 break;
3463 }
Anton Korobeynikov8983da72009-11-07 17:14:39 +00003464 Tmp1 = ExpandIntLibCall(Node, false,
3465 RTLIB::MUL_I8,
3466 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman26ea8f92009-05-27 07:05:37 +00003467 RTLIB::MUL_I64, RTLIB::MUL_I128);
3468 Results.push_back(Tmp1);
3469 break;
3470 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003471 case ISD::SADDO:
3472 case ISD::SSUBO: {
3473 SDValue LHS = Node->getOperand(0);
3474 SDValue RHS = Node->getOperand(1);
3475 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3476 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3477 LHS, RHS);
3478 Results.push_back(Sum);
Bill Wendling122d06d2009-12-23 00:05:09 +00003479 EVT OType = Node->getValueType(1);
Bill Wendling775db972009-12-23 00:28:23 +00003480
Eli Friedman4bc8c712009-05-27 12:20:41 +00003481 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3482
3483 // LHSSign -> LHS >= 0
3484 // RHSSign -> RHS >= 0
3485 // SumSign -> Sum >= 0
3486 //
3487 // Add:
3488 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3489 // Sub:
3490 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3491 //
3492 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3493 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3494 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3495 Node->getOpcode() == ISD::SADDO ?
3496 ISD::SETEQ : ISD::SETNE);
3497
3498 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3499 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3500
3501 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3502 Results.push_back(Cmp);
3503 break;
3504 }
3505 case ISD::UADDO:
3506 case ISD::USUBO: {
3507 SDValue LHS = Node->getOperand(0);
3508 SDValue RHS = Node->getOperand(1);
3509 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3510 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3511 LHS, RHS);
3512 Results.push_back(Sum);
Bill Wendling775db972009-12-23 00:28:23 +00003513 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3514 Node->getOpcode () == ISD::UADDO ?
3515 ISD::SETULT : ISD::SETUGT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003516 break;
3517 }
Eli Friedmandb3c1692009-06-16 06:58:29 +00003518 case ISD::UMULO:
3519 case ISD::SMULO: {
Owen Andersone50ed302009-08-10 22:56:29 +00003520 EVT VT = Node->getValueType(0);
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003521 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmandb3c1692009-06-16 06:58:29 +00003522 SDValue LHS = Node->getOperand(0);
3523 SDValue RHS = Node->getOperand(1);
3524 SDValue BottomHalf;
3525 SDValue TopHalf;
Nuno Lopesec9d8b02009-12-23 17:48:10 +00003526 static const unsigned Ops[2][3] =
Eli Friedmandb3c1692009-06-16 06:58:29 +00003527 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3528 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3529 bool isSigned = Node->getOpcode() == ISD::SMULO;
3530 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3531 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3532 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3533 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3534 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3535 RHS);
3536 TopHalf = BottomHalf.getValue(1);
Eric Christopher38a18262011-01-20 00:29:24 +00003537 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3538 VT.getSizeInBits() * 2))) {
Eli Friedmandb3c1692009-06-16 06:58:29 +00003539 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3540 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3541 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3542 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3543 DAG.getIntPtrConstant(0));
3544 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3545 DAG.getIntPtrConstant(1));
Eric Christopher38a18262011-01-20 00:29:24 +00003546 } else {
3547 // We can fall back to a libcall with an illegal type for the MUL if we
3548 // have a libcall big enough.
3549 // Also, we can fall back to a division in some cases, but that's a big
3550 // performance hit in the general case.
Eric Christopher38a18262011-01-20 00:29:24 +00003551 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3552 if (WideVT == MVT::i16)
3553 LC = RTLIB::MUL_I16;
3554 else if (WideVT == MVT::i32)
3555 LC = RTLIB::MUL_I32;
3556 else if (WideVT == MVT::i64)
3557 LC = RTLIB::MUL_I64;
3558 else if (WideVT == MVT::i128)
3559 LC = RTLIB::MUL_I128;
3560 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanf316eb72011-05-16 22:09:53 +00003561
3562 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003563 // part.
3564 unsigned LoSize = VT.getSizeInBits();
3565 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3566 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3567 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3568 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Anderson95771af2011-02-25 21:41:48 +00003569
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003570 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3571 // pre-lowered to the correct types. This all depends upon WideVT not
3572 // being a legal type for the architecture and thus has to be split to
3573 // two arguments.
3574 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3575 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3576 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3577 DAG.getIntPtrConstant(0));
3578 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3579 DAG.getIntPtrConstant(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00003580 // Ret is a node with an illegal type. Because such things are not
3581 // generally permitted during this phase of legalization, delete the
3582 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3583 DAG.DeleteNode(Ret.getNode());
Eli Friedmandb3c1692009-06-16 06:58:29 +00003584 }
Dan Gohmanf316eb72011-05-16 22:09:53 +00003585
Eli Friedmandb3c1692009-06-16 06:58:29 +00003586 if (isSigned) {
Owen Anderson95771af2011-02-25 21:41:48 +00003587 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3588 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmandb3c1692009-06-16 06:58:29 +00003589 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault225ed702013-05-18 00:21:46 +00003590 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmandb3c1692009-06-16 06:58:29 +00003591 ISD::SETNE);
3592 } else {
Matt Arsenault225ed702013-05-18 00:21:46 +00003593 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Eli Friedmandb3c1692009-06-16 06:58:29 +00003594 DAG.getConstant(0, VT), ISD::SETNE);
3595 }
3596 Results.push_back(BottomHalf);
3597 Results.push_back(TopHalf);
3598 break;
3599 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003600 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +00003601 EVT PairTy = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003602 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3603 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendling775db972009-12-23 00:28:23 +00003604 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003605 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003606 TLI.getShiftAmountTy(PairTy)));
Bill Wendling775db972009-12-23 00:28:23 +00003607 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003608 break;
3609 }
Eli Friedman509150f2009-05-27 07:58:35 +00003610 case ISD::SELECT:
3611 Tmp1 = Node->getOperand(0);
3612 Tmp2 = Node->getOperand(1);
3613 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003614 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman509150f2009-05-27 07:58:35 +00003615 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3616 Tmp2, Tmp3,
3617 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendling775db972009-12-23 00:28:23 +00003618 } else {
Eli Friedman509150f2009-05-27 07:58:35 +00003619 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3620 DAG.getConstant(0, Tmp1.getValueType()),
3621 Tmp2, Tmp3, ISD::SETNE);
Bill Wendling775db972009-12-23 00:28:23 +00003622 }
Eli Friedman509150f2009-05-27 07:58:35 +00003623 Results.push_back(Tmp1);
3624 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003625 case ISD::BR_JT: {
3626 SDValue Chain = Node->getOperand(0);
3627 SDValue Table = Node->getOperand(1);
3628 SDValue Index = Node->getOperand(2);
3629
Owen Andersone50ed302009-08-10 22:56:29 +00003630 EVT PTy = TLI.getPointerTy();
Chris Lattner071c62f2010-01-25 23:26:13 +00003631
Micah Villmow3574eca2012-10-08 16:38:25 +00003632 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattner071c62f2010-01-25 23:26:13 +00003633 unsigned EntrySize =
3634 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach6e992612010-07-02 17:41:59 +00003635
Tom Stellardedd08f72013-08-26 15:06:10 +00003636 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(),
3637 Index, DAG.getConstant(EntrySize, Index.getValueType()));
3638 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3639 Index, Table);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003640
Owen Anderson23b9b192009-08-12 00:36:31 +00003641 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastingsa9011292011-02-16 16:23:55 +00003642 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattner85ca1062010-09-21 07:32:19 +00003643 MachinePointerInfo::getJumpTable(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00003644 false, false, 0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003645 Addr = LD;
Dan Gohman55e59c12010-04-19 19:05:59 +00003646 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman4bc8c712009-05-27 12:20:41 +00003647 // For PIC, the sequence is:
Bill Wendling775db972009-12-23 00:28:23 +00003648 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman4bc8c712009-05-27 12:20:41 +00003649 // RelocBase can be JumpTable, GOT or some sort of global base.
3650 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3651 TLI.getPICJumpTableRelocBase(Table, DAG));
3652 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003653 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003654 Results.push_back(Tmp1);
3655 break;
3656 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003657 case ISD::BRCOND:
3658 // Expand brcond's setcc into its constituent parts and create a BR_CC
3659 // Node.
3660 Tmp1 = Node->getOperand(0);
3661 Tmp2 = Node->getOperand(1);
Bill Wendling775db972009-12-23 00:28:23 +00003662 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003663 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003664 Tmp1, Tmp2.getOperand(2),
3665 Tmp2.getOperand(0), Tmp2.getOperand(1),
3666 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003667 } else {
Stuart Hastings88882242011-05-13 00:51:54 +00003668 // We test only the i1 bit. Skip the AND if UNDEF.
3669 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3670 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3671 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003672 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastings88882242011-05-13 00:51:54 +00003673 DAG.getCondCode(ISD::SETNE), Tmp3,
3674 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003675 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003676 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003677 Results.push_back(Tmp1);
3678 break;
Eli Friedmanad754602009-05-28 03:56:57 +00003679 case ISD::SETCC: {
3680 Tmp1 = Node->getOperand(0);
3681 Tmp2 = Node->getOperand(1);
3682 Tmp3 = Node->getOperand(2);
Tom Stellard8a9879a2013-09-28 02:50:32 +00003683 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
3684 Tmp3, dl);
Eli Friedmanad754602009-05-28 03:56:57 +00003685
Tom Stellard8a9879a2013-09-28 02:50:32 +00003686 if (Legalized) {
3687 // If we exapanded the SETCC by swapping LHS and RHS, create a new SETCC
Tom Stellard20a3bc62013-10-01 02:09:00 +00003688 // node.
Tom Stellard8a9879a2013-09-28 02:50:32 +00003689 if (Tmp3.getNode())
3690 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3691 Tmp1, Tmp2, Tmp3);
3692
Eli Friedmanad754602009-05-28 03:56:57 +00003693 Results.push_back(Tmp1);
3694 break;
3695 }
3696
3697 // Otherwise, SETCC for the given comparison type must be completely
3698 // illegal; expand it into a SELECT_CC.
Owen Andersone50ed302009-08-10 22:56:29 +00003699 EVT VT = Node->getValueType(0);
Tom Stellard03abf2f2013-03-08 15:37:02 +00003700 int TrueValue;
Benjamin Kramer7a580992013-03-08 17:03:19 +00003701 switch (TLI.getBooleanContents(VT.isVector())) {
Tom Stellard03abf2f2013-03-08 15:37:02 +00003702 case TargetLowering::ZeroOrOneBooleanContent:
3703 case TargetLowering::UndefinedBooleanContent:
3704 TrueValue = 1;
3705 break;
3706 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3707 TrueValue = -1;
3708 break;
3709 }
Eli Friedmanad754602009-05-28 03:56:57 +00003710 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Tom Stellard03abf2f2013-03-08 15:37:02 +00003711 DAG.getConstant(TrueValue, VT), DAG.getConstant(0, VT),
3712 Tmp3);
Eli Friedmanad754602009-05-28 03:56:57 +00003713 Results.push_back(Tmp1);
3714 break;
3715 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003716 case ISD::SELECT_CC: {
3717 Tmp1 = Node->getOperand(0); // LHS
3718 Tmp2 = Node->getOperand(1); // RHS
3719 Tmp3 = Node->getOperand(2); // True
3720 Tmp4 = Node->getOperand(3); // False
3721 SDValue CC = Node->getOperand(4);
3722
Tom Stellardbbafe422013-09-28 02:50:43 +00003723 bool Legalized = false;
3724 // Try to legalize by inverting the condition. This is for targets that
3725 // might support an ordered version of a condition, but not the unordered
3726 // version (or vice versa).
3727 ISD::CondCode InvCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3728 Tmp1.getValueType().isInteger());
3729 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
3730 // Use the new condition code and swap true and false
3731 Legalized = true;
3732 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
Tom Stellard8a9879a2013-09-28 02:50:32 +00003733 } else {
Tom Stellardbbafe422013-09-28 02:50:43 +00003734 // If The inverse is not legal, then try to swap the arguments using
3735 // the inverse condition code.
3736 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
3737 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
3738 // The swapped inverse condition is legal, so swap true and false,
3739 // lhs and rhs.
3740 Legalized = true;
3741 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
3742 }
3743 }
3744
3745 if (!Legalized) {
3746 Legalized = LegalizeSetCCCondCode(
3747 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, dl);
3748
3749 assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
3750 // If we exapanded the SETCC by swapping LHS and RHS, create a new
3751 // SELECT_CC node.
3752 if (CC.getNode()) {
3753 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
3754 Tmp1, Tmp2, Tmp3, Tmp4, CC);
3755 } else {
3756 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3757 CC = DAG.getCondCode(ISD::SETNE);
3758 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, Tmp2,
3759 Tmp3, Tmp4, CC);
3760 }
Tom Stellard8a9879a2013-09-28 02:50:32 +00003761 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003762 Results.push_back(Tmp1);
3763 break;
3764 }
3765 case ISD::BR_CC: {
3766 Tmp1 = Node->getOperand(0); // Chain
3767 Tmp2 = Node->getOperand(2); // LHS
3768 Tmp3 = Node->getOperand(3); // RHS
3769 Tmp4 = Node->getOperand(1); // CC
3770
Tom Stellard8a9879a2013-09-28 02:50:32 +00003771 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
3772 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, dl);
Tom Stellard8034d712013-09-28 03:10:17 +00003773 (void)Legalized;
Tom Stellard8a9879a2013-09-28 02:50:32 +00003774 assert(Legalized && "Can't legalize BR_CC with legal condition!");
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003775
Tom Stellard8a9879a2013-09-28 02:50:32 +00003776 // If we exapanded the SETCC by swapping LHS and RHS, create a new BR_CC
3777 // node.
3778 if (Tmp4.getNode()) {
3779 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
3780 Tmp4, Tmp2, Tmp3, Node->getOperand(4));
3781 } else {
3782 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3783 Tmp4 = DAG.getCondCode(ISD::SETNE);
3784 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, Tmp2,
3785 Tmp3, Node->getOperand(4));
3786 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003787 Results.push_back(Tmp1);
3788 break;
3789 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003790 case ISD::BUILD_VECTOR:
3791 Results.push_back(ExpandBUILD_VECTOR(Node));
3792 break;
3793 case ISD::SRA:
3794 case ISD::SRL:
3795 case ISD::SHL: {
3796 // Scalarize vector SRA/SRL/SHL.
3797 EVT VT = Node->getValueType(0);
3798 assert(VT.isVector() && "Unable to legalize non-vector shift");
3799 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3800 unsigned NumElem = VT.getVectorNumElements();
3801
3802 SmallVector<SDValue, 8> Scalars;
3803 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3804 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3805 VT.getScalarType(),
Tom Stellard425b76c2013-08-05 22:22:01 +00003806 Node->getOperand(0), DAG.getConstant(Idx,
3807 TLI.getVectorIdxTy()));
Dan Gohman65fd6562011-11-03 21:49:52 +00003808 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3809 VT.getScalarType(),
Tom Stellard425b76c2013-08-05 22:22:01 +00003810 Node->getOperand(1), DAG.getConstant(Idx,
3811 TLI.getVectorIdxTy()));
Dan Gohman65fd6562011-11-03 21:49:52 +00003812 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3813 VT.getScalarType(), Ex, Sh));
3814 }
3815 SDValue Result =
3816 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3817 &Scalars[0], Scalars.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +00003818 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +00003819 break;
3820 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003821 case ISD::GLOBAL_OFFSET_TABLE:
3822 case ISD::GlobalAddress:
3823 case ISD::GlobalTLSAddress:
3824 case ISD::ExternalSymbol:
3825 case ISD::ConstantPool:
3826 case ISD::JumpTable:
3827 case ISD::INTRINSIC_W_CHAIN:
3828 case ISD::INTRINSIC_WO_CHAIN:
3829 case ISD::INTRINSIC_VOID:
3830 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedman3f727d62009-05-27 02:16:40 +00003831 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00003832 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003833
3834 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003835 if (!Results.empty())
3836 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003837}
Dan Gohman65fd6562011-11-03 21:49:52 +00003838
3839void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3840 SmallVector<SDValue, 8> Results;
Patrik Hagglund319bb392012-12-19 11:21:04 +00003841 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00003842 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedmana64eb922009-07-17 05:16:04 +00003843 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendling775db972009-12-23 00:28:23 +00003844 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglund319bb392012-12-19 11:21:04 +00003845 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendling775db972009-12-23 00:28:23 +00003846 }
Patrik Hagglund319bb392012-12-19 11:21:04 +00003847 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003848 SDLoc dl(Node);
Eli Friedman509150f2009-05-27 07:58:35 +00003849 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman8c377c72009-05-27 01:25:56 +00003850 switch (Node->getOpcode()) {
3851 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003852 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003853 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003854 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003855 case ISD::CTPOP:
3856 // Zero extend the argument.
3857 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00003858 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
3859 // already the correct result.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003860 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003861 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth63974b22011-12-13 01:56:10 +00003862 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault225ed702013-05-18 00:21:46 +00003863 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Eli Friedman8c377c72009-05-27 01:25:56 +00003864 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3865 ISD::SETEQ);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00003866 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
3867 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth63974b22011-12-13 01:56:10 +00003868 } else if (Node->getOpcode() == ISD::CTLZ ||
3869 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003870 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3871 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3872 DAG.getConstant(NVT.getSizeInBits() -
3873 OVT.getSizeInBits(), NVT));
3874 }
Bill Wendling775db972009-12-23 00:28:23 +00003875 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00003876 break;
3877 case ISD::BSWAP: {
3878 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling167bea72009-12-22 22:53:39 +00003879 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00003880 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3881 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Anderson95771af2011-02-25 21:41:48 +00003882 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendling775db972009-12-23 00:28:23 +00003883 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003884 break;
3885 }
3886 case ISD::FP_TO_UINT:
3887 case ISD::FP_TO_SINT:
3888 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3889 Node->getOpcode() == ISD::FP_TO_SINT, dl);
3890 Results.push_back(Tmp1);
3891 break;
3892 case ISD::UINT_TO_FP:
3893 case ISD::SINT_TO_FP:
3894 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3895 Node->getOpcode() == ISD::SINT_TO_FP, dl);
3896 Results.push_back(Tmp1);
3897 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00003898 case ISD::VAARG: {
3899 SDValue Chain = Node->getOperand(0); // Get the chain.
3900 SDValue Ptr = Node->getOperand(1); // Get the pointer.
3901
3902 unsigned TruncOp;
3903 if (OVT.isVector()) {
3904 TruncOp = ISD::BITCAST;
3905 } else {
3906 assert(OVT.isInteger()
3907 && "VAARG promotion is supported only for vectors or integer types");
3908 TruncOp = ISD::TRUNCATE;
3909 }
3910
3911 // Perform the larger operation, then convert back
3912 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
3913 Node->getConstantOperandVal(3));
3914 Chain = Tmp1.getValue(1);
3915
3916 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
3917
3918 // Modified the chain result - switch anything that used the old chain to
3919 // use the new one.
3920 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
3921 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
3922 ReplacedNode(Node);
3923 break;
3924 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003925 case ISD::AND:
3926 case ISD::OR:
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003927 case ISD::XOR: {
3928 unsigned ExtOp, TruncOp;
3929 if (OVT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003930 ExtOp = ISD::BITCAST;
3931 TruncOp = ISD::BITCAST;
Chris Lattner35a38932010-04-07 23:47:51 +00003932 } else {
3933 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003934 ExtOp = ISD::ANY_EXTEND;
3935 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003936 }
3937 // Promote each of the values to the new type.
3938 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3939 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3940 // Perform the larger operation, then convert back
Bill Wendling775db972009-12-23 00:28:23 +00003941 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3942 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003943 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003944 }
3945 case ISD::SELECT: {
Eli Friedman509150f2009-05-27 07:58:35 +00003946 unsigned ExtOp, TruncOp;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003947 if (Node->getValueType(0).isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003948 ExtOp = ISD::BITCAST;
3949 TruncOp = ISD::BITCAST;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003950 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman509150f2009-05-27 07:58:35 +00003951 ExtOp = ISD::ANY_EXTEND;
3952 TruncOp = ISD::TRUNCATE;
3953 } else {
3954 ExtOp = ISD::FP_EXTEND;
3955 TruncOp = ISD::FP_ROUND;
3956 }
3957 Tmp1 = Node->getOperand(0);
3958 // Promote each of the values to the new type.
3959 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3960 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
3961 // Perform the larger operation, then round down.
Matt Arsenaultb05e4772013-06-14 22:04:37 +00003962 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman509150f2009-05-27 07:58:35 +00003963 if (TruncOp != ISD::FP_ROUND)
Bill Wendling775db972009-12-23 00:28:23 +00003964 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003965 else
Bill Wendling775db972009-12-23 00:28:23 +00003966 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman509150f2009-05-27 07:58:35 +00003967 DAG.getIntPtrConstant(0));
Bill Wendling775db972009-12-23 00:28:23 +00003968 Results.push_back(Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003969 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003970 }
Eli Friedman509150f2009-05-27 07:58:35 +00003971 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003972 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003973
3974 // Cast the two input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003975 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
3976 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman509150f2009-05-27 07:58:35 +00003977
3978 // Convert the shuffle mask to the right # elements.
Bill Wendling775db972009-12-23 00:28:23 +00003979 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003980 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003981 Results.push_back(Tmp1);
3982 break;
3983 }
Eli Friedmanad754602009-05-28 03:56:57 +00003984 case ISD::SETCC: {
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003985 unsigned ExtOp = ISD::FP_EXTEND;
3986 if (NVT.isInteger()) {
3987 ISD::CondCode CCCode =
3988 cast<CondCodeSDNode>(Node->getOperand(2))->get();
3989 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedmanad754602009-05-28 03:56:57 +00003990 }
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003991 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3992 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedmanad754602009-05-28 03:56:57 +00003993 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3994 Tmp1, Tmp2, Node->getOperand(2)));
3995 break;
3996 }
Pete Coopercfe29982012-03-19 23:38:12 +00003997 case ISD::FDIV:
Pete Cooper9751b812012-04-04 19:36:31 +00003998 case ISD::FREM:
Pete Cooperd578b902012-01-12 21:46:18 +00003999 case ISD::FPOW: {
4000 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4001 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopercfe29982012-03-19 23:38:12 +00004002 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooperd578b902012-01-12 21:46:18 +00004003 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4004 Tmp3, DAG.getIntPtrConstant(0)));
4005 break;
4006 }
4007 case ISD::FLOG2:
4008 case ISD::FEXP2:
4009 case ISD::FLOG:
4010 case ISD::FEXP: {
4011 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4012 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4013 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4014 Tmp2, DAG.getIntPtrConstant(0)));
4015 break;
4016 }
Eli Friedman8c377c72009-05-27 01:25:56 +00004017 }
Dan Gohman65fd6562011-11-03 21:49:52 +00004018
4019 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00004020 if (!Results.empty())
4021 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00004022}
4023
Chris Lattner3e928bb2005-01-07 07:47:09 +00004024// SelectionDAG::Legalize - This is the entry point for the file.
4025//
Dan Gohman975716a2011-05-16 22:19:54 +00004026void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00004027 /// run - This is the main entry point to this class.
4028 ///
Dan Gohman975716a2011-05-16 22:19:54 +00004029 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00004030}