blob: 02bc248a924fb6c9f03233d132ce30c97182dc81 [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
Owen Andersone50ed302009-08-10 22:56:29 +000098 void 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();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000314 SDLoc dl(ST);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000315 if (ST->getMemoryVT().isFloatingPoint() ||
316 ST->getMemoryVT().isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000317 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000318 if (TLI.isTypeLegal(intVT)) {
319 // Expand to a bitconvert of the value to the integer type of the
320 // same size, then a (misaligned) int store.
321 // FIXME: Does not handle truncating floating point stores!
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000322 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman65fd6562011-11-03 21:49:52 +0000323 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
324 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000325 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000326 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000327 }
Dan Gohman1b328962011-05-17 22:22:52 +0000328 // Do a (aligned) store to a stack slot, then copy from the stack slot
329 // to the final destination using (unaligned) integer loads and stores.
330 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000331 MVT RegVT =
Dan Gohman1b328962011-05-17 22:22:52 +0000332 TLI.getRegisterType(*DAG.getContext(),
333 EVT::getIntegerVT(*DAG.getContext(),
334 StoredVT.getSizeInBits()));
335 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
336 unsigned RegBytes = RegVT.getSizeInBits() / 8;
337 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
338
339 // Make sure the stack slot is also aligned for the register type.
340 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
341
342 // Perform the original store, only redirected to the stack slot.
343 SDValue Store = DAG.getTruncStore(Chain, dl,
344 Val, StackPtr, MachinePointerInfo(),
345 StoredVT, false, false, 0);
346 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
347 SmallVector<SDValue, 8> Stores;
348 unsigned Offset = 0;
349
350 // Do all but one copies using the full register width.
351 for (unsigned i = 1; i < NumRegs; i++) {
352 // Load one integer register's worth from the stack slot.
353 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
354 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000355 false, false, false, 0);
Dan Gohman1b328962011-05-17 22:22:52 +0000356 // Store it to the final location. Remember the store.
357 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
358 ST->getPointerInfo().getWithOffset(Offset),
359 ST->isVolatile(), ST->isNonTemporal(),
360 MinAlign(ST->getAlignment(), Offset)));
361 // Increment the pointers.
362 Offset += RegBytes;
363 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
364 Increment);
365 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
366 }
367
368 // The last store may be partial. Do a truncating store. On big-endian
369 // machines this requires an extending load from the stack slot to ensure
370 // that the bits are in the right place.
371 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
372 8 * (StoredBytes - Offset));
373
374 // Load from the stack slot.
375 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
376 MachinePointerInfo(),
377 MemVT, false, false, 0);
378
379 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
380 ST->getPointerInfo()
381 .getWithOffset(Offset),
382 MemVT, ST->isVolatile(),
383 ST->isNonTemporal(),
384 MinAlign(ST->getAlignment(), Offset)));
385 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman65fd6562011-11-03 21:49:52 +0000386 SDValue Result =
387 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
388 Stores.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +0000389 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000390 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000391 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000392 assert(ST->getMemoryVT().isInteger() &&
393 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000394 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000395 // Get the half-size VT
Ken Dyckbceddbd2009-12-17 20:09:43 +0000396 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000397 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000398 int IncrementSize = NumBits / 8;
399
400 // Divide the stored value in two parts.
Owen Anderson95771af2011-02-25 21:41:48 +0000401 SDValue ShiftAmount = DAG.getConstant(NumBits,
402 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman475871a2008-07-27 21:46:04 +0000403 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000404 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000405
406 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000407 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000408 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000409 ST->getPointerInfo(), NewStoredVT,
David Greene1e559442010-02-15 17:00:31 +0000410 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000411 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000412 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000413 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000414 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000415 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene1e559442010-02-15 17:00:31 +0000416 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
417 Alignment);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000418
Dan Gohman65fd6562011-11-03 21:49:52 +0000419 SDValue Result =
420 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000421 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000422}
423
424/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman65fd6562011-11-03 21:49:52 +0000425static void
426ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
427 const TargetLowering &TLI,
428 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000429 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
430 "unaligned indexed loads not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000431 SDValue Chain = LD->getChain();
432 SDValue Ptr = LD->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +0000433 EVT VT = LD->getValueType(0);
434 EVT LoadedVT = LD->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000435 SDLoc dl(LD);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000436 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000437 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000438 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000439 // Expand to a (misaligned) integer load of the same size,
440 // then bitconvert to floating point or vector.
Chris Lattnerecf42c42010-09-21 16:36:31 +0000441 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
442 LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000443 LD->isNonTemporal(),
444 LD->isInvariant(), LD->getAlignment());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000445 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000446 if (LoadedVT != VT)
447 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
448 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000449
Dan Gohman65fd6562011-11-03 21:49:52 +0000450 ValResult = Result;
451 ChainResult = Chain;
452 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000453 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000454
Chris Lattnerecf42c42010-09-21 16:36:31 +0000455 // Copy the value to a (aligned) stack slot using (unaligned) integer
456 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000457 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattnerecf42c42010-09-21 16:36:31 +0000458 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
459 unsigned RegBytes = RegVT.getSizeInBits() / 8;
460 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
461
462 // Make sure the stack slot is also aligned for the register type.
463 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
464
465 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
466 SmallVector<SDValue, 8> Stores;
467 SDValue StackPtr = StackBase;
468 unsigned Offset = 0;
469
470 // Do all but one copies using the full register width.
471 for (unsigned i = 1; i < NumRegs; i++) {
472 // Load one integer register's worth from the original location.
473 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
474 LD->getPointerInfo().getWithOffset(Offset),
475 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000476 LD->isInvariant(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000477 MinAlign(LD->getAlignment(), Offset));
478 // Follow the load with a store to the stack slot. Remember the store.
479 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000480 MachinePointerInfo(), false, false, 0));
Chris Lattnerecf42c42010-09-21 16:36:31 +0000481 // Increment the pointers.
482 Offset += RegBytes;
483 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
484 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
485 Increment);
486 }
487
488 // The last copy may be partial. Do an extending load.
489 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
490 8 * (LoadedBytes - Offset));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000491 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000492 LD->getPointerInfo().getWithOffset(Offset),
493 MemVT, LD->isVolatile(),
494 LD->isNonTemporal(),
495 MinAlign(LD->getAlignment(), Offset));
496 // Follow the load with a store to the stack slot. Remember the store.
497 // On big-endian machines this requires a truncating store to ensure
498 // that the bits end up in the right place.
499 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
500 MachinePointerInfo(), MemVT,
501 false, false, 0));
502
503 // The order of the stores doesn't matter - say it with a TokenFactor.
504 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
505 Stores.size());
506
507 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastingsa9011292011-02-16 16:23:55 +0000508 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000509 MachinePointerInfo(), LoadedVT, false, false, 0);
510
511 // Callers expect a MERGE_VALUES node.
Dan Gohman65fd6562011-11-03 21:49:52 +0000512 ValResult = Load;
513 ChainResult = TF;
514 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000515 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000516 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000517 "Unaligned load of unsupported type.");
518
Dale Johannesen8155d642008-02-27 22:36:00 +0000519 // Compute the new VT that is half the size of the old one. This is an
520 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000521 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Andersone50ed302009-08-10 22:56:29 +0000522 EVT NewLoadedVT;
Owen Anderson23b9b192009-08-12 00:36:31 +0000523 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000524 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000525
Chris Lattnere400af82007-11-19 21:38:03 +0000526 unsigned Alignment = LD->getAlignment();
527 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000528 ISD::LoadExtType HiExtType = LD->getExtensionType();
529
530 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
531 if (HiExtType == ISD::NON_EXTLOAD)
532 HiExtType = ISD::ZEXTLOAD;
533
534 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000535 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000536 if (TLI.isLittleEndian()) {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000537 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000538 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000539 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000540 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000541 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000542 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000543 LD->getPointerInfo().getWithOffset(IncrementSize),
544 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000545 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000546 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000547 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000548 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000549 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000550 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000551 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000552 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000553 LD->getPointerInfo().getWithOffset(IncrementSize),
554 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000555 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000556 }
557
558 // aggregate the two parts
Owen Anderson95771af2011-02-25 21:41:48 +0000559 SDValue ShiftAmount = DAG.getConstant(NumBits,
560 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000561 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
562 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000563
Owen Anderson825b72b2009-08-11 20:47:22 +0000564 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000565 Hi.getValue(1));
566
Dan Gohman65fd6562011-11-03 21:49:52 +0000567 ValResult = Result;
568 ChainResult = TF;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000569}
Evan Cheng912095b2007-01-04 21:56:39 +0000570
Nate Begeman68679912008-04-25 18:07:40 +0000571/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
572/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
573/// is necessary to spill the vector being inserted into to memory, perform
574/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000575SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000576PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000577 SDLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000578 SDValue Tmp1 = Vec;
579 SDValue Tmp2 = Val;
580 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000581
Nate Begeman68679912008-04-25 18:07:40 +0000582 // If the target doesn't support this, we have to spill the input vector
583 // to a temporary stack slot, update the element, then reload it. This is
584 // badness. We could also load the value into a vector register (either
585 // with a "move to register" or "extload into register" instruction, then
586 // permute it into place, if the idx is a constant and if the idx is
587 // supported by the target.
Owen Andersone50ed302009-08-10 22:56:29 +0000588 EVT VT = Tmp1.getValueType();
589 EVT EltVT = VT.getVectorElementType();
590 EVT IdxVT = Tmp3.getValueType();
591 EVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000592 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000593
Evan Chengff89dcb2009-10-18 18:16:27 +0000594 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
595
Nate Begeman68679912008-04-25 18:07:40 +0000596 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000597 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +0000598 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +0000599 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000600
601 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000602 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000603 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000604 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +0000605 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000606 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
607 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000608 // Store the scalar value.
Chris Lattner85ca1062010-09-21 07:32:19 +0000609 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene1e559442010-02-15 17:00:31 +0000610 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000611 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000612 return DAG.getLoad(VT, dl, Ch, StackPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000613 MachinePointerInfo::getFixedStack(SPFI), false, false,
614 false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000615}
616
Mon P Wange9f10152008-12-09 05:46:39 +0000617
Eli Friedman3f727d62009-05-27 02:16:40 +0000618SDValue SelectionDAGLegalize::
Andrew Trickac6d9be2013-05-25 02:42:55 +0000619ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) {
Eli Friedman3f727d62009-05-27 02:16:40 +0000620 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
621 // SCALAR_TO_VECTOR requires that the type of the value being inserted
622 // match the element type of the vector being created, except for
623 // integers in which case the inserted value can be over width.
Owen Andersone50ed302009-08-10 22:56:29 +0000624 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedman3f727d62009-05-27 02:16:40 +0000625 if (Val.getValueType() == EltVT ||
626 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
627 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
628 Vec.getValueType(), Val);
629
630 unsigned NumElts = Vec.getValueType().getVectorNumElements();
631 // We generate a shuffle of InVec and ScVec, so the shuffle mask
632 // should be 0,1,2,3,4,5... with the appropriate element replaced with
633 // elt 0 of the RHS.
634 SmallVector<int, 8> ShufOps;
635 for (unsigned i = 0; i != NumElts; ++i)
636 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
637
638 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
639 &ShufOps[0]);
640 }
641 }
642 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
643}
644
Eli Friedman7ef3d172009-06-06 07:04:42 +0000645SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
646 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
647 // FIXME: We shouldn't do this for TargetConstantFP's.
648 // FIXME: move this to the DAG Combiner! Note that we can't regress due
649 // to phase ordering between legalized code and the dag combiner. This
650 // probably means that we need to integrate dag combiner and legalizer
651 // together.
652 // We generally can't do this one for long doubles.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000653 SDValue Chain = ST->getChain();
654 SDValue Ptr = ST->getBasePtr();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000655 unsigned Alignment = ST->getAlignment();
656 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +0000657 bool isNonTemporal = ST->isNonTemporal();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000658 SDLoc dl(ST);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000659 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000660 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohman75b10042011-07-15 22:39:09 +0000661 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000662 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedman7ef3d172009-06-06 07:04:42 +0000663 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson825b72b2009-08-11 20:47:22 +0000664 MVT::i32);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000665 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000666 isVolatile, isNonTemporal, Alignment);
667 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000668
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000669 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000670 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohman75b10042011-07-15 22:39:09 +0000671 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000672 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +0000673 zextOrTrunc(64), MVT::i64);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000674 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000675 isVolatile, isNonTemporal, Alignment);
676 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000677
Dan Gohman75b10042011-07-15 22:39:09 +0000678 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000679 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
680 // stores. If the target supports neither 32- nor 64-bits, this
681 // xform is certainly not worth it.
682 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad40f8f622010-12-07 08:25:19 +0000683 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000684 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000685 if (TLI.isBigEndian()) std::swap(Lo, Hi);
686
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000687 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000688 isNonTemporal, Alignment);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000689 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Eli Friedman7ef3d172009-06-06 07:04:42 +0000690 DAG.getIntPtrConstant(4));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000691 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000692 ST->getPointerInfo().getWithOffset(4),
David Greene1e559442010-02-15 17:00:31 +0000693 isVolatile, isNonTemporal, MinAlign(Alignment, 4U));
Eli Friedman7ef3d172009-06-06 07:04:42 +0000694
Owen Anderson825b72b2009-08-11 20:47:22 +0000695 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000696 }
697 }
698 }
Evan Cheng8e23e812011-04-01 00:42:02 +0000699 return SDValue(0, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000700}
701
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000702void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
703 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000704 SDValue Chain = ST->getChain();
705 SDValue Ptr = ST->getBasePtr();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000706 SDLoc dl(Node);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000707
708 unsigned Alignment = ST->getAlignment();
709 bool isVolatile = ST->isVolatile();
710 bool isNonTemporal = ST->isNonTemporal();
711
712 if (!ST->isTruncatingStore()) {
713 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
714 ReplaceNode(ST, OptStore);
715 return;
716 }
717
718 {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000719 SDValue Value = ST->getValue();
Patrik Hagglund319bb392012-12-19 11:21:04 +0000720 MVT VT = Value.getSimpleValueType();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000721 switch (TLI.getOperationAction(ISD::STORE, VT)) {
722 default: llvm_unreachable("This action is not supported yet!");
723 case TargetLowering::Legal:
724 // If this is an unaligned store and the target doesn't support it,
725 // expand it.
726 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
727 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000728 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000729 if (ST->getAlignment() < ABIAlignment)
730 ExpandUnalignedStore(cast<StoreSDNode>(Node),
731 DAG, TLI, this);
732 }
733 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000734 case TargetLowering::Custom: {
735 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
736 if (Res.getNode())
737 ReplaceNode(SDValue(Node, 0), Res);
738 return;
739 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000740 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000741 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellard8b7f16e2012-12-10 21:41:54 +0000742 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
743 "Can only promote stores to same size type");
744 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000745 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000746 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000747 ST->getPointerInfo(), isVolatile,
748 isNonTemporal, Alignment);
749 ReplaceNode(SDValue(Node, 0), Result);
750 break;
751 }
752 }
753 return;
754 }
755 } else {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000756 SDValue Value = ST->getValue();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000757
758 EVT StVT = ST->getMemoryVT();
759 unsigned StWidth = StVT.getSizeInBits();
760
761 if (StWidth != StVT.getStoreSizeInBits()) {
762 // Promote to a byte-sized store with upper bits zero if not
763 // storing an integral number of bytes. For example, promote
764 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
765 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
766 StVT.getStoreSizeInBits());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000767 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000768 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000769 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000770 NVT, isVolatile, isNonTemporal, Alignment);
771 ReplaceNode(SDValue(Node, 0), Result);
772 } else if (StWidth & (StWidth - 1)) {
773 // If not storing a power-of-2 number of bits, expand as two stores.
774 assert(!StVT.isVector() && "Unsupported truncstore!");
775 unsigned RoundWidth = 1 << Log2_32(StWidth);
776 assert(RoundWidth < StWidth);
777 unsigned ExtraWidth = StWidth - RoundWidth;
778 assert(ExtraWidth < RoundWidth);
779 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
780 "Store size not an integral number of bytes!");
781 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
782 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
783 SDValue Lo, Hi;
784 unsigned IncrementSize;
785
786 if (TLI.isLittleEndian()) {
787 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
788 // Store the bottom RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000789 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000790 RoundVT,
791 isVolatile, isNonTemporal, Alignment);
792
793 // Store the remaining ExtraWidth bits.
794 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000795 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000796 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000797 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000798 DAG.getConstant(RoundWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000799 TLI.getShiftAmountTy(Value.getValueType())));
800 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000801 ST->getPointerInfo().getWithOffset(IncrementSize),
802 ExtraVT, isVolatile, isNonTemporal,
803 MinAlign(Alignment, IncrementSize));
804 } else {
805 // Big endian - avoid unaligned stores.
806 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
807 // Store the top RoundWidth bits.
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(ExtraWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000810 TLI.getShiftAmountTy(Value.getValueType())));
811 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000812 RoundVT, isVolatile, isNonTemporal, Alignment);
813
814 // Store the remaining ExtraWidth bits.
815 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000816 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000817 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000818 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000819 ST->getPointerInfo().getWithOffset(IncrementSize),
820 ExtraVT, isVolatile, isNonTemporal,
821 MinAlign(Alignment, IncrementSize));
822 }
823
824 // The order of the stores doesn't matter.
825 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
826 ReplaceNode(SDValue(Node, 0), Result);
827 } else {
Patrik Hagglund88ef5142012-12-19 08:28:51 +0000828 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
829 StVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000830 default: llvm_unreachable("This action is not supported yet!");
831 case TargetLowering::Legal:
832 // If this is an unaligned store and the target doesn't support it,
833 // expand it.
834 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
835 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000836 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000837 if (ST->getAlignment() < ABIAlignment)
838 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
839 }
840 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000841 case TargetLowering::Custom: {
842 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
843 if (Res.getNode())
844 ReplaceNode(SDValue(Node, 0), Res);
845 return;
846 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000847 case TargetLowering::Expand:
848 assert(!StVT.isVector() &&
849 "Vector Stores are handled in LegalizeVectorOps");
850
851 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000852 assert(TLI.isTypeLegal(StVT) &&
853 "Do not know how to expand this store!");
854 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000855 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000856 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000857 isVolatile, isNonTemporal, Alignment);
858 ReplaceNode(SDValue(Node, 0), Result);
859 break;
860 }
861 }
862 }
863}
864
865void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
866 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000867 SDValue Chain = LD->getChain(); // The chain.
868 SDValue Ptr = LD->getBasePtr(); // The base pointer.
869 SDValue Value; // The value returned by the load op.
Andrew Trickac6d9be2013-05-25 02:42:55 +0000870 SDLoc dl(Node);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000871
872 ISD::LoadExtType ExtType = LD->getExtensionType();
873 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000874 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000875 SDValue RVal = SDValue(Node, 0);
876 SDValue RChain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000877
878 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
879 default: llvm_unreachable("This action is not supported yet!");
880 case TargetLowering::Legal:
Evan Chengfe257cc2012-09-18 01:34:40 +0000881 // If this is an unaligned load and the target doesn't support it,
882 // expand it.
883 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
884 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
885 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +0000886 TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Chengfe257cc2012-09-18 01:34:40 +0000887 if (LD->getAlignment() < ABIAlignment){
888 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
889 }
890 }
891 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000892 case TargetLowering::Custom: {
Evan Chengfe257cc2012-09-18 01:34:40 +0000893 SDValue Res = TLI.LowerOperation(RVal, DAG);
894 if (Res.getNode()) {
895 RVal = Res;
896 RChain = Res.getValue(1);
897 }
898 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000899 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000900 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000901 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellardf45d11b2012-12-10 21:41:58 +0000902 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
903 "Can only promote loads to same size type");
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000904
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000905 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000906 LD->isVolatile(), LD->isNonTemporal(),
907 LD->isInvariant(), LD->getAlignment());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000908 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
909 RChain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000910 break;
911 }
912 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000913 if (RChain.getNode() != Node) {
914 assert(RVal.getNode() != Node && "Load must be completely replaced");
915 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
916 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000917 ReplacedNode(Node);
918 }
919 return;
920 }
921
922 EVT SrcVT = LD->getMemoryVT();
923 unsigned SrcWidth = SrcVT.getSizeInBits();
924 unsigned Alignment = LD->getAlignment();
925 bool isVolatile = LD->isVolatile();
926 bool isNonTemporal = LD->isNonTemporal();
927
928 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
929 // Some targets pretend to have an i1 loading operation, and actually
930 // load an i8. This trick is correct for ZEXTLOAD because the top 7
931 // bits are guaranteed to be zero; it helps the optimizers understand
932 // that these bits are zero. It is also useful for EXTLOAD, since it
933 // tells the optimizers that those bits are undefined. It would be
934 // nice to have an effective generic way of getting these benefits...
935 // Until such a way is found, don't insist on promoting i1 here.
936 (SrcVT != MVT::i1 ||
937 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
938 // Promote to a byte-sized load if not loading an integral number of
939 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
940 unsigned NewWidth = SrcVT.getStoreSizeInBits();
941 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
942 SDValue Ch;
943
944 // The extra bits are guaranteed to be zero, since we stored them that
945 // way. A zext load from NVT thus automatically gives zext from SrcVT.
946
947 ISD::LoadExtType NewExtType =
948 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
949
950 SDValue Result =
951 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000952 Chain, Ptr, LD->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000953 NVT, isVolatile, isNonTemporal, Alignment);
954
955 Ch = Result.getValue(1); // The chain.
956
957 if (ExtType == ISD::SEXTLOAD)
958 // Having the top bits zero doesn't help when sign extending.
959 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
960 Result.getValueType(),
961 Result, DAG.getValueType(SrcVT));
962 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
963 // All the top bits are guaranteed to be zero - inform the optimizers.
964 Result = DAG.getNode(ISD::AssertZext, dl,
965 Result.getValueType(), Result,
966 DAG.getValueType(SrcVT));
967
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000968 Value = Result;
969 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000970 } else if (SrcWidth & (SrcWidth - 1)) {
971 // If not loading a power-of-2 number of bits, expand as two loads.
972 assert(!SrcVT.isVector() && "Unsupported extload!");
973 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
974 assert(RoundWidth < SrcWidth);
975 unsigned ExtraWidth = SrcWidth - RoundWidth;
976 assert(ExtraWidth < RoundWidth);
977 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
978 "Load size not an integral number of bytes!");
979 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
980 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
981 SDValue Lo, Hi, Ch;
982 unsigned IncrementSize;
983
984 if (TLI.isLittleEndian()) {
985 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
986 // Load the bottom RoundWidth bits.
987 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000988 Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000989 LD->getPointerInfo(), RoundVT, isVolatile,
990 isNonTemporal, Alignment);
991
992 // Load the remaining ExtraWidth bits.
993 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000994 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000995 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000996 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000997 LD->getPointerInfo().getWithOffset(IncrementSize),
998 ExtraVT, isVolatile, isNonTemporal,
999 MinAlign(Alignment, IncrementSize));
1000
1001 // Build a factor node to remember that this load is independent of
1002 // the other one.
1003 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1004 Hi.getValue(1));
1005
1006 // Move the top bits to the right place.
1007 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1008 DAG.getConstant(RoundWidth,
1009 TLI.getShiftAmountTy(Hi.getValueType())));
1010
1011 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001012 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001013 } else {
1014 // Big endian - avoid unaligned loads.
1015 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1016 // Load the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001017 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001018 LD->getPointerInfo(), RoundVT, isVolatile,
1019 isNonTemporal, Alignment);
1020
1021 // Load the remaining ExtraWidth bits.
1022 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001023 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001024 DAG.getIntPtrConstant(IncrementSize));
1025 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001026 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001027 LD->getPointerInfo().getWithOffset(IncrementSize),
1028 ExtraVT, isVolatile, isNonTemporal,
1029 MinAlign(Alignment, IncrementSize));
1030
1031 // Build a factor node to remember that this load is independent of
1032 // the other one.
1033 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1034 Hi.getValue(1));
1035
1036 // Move the top bits to the right place.
1037 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1038 DAG.getConstant(ExtraWidth,
1039 TLI.getShiftAmountTy(Hi.getValueType())));
1040
1041 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001042 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001043 }
1044
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001045 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001046 } else {
1047 bool isCustom = false;
Patrik Hagglund702474d2012-12-14 09:05:13 +00001048 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001049 default: llvm_unreachable("This action is not supported yet!");
1050 case TargetLowering::Custom:
1051 isCustom = true;
1052 // FALLTHROUGH
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001053 case TargetLowering::Legal: {
1054 Value = SDValue(Node, 0);
1055 Chain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001056
1057 if (isCustom) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001058 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1059 if (Res.getNode()) {
1060 Value = Res;
1061 Chain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001062 }
1063 } else {
1064 // If this is an unaligned load and the target doesn't support it,
1065 // expand it.
1066 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
1067 Type *Ty =
1068 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1069 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +00001070 TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001071 if (LD->getAlignment() < ABIAlignment){
1072 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001073 DAG, TLI, Value, Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001074 }
1075 }
1076 }
1077 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001078 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001079 case TargetLowering::Expand:
1080 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) && TLI.isTypeLegal(SrcVT)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001081 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001082 LD->getPointerInfo(),
1083 LD->isVolatile(), LD->isNonTemporal(),
1084 LD->isInvariant(), LD->getAlignment());
1085 unsigned ExtendOp;
1086 switch (ExtType) {
1087 case ISD::EXTLOAD:
1088 ExtendOp = (SrcVT.isFloatingPoint() ?
1089 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1090 break;
1091 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1092 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1093 default: llvm_unreachable("Unexpected extend load type!");
1094 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001095 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1096 Chain = Load.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001097 break;
1098 }
1099
1100 assert(!SrcVT.isVector() &&
1101 "Vector Loads are handled in LegalizeVectorOps");
1102
1103 // FIXME: This does not work for vectors on most targets. Sign- and
1104 // zero-extend operations are currently folded into extending loads,
1105 // whether they are legal or not, and then we end up here without any
1106 // support for legalizing them.
1107 assert(ExtType != ISD::EXTLOAD &&
1108 "EXTLOAD should always be supported!");
1109 // Turn the unsupported load into an EXTLOAD followed by an explicit
1110 // zero/sign extend inreg.
1111 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001112 Chain, Ptr, LD->getPointerInfo(), SrcVT,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001113 LD->isVolatile(), LD->isNonTemporal(),
1114 LD->getAlignment());
1115 SDValue ValRes;
1116 if (ExtType == ISD::SEXTLOAD)
1117 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1118 Result.getValueType(),
1119 Result, DAG.getValueType(SrcVT));
1120 else
1121 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001122 Value = ValRes;
1123 Chain = Result.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001124 break;
1125 }
1126 }
1127
1128 // Since loads produce two values, make sure to remember that we legalized
1129 // both of them.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001130 if (Chain.getNode() != Node) {
1131 assert(Value.getNode() != Node && "Load must be completely replaced");
1132 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1133 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001134 ReplacedNode(Node);
1135 }
1136}
1137
Dan Gohman6a109f92011-07-15 21:42:20 +00001138/// LegalizeOp - Return a legal replacement for the given operation, with
1139/// all legal operands.
Dan Gohman65fd6562011-11-03 21:49:52 +00001140void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1141 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1142 return;
Scott Michelfdc40a02009-02-17 22:15:04 +00001143
Eli Friedman1fde9c52009-05-24 02:46:31 +00001144 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001145 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1146 TargetLowering::TypeLegal &&
Eli Friedman1fde9c52009-05-24 02:46:31 +00001147 "Unexpected illegal type!");
1148
1149 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001150 assert((TLI.getTypeAction(*DAG.getContext(),
1151 Node->getOperand(i).getValueType()) ==
1152 TargetLowering::TypeLegal ||
Eli Friedman1fde9c52009-05-24 02:46:31 +00001153 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1154 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001155
Eli Friedman8c377c72009-05-27 01:25:56 +00001156 // Figure out the correct action; the way to query this varies by opcode
Bill Wendling6b9a2932011-01-26 22:21:35 +00001157 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman8c377c72009-05-27 01:25:56 +00001158 bool SimpleFinishLegalizing = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001159 switch (Node->getOpcode()) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001160 case ISD::INTRINSIC_W_CHAIN:
1161 case ISD::INTRINSIC_WO_CHAIN:
1162 case ISD::INTRINSIC_VOID:
Eli Friedman8c377c72009-05-27 01:25:56 +00001163 case ISD::STACKSAVE:
Owen Anderson825b72b2009-08-11 20:47:22 +00001164 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman8c377c72009-05-27 01:25:56 +00001165 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00001166 case ISD::VAARG:
1167 Action = TLI.getOperationAction(Node->getOpcode(),
1168 Node->getValueType(0));
1169 if (Action != TargetLowering::Promote)
1170 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1171 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001172 case ISD::SINT_TO_FP:
1173 case ISD::UINT_TO_FP:
1174 case ISD::EXTRACT_VECTOR_ELT:
1175 Action = TLI.getOperationAction(Node->getOpcode(),
1176 Node->getOperand(0).getValueType());
1177 break;
1178 case ISD::FP_ROUND_INREG:
1179 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00001180 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00001181 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1182 break;
1183 }
Eli Friedman327236c2011-08-24 20:50:09 +00001184 case ISD::ATOMIC_STORE: {
1185 Action = TLI.getOperationAction(Node->getOpcode(),
1186 Node->getOperand(2).getValueType());
1187 break;
1188 }
Eli Friedman3be2e512009-05-28 03:06:16 +00001189 case ISD::SELECT_CC:
1190 case ISD::SETCC:
1191 case ISD::BR_CC: {
1192 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1193 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1194 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001195 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedman3be2e512009-05-28 03:06:16 +00001196 ISD::CondCode CCCode =
1197 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1198 Action = TLI.getCondCodeAction(CCCode, OpVT);
1199 if (Action == TargetLowering::Legal) {
1200 if (Node->getOpcode() == ISD::SELECT_CC)
1201 Action = TLI.getOperationAction(Node->getOpcode(),
1202 Node->getValueType(0));
1203 else
1204 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1205 }
1206 break;
1207 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001208 case ISD::LOAD:
1209 case ISD::STORE:
Eli Friedmanad754602009-05-28 03:56:57 +00001210 // FIXME: Model these properly. LOAD and STORE are complicated, and
1211 // STORE expects the unlegalized operand in some cases.
1212 SimpleFinishLegalizing = false;
1213 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001214 case ISD::CALLSEQ_START:
1215 case ISD::CALLSEQ_END:
Eli Friedmanad754602009-05-28 03:56:57 +00001216 // FIXME: This shouldn't be necessary. These nodes have special properties
1217 // dealing with the recursive nature of legalization. Removing this
1218 // special case should be done as part of making LegalizeDAG non-recursive.
1219 SimpleFinishLegalizing = false;
1220 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001221 case ISD::EXTRACT_ELEMENT:
1222 case ISD::FLT_ROUNDS_:
1223 case ISD::SADDO:
1224 case ISD::SSUBO:
1225 case ISD::UADDO:
1226 case ISD::USUBO:
1227 case ISD::SMULO:
1228 case ISD::UMULO:
1229 case ISD::FPOWI:
1230 case ISD::MERGE_VALUES:
1231 case ISD::EH_RETURN:
1232 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00001233 case ISD::EH_SJLJ_SETJMP:
1234 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001235 // These operations lie about being legal: when they claim to be legal,
1236 // they should actually be expanded.
Eli Friedman8c377c72009-05-27 01:25:56 +00001237 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1238 if (Action == TargetLowering::Legal)
1239 Action = TargetLowering::Expand;
1240 break;
Duncan Sands4a544a72011-09-06 13:37:06 +00001241 case ISD::INIT_TRAMPOLINE:
1242 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman8c377c72009-05-27 01:25:56 +00001243 case ISD::FRAMEADDR:
1244 case ISD::RETURNADDR:
Eli Friedman4bc8c712009-05-27 12:20:41 +00001245 // These operations lie about being legal: when they claim to be legal,
1246 // they should actually be custom-lowered.
1247 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1248 if (Action == TargetLowering::Legal)
1249 Action = TargetLowering::Custom;
Eli Friedman8c377c72009-05-27 01:25:56 +00001250 break;
Shuxin Yang970755e2012-10-19 20:11:16 +00001251 case ISD::DEBUGTRAP:
1252 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1253 if (Action == TargetLowering::Expand) {
1254 // replace ISD::DEBUGTRAP with ISD::TRAP
1255 SDValue NewVal;
Andrew Trickac6d9be2013-05-25 02:42:55 +00001256 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yangcfc6cb02012-10-19 23:00:20 +00001257 Node->getOperand(0));
Shuxin Yang970755e2012-10-19 20:11:16 +00001258 ReplaceNode(Node, NewVal.getNode());
1259 LegalizeOp(NewVal.getNode());
1260 return;
1261 }
1262 break;
1263
Chris Lattner3e928bb2005-01-07 07:47:09 +00001264 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001265 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001266 Action = TargetLowering::Legal;
1267 } else {
1268 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001269 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001270 break;
1271 }
1272
1273 if (SimpleFinishLegalizing) {
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001274 SDNode *NewNode = Node;
Eli Friedman8c377c72009-05-27 01:25:56 +00001275 switch (Node->getOpcode()) {
1276 default: break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001277 case ISD::SHL:
1278 case ISD::SRL:
1279 case ISD::SRA:
1280 case ISD::ROTL:
1281 case ISD::ROTR:
1282 // Legalizing shifts/rotates requires adjusting the shift amount
1283 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001284 if (!Node->getOperand(1).getValueType().isVector()) {
1285 SDValue SAO =
1286 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1287 Node->getOperand(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00001288 HandleSDNode Handle(SAO);
1289 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001290 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1291 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001292 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001293 break;
Dan Gohmandb8dc2b2009-08-18 23:36:17 +00001294 case ISD::SRL_PARTS:
1295 case ISD::SRA_PARTS:
1296 case ISD::SHL_PARTS:
1297 // Legalizing shifts/rotates requires adjusting the shift amount
1298 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001299 if (!Node->getOperand(2).getValueType().isVector()) {
1300 SDValue SAO =
1301 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1302 Node->getOperand(2));
Dan Gohman65fd6562011-11-03 21:49:52 +00001303 HandleSDNode Handle(SAO);
1304 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001305 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1306 Node->getOperand(1),
1307 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001308 }
Dan Gohman2c9489d2009-08-18 23:52:48 +00001309 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001310 }
1311
Dan Gohman65fd6562011-11-03 21:49:52 +00001312 if (NewNode != Node) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001313 DAG.ReplaceAllUsesWith(Node, NewNode);
Dan Gohman65fd6562011-11-03 21:49:52 +00001314 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1315 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman0e3642a2011-11-11 23:58:27 +00001316 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001317 Node = NewNode;
1318 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001319 switch (Action) {
1320 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +00001321 return;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001322 case TargetLowering::Custom: {
Eli Friedman8c377c72009-05-27 01:25:56 +00001323 // FIXME: The handling for custom lowering with multiple results is
1324 // a complete mess.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001325 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1326 if (Res.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001327 SmallVector<SDValue, 8> ResultVals;
Eli Friedman8c377c72009-05-27 01:25:56 +00001328 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1329 if (e == 1)
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001330 ResultVals.push_back(Res);
Eli Friedman8c377c72009-05-27 01:25:56 +00001331 else
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001332 ResultVals.push_back(Res.getValue(i));
Eli Friedman8c377c72009-05-27 01:25:56 +00001333 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001334 if (Res.getNode() != Node || Res.getResNo() != 0) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001335 DAG.ReplaceAllUsesWith(Node, ResultVals.data());
Dan Gohman65fd6562011-11-03 21:49:52 +00001336 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1337 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001338 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001339 }
1340 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001341 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001342 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001343 // FALL THROUGH
1344 case TargetLowering::Expand:
Dan Gohman65fd6562011-11-03 21:49:52 +00001345 ExpandNode(Node);
1346 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001347 case TargetLowering::Promote:
Dan Gohman65fd6562011-11-03 21:49:52 +00001348 PromoteNode(Node);
1349 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001350 }
1351 }
1352
1353 switch (Node->getOpcode()) {
1354 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001355#ifndef NDEBUG
David Greene993aace2010-01-05 01:24:53 +00001356 dbgs() << "NODE: ";
1357 Node->dump( &DAG);
1358 dbgs() << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001359#endif
Craig Topper5e25ee82012-02-05 08:31:47 +00001360 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001361
Dan Gohman65fd6562011-11-03 21:49:52 +00001362 case ISD::CALLSEQ_START:
Dan Gohman6f3ddef2011-10-29 00:41:52 +00001363 case ISD::CALLSEQ_END:
Dan Gohman65fd6562011-11-03 21:49:52 +00001364 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001365 case ISD::LOAD: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001366 return LegalizeLoadOps(Node);
Chris Lattner01ff7212005-04-10 22:54:25 +00001367 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001368 case ISD::STORE: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001369 return LegalizeStoreOps(Node);
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001370 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001371 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001372}
1373
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001374SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1375 SDValue Vec = Op.getOperand(0);
1376 SDValue Idx = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001377 SDLoc dl(Op);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001378 // Store the value to a temporary stack slot, then LOAD the returned part.
1379 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Chris Lattner6229d0a2010-09-21 18:41:36 +00001380 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1381 MachinePointerInfo(), false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001382
1383 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001384 unsigned EltSize =
1385 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001386 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1387 DAG.getConstant(EltSize, Idx.getValueType()));
1388
1389 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1390 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1391 else
1392 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1393
1394 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1395
Eli Friedmanc680ac92009-07-09 22:01:03 +00001396 if (Op.getValueType().isVector())
Chris Lattnerecf42c42010-09-21 16:36:31 +00001397 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001398 false, false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00001399 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001400 MachinePointerInfo(),
1401 Vec.getValueType().getVectorElementType(),
1402 false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001403}
1404
David Greenecfe33c42011-01-26 19:13:22 +00001405SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1406 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1407
1408 SDValue Vec = Op.getOperand(0);
1409 SDValue Part = Op.getOperand(1);
1410 SDValue Idx = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001411 SDLoc dl(Op);
David Greenecfe33c42011-01-26 19:13:22 +00001412
1413 // Store the value to a temporary stack slot, then LOAD the returned part.
1414
1415 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1416 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1417 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1418
1419 // First store the whole vector.
1420 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1421 false, false, 0);
1422
1423 // Then store the inserted part.
1424
1425 // Add the offset to the index.
1426 unsigned EltSize =
1427 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1428
1429 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1430 DAG.getConstant(EltSize, Idx.getValueType()));
1431
1432 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1433 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1434 else
1435 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1436
1437 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1438 StackPtr);
1439
1440 // Store the subvector.
1441 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1442 MachinePointerInfo(), false, false, 0);
1443
1444 // Finally, load the updated vector.
1445 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001446 false, false, false, 0);
David Greenecfe33c42011-01-26 19:13:22 +00001447}
1448
Eli Friedman7ef3d172009-06-06 07:04:42 +00001449SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1450 // We can't handle this case efficiently. Allocate a sufficiently
1451 // aligned object on the stack, store each element into it, then load
1452 // the result as a vector.
1453 // Create the stack frame object.
Owen Andersone50ed302009-08-10 22:56:29 +00001454 EVT VT = Node->getValueType(0);
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001455 EVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001456 SDLoc dl(Node);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001457 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Chengff89dcb2009-10-18 18:16:27 +00001458 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattnerecf42c42010-09-21 16:36:31 +00001459 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001460
1461 // Emit a store of each element to the stack slot.
1462 SmallVector<SDValue, 8> Stores;
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001463 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedman7ef3d172009-06-06 07:04:42 +00001464 // Store (in the right endianness) the elements to memory.
1465 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1466 // Ignore undef elements.
1467 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1468
1469 unsigned Offset = TypeByteSize*i;
1470
1471 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1472 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1473
Dan Gohman9949dd62010-02-25 20:30:49 +00001474 // If the destination vector element type is narrower than the source
1475 // element type, only store the bits necessary.
1476 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001477 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001478 Node->getOperand(i), Idx,
1479 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001480 EltVT, false, false, 0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00001481 } else
Jim Grosbach6e992612010-07-02 17:41:59 +00001482 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001483 Node->getOperand(i), Idx,
1484 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001485 false, false, 0));
Eli Friedman7ef3d172009-06-06 07:04:42 +00001486 }
1487
1488 SDValue StoreChain;
1489 if (!Stores.empty()) // Not all undef elements?
Owen Anderson825b72b2009-08-11 20:47:22 +00001490 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedman7ef3d172009-06-06 07:04:42 +00001491 &Stores[0], Stores.size());
1492 else
1493 StoreChain = DAG.getEntryNode();
1494
1495 // Result is a load from the stack slot.
Pete Cooperd752e0f2011-11-08 18:42:53 +00001496 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
1497 false, false, false, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001498}
1499
Eli Friedman4bc8c712009-05-27 12:20:41 +00001500SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001501 SDLoc dl(Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001502 SDValue Tmp1 = Node->getOperand(0);
1503 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands5d54b412010-03-12 11:45:06 +00001504
1505 // Get the sign bit of the RHS. First obtain a value that has the same
1506 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001507 SDValue SignBit;
Duncan Sands5d54b412010-03-12 11:45:06 +00001508 EVT FloatVT = Tmp2.getValueType();
1509 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohman75b10042011-07-15 22:39:09 +00001510 if (TLI.isTypeLegal(IVT)) {
Duncan Sands5d54b412010-03-12 11:45:06 +00001511 // Convert to an integer with the same sign bit.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001512 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001513 } else {
Duncan Sands5d54b412010-03-12 11:45:06 +00001514 // Store the float to memory, then load the sign part out as an integer.
1515 MVT LoadTy = TLI.getPointerTy();
1516 // First create a temporary that is aligned for both the load and store.
1517 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1518 // Then store the float to it.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001519 SDValue Ch =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001520 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00001521 false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001522 if (TLI.isBigEndian()) {
1523 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1524 // Load out a legal integer with the same sign bit as the float.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001525 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001526 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001527 } else { // Little endian
1528 SDValue LoadPtr = StackPtr;
1529 // The float may be wider than the integer we are going to load. Advance
1530 // the pointer so that the loaded integer will contain the sign bit.
1531 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1532 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1533 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(),
1534 LoadPtr, DAG.getIntPtrConstant(ByteOffset));
1535 // Load a legal integer containing the sign bit.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001536 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001537 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001538 // Move the sign bit to the top bit of the loaded integer.
1539 unsigned BitShift = LoadTy.getSizeInBits() -
1540 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1541 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1542 if (BitShift)
1543 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Anderson95771af2011-02-25 21:41:48 +00001544 DAG.getConstant(BitShift,
1545 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands5d54b412010-03-12 11:45:06 +00001546 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00001547 }
Duncan Sands5d54b412010-03-12 11:45:06 +00001548 // Now get the sign bit proper, by seeing whether the value is negative.
Matt Arsenault225ed702013-05-18 00:21:46 +00001549 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
Duncan Sands5d54b412010-03-12 11:45:06 +00001550 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1551 ISD::SETLT);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001552 // Get the absolute value of the result.
1553 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1554 // Select between the nabs and abs value based on the sign bit of
1555 // the input.
Matt Arsenaultb05e4772013-06-14 22:04:37 +00001556 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
1557 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1558 AbsVal);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001559}
1560
Eli Friedman4bc8c712009-05-27 12:20:41 +00001561void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1562 SmallVectorImpl<SDValue> &Results) {
1563 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1564 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1565 " not tell us which reg is the stack pointer!");
Andrew Trickac6d9be2013-05-25 02:42:55 +00001566 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +00001567 EVT VT = Node->getValueType(0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001568 SDValue Tmp1 = SDValue(Node, 0);
1569 SDValue Tmp2 = SDValue(Node, 1);
1570 SDValue Tmp3 = Node->getOperand(2);
1571 SDValue Chain = Tmp1.getOperand(0);
1572
1573 // Chain the dynamic stack allocation so that it doesn't modify the stack
1574 // pointer when other instructions are using the stack.
Andrew Trick6e0b2a02013-05-29 22:03:55 +00001575 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
1576 SDLoc(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00001577
1578 SDValue Size = Tmp2.getOperand(1);
1579 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1580 Chain = SP.getValue(1);
1581 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001582 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman4bc8c712009-05-27 12:20:41 +00001583 if (Align > StackAlign)
1584 SP = DAG.getNode(ISD::AND, dl, VT, SP,
1585 DAG.getConstant(-(uint64_t)Align, VT));
1586 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
1587 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1588
1589 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00001590 DAG.getIntPtrConstant(0, true), SDValue(),
1591 SDLoc(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00001592
1593 Results.push_back(Tmp1);
1594 Results.push_back(Tmp2);
1595}
1596
Evan Cheng7f042682008-10-15 02:05:31 +00001597/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Dan Gohmanf77fc922009-10-17 01:37:38 +00001598/// condition code CC on the current target. This routine expands SETCC with
Evan Cheng7f042682008-10-15 02:05:31 +00001599/// illegal condition code into AND / OR of multiple SETCC values.
Owen Andersone50ed302009-08-10 22:56:29 +00001600void SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng7f042682008-10-15 02:05:31 +00001601 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00001602 SDValue &CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001603 SDLoc dl) {
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001604 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng7f042682008-10-15 02:05:31 +00001605 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
1606 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001607 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng7f042682008-10-15 02:05:31 +00001608 case TargetLowering::Legal:
1609 // Nothing to do.
1610 break;
1611 case TargetLowering::Expand: {
1612 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
Micah Villmowd6458a02012-10-10 20:50:51 +00001613 ISD::CondCode InvCC = ISD::SETCC_INVALID;
Evan Cheng7f042682008-10-15 02:05:31 +00001614 unsigned Opc = 0;
1615 switch (CCCode) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001616 default: llvm_unreachable("Don't know how to expand this condition!");
Micah Villmowd6458a02012-10-10 20:50:51 +00001617 case ISD::SETO:
1618 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1619 == TargetLowering::Legal
1620 && "If SETO is expanded, SETOEQ must be legal!");
1621 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
1622 case ISD::SETUO:
1623 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1624 == TargetLowering::Legal
1625 && "If SETUO is expanded, SETUNE must be legal!");
1626 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1627 case ISD::SETOEQ:
1628 case ISD::SETOGT:
1629 case ISD::SETOGE:
1630 case ISD::SETOLT:
1631 case ISD::SETOLE:
1632 case ISD::SETONE:
1633 case ISD::SETUEQ:
1634 case ISD::SETUNE:
1635 case ISD::SETUGT:
1636 case ISD::SETUGE:
1637 case ISD::SETULT:
1638 case ISD::SETULE:
1639 // If we are floating point, assign and break, otherwise fall through.
1640 if (!OpVT.isInteger()) {
1641 // We can use the 4th bit to tell if we are the unordered
1642 // or ordered version of the opcode.
1643 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1644 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1645 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1646 break;
1647 }
1648 // Fallthrough if we are unsigned integer.
1649 case ISD::SETLE:
1650 case ISD::SETGT:
1651 case ISD::SETGE:
1652 case ISD::SETLT:
1653 case ISD::SETNE:
1654 case ISD::SETEQ:
1655 InvCC = ISD::getSetCCSwappedOperands(CCCode);
1656 if (TLI.getCondCodeAction(InvCC, OpVT) == TargetLowering::Expand) {
1657 // We only support using the inverted operation and not a
1658 // different manner of supporting expanding these cases.
1659 llvm_unreachable("Don't know how to expand this condition!");
1660 }
1661 LHS = DAG.getSetCC(dl, VT, RHS, LHS, InvCC);
1662 RHS = SDValue();
1663 CC = SDValue();
1664 return;
Evan Cheng7f042682008-10-15 02:05:31 +00001665 }
Micah Villmowd6458a02012-10-10 20:50:51 +00001666
1667 SDValue SetCC1, SetCC2;
1668 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1669 // If we aren't the ordered or unorder operation,
1670 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1671 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1672 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1673 } else {
1674 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1675 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1676 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1677 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001678 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00001679 RHS = SDValue();
1680 CC = SDValue();
1681 break;
1682 }
1683 }
1684}
1685
Chris Lattner1401d152008-01-16 07:45:30 +00001686/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1687/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1688/// a load from the stack slot to DestVT, extending it if needed.
1689/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001690SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Andersone50ed302009-08-10 22:56:29 +00001691 EVT SlotVT,
1692 EVT DestVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001693 SDLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00001694 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001695 unsigned SrcAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00001696 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson23b9b192009-08-12 00:36:31 +00001697 getTypeForEVT(*DAG.getContext()));
Dan Gohman475871a2008-07-27 21:46:04 +00001698 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001699
Evan Chengff89dcb2009-10-18 18:16:27 +00001700 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1701 int SPFI = StackPtrFI->getIndex();
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001702 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Chengff89dcb2009-10-18 18:16:27 +00001703
Duncan Sands83ec4b62008-06-06 12:08:01 +00001704 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1705 unsigned SlotSize = SlotVT.getSizeInBits();
1706 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001707 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00001708 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelfdc40a02009-02-17 22:15:04 +00001709
Chris Lattner1401d152008-01-16 07:45:30 +00001710 // Emit a store to the stack slot. Use a truncstore if the input value is
1711 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00001712 SDValue Store;
Evan Chengff89dcb2009-10-18 18:16:27 +00001713
Chris Lattner1401d152008-01-16 07:45:30 +00001714 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00001715 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001716 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001717 else {
1718 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00001719 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001720 PtrInfo, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001721 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001722
Chris Lattner35481892005-12-23 00:16:34 +00001723 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00001724 if (SlotSize == DestSize)
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001725 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001726 false, false, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001727
Chris Lattner1401d152008-01-16 07:45:30 +00001728 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastingsa9011292011-02-16 16:23:55 +00001729 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001730 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00001731}
1732
Dan Gohman475871a2008-07-27 21:46:04 +00001733SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001734 SDLoc dl(Node);
Chris Lattner4352cc92006-04-04 17:23:26 +00001735 // Create a vector sized/aligned stack slot, store the value to element #0,
1736 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00001737 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00001738
Evan Chengff89dcb2009-10-18 18:16:27 +00001739 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1740 int SPFI = StackPtrFI->getIndex();
1741
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001742 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1743 StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001744 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +00001745 Node->getValueType(0).getVectorElementType(),
1746 false, false, 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00001747 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001748 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001749 false, false, false, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001750}
1751
1752
Chris Lattnerce872152006-03-19 06:31:19 +00001753/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00001754/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00001755SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001756 unsigned NumElems = Node->getNumOperands();
Eli Friedman7a5e5552009-06-07 06:52:44 +00001757 SDValue Value1, Value2;
Andrew Trickac6d9be2013-05-25 02:42:55 +00001758 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +00001759 EVT VT = Node->getValueType(0);
1760 EVT OpVT = Node->getOperand(0).getValueType();
1761 EVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001762
1763 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00001764 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00001765 bool isOnlyLowElement = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001766 bool MoreThanTwoValues = false;
Chris Lattner2eb86532006-03-24 07:29:17 +00001767 bool isConstant = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001768 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001769 SDValue V = Node->getOperand(i);
Eli Friedman7a5e5552009-06-07 06:52:44 +00001770 if (V.getOpcode() == ISD::UNDEF)
1771 continue;
1772 if (i > 0)
Chris Lattnerce872152006-03-19 06:31:19 +00001773 isOnlyLowElement = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001774 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner2eb86532006-03-24 07:29:17 +00001775 isConstant = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001776
1777 if (!Value1.getNode()) {
1778 Value1 = V;
1779 } else if (!Value2.getNode()) {
1780 if (V != Value1)
1781 Value2 = V;
1782 } else if (V != Value1 && V != Value2) {
1783 MoreThanTwoValues = true;
1784 }
Chris Lattnerce872152006-03-19 06:31:19 +00001785 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001786
Eli Friedman7a5e5552009-06-07 06:52:44 +00001787 if (!Value1.getNode())
1788 return DAG.getUNDEF(VT);
1789
1790 if (isOnlyLowElement)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001791 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001792
Chris Lattner2eb86532006-03-24 07:29:17 +00001793 // If all elements are constants, create a load from the constant pool.
1794 if (isConstant) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001795 SmallVector<Constant*, 16> CV;
Chris Lattner2eb86532006-03-24 07:29:17 +00001796 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001797 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00001798 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00001799 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001800 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001801 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen9a645cd2009-11-10 23:16:41 +00001802 if (OpVT==EltVT)
1803 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1804 else {
1805 // If OpVT and EltVT don't match, EltVT is not legal and the
1806 // element values have been promoted/truncated earlier. Undo this;
1807 // we don't want a v16i8 to become a v16i32 for example.
1808 const ConstantInt *CI = V->getConstantIntValue();
1809 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1810 CI->getZExtValue()));
1811 }
Chris Lattner2eb86532006-03-24 07:29:17 +00001812 } else {
1813 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001814 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001815 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner2eb86532006-03-24 07:29:17 +00001816 }
1817 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00001818 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00001819 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00001820 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00001821 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00001822 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001823 false, false, false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00001824 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001825
Eli Friedman7a5e5552009-06-07 06:52:44 +00001826 if (!MoreThanTwoValues) {
1827 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1828 for (unsigned i = 0; i < NumElems; ++i) {
1829 SDValue V = Node->getOperand(i);
1830 if (V.getOpcode() == ISD::UNDEF)
1831 continue;
1832 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1833 }
1834 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00001835 // Get the splatted value into the low element of a vector register.
Eli Friedman7a5e5552009-06-07 06:52:44 +00001836 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1837 SDValue Vec2;
1838 if (Value2.getNode())
1839 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1840 else
1841 Vec2 = DAG.getUNDEF(VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001842
Chris Lattner87100e02006-03-20 01:52:29 +00001843 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Eli Friedman7a5e5552009-06-07 06:52:44 +00001844 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
Evan Cheng033e6812006-03-24 01:17:21 +00001845 }
1846 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001847
Eli Friedman7ef3d172009-06-06 07:04:42 +00001848 // Otherwise, we can't handle this case efficiently.
1849 return ExpandVectorBuildThroughStack(Node);
Chris Lattnerce872152006-03-19 06:31:19 +00001850}
1851
Chris Lattner77e77a62005-01-21 06:05:23 +00001852// ExpandLibCall - Expand a node into a call to a libcall. If the result value
1853// does not fit into a register, return the lo part and set the hi part to the
1854// by-reg argument. If it does fit into a single register, return the result
1855// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00001856SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedman47b41f72009-05-27 02:21:29 +00001857 bool isSigned) {
Chris Lattner77e77a62005-01-21 06:05:23 +00001858 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00001859 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00001860 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00001861 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001862 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelfdc40a02009-02-17 22:15:04 +00001863 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00001864 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00001865 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00001866 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00001867 }
Bill Wendling056292f2008-09-16 21:48:12 +00001868 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00001869 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001870
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001871 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Cheng3d2125c2010-11-30 23:55:39 +00001872
Evan Chengbf010eb2012-04-10 01:51:00 +00001873 // By default, the input chain to this libcall is the entry node of the
1874 // function. If the libcall is going to be emitted as a tail call then
1875 // TLI.isUsedByReturnOnly will change it to the right chain if the return
1876 // node which is being folded has a non-entry input chain.
1877 SDValue InChain = DAG.getEntryNode();
1878
Evan Cheng3d2125c2010-11-30 23:55:39 +00001879 // isTailCall may be true since the callee does not reference caller stack
1880 // frame. Check if it's in the right position.
Evan Chengb52ba492012-04-10 03:15:18 +00001881 SDValue TCChain = InChain;
Tim Northover2c8cf4b2013-01-09 13:18:15 +00001882 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Chengb52ba492012-04-10 03:15:18 +00001883 if (isTailCall)
1884 InChain = TCChain;
1885
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001886 TargetLowering::
1887 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001888 0, TLI.getLibcallCallingConv(LC), isTailCall,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001889 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001890 Callee, Args, DAG, SDLoc(Node));
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001891 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
1892
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00001893
Evan Cheng3d2125c2010-11-30 23:55:39 +00001894 if (!CallInfo.second.getNode())
1895 // It's a tailcall, return the chain (which is the DAG root).
1896 return DAG.getRoot();
1897
Eli Friedman74807f22009-05-26 08:55:52 +00001898 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00001899}
1900
Dan Gohmanf316eb72011-05-16 22:09:53 +00001901/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001902/// and returning a result of type RetVT.
1903SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1904 const SDValue *Ops, unsigned NumOps,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001905 bool isSigned, SDLoc dl) {
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001906 TargetLowering::ArgListTy Args;
1907 Args.reserve(NumOps);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001908
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001909 TargetLowering::ArgListEntry Entry;
1910 for (unsigned i = 0; i != NumOps; ++i) {
1911 Entry.Node = Ops[i];
1912 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1913 Entry.isSExt = isSigned;
1914 Entry.isZExt = !isSigned;
1915 Args.push_back(Entry);
1916 }
1917 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1918 TLI.getPointerTy());
Dan Gohmanf316eb72011-05-16 22:09:53 +00001919
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001920 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001921 TargetLowering::
1922 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1923 false, 0, TLI.getLibcallCallingConv(LC),
1924 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001925 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001926 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001927 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001928
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001929 return CallInfo.first;
1930}
1931
Jim Grosbache03262f2010-06-18 21:43:38 +00001932// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1933// ExpandLibCall except that the first operand is the in-chain.
1934std::pair<SDValue, SDValue>
1935SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1936 SDNode *Node,
1937 bool isSigned) {
Jim Grosbache03262f2010-06-18 21:43:38 +00001938 SDValue InChain = Node->getOperand(0);
1939
1940 TargetLowering::ArgListTy Args;
1941 TargetLowering::ArgListEntry Entry;
1942 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1943 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001944 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001945 Entry.Node = Node->getOperand(i);
1946 Entry.Ty = ArgTy;
1947 Entry.isSExt = isSigned;
1948 Entry.isZExt = !isSigned;
1949 Args.push_back(Entry);
1950 }
1951 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1952 TLI.getPointerTy());
1953
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001954 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001955 TargetLowering::
1956 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001957 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001958 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001959 Callee, Args, DAG, SDLoc(Node));
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001960 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbache03262f2010-06-18 21:43:38 +00001961
Jim Grosbache03262f2010-06-18 21:43:38 +00001962 return CallInfo;
1963}
1964
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001965SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
1966 RTLIB::Libcall Call_F32,
1967 RTLIB::Libcall Call_F64,
1968 RTLIB::Libcall Call_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00001969 RTLIB::Libcall Call_F128,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001970 RTLIB::Libcall Call_PPCF128) {
1971 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001972 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001973 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001974 case MVT::f32: LC = Call_F32; break;
1975 case MVT::f64: LC = Call_F64; break;
1976 case MVT::f80: LC = Call_F80; break;
Tim Northover24d315d2013-01-08 17:09:59 +00001977 case MVT::f128: LC = Call_F128; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001978 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001979 }
1980 return ExpandLibCall(LC, Node, false);
1981}
1982
1983SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001984 RTLIB::Libcall Call_I8,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001985 RTLIB::Libcall Call_I16,
1986 RTLIB::Libcall Call_I32,
1987 RTLIB::Libcall Call_I64,
1988 RTLIB::Libcall Call_I128) {
1989 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001990 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001991 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001992 case MVT::i8: LC = Call_I8; break;
1993 case MVT::i16: LC = Call_I16; break;
1994 case MVT::i32: LC = Call_I32; break;
1995 case MVT::i64: LC = Call_I64; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001996 case MVT::i128: LC = Call_I128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001997 }
1998 return ExpandLibCall(LC, Node, isSigned);
1999}
2000
Evan Cheng65279cb2011-04-16 03:08:26 +00002001/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
2002static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2003 const TargetLowering &TLI) {
Evan Cheng8e23e812011-04-01 00:42:02 +00002004 RTLIB::Libcall LC;
2005 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002006 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng8e23e812011-04-01 00:42:02 +00002007 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2008 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2009 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2010 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2011 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2012 }
2013
Evan Cheng65279cb2011-04-16 03:08:26 +00002014 return TLI.getLibcallName(LC) != 0;
2015}
Evan Cheng8e23e812011-04-01 00:42:02 +00002016
Evan Cheng8ef09682012-06-21 05:56:05 +00002017/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Cheng65279cb2011-04-16 03:08:26 +00002018/// needed.
Evan Cheng8ef09682012-06-21 05:56:05 +00002019static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2020 // The other use might have been replaced with a divrem already.
2021 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Cheng8e23e812011-04-01 00:42:02 +00002022 unsigned OtherOpcode = 0;
Evan Cheng65279cb2011-04-16 03:08:26 +00002023 if (isSigned)
Evan Cheng8e23e812011-04-01 00:42:02 +00002024 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002025 else
Evan Cheng8e23e812011-04-01 00:42:02 +00002026 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002027
Evan Cheng8e23e812011-04-01 00:42:02 +00002028 SDValue Op0 = Node->getOperand(0);
2029 SDValue Op1 = Node->getOperand(1);
2030 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2031 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2032 SDNode *User = *UI;
2033 if (User == Node)
2034 continue;
Evan Cheng8ef09682012-06-21 05:56:05 +00002035 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Cheng8e23e812011-04-01 00:42:02 +00002036 User->getOperand(0) == Op0 &&
Evan Cheng65279cb2011-04-16 03:08:26 +00002037 User->getOperand(1) == Op1)
2038 return true;
Evan Cheng8e23e812011-04-01 00:42:02 +00002039 }
Evan Cheng65279cb2011-04-16 03:08:26 +00002040 return false;
2041}
Evan Cheng8e23e812011-04-01 00:42:02 +00002042
Evan Cheng65279cb2011-04-16 03:08:26 +00002043/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2044/// pairs.
2045void
2046SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2047 SmallVectorImpl<SDValue> &Results) {
2048 unsigned Opcode = Node->getOpcode();
2049 bool isSigned = Opcode == ISD::SDIVREM;
2050
2051 RTLIB::Libcall LC;
2052 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002053 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng65279cb2011-04-16 03:08:26 +00002054 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2055 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2056 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2057 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2058 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Cheng8e23e812011-04-01 00:42:02 +00002059 }
2060
2061 // The input chain to this libcall is the entry node of the function.
2062 // Legalizing the call will automatically add the previous call to the
2063 // dependence.
2064 SDValue InChain = DAG.getEntryNode();
2065
2066 EVT RetVT = Node->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002067 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002068
2069 TargetLowering::ArgListTy Args;
2070 TargetLowering::ArgListEntry Entry;
2071 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2072 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002073 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002074 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2075 Entry.isSExt = isSigned;
2076 Entry.isZExt = !isSigned;
2077 Args.push_back(Entry);
2078 }
2079
2080 // Also pass the return address of the remainder.
2081 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2082 Entry.Node = FIPtr;
Micah Villmowb8bce922012-10-24 17:25:11 +00002083 Entry.Ty = RetTy->getPointerTo();
Evan Cheng8e23e812011-04-01 00:42:02 +00002084 Entry.isSExt = isSigned;
2085 Entry.isZExt = !isSigned;
2086 Args.push_back(Entry);
2087
2088 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2089 TLI.getPointerTy());
2090
Andrew Trickac6d9be2013-05-25 02:42:55 +00002091 SDLoc dl(Node);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002092 TargetLowering::
2093 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng8e23e812011-04-01 00:42:02 +00002094 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002095 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2096 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002097 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Cheng8e23e812011-04-01 00:42:02 +00002098
Evan Cheng8e23e812011-04-01 00:42:02 +00002099 // Remainder is loaded back from the stack frame.
Dan Gohman65fd6562011-11-03 21:49:52 +00002100 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002101 MachinePointerInfo(), false, false, false, 0);
Evan Cheng65279cb2011-04-16 03:08:26 +00002102 Results.push_back(CallInfo.first);
2103 Results.push_back(Rem);
Evan Cheng8e23e812011-04-01 00:42:02 +00002104}
2105
Evan Cheng8688a582013-01-29 02:32:37 +00002106/// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2107static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2108 RTLIB::Libcall LC;
2109 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
2110 default: llvm_unreachable("Unexpected request for libcall!");
2111 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2112 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2113 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2114 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2115 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2116 }
2117 return TLI.getLibcallName(LC) != 0;
2118}
2119
Paul Redmond86cdbc92013-02-15 18:45:18 +00002120/// canCombineSinCosLibcall - Return true if sincos libcall is available and
2121/// can be used to combine sin and cos.
2122static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2123 const TargetMachine &TM) {
2124 if (!isSinCosLibcallAvailable(Node, TLI))
2125 return false;
2126 // GNU sin/cos functions set errno while sincos does not. Therefore
2127 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2128 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2129 if (isGNU && !TM.Options.UnsafeFPMath)
2130 return false;
2131 return true;
2132}
2133
Evan Cheng8688a582013-01-29 02:32:37 +00002134/// useSinCos - Only issue sincos libcall if both sin and cos are
2135/// needed.
2136static bool useSinCos(SDNode *Node) {
2137 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2138 ? ISD::FCOS : ISD::FSIN;
2139
2140 SDValue Op0 = Node->getOperand(0);
2141 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2142 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2143 SDNode *User = *UI;
2144 if (User == Node)
2145 continue;
2146 // The other user might have been turned into sincos already.
2147 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2148 return true;
2149 }
2150 return false;
2151}
2152
2153/// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2154/// pairs.
2155void
2156SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2157 SmallVectorImpl<SDValue> &Results) {
2158 RTLIB::Libcall LC;
2159 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
2160 default: llvm_unreachable("Unexpected request for libcall!");
2161 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2162 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2163 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2164 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2165 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2166 }
2167
2168 // The input chain to this libcall is the entry node of the function.
2169 // Legalizing the call will automatically add the previous call to the
2170 // dependence.
2171 SDValue InChain = DAG.getEntryNode();
2172
2173 EVT RetVT = Node->getValueType(0);
2174 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
2175
2176 TargetLowering::ArgListTy Args;
2177 TargetLowering::ArgListEntry Entry;
2178
2179 // Pass the argument.
2180 Entry.Node = Node->getOperand(0);
2181 Entry.Ty = RetTy;
2182 Entry.isSExt = false;
2183 Entry.isZExt = false;
2184 Args.push_back(Entry);
2185
2186 // Pass the return address of sin.
2187 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2188 Entry.Node = SinPtr;
2189 Entry.Ty = RetTy->getPointerTo();
2190 Entry.isSExt = false;
2191 Entry.isZExt = false;
2192 Args.push_back(Entry);
2193
2194 // Also pass the return address of the cos.
2195 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2196 Entry.Node = CosPtr;
2197 Entry.Ty = RetTy->getPointerTo();
2198 Entry.isSExt = false;
2199 Entry.isZExt = false;
2200 Args.push_back(Entry);
2201
2202 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2203 TLI.getPointerTy());
2204
Andrew Trickac6d9be2013-05-25 02:42:55 +00002205 SDLoc dl(Node);
Evan Cheng8688a582013-01-29 02:32:37 +00002206 TargetLowering::
2207 CallLoweringInfo CLI(InChain, Type::getVoidTy(*DAG.getContext()),
2208 false, false, false, false,
2209 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
2210 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2211 Callee, Args, DAG, dl);
2212 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2213
2214 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2215 MachinePointerInfo(), false, false, false, 0));
2216 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2217 MachinePointerInfo(), false, false, false, 0));
2218}
2219
Chris Lattner22cde6a2006-01-28 08:25:58 +00002220/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2221/// INT_TO_FP operation of the specified operand when the target requests that
2222/// we expand it. At this point, we know that the result and operand types are
2223/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00002224SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2225 SDValue Op0,
Owen Andersone50ed302009-08-10 22:56:29 +00002226 EVT DestVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002227 SDLoc dl) {
Akira Hatanaka1d522382012-08-28 02:12:42 +00002228 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002229 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00002230
Chris Lattner23594d42008-01-16 07:03:22 +00002231 // Get the stack frame index of a 8 byte buffer.
Owen Anderson825b72b2009-08-11 20:47:22 +00002232 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00002233
Chris Lattner22cde6a2006-01-28 08:25:58 +00002234 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00002235 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00002236 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00002237 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00002238 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002239 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00002240 if (TLI.isLittleEndian())
2241 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00002242
Chris Lattner22cde6a2006-01-28 08:25:58 +00002243 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00002244 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002245 if (isSigned) {
2246 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson825b72b2009-08-11 20:47:22 +00002247 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2248 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002249 } else {
2250 Op0Mapped = Op0;
2251 }
2252 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00002253 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00002254 Op0Mapped, Lo, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002255 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002256 // initial hi portion of constructed double
Owen Anderson825b72b2009-08-11 20:47:22 +00002257 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002258 // store the hi of the constructed double - biased exponent
Chris Lattner6229d0a2010-09-21 18:41:36 +00002259 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2260 MachinePointerInfo(),
2261 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002262 // load the constructed double
Chris Lattnerecf42c42010-09-21 16:36:31 +00002263 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002264 MachinePointerInfo(), false, false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002265 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00002266 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002267 BitsToDouble(0x4330000080000000ULL) :
2268 BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00002269 MVT::f64);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002270 // subtract the bias
Owen Anderson825b72b2009-08-11 20:47:22 +00002271 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002272 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00002273 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002274 // handle final rounding
Owen Anderson825b72b2009-08-11 20:47:22 +00002275 if (DestVT == MVT::f64) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002276 // do nothing
2277 Result = Sub;
Owen Anderson825b72b2009-08-11 20:47:22 +00002278 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002279 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00002280 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002281 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002282 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002283 }
2284 return Result;
2285 }
2286 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002287 // Code below here assumes !isSigned without checking again.
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002288
2289 // Implementation of unsigned i64 to f64 following the algorithm in
2290 // __floatundidf in compiler_rt. This implementation has the advantage
2291 // of performing rounding correctly, both in the default rounding mode
2292 // and in all alternate rounding modes.
2293 // TODO: Generalize this for use with other types.
2294 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2295 SDValue TwoP52 =
2296 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2297 SDValue TwoP84PlusTwoP52 =
2298 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2299 SDValue TwoP84 =
2300 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2301
2302 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2303 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2304 DAG.getConstant(32, MVT::i64));
2305 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2306 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002307 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2308 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach6e992612010-07-02 17:41:59 +00002309 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2310 TwoP84PlusTwoP52);
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002311 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2312 }
2313
Owen Anderson3a9e7692010-10-05 17:24:05 +00002314 // Implementation of unsigned i64 to f32.
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002315 // TODO: Generalize this for use with other types.
2316 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Anderson3a9e7692010-10-05 17:24:05 +00002317 // For unsigned conversions, convert them to signed conversions using the
2318 // algorithm from the x86_64 __floatundidf in compiler_rt.
2319 if (!isSigned) {
2320 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002321
Owen Anderson95771af2011-02-25 21:41:48 +00002322 SDValue ShiftConst =
2323 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Anderson3a9e7692010-10-05 17:24:05 +00002324 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2325 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2326 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2327 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002328
Owen Anderson3a9e7692010-10-05 17:24:05 +00002329 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2330 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002331
Owen Anderson3a9e7692010-10-05 17:24:05 +00002332 // TODO: This really should be implemented using a branch rather than a
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002333 // select. We happen to get lucky and machinesink does the right
2334 // thing most of the time. This would be a good candidate for a
Owen Anderson3a9e7692010-10-05 17:24:05 +00002335 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault225ed702013-05-18 00:21:46 +00002336 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002337 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002338 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Anderson3a9e7692010-10-05 17:24:05 +00002339 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002340
Owen Anderson3a9e7692010-10-05 17:24:05 +00002341 // Otherwise, implement the fully general conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002342
Jim Grosbach6e992612010-07-02 17:41:59 +00002343 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002344 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2345 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2346 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach6e992612010-07-02 17:41:59 +00002347 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002348 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
Matt Arsenault225ed702013-05-18 00:21:46 +00002349 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002350 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002351 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Matt Arsenault225ed702013-05-18 00:21:46 +00002352 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002353 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002354 ISD::SETUGE);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002355 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Owen Anderson95771af2011-02-25 21:41:48 +00002356 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002357
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002358 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2359 DAG.getConstant(32, SHVT));
2360 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2361 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2362 SDValue TwoP32 =
2363 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2364 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2365 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2366 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2367 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2368 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2369 DAG.getIntPtrConstant(0));
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002370 }
2371
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002372 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002373
Matt Arsenault225ed702013-05-18 00:21:46 +00002374 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002375 Op0, DAG.getConstant(0, Op0.getValueType()),
2376 ISD::SETLT);
2377 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002378 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002379 SignSet, Four, Zero);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002380
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002381 // If the sign bit of the integer is set, the large number will be treated
2382 // as a negative number. To counteract this, the dynamic code adds an
2383 // offset depending on the data type.
2384 uint64_t FF;
2385 switch (Op0.getValueType().getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002386 default: llvm_unreachable("Unsupported integer type!");
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002387 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2388 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2389 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2390 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2391 }
2392 if (TLI.isLittleEndian()) FF <<= 32;
2393 Constant *FudgeFactor = ConstantInt::get(
2394 Type::getInt64Ty(*DAG.getContext()), FF);
2395
2396 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2397 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
2398 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
2399 Alignment = std::min(Alignment, 4u);
2400 SDValue FudgeInReg;
2401 if (DestVT == MVT::f32)
2402 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00002403 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002404 false, false, false, Alignment);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002405 else {
Dan Gohman65fd6562011-11-03 21:49:52 +00002406 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2407 DAG.getEntryNode(), CPIdx,
2408 MachinePointerInfo::getConstantPool(),
2409 MVT::f32, false, false, Alignment);
2410 HandleSDNode Handle(Load);
2411 LegalizeOp(Load.getNode());
2412 FudgeInReg = Handle.getValue();
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002413 }
2414
2415 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002416}
2417
2418/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2419/// *INT_TO_FP operation of the specified operand when the target requests that
2420/// we promote it. At this point, we know that the result and operand types are
2421/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2422/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00002423SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002424 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002425 bool isSigned,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002426 SDLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002427 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002428 EVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002429
2430 unsigned OpToUse = 0;
2431
2432 // Scan for the appropriate larger type to use.
2433 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002434 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002435 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002436
2437 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002438 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2439 OpToUse = ISD::SINT_TO_FP;
2440 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002441 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002442 if (isSigned) continue;
2443
2444 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002445 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2446 OpToUse = ISD::UINT_TO_FP;
2447 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002448 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002449
2450 // Otherwise, try a larger type.
2451 }
2452
2453 // Okay, we found the operation and type to use. Zero extend our input to the
2454 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00002455 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00002456 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00002457 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002458}
2459
2460/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2461/// FP_TO_*INT operation of the specified operand when the target requests that
2462/// we promote it. At this point, we know that the result and operand types are
2463/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2464/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00002465SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002466 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002467 bool isSigned,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002468 SDLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002469 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002470 EVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002471
2472 unsigned OpToUse = 0;
2473
2474 // Scan for the appropriate larger type to use.
2475 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002476 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002477 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002478
Eli Friedman3be2e512009-05-28 03:06:16 +00002479 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002480 OpToUse = ISD::FP_TO_SINT;
2481 break;
2482 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002483
Eli Friedman3be2e512009-05-28 03:06:16 +00002484 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002485 OpToUse = ISD::FP_TO_UINT;
2486 break;
2487 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002488
2489 // Otherwise, try a larger type.
2490 }
2491
Scott Michelfdc40a02009-02-17 22:15:04 +00002492
Chris Lattner27a6c732007-11-24 07:07:01 +00002493 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00002494 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00002495
Chris Lattner27a6c732007-11-24 07:07:01 +00002496 // Truncate the result of the extended FP_TO_*INT operation to the desired
2497 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00002498 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002499}
2500
2501/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2502///
Andrew Trickac6d9be2013-05-25 02:42:55 +00002503SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002504 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002505 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00002506 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson825b72b2009-08-11 20:47:22 +00002507 switch (VT.getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002508 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002509 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002510 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2511 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2512 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002513 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002514 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2515 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2516 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2517 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2518 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2519 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2520 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2521 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2522 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002523 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002524 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2525 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2526 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2527 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2528 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2529 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2530 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2531 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2532 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2533 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2534 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2535 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2536 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2537 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2538 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2539 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2540 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2541 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2542 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2543 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2544 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002545 }
2546}
2547
2548/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2549///
Scott Michelfdc40a02009-02-17 22:15:04 +00002550SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002551 SDLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002552 switch (Opc) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002553 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002554 case ISD::CTPOP: {
Owen Andersone50ed302009-08-10 22:56:29 +00002555 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002556 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002557 unsigned Len = VT.getSizeInBits();
2558
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002559 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2560 "CTPOP not implemented for this type.");
2561
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002562 // This is the "best" algorithm from
2563 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2564
Benjamin Kramerad4da0f2013-02-20 13:00:06 +00002565 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), VT);
2566 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), VT);
2567 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), VT);
2568 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002569
2570 // v = v - ((v >> 1) & 0x55555555...)
2571 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2572 DAG.getNode(ISD::AND, dl, VT,
2573 DAG.getNode(ISD::SRL, dl, VT, Op,
2574 DAG.getConstant(1, ShVT)),
2575 Mask55));
2576 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2577 Op = DAG.getNode(ISD::ADD, dl, VT,
2578 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2579 DAG.getNode(ISD::AND, dl, VT,
2580 DAG.getNode(ISD::SRL, dl, VT, Op,
2581 DAG.getConstant(2, ShVT)),
2582 Mask33));
2583 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2584 Op = DAG.getNode(ISD::AND, dl, VT,
2585 DAG.getNode(ISD::ADD, dl, VT, Op,
2586 DAG.getNode(ISD::SRL, dl, VT, Op,
2587 DAG.getConstant(4, ShVT))),
2588 Mask0F);
2589 // v = (v * 0x01010101...) >> (Len - 8)
2590 Op = DAG.getNode(ISD::SRL, dl, VT,
2591 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2592 DAG.getConstant(Len - 8, ShVT));
Owen Anderson95771af2011-02-25 21:41:48 +00002593
Chris Lattner22cde6a2006-01-28 08:25:58 +00002594 return Op;
2595 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002596 case ISD::CTLZ_ZERO_UNDEF:
2597 // This trivially expands to CTLZ.
2598 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002599 case ISD::CTLZ: {
2600 // for now, we do this:
2601 // x = x | (x >> 1);
2602 // x = x | (x >> 2);
2603 // ...
2604 // x = x | (x >>16);
2605 // x = x | (x >>32); // for 64-bit input
2606 // return popcount(~x);
2607 //
2608 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002609 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002610 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002611 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002612 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002613 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002614 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00002615 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002616 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00002617 Op = DAG.getNOT(dl, Op, VT);
2618 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002619 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002620 case ISD::CTTZ_ZERO_UNDEF:
2621 // This trivially expands to CTTZ.
2622 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002623 case ISD::CTTZ: {
2624 // for now, we use: { return popcount(~x & (x - 1)); }
2625 // unless the target has ctlz but not ctpop, in which case we use:
2626 // { return 32 - nlz(~x & (x-1)); }
2627 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002628 EVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00002629 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2630 DAG.getNOT(dl, Op, VT),
2631 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00002632 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002633 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002634 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2635 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00002636 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002637 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00002638 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2639 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002640 }
2641 }
2642}
Chris Lattnere34b3962005-01-19 04:19:40 +00002643
Jim Grosbache03262f2010-06-18 21:43:38 +00002644std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2645 unsigned Opc = Node->getOpcode();
2646 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2647 RTLIB::Libcall LC;
2648
2649 switch (Opc) {
2650 default:
2651 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002652 case ISD::ATOMIC_SWAP:
2653 switch (VT.SimpleTy) {
2654 default: llvm_unreachable("Unexpected value type for atomic!");
2655 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2656 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2657 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2658 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
2659 }
2660 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002661 case ISD::ATOMIC_CMP_SWAP:
2662 switch (VT.SimpleTy) {
2663 default: llvm_unreachable("Unexpected value type for atomic!");
2664 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2665 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2666 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2667 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
2668 }
2669 break;
2670 case ISD::ATOMIC_LOAD_ADD:
2671 switch (VT.SimpleTy) {
2672 default: llvm_unreachable("Unexpected value type for atomic!");
2673 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2674 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2675 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2676 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
2677 }
2678 break;
2679 case ISD::ATOMIC_LOAD_SUB:
2680 switch (VT.SimpleTy) {
2681 default: llvm_unreachable("Unexpected value type for atomic!");
2682 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2683 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2684 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2685 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
2686 }
2687 break;
2688 case ISD::ATOMIC_LOAD_AND:
2689 switch (VT.SimpleTy) {
2690 default: llvm_unreachable("Unexpected value type for atomic!");
2691 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2692 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2693 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2694 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
2695 }
2696 break;
2697 case ISD::ATOMIC_LOAD_OR:
2698 switch (VT.SimpleTy) {
2699 default: llvm_unreachable("Unexpected value type for atomic!");
2700 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2701 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2702 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2703 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
2704 }
2705 break;
2706 case ISD::ATOMIC_LOAD_XOR:
2707 switch (VT.SimpleTy) {
2708 default: llvm_unreachable("Unexpected value type for atomic!");
2709 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2710 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2711 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2712 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
2713 }
2714 break;
2715 case ISD::ATOMIC_LOAD_NAND:
2716 switch (VT.SimpleTy) {
2717 default: llvm_unreachable("Unexpected value type for atomic!");
2718 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2719 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2720 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2721 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
2722 }
2723 break;
2724 }
2725
2726 return ExpandChainLibCall(LC, Node, false);
2727}
2728
Dan Gohman65fd6562011-11-03 21:49:52 +00002729void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2730 SmallVector<SDValue, 8> Results;
Andrew Trickac6d9be2013-05-25 02:42:55 +00002731 SDLoc dl(Node);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00002732 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Eli Friedman8c377c72009-05-27 01:25:56 +00002733 switch (Node->getOpcode()) {
2734 case ISD::CTPOP:
2735 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002736 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002737 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002738 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002739 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2740 Results.push_back(Tmp1);
2741 break;
2742 case ISD::BSWAP:
Bill Wendling775db972009-12-23 00:28:23 +00002743 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman8c377c72009-05-27 01:25:56 +00002744 break;
2745 case ISD::FRAMEADDR:
2746 case ISD::RETURNADDR:
2747 case ISD::FRAME_TO_ARGS_OFFSET:
2748 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2749 break;
2750 case ISD::FLT_ROUNDS_:
2751 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2752 break;
2753 case ISD::EH_RETURN:
Eli Friedman8c377c72009-05-27 01:25:56 +00002754 case ISD::EH_LABEL:
2755 case ISD::PREFETCH:
Eli Friedman8c377c72009-05-27 01:25:56 +00002756 case ISD::VAEND:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002757 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002758 // If the target didn't expand these, there's nothing to do, so just
2759 // preserve the chain and be done.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002760 Results.push_back(Node->getOperand(0));
2761 break;
2762 case ISD::EH_SJLJ_SETJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002763 // If the target didn't expand this, just return 'zero' and preserve the
2764 // chain.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002765 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman8c377c72009-05-27 01:25:56 +00002766 Results.push_back(Node->getOperand(0));
2767 break;
Tim Northover6265d5c2013-04-20 12:32:17 +00002768 case ISD::ATOMIC_FENCE: {
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002769 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman14648462011-07-27 22:21:52 +00002770 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002771 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002772 TargetLowering::
2773 CallLoweringInfo CLI(Node->getOperand(0),
2774 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002775 false, false, false, false, 0, CallingConv::C,
2776 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002777 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002778 DAG.getExternalSymbol("__sync_synchronize",
2779 TLI.getPointerTy()),
2780 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002781 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2782
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002783 Results.push_back(CallResult.second);
2784 break;
2785 }
Eli Friedman069e2ed2011-08-26 02:59:24 +00002786 case ISD::ATOMIC_LOAD: {
2787 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedman331120b2011-09-15 21:20:49 +00002788 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman069e2ed2011-08-26 02:59:24 +00002789 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2790 cast<AtomicSDNode>(Node)->getMemoryVT(),
2791 Node->getOperand(0),
2792 Node->getOperand(1), Zero, Zero,
2793 cast<AtomicSDNode>(Node)->getMemOperand(),
2794 cast<AtomicSDNode>(Node)->getOrdering(),
2795 cast<AtomicSDNode>(Node)->getSynchScope());
2796 Results.push_back(Swap.getValue(0));
2797 Results.push_back(Swap.getValue(1));
2798 break;
2799 }
2800 case ISD::ATOMIC_STORE: {
2801 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2802 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2803 cast<AtomicSDNode>(Node)->getMemoryVT(),
2804 Node->getOperand(0),
2805 Node->getOperand(1), Node->getOperand(2),
2806 cast<AtomicSDNode>(Node)->getMemOperand(),
2807 cast<AtomicSDNode>(Node)->getOrdering(),
2808 cast<AtomicSDNode>(Node)->getSynchScope());
2809 Results.push_back(Swap.getValue(1));
2810 break;
2811 }
Jim Grosbachb56ce812010-06-17 17:50:54 +00002812 // By default, atomic intrinsics are marked Legal and lowered. Targets
2813 // which don't support them directly, however, may want libcalls, in which
2814 // case they mark them Expand, and we get here.
Jim Grosbachb56ce812010-06-17 17:50:54 +00002815 case ISD::ATOMIC_SWAP:
2816 case ISD::ATOMIC_LOAD_ADD:
2817 case ISD::ATOMIC_LOAD_SUB:
2818 case ISD::ATOMIC_LOAD_AND:
2819 case ISD::ATOMIC_LOAD_OR:
2820 case ISD::ATOMIC_LOAD_XOR:
2821 case ISD::ATOMIC_LOAD_NAND:
2822 case ISD::ATOMIC_LOAD_MIN:
2823 case ISD::ATOMIC_LOAD_MAX:
2824 case ISD::ATOMIC_LOAD_UMIN:
2825 case ISD::ATOMIC_LOAD_UMAX:
Evan Chenga8457062010-06-18 22:01:37 +00002826 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbache03262f2010-06-18 21:43:38 +00002827 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2828 Results.push_back(Tmp.first);
2829 Results.push_back(Tmp.second);
Jim Grosbach59c38f32010-06-17 17:58:54 +00002830 break;
Evan Chenga8457062010-06-18 22:01:37 +00002831 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00002832 case ISD::DYNAMIC_STACKALLOC:
2833 ExpandDYNAMIC_STACKALLOC(Node, Results);
2834 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00002835 case ISD::MERGE_VALUES:
2836 for (unsigned i = 0; i < Node->getNumValues(); i++)
2837 Results.push_back(Node->getOperand(i));
2838 break;
2839 case ISD::UNDEF: {
Owen Andersone50ed302009-08-10 22:56:29 +00002840 EVT VT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00002841 if (VT.isInteger())
2842 Results.push_back(DAG.getConstant(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002843 else {
2844 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman8c377c72009-05-27 01:25:56 +00002845 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002846 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002847 break;
2848 }
2849 case ISD::TRAP: {
2850 // If this operation is not supported, lower it to 'abort()' call
2851 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002852 TargetLowering::
2853 CallLoweringInfo CLI(Node->getOperand(0),
2854 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002855 false, false, false, false, 0, CallingConv::C,
2856 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002857 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eli Friedman8c377c72009-05-27 01:25:56 +00002858 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00002859 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002860 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2861
Eli Friedman8c377c72009-05-27 01:25:56 +00002862 Results.push_back(CallResult.second);
2863 break;
2864 }
2865 case ISD::FP_ROUND:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002866 case ISD::BITCAST:
Eli Friedman8c377c72009-05-27 01:25:56 +00002867 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2868 Node->getValueType(0), dl);
2869 Results.push_back(Tmp1);
2870 break;
2871 case ISD::FP_EXTEND:
2872 Tmp1 = EmitStackConvert(Node->getOperand(0),
2873 Node->getOperand(0).getValueType(),
2874 Node->getValueType(0), dl);
2875 Results.push_back(Tmp1);
2876 break;
2877 case ISD::SIGN_EXTEND_INREG: {
2878 // NOTE: we could fall back on load/store here too for targets without
2879 // SAR. However, it is doubtful that any exist.
Owen Andersone50ed302009-08-10 22:56:29 +00002880 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00002881 EVT VT = Node->getValueType(0);
Owen Anderson95771af2011-02-25 21:41:48 +00002882 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohmand1996362010-01-09 02:13:55 +00002883 if (VT.isVector())
Dan Gohman87862e72009-12-11 21:31:27 +00002884 ShiftAmountTy = VT;
Dan Gohmand1996362010-01-09 02:13:55 +00002885 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2886 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman87862e72009-12-11 21:31:27 +00002887 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman8c377c72009-05-27 01:25:56 +00002888 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2889 Node->getOperand(0), ShiftCst);
Bill Wendling775db972009-12-23 00:28:23 +00002890 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2891 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002892 break;
2893 }
2894 case ISD::FP_ROUND_INREG: {
2895 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002896 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman8c377c72009-05-27 01:25:56 +00002897
2898 // NOTE: there is a choice here between constantly creating new stack
2899 // slots and always reusing the same one. We currently always create
2900 // new ones, as reuse may inhibit scheduling.
Owen Andersone50ed302009-08-10 22:56:29 +00002901 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00002902 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2903 Node->getValueType(0), dl);
2904 Results.push_back(Tmp1);
2905 break;
2906 }
2907 case ISD::SINT_TO_FP:
2908 case ISD::UINT_TO_FP:
2909 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2910 Node->getOperand(0), Node->getValueType(0), dl);
2911 Results.push_back(Tmp1);
2912 break;
2913 case ISD::FP_TO_UINT: {
2914 SDValue True, False;
Owen Andersone50ed302009-08-10 22:56:29 +00002915 EVT VT = Node->getOperand(0).getValueType();
2916 EVT NVT = Node->getValueType(0);
Tim Northover0a29cb02013-01-22 09:46:31 +00002917 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
2918 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman8c377c72009-05-27 01:25:56 +00002919 APInt x = APInt::getSignBit(NVT.getSizeInBits());
2920 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
2921 Tmp1 = DAG.getConstantFP(apf, VT);
Matt Arsenault225ed702013-05-18 00:21:46 +00002922 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman8c377c72009-05-27 01:25:56 +00002923 Node->getOperand(0),
2924 Tmp1, ISD::SETLT);
2925 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00002926 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
2927 DAG.getNode(ISD::FSUB, dl, VT,
2928 Node->getOperand(0), Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00002929 False = DAG.getNode(ISD::XOR, dl, NVT, False,
2930 DAG.getConstant(x, NVT));
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002931 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman8c377c72009-05-27 01:25:56 +00002932 Results.push_back(Tmp1);
2933 break;
2934 }
Eli Friedman509150f2009-05-27 07:58:35 +00002935 case ISD::VAARG: {
2936 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00002937 EVT VT = Node->getValueType(0);
Eli Friedman509150f2009-05-27 07:58:35 +00002938 Tmp1 = Node->getOperand(0);
2939 Tmp2 = Node->getOperand(1);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002940 unsigned Align = Node->getConstantOperandVal(3);
2941
Chris Lattnerecf42c42010-09-21 16:36:31 +00002942 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002943 MachinePointerInfo(V),
2944 false, false, false, 0);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002945 SDValue VAList = VAListLoad;
2946
Rafael Espindolacbeeae22010-07-11 04:01:49 +00002947 if (Align > TLI.getMinStackArgumentAlignment()) {
2948 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
2949
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002950 VAList = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2951 DAG.getConstant(Align - 1,
2952 TLI.getPointerTy()));
2953
2954 VAList = DAG.getNode(ISD::AND, dl, TLI.getPointerTy(), VAList,
Chris Lattner07e3a382010-10-10 18:36:26 +00002955 DAG.getConstant(-(int64_t)Align,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002956 TLI.getPointerTy()));
2957 }
2958
Eli Friedman509150f2009-05-27 07:58:35 +00002959 // Increment the pointer, VAList, to the next vaarg
2960 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Micah Villmow3574eca2012-10-08 16:38:25 +00002961 DAG.getConstant(TLI.getDataLayout()->
Evan Chengadf97992010-04-15 01:25:27 +00002962 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Eli Friedman509150f2009-05-27 07:58:35 +00002963 TLI.getPointerTy()));
2964 // Store the incremented VAList to the legalized pointer
Chris Lattner6229d0a2010-09-21 18:41:36 +00002965 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
2966 MachinePointerInfo(V), false, false, 0);
Eli Friedman509150f2009-05-27 07:58:35 +00002967 // Load the actual argument out of the pointer VAList
Chris Lattnerecf42c42010-09-21 16:36:31 +00002968 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002969 false, false, false, 0));
Eli Friedman509150f2009-05-27 07:58:35 +00002970 Results.push_back(Results[0].getValue(1));
2971 break;
2972 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002973 case ISD::VACOPY: {
2974 // This defaults to loading a pointer from the input and storing it to the
2975 // output, returning the chain.
2976 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2977 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
2978 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattnerecf42c42010-09-21 16:36:31 +00002979 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002980 false, false, false, 0);
Chris Lattnerecf42c42010-09-21 16:36:31 +00002981 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
2982 MachinePointerInfo(VD), false, false, 0);
Bill Wendling775db972009-12-23 00:28:23 +00002983 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002984 break;
2985 }
2986 case ISD::EXTRACT_VECTOR_ELT:
2987 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
2988 // This must be an access of the only element. Return it.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002989 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman8c377c72009-05-27 01:25:56 +00002990 Node->getOperand(0));
2991 else
2992 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
2993 Results.push_back(Tmp1);
2994 break;
2995 case ISD::EXTRACT_SUBVECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002996 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman8c377c72009-05-27 01:25:56 +00002997 break;
David Greenecfe33c42011-01-26 19:13:22 +00002998 case ISD::INSERT_SUBVECTOR:
2999 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3000 break;
Eli Friedman509150f2009-05-27 07:58:35 +00003001 case ISD::CONCAT_VECTORS: {
Bill Wendling775db972009-12-23 00:28:23 +00003002 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman509150f2009-05-27 07:58:35 +00003003 break;
3004 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003005 case ISD::SCALAR_TO_VECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00003006 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman8c377c72009-05-27 01:25:56 +00003007 break;
Eli Friedman3f727d62009-05-27 02:16:40 +00003008 case ISD::INSERT_VECTOR_ELT:
Bill Wendling775db972009-12-23 00:28:23 +00003009 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3010 Node->getOperand(1),
3011 Node->getOperand(2), dl));
Eli Friedman3f727d62009-05-27 02:16:40 +00003012 break;
Eli Friedman509150f2009-05-27 07:58:35 +00003013 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003014 SmallVector<int, 32> NewMask;
3015 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003016
Owen Andersone50ed302009-08-10 22:56:29 +00003017 EVT VT = Node->getValueType(0);
3018 EVT EltVT = VT.getVectorElementType();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003019 SDValue Op0 = Node->getOperand(0);
3020 SDValue Op1 = Node->getOperand(1);
3021 if (!TLI.isTypeLegal(EltVT)) {
3022
3023 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3024
3025 // BUILD_VECTOR operands are allowed to be wider than the element type.
3026 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept it
3027 if (NewEltVT.bitsLT(EltVT)) {
3028
3029 // Convert shuffle node.
3030 // If original node was v4i64 and the new EltVT is i32,
3031 // cast operands to v8i32 and re-build the mask.
3032
3033 // Calculate new VT, the size of the new VT should be equal to original.
3034 EVT NewVT = EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3035 VT.getSizeInBits()/NewEltVT.getSizeInBits());
3036 assert(NewVT.bitsEq(VT));
3037
3038 // cast operands to new VT
3039 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3040 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3041
3042 // Convert the shuffle mask
3043 unsigned int factor = NewVT.getVectorNumElements()/VT.getVectorNumElements();
3044
3045 // EltVT gets smaller
3046 assert(factor > 0);
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003047
3048 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3049 if (Mask[i] < 0) {
3050 for (unsigned fi = 0; fi < factor; ++fi)
3051 NewMask.push_back(Mask[i]);
3052 }
3053 else {
3054 for (unsigned fi = 0; fi < factor; ++fi)
3055 NewMask.push_back(Mask[i]*factor+fi);
3056 }
3057 }
3058 Mask = NewMask;
3059 VT = NewVT;
3060 }
3061 EltVT = NewEltVT;
3062 }
Eli Friedman509150f2009-05-27 07:58:35 +00003063 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003064 SmallVector<SDValue, 16> Ops;
Eli Friedman509150f2009-05-27 07:58:35 +00003065 for (unsigned i = 0; i != NumElems; ++i) {
3066 if (Mask[i] < 0) {
3067 Ops.push_back(DAG.getUNDEF(EltVT));
3068 continue;
3069 }
3070 unsigned Idx = Mask[i];
3071 if (Idx < NumElems)
Bill Wendling775db972009-12-23 00:28:23 +00003072 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003073 Op0,
Bill Wendling775db972009-12-23 00:28:23 +00003074 DAG.getIntPtrConstant(Idx)));
Eli Friedman509150f2009-05-27 07:58:35 +00003075 else
Bill Wendling775db972009-12-23 00:28:23 +00003076 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003077 Op1,
Bill Wendling775db972009-12-23 00:28:23 +00003078 DAG.getIntPtrConstant(Idx - NumElems)));
Eli Friedman509150f2009-05-27 07:58:35 +00003079 }
Nadav Rotem6c0366c2012-01-10 14:28:46 +00003080
Eli Friedman509150f2009-05-27 07:58:35 +00003081 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Nadav Rotem6c0366c2012-01-10 14:28:46 +00003082 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3083 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003084 Results.push_back(Tmp1);
3085 break;
3086 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003087 case ISD::EXTRACT_ELEMENT: {
Owen Andersone50ed302009-08-10 22:56:29 +00003088 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman8c377c72009-05-27 01:25:56 +00003089 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3090 // 1 -> Hi
3091 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3092 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003093 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman8c377c72009-05-27 01:25:56 +00003094 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3095 } else {
3096 // 0 -> Lo
3097 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3098 Node->getOperand(0));
3099 }
3100 Results.push_back(Tmp1);
3101 break;
3102 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003103 case ISD::STACKSAVE:
3104 // Expand to CopyFromReg if the target set
3105 // StackPointerRegisterToSaveRestore.
3106 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendling775db972009-12-23 00:28:23 +00003107 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3108 Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003109 Results.push_back(Results[0].getValue(1));
3110 } else {
Bill Wendling775db972009-12-23 00:28:23 +00003111 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003112 Results.push_back(Node->getOperand(0));
3113 }
3114 break;
3115 case ISD::STACKRESTORE:
Bill Wendling775db972009-12-23 00:28:23 +00003116 // Expand to CopyToReg if the target set
3117 // StackPointerRegisterToSaveRestore.
3118 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3119 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3120 Node->getOperand(1)));
3121 } else {
3122 Results.push_back(Node->getOperand(0));
3123 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003124 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003125 case ISD::FCOPYSIGN:
Bill Wendling775db972009-12-23 00:28:23 +00003126 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003127 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003128 case ISD::FNEG:
3129 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3130 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3131 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3132 Node->getOperand(0));
3133 Results.push_back(Tmp1);
3134 break;
3135 case ISD::FABS: {
3136 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Andersone50ed302009-08-10 22:56:29 +00003137 EVT VT = Node->getValueType(0);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003138 Tmp1 = Node->getOperand(0);
3139 Tmp2 = DAG.getConstantFP(0.0, VT);
Matt Arsenault225ed702013-05-18 00:21:46 +00003140 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003141 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendling775db972009-12-23 00:28:23 +00003142 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00003143 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003144 Results.push_back(Tmp1);
3145 break;
3146 }
3147 case ISD::FSQRT:
Bill Wendling775db972009-12-23 00:28:23 +00003148 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003149 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3150 RTLIB::SQRT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003151 break;
3152 case ISD::FSIN:
Evan Cheng8688a582013-01-29 02:32:37 +00003153 case ISD::FCOS: {
3154 EVT VT = Node->getValueType(0);
3155 bool isSIN = Node->getOpcode() == ISD::FSIN;
3156 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3157 // fcos which share the same operand and both are used.
3158 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmond86cdbc92013-02-15 18:45:18 +00003159 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng8688a582013-01-29 02:32:37 +00003160 && useSinCos(Node)) {
3161 SDVTList VTs = DAG.getVTList(VT, VT);
3162 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3163 if (!isSIN)
3164 Tmp1 = Tmp1.getValue(1);
3165 Results.push_back(Tmp1);
3166 } else if (isSIN) {
3167 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3168 RTLIB::SIN_F80, RTLIB::SIN_F128,
3169 RTLIB::SIN_PPCF128));
3170 } else {
3171 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3172 RTLIB::COS_F80, RTLIB::COS_F128,
3173 RTLIB::COS_PPCF128));
3174 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003175 break;
Evan Cheng8688a582013-01-29 02:32:37 +00003176 }
3177 case ISD::FSINCOS:
3178 // Expand into sincos libcall.
3179 ExpandSinCosLibCall(Node, Results);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003180 break;
3181 case ISD::FLOG:
Bill Wendling775db972009-12-23 00:28:23 +00003182 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003183 RTLIB::LOG_F80, RTLIB::LOG_F128,
3184 RTLIB::LOG_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003185 break;
3186 case ISD::FLOG2:
Bill Wendling775db972009-12-23 00:28:23 +00003187 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003188 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3189 RTLIB::LOG2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003190 break;
3191 case ISD::FLOG10:
Bill Wendling775db972009-12-23 00:28:23 +00003192 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003193 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3194 RTLIB::LOG10_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003195 break;
3196 case ISD::FEXP:
Bill Wendling775db972009-12-23 00:28:23 +00003197 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003198 RTLIB::EXP_F80, RTLIB::EXP_F128,
3199 RTLIB::EXP_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003200 break;
3201 case ISD::FEXP2:
Bill Wendling775db972009-12-23 00:28:23 +00003202 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003203 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3204 RTLIB::EXP2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003205 break;
3206 case ISD::FTRUNC:
Bill Wendling775db972009-12-23 00:28:23 +00003207 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003208 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3209 RTLIB::TRUNC_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003210 break;
3211 case ISD::FFLOOR:
Bill Wendling775db972009-12-23 00:28:23 +00003212 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003213 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3214 RTLIB::FLOOR_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003215 break;
3216 case ISD::FCEIL:
Bill Wendling775db972009-12-23 00:28:23 +00003217 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003218 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3219 RTLIB::CEIL_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003220 break;
3221 case ISD::FRINT:
Bill Wendling775db972009-12-23 00:28:23 +00003222 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003223 RTLIB::RINT_F80, RTLIB::RINT_F128,
3224 RTLIB::RINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003225 break;
3226 case ISD::FNEARBYINT:
Bill Wendling775db972009-12-23 00:28:23 +00003227 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3228 RTLIB::NEARBYINT_F64,
3229 RTLIB::NEARBYINT_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00003230 RTLIB::NEARBYINT_F128,
Bill Wendling775db972009-12-23 00:28:23 +00003231 RTLIB::NEARBYINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003232 break;
3233 case ISD::FPOWI:
Bill Wendling775db972009-12-23 00:28:23 +00003234 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003235 RTLIB::POWI_F80, RTLIB::POWI_F128,
3236 RTLIB::POWI_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003237 break;
3238 case ISD::FPOW:
Bill Wendling775db972009-12-23 00:28:23 +00003239 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003240 RTLIB::POW_F80, RTLIB::POW_F128,
3241 RTLIB::POW_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003242 break;
3243 case ISD::FDIV:
Bill Wendling775db972009-12-23 00:28:23 +00003244 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003245 RTLIB::DIV_F80, RTLIB::DIV_F128,
3246 RTLIB::DIV_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003247 break;
3248 case ISD::FREM:
Bill Wendling775db972009-12-23 00:28:23 +00003249 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003250 RTLIB::REM_F80, RTLIB::REM_F128,
3251 RTLIB::REM_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003252 break;
Cameron Zwarich33390842011-07-08 21:39:21 +00003253 case ISD::FMA:
3254 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003255 RTLIB::FMA_F80, RTLIB::FMA_F128,
3256 RTLIB::FMA_PPCF128));
Cameron Zwarich33390842011-07-08 21:39:21 +00003257 break;
Anton Korobeynikov927411b2010-03-14 18:42:24 +00003258 case ISD::FP16_TO_FP32:
3259 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3260 break;
3261 case ISD::FP32_TO_FP16:
3262 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3263 break;
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003264 case ISD::ConstantFP: {
3265 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendling775db972009-12-23 00:28:23 +00003266 // Check to see if this FP immediate is already legal.
3267 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman65fd6562011-11-03 21:49:52 +00003268 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3269 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003270 break;
3271 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003272 case ISD::EHSELECTION: {
3273 unsigned Reg = TLI.getExceptionSelectorRegister();
3274 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003275 Results.push_back(DAG.getCopyFromReg(Node->getOperand(1), dl, Reg,
3276 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003277 Results.push_back(Results[0].getValue(1));
3278 break;
3279 }
3280 case ISD::EXCEPTIONADDR: {
Lang Hames07961342012-02-14 04:45:49 +00003281 unsigned Reg = TLI.getExceptionPointerRegister();
Eli Friedman26ea8f92009-05-27 07:05:37 +00003282 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003283 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, Reg,
3284 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003285 Results.push_back(Results[0].getValue(1));
3286 break;
3287 }
Owen Andersonafd3d562012-03-06 00:29:31 +00003288 case ISD::FSUB: {
3289 EVT VT = Node->getValueType(0);
3290 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3291 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3292 "Don't know how to expand this FP subtraction!");
3293 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3294 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3295 Results.push_back(Tmp1);
3296 break;
3297 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003298 case ISD::SUB: {
Owen Andersone50ed302009-08-10 22:56:29 +00003299 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003300 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3301 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3302 "Don't know how to expand this subtraction!");
3303 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3304 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Anderson4b6e6752012-05-21 22:39:20 +00003305 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendling775db972009-12-23 00:28:23 +00003306 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003307 break;
3308 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003309 case ISD::UREM:
3310 case ISD::SREM: {
Owen Andersone50ed302009-08-10 22:56:29 +00003311 EVT VT = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003312 bool isSigned = Node->getOpcode() == ISD::SREM;
3313 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3314 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3315 Tmp2 = Node->getOperand(0);
3316 Tmp3 = Node->getOperand(1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003317 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3318 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Chengd36696c2012-10-12 01:15:47 +00003319 // If div is legal, it's better to do the normal expansion
3320 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003321 useDivRem(Node, isSigned, false))) {
Evan Cheng8688a582013-01-29 02:32:37 +00003322 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedman3be2e512009-05-28 03:06:16 +00003323 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3324 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003325 // X % Y -> X-X/Y*Y
3326 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3327 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3328 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003329 } else if (isSigned)
3330 Tmp1 = ExpandIntLibCall(Node, true,
3331 RTLIB::SREM_I8,
3332 RTLIB::SREM_I16, RTLIB::SREM_I32,
3333 RTLIB::SREM_I64, RTLIB::SREM_I128);
3334 else
3335 Tmp1 = ExpandIntLibCall(Node, false,
3336 RTLIB::UREM_I8,
3337 RTLIB::UREM_I16, RTLIB::UREM_I32,
3338 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003339 Results.push_back(Tmp1);
3340 break;
3341 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003342 case ISD::UDIV:
3343 case ISD::SDIV: {
3344 bool isSigned = Node->getOpcode() == ISD::SDIV;
3345 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Andersone50ed302009-08-10 22:56:29 +00003346 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003347 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Cheng65279cb2011-04-16 03:08:26 +00003348 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3349 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003350 useDivRem(Node, isSigned, true)))
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003351 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3352 Node->getOperand(1));
Evan Cheng65279cb2011-04-16 03:08:26 +00003353 else if (isSigned)
3354 Tmp1 = ExpandIntLibCall(Node, true,
3355 RTLIB::SDIV_I8,
3356 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3357 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3358 else
3359 Tmp1 = ExpandIntLibCall(Node, false,
3360 RTLIB::UDIV_I8,
3361 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3362 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003363 Results.push_back(Tmp1);
3364 break;
3365 }
3366 case ISD::MULHU:
3367 case ISD::MULHS: {
3368 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3369 ISD::SMUL_LOHI;
Owen Andersone50ed302009-08-10 22:56:29 +00003370 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003371 SDVTList VTs = DAG.getVTList(VT, VT);
3372 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3373 "If this wasn't legal, it shouldn't have been created!");
3374 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3375 Node->getOperand(1));
3376 Results.push_back(Tmp1.getValue(1));
3377 break;
3378 }
Evan Cheng65279cb2011-04-16 03:08:26 +00003379 case ISD::SDIVREM:
3380 case ISD::UDIVREM:
3381 // Expand into divrem libcall
3382 ExpandDivRemLibCall(Node, Results);
3383 break;
Eli Friedman26ea8f92009-05-27 07:05:37 +00003384 case ISD::MUL: {
Owen Andersone50ed302009-08-10 22:56:29 +00003385 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003386 SDVTList VTs = DAG.getVTList(VT, VT);
3387 // See if multiply or divide can be lowered using two-result operations.
3388 // We just need the low half of the multiply; try both the signed
3389 // and unsigned forms. If the target supports both SMUL_LOHI and
3390 // UMUL_LOHI, form a preference by checking which forms of plain
3391 // MULH it supports.
3392 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3393 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3394 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3395 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3396 unsigned OpToUse = 0;
3397 if (HasSMUL_LOHI && !HasMULHS) {
3398 OpToUse = ISD::SMUL_LOHI;
3399 } else if (HasUMUL_LOHI && !HasMULHU) {
3400 OpToUse = ISD::UMUL_LOHI;
3401 } else if (HasSMUL_LOHI) {
3402 OpToUse = ISD::SMUL_LOHI;
3403 } else if (HasUMUL_LOHI) {
3404 OpToUse = ISD::UMUL_LOHI;
3405 }
3406 if (OpToUse) {
Bill Wendling775db972009-12-23 00:28:23 +00003407 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3408 Node->getOperand(1)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003409 break;
3410 }
Anton Korobeynikov8983da72009-11-07 17:14:39 +00003411 Tmp1 = ExpandIntLibCall(Node, false,
3412 RTLIB::MUL_I8,
3413 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman26ea8f92009-05-27 07:05:37 +00003414 RTLIB::MUL_I64, RTLIB::MUL_I128);
3415 Results.push_back(Tmp1);
3416 break;
3417 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003418 case ISD::SADDO:
3419 case ISD::SSUBO: {
3420 SDValue LHS = Node->getOperand(0);
3421 SDValue RHS = Node->getOperand(1);
3422 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3423 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3424 LHS, RHS);
3425 Results.push_back(Sum);
Bill Wendling122d06d2009-12-23 00:05:09 +00003426 EVT OType = Node->getValueType(1);
Bill Wendling775db972009-12-23 00:28:23 +00003427
Eli Friedman4bc8c712009-05-27 12:20:41 +00003428 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3429
3430 // LHSSign -> LHS >= 0
3431 // RHSSign -> RHS >= 0
3432 // SumSign -> Sum >= 0
3433 //
3434 // Add:
3435 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3436 // Sub:
3437 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3438 //
3439 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3440 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3441 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3442 Node->getOpcode() == ISD::SADDO ?
3443 ISD::SETEQ : ISD::SETNE);
3444
3445 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3446 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3447
3448 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3449 Results.push_back(Cmp);
3450 break;
3451 }
3452 case ISD::UADDO:
3453 case ISD::USUBO: {
3454 SDValue LHS = Node->getOperand(0);
3455 SDValue RHS = Node->getOperand(1);
3456 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3457 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3458 LHS, RHS);
3459 Results.push_back(Sum);
Bill Wendling775db972009-12-23 00:28:23 +00003460 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3461 Node->getOpcode () == ISD::UADDO ?
3462 ISD::SETULT : ISD::SETUGT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003463 break;
3464 }
Eli Friedmandb3c1692009-06-16 06:58:29 +00003465 case ISD::UMULO:
3466 case ISD::SMULO: {
Owen Andersone50ed302009-08-10 22:56:29 +00003467 EVT VT = Node->getValueType(0);
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003468 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmandb3c1692009-06-16 06:58:29 +00003469 SDValue LHS = Node->getOperand(0);
3470 SDValue RHS = Node->getOperand(1);
3471 SDValue BottomHalf;
3472 SDValue TopHalf;
Nuno Lopesec9d8b02009-12-23 17:48:10 +00003473 static const unsigned Ops[2][3] =
Eli Friedmandb3c1692009-06-16 06:58:29 +00003474 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3475 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3476 bool isSigned = Node->getOpcode() == ISD::SMULO;
3477 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3478 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3479 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3480 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3481 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3482 RHS);
3483 TopHalf = BottomHalf.getValue(1);
Eric Christopher38a18262011-01-20 00:29:24 +00003484 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3485 VT.getSizeInBits() * 2))) {
Eli Friedmandb3c1692009-06-16 06:58:29 +00003486 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3487 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3488 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3489 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3490 DAG.getIntPtrConstant(0));
3491 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3492 DAG.getIntPtrConstant(1));
Eric Christopher38a18262011-01-20 00:29:24 +00003493 } else {
3494 // We can fall back to a libcall with an illegal type for the MUL if we
3495 // have a libcall big enough.
3496 // Also, we can fall back to a division in some cases, but that's a big
3497 // performance hit in the general case.
Eric Christopher38a18262011-01-20 00:29:24 +00003498 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3499 if (WideVT == MVT::i16)
3500 LC = RTLIB::MUL_I16;
3501 else if (WideVT == MVT::i32)
3502 LC = RTLIB::MUL_I32;
3503 else if (WideVT == MVT::i64)
3504 LC = RTLIB::MUL_I64;
3505 else if (WideVT == MVT::i128)
3506 LC = RTLIB::MUL_I128;
3507 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanf316eb72011-05-16 22:09:53 +00003508
3509 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003510 // part.
3511 unsigned LoSize = VT.getSizeInBits();
3512 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3513 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3514 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3515 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Anderson95771af2011-02-25 21:41:48 +00003516
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003517 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3518 // pre-lowered to the correct types. This all depends upon WideVT not
3519 // being a legal type for the architecture and thus has to be split to
3520 // two arguments.
3521 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3522 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3523 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3524 DAG.getIntPtrConstant(0));
3525 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3526 DAG.getIntPtrConstant(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00003527 // Ret is a node with an illegal type. Because such things are not
3528 // generally permitted during this phase of legalization, delete the
3529 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3530 DAG.DeleteNode(Ret.getNode());
Eli Friedmandb3c1692009-06-16 06:58:29 +00003531 }
Dan Gohmanf316eb72011-05-16 22:09:53 +00003532
Eli Friedmandb3c1692009-06-16 06:58:29 +00003533 if (isSigned) {
Owen Anderson95771af2011-02-25 21:41:48 +00003534 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3535 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmandb3c1692009-06-16 06:58:29 +00003536 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault225ed702013-05-18 00:21:46 +00003537 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmandb3c1692009-06-16 06:58:29 +00003538 ISD::SETNE);
3539 } else {
Matt Arsenault225ed702013-05-18 00:21:46 +00003540 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Eli Friedmandb3c1692009-06-16 06:58:29 +00003541 DAG.getConstant(0, VT), ISD::SETNE);
3542 }
3543 Results.push_back(BottomHalf);
3544 Results.push_back(TopHalf);
3545 break;
3546 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003547 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +00003548 EVT PairTy = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003549 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3550 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendling775db972009-12-23 00:28:23 +00003551 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003552 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003553 TLI.getShiftAmountTy(PairTy)));
Bill Wendling775db972009-12-23 00:28:23 +00003554 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003555 break;
3556 }
Eli Friedman509150f2009-05-27 07:58:35 +00003557 case ISD::SELECT:
3558 Tmp1 = Node->getOperand(0);
3559 Tmp2 = Node->getOperand(1);
3560 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003561 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman509150f2009-05-27 07:58:35 +00003562 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3563 Tmp2, Tmp3,
3564 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendling775db972009-12-23 00:28:23 +00003565 } else {
Eli Friedman509150f2009-05-27 07:58:35 +00003566 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3567 DAG.getConstant(0, Tmp1.getValueType()),
3568 Tmp2, Tmp3, ISD::SETNE);
Bill Wendling775db972009-12-23 00:28:23 +00003569 }
Eli Friedman509150f2009-05-27 07:58:35 +00003570 Results.push_back(Tmp1);
3571 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003572 case ISD::BR_JT: {
3573 SDValue Chain = Node->getOperand(0);
3574 SDValue Table = Node->getOperand(1);
3575 SDValue Index = Node->getOperand(2);
3576
Owen Andersone50ed302009-08-10 22:56:29 +00003577 EVT PTy = TLI.getPointerTy();
Chris Lattner071c62f2010-01-25 23:26:13 +00003578
Micah Villmow3574eca2012-10-08 16:38:25 +00003579 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattner071c62f2010-01-25 23:26:13 +00003580 unsigned EntrySize =
3581 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach6e992612010-07-02 17:41:59 +00003582
Chris Lattner071c62f2010-01-25 23:26:13 +00003583 Index = DAG.getNode(ISD::MUL, dl, PTy,
Eli Friedman4bc8c712009-05-27 12:20:41 +00003584 Index, DAG.getConstant(EntrySize, PTy));
3585 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3586
Owen Anderson23b9b192009-08-12 00:36:31 +00003587 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastingsa9011292011-02-16 16:23:55 +00003588 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattner85ca1062010-09-21 07:32:19 +00003589 MachinePointerInfo::getJumpTable(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00003590 false, false, 0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003591 Addr = LD;
Dan Gohman55e59c12010-04-19 19:05:59 +00003592 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman4bc8c712009-05-27 12:20:41 +00003593 // For PIC, the sequence is:
Bill Wendling775db972009-12-23 00:28:23 +00003594 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman4bc8c712009-05-27 12:20:41 +00003595 // RelocBase can be JumpTable, GOT or some sort of global base.
3596 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3597 TLI.getPICJumpTableRelocBase(Table, DAG));
3598 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003599 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003600 Results.push_back(Tmp1);
3601 break;
3602 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003603 case ISD::BRCOND:
3604 // Expand brcond's setcc into its constituent parts and create a BR_CC
3605 // Node.
3606 Tmp1 = Node->getOperand(0);
3607 Tmp2 = Node->getOperand(1);
Bill Wendling775db972009-12-23 00:28:23 +00003608 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003609 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003610 Tmp1, Tmp2.getOperand(2),
3611 Tmp2.getOperand(0), Tmp2.getOperand(1),
3612 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003613 } else {
Stuart Hastings88882242011-05-13 00:51:54 +00003614 // We test only the i1 bit. Skip the AND if UNDEF.
3615 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3616 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3617 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003618 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastings88882242011-05-13 00:51:54 +00003619 DAG.getCondCode(ISD::SETNE), Tmp3,
3620 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003621 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003622 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003623 Results.push_back(Tmp1);
3624 break;
Eli Friedmanad754602009-05-28 03:56:57 +00003625 case ISD::SETCC: {
3626 Tmp1 = Node->getOperand(0);
3627 Tmp2 = Node->getOperand(1);
3628 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003629 LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Eli Friedmanad754602009-05-28 03:56:57 +00003630
3631 // If we expanded the SETCC into an AND/OR, return the new node
3632 if (Tmp2.getNode() == 0) {
3633 Results.push_back(Tmp1);
3634 break;
3635 }
3636
3637 // Otherwise, SETCC for the given comparison type must be completely
3638 // illegal; expand it into a SELECT_CC.
Owen Andersone50ed302009-08-10 22:56:29 +00003639 EVT VT = Node->getValueType(0);
Tom Stellard03abf2f2013-03-08 15:37:02 +00003640 int TrueValue;
Benjamin Kramer7a580992013-03-08 17:03:19 +00003641 switch (TLI.getBooleanContents(VT.isVector())) {
Tom Stellard03abf2f2013-03-08 15:37:02 +00003642 case TargetLowering::ZeroOrOneBooleanContent:
3643 case TargetLowering::UndefinedBooleanContent:
3644 TrueValue = 1;
3645 break;
3646 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3647 TrueValue = -1;
3648 break;
3649 }
Eli Friedmanad754602009-05-28 03:56:57 +00003650 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Tom Stellard03abf2f2013-03-08 15:37:02 +00003651 DAG.getConstant(TrueValue, VT), DAG.getConstant(0, VT),
3652 Tmp3);
Eli Friedmanad754602009-05-28 03:56:57 +00003653 Results.push_back(Tmp1);
3654 break;
3655 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003656 case ISD::SELECT_CC: {
3657 Tmp1 = Node->getOperand(0); // LHS
3658 Tmp2 = Node->getOperand(1); // RHS
3659 Tmp3 = Node->getOperand(2); // True
3660 Tmp4 = Node->getOperand(3); // False
3661 SDValue CC = Node->getOperand(4);
3662
Matt Arsenault225ed702013-05-18 00:21:46 +00003663 LegalizeSetCCCondCode(getSetCCResultType(Tmp1.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003664 Tmp1, Tmp2, CC, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003665
3666 assert(!Tmp2.getNode() && "Can't legalize SELECT_CC with legal condition!");
3667 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3668 CC = DAG.getCondCode(ISD::SETNE);
3669 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, Tmp2,
3670 Tmp3, Tmp4, CC);
3671 Results.push_back(Tmp1);
3672 break;
3673 }
3674 case ISD::BR_CC: {
3675 Tmp1 = Node->getOperand(0); // Chain
3676 Tmp2 = Node->getOperand(2); // LHS
3677 Tmp3 = Node->getOperand(3); // RHS
3678 Tmp4 = Node->getOperand(1); // CC
3679
Matt Arsenault225ed702013-05-18 00:21:46 +00003680 LegalizeSetCCCondCode(getSetCCResultType(Tmp2.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003681 Tmp2, Tmp3, Tmp4, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003682
3683 assert(!Tmp3.getNode() && "Can't legalize BR_CC with legal condition!");
3684 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3685 Tmp4 = DAG.getCondCode(ISD::SETNE);
3686 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, Tmp2,
3687 Tmp3, Node->getOperand(4));
3688 Results.push_back(Tmp1);
3689 break;
3690 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003691 case ISD::BUILD_VECTOR:
3692 Results.push_back(ExpandBUILD_VECTOR(Node));
3693 break;
3694 case ISD::SRA:
3695 case ISD::SRL:
3696 case ISD::SHL: {
3697 // Scalarize vector SRA/SRL/SHL.
3698 EVT VT = Node->getValueType(0);
3699 assert(VT.isVector() && "Unable to legalize non-vector shift");
3700 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3701 unsigned NumElem = VT.getVectorNumElements();
3702
3703 SmallVector<SDValue, 8> Scalars;
3704 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3705 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3706 VT.getScalarType(),
3707 Node->getOperand(0), DAG.getIntPtrConstant(Idx));
3708 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3709 VT.getScalarType(),
3710 Node->getOperand(1), DAG.getIntPtrConstant(Idx));
3711 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3712 VT.getScalarType(), Ex, Sh));
3713 }
3714 SDValue Result =
3715 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3716 &Scalars[0], Scalars.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +00003717 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +00003718 break;
3719 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003720 case ISD::GLOBAL_OFFSET_TABLE:
3721 case ISD::GlobalAddress:
3722 case ISD::GlobalTLSAddress:
3723 case ISD::ExternalSymbol:
3724 case ISD::ConstantPool:
3725 case ISD::JumpTable:
3726 case ISD::INTRINSIC_W_CHAIN:
3727 case ISD::INTRINSIC_WO_CHAIN:
3728 case ISD::INTRINSIC_VOID:
3729 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedman3f727d62009-05-27 02:16:40 +00003730 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00003731 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003732
3733 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003734 if (!Results.empty())
3735 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003736}
Dan Gohman65fd6562011-11-03 21:49:52 +00003737
3738void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3739 SmallVector<SDValue, 8> Results;
Patrik Hagglund319bb392012-12-19 11:21:04 +00003740 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00003741 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedmana64eb922009-07-17 05:16:04 +00003742 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendling775db972009-12-23 00:28:23 +00003743 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglund319bb392012-12-19 11:21:04 +00003744 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendling775db972009-12-23 00:28:23 +00003745 }
Patrik Hagglund319bb392012-12-19 11:21:04 +00003746 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003747 SDLoc dl(Node);
Eli Friedman509150f2009-05-27 07:58:35 +00003748 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman8c377c72009-05-27 01:25:56 +00003749 switch (Node->getOpcode()) {
3750 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003751 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003752 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003753 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003754 case ISD::CTPOP:
3755 // Zero extend the argument.
3756 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00003757 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
3758 // already the correct result.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003759 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003760 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth63974b22011-12-13 01:56:10 +00003761 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault225ed702013-05-18 00:21:46 +00003762 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Eli Friedman8c377c72009-05-27 01:25:56 +00003763 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3764 ISD::SETEQ);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00003765 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
3766 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth63974b22011-12-13 01:56:10 +00003767 } else if (Node->getOpcode() == ISD::CTLZ ||
3768 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003769 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3770 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3771 DAG.getConstant(NVT.getSizeInBits() -
3772 OVT.getSizeInBits(), NVT));
3773 }
Bill Wendling775db972009-12-23 00:28:23 +00003774 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00003775 break;
3776 case ISD::BSWAP: {
3777 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling167bea72009-12-22 22:53:39 +00003778 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00003779 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3780 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Anderson95771af2011-02-25 21:41:48 +00003781 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendling775db972009-12-23 00:28:23 +00003782 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003783 break;
3784 }
3785 case ISD::FP_TO_UINT:
3786 case ISD::FP_TO_SINT:
3787 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3788 Node->getOpcode() == ISD::FP_TO_SINT, dl);
3789 Results.push_back(Tmp1);
3790 break;
3791 case ISD::UINT_TO_FP:
3792 case ISD::SINT_TO_FP:
3793 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3794 Node->getOpcode() == ISD::SINT_TO_FP, dl);
3795 Results.push_back(Tmp1);
3796 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00003797 case ISD::VAARG: {
3798 SDValue Chain = Node->getOperand(0); // Get the chain.
3799 SDValue Ptr = Node->getOperand(1); // Get the pointer.
3800
3801 unsigned TruncOp;
3802 if (OVT.isVector()) {
3803 TruncOp = ISD::BITCAST;
3804 } else {
3805 assert(OVT.isInteger()
3806 && "VAARG promotion is supported only for vectors or integer types");
3807 TruncOp = ISD::TRUNCATE;
3808 }
3809
3810 // Perform the larger operation, then convert back
3811 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
3812 Node->getConstantOperandVal(3));
3813 Chain = Tmp1.getValue(1);
3814
3815 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
3816
3817 // Modified the chain result - switch anything that used the old chain to
3818 // use the new one.
3819 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
3820 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
3821 ReplacedNode(Node);
3822 break;
3823 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003824 case ISD::AND:
3825 case ISD::OR:
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003826 case ISD::XOR: {
3827 unsigned ExtOp, TruncOp;
3828 if (OVT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003829 ExtOp = ISD::BITCAST;
3830 TruncOp = ISD::BITCAST;
Chris Lattner35a38932010-04-07 23:47:51 +00003831 } else {
3832 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003833 ExtOp = ISD::ANY_EXTEND;
3834 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003835 }
3836 // Promote each of the values to the new type.
3837 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3838 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3839 // Perform the larger operation, then convert back
Bill Wendling775db972009-12-23 00:28:23 +00003840 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3841 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003842 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003843 }
3844 case ISD::SELECT: {
Eli Friedman509150f2009-05-27 07:58:35 +00003845 unsigned ExtOp, TruncOp;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003846 if (Node->getValueType(0).isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003847 ExtOp = ISD::BITCAST;
3848 TruncOp = ISD::BITCAST;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003849 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman509150f2009-05-27 07:58:35 +00003850 ExtOp = ISD::ANY_EXTEND;
3851 TruncOp = ISD::TRUNCATE;
3852 } else {
3853 ExtOp = ISD::FP_EXTEND;
3854 TruncOp = ISD::FP_ROUND;
3855 }
3856 Tmp1 = Node->getOperand(0);
3857 // Promote each of the values to the new type.
3858 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3859 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
3860 // Perform the larger operation, then round down.
Matt Arsenaultb05e4772013-06-14 22:04:37 +00003861 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman509150f2009-05-27 07:58:35 +00003862 if (TruncOp != ISD::FP_ROUND)
Bill Wendling775db972009-12-23 00:28:23 +00003863 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003864 else
Bill Wendling775db972009-12-23 00:28:23 +00003865 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman509150f2009-05-27 07:58:35 +00003866 DAG.getIntPtrConstant(0));
Bill Wendling775db972009-12-23 00:28:23 +00003867 Results.push_back(Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003868 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003869 }
Eli Friedman509150f2009-05-27 07:58:35 +00003870 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003871 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003872
3873 // Cast the two input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003874 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
3875 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman509150f2009-05-27 07:58:35 +00003876
3877 // Convert the shuffle mask to the right # elements.
Bill Wendling775db972009-12-23 00:28:23 +00003878 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003879 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003880 Results.push_back(Tmp1);
3881 break;
3882 }
Eli Friedmanad754602009-05-28 03:56:57 +00003883 case ISD::SETCC: {
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003884 unsigned ExtOp = ISD::FP_EXTEND;
3885 if (NVT.isInteger()) {
3886 ISD::CondCode CCCode =
3887 cast<CondCodeSDNode>(Node->getOperand(2))->get();
3888 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedmanad754602009-05-28 03:56:57 +00003889 }
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003890 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3891 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedmanad754602009-05-28 03:56:57 +00003892 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3893 Tmp1, Tmp2, Node->getOperand(2)));
3894 break;
3895 }
Pete Coopercfe29982012-03-19 23:38:12 +00003896 case ISD::FDIV:
Pete Cooper9751b812012-04-04 19:36:31 +00003897 case ISD::FREM:
Pete Cooperd578b902012-01-12 21:46:18 +00003898 case ISD::FPOW: {
3899 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3900 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopercfe29982012-03-19 23:38:12 +00003901 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooperd578b902012-01-12 21:46:18 +00003902 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3903 Tmp3, DAG.getIntPtrConstant(0)));
3904 break;
3905 }
3906 case ISD::FLOG2:
3907 case ISD::FEXP2:
3908 case ISD::FLOG:
3909 case ISD::FEXP: {
3910 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3911 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
3912 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3913 Tmp2, DAG.getIntPtrConstant(0)));
3914 break;
3915 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003916 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003917
3918 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003919 if (!Results.empty())
3920 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003921}
3922
Chris Lattner3e928bb2005-01-07 07:47:09 +00003923// SelectionDAG::Legalize - This is the entry point for the file.
3924//
Dan Gohman975716a2011-05-16 22:19:54 +00003925void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00003926 /// run - This is the main entry point to this class.
3927 ///
Dan Gohman975716a2011-05-16 22:19:54 +00003928 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00003929}