blob: 24887dd89f56bf2ba1699ad30b12a51264251fa2 [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
Bill Wendling0bcbd1d2012-06-28 00:05:13 +000014#include "llvm/CallingConv.h"
15#include "llvm/Constants.h"
16#include "llvm/DebugInfo.h"
17#include "llvm/DerivedTypes.h"
18#include "llvm/LLVMContext.h"
Evan Cheng3d2125c2010-11-30 23:55:39 +000019#include "llvm/CodeGen/Analysis.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000020#include "llvm/CodeGen/MachineFunction.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000021#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Cheng3d2125c2010-11-30 23:55:39 +000022#include "llvm/CodeGen/SelectionDAG.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000023#include "llvm/Target/TargetFrameLowering.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000024#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000025#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000026#include "llvm/Target/TargetMachine.h"
David Greene993aace2010-01-05 01:24:53 +000027#include "llvm/Support/Debug.h"
Jim Grosbache03262f2010-06-18 21:43:38 +000028#include "llvm/Support/ErrorHandling.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner45cfe542009-08-23 06:03:38 +000030#include "llvm/Support/raw_ostream.h"
Chris Lattner79715142007-02-03 01:12:36 +000031#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000032#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000033#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000034using namespace llvm;
35
36//===----------------------------------------------------------------------===//
37/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
38/// hacks on it until the target machine can handle it. This involves
39/// eliminating value sizes the machine cannot handle (promoting small sizes to
40/// large sizes or splitting up large values into small values) as well as
41/// eliminating operations the machine cannot handle.
42///
43/// This code also does a small amount of optimization and recognition of idioms
44/// as part of its processing. For example, if a target does not support a
45/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
46/// will attempt merge setcc and brc instructions into brcc's.
47///
48namespace {
Dan Gohman65fd6562011-11-03 21:49:52 +000049class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
Dan Gohman55e59c12010-04-19 19:05:59 +000050 const TargetMachine &TM;
Dan Gohmand858e902010-04-17 15:26:15 +000051 const TargetLowering &TLI;
Chris Lattner3e928bb2005-01-07 07:47:09 +000052 SelectionDAG &DAG;
53
Dan Gohman65fd6562011-11-03 21:49:52 +000054 /// LegalizePosition - The iterator for walking through the node list.
55 SelectionDAG::allnodes_iterator LegalizePosition;
56
57 /// LegalizedNodes - The set of nodes which have already been legalized.
58 SmallPtrSet<SDNode *, 16> LegalizedNodes;
59
Chris Lattner6831a812006-02-13 09:18:02 +000060 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000061
Chris Lattner3e928bb2005-01-07 07:47:09 +000062public:
Dan Gohman975716a2011-05-16 22:19:54 +000063 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +000064
Chris Lattner3e928bb2005-01-07 07:47:09 +000065 void LegalizeDAG();
66
Chris Lattner456a93a2006-01-28 07:39:30 +000067private:
Dan Gohman65fd6562011-11-03 21:49:52 +000068 /// LegalizeOp - Legalizes the given operation.
69 void LegalizeOp(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +000070
Eli Friedman7ef3d172009-06-06 07:04:42 +000071 SDValue OptimizeFloatStore(StoreSDNode *ST);
72
Nadav Rotemb6e89f02012-07-11 08:52:09 +000073 void LegalizeLoadOps(SDNode *Node);
74 void LegalizeStoreOps(SDNode *Node);
75
Nate Begeman68679912008-04-25 18:07:40 +000076 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
77 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
78 /// is necessary to spill the vector being inserted into to memory, perform
79 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +000080 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Eli Friedman3f727d62009-05-27 02:16:40 +000081 SDValue Idx, DebugLoc dl);
82 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
83 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +000084
Nate Begeman5a5ca152009-04-29 05:20:52 +000085 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
86 /// performs the same shuffe in terms of order or result bytes, but on a type
87 /// whose vector element type is narrower than the original shuffle type.
88 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Owen Andersone50ed302009-08-10 22:56:29 +000089 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Jim Grosbach6e992612010-07-02 17:41:59 +000090 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +000091 ArrayRef<int> Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +000092
Owen Andersone50ed302009-08-10 22:56:29 +000093 void LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +000094 DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +000095
Eli Friedman47b41f72009-05-27 02:21:29 +000096 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherabbbfbd2011-04-20 01:19:45 +000097 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
98 unsigned NumOps, bool isSigned, DebugLoc dl);
99
Jim Grosbache03262f2010-06-18 21:43:38 +0000100 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
101 SDNode *Node, bool isSigned);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000102 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
103 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
104 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000105 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
106 RTLIB::Libcall Call_I8,
107 RTLIB::Libcall Call_I16,
108 RTLIB::Libcall Call_I32,
109 RTLIB::Libcall Call_I64,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000110 RTLIB::Libcall Call_I128);
Evan Cheng65279cb2011-04-16 03:08:26 +0000111 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnercad063f2005-07-16 00:19:57 +0000112
Owen Andersone50ed302009-08-10 22:56:29 +0000113 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000114 SDValue ExpandBUILD_VECTOR(SDNode *Node);
115 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +0000116 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
117 SmallVectorImpl<SDValue> &Results);
118 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Andersone50ed302009-08-10 22:56:29 +0000119 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +0000120 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000121 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000122 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000123 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000124 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000125
Dale Johannesen8a782a22009-02-02 22:12:50 +0000126 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
127 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000128
Eli Friedman3d43b3f2009-05-23 22:37:25 +0000129 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenecfe33c42011-01-26 19:13:22 +0000130 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000131 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman8c377c72009-05-27 01:25:56 +0000132
Dan Gohman65fd6562011-11-03 21:49:52 +0000133 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
134
Jim Grosbache03262f2010-06-18 21:43:38 +0000135 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
136
Dan Gohman65fd6562011-11-03 21:49:52 +0000137 void ExpandNode(SDNode *Node);
138 void PromoteNode(SDNode *Node);
139
Eli Friedman0e3642a2011-11-11 23:58:27 +0000140 void ForgetNode(SDNode *N) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000141 LegalizedNodes.erase(N);
142 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
143 ++LegalizePosition;
144 }
145
Eli Friedman0e3642a2011-11-11 23:58:27 +0000146public:
147 // DAGUpdateListener implementation.
148 virtual void NodeDeleted(SDNode *N, SDNode *E) {
149 ForgetNode(N);
150 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000151 virtual void NodeUpdated(SDNode *N) {}
Eli Friedman0e3642a2011-11-11 23:58:27 +0000152
153 // Node replacement helpers
154 void ReplacedNode(SDNode *N) {
155 if (N->use_empty()) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000156 DAG.RemoveDeadNode(N);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000157 } else {
158 ForgetNode(N);
159 }
160 }
161 void ReplaceNode(SDNode *Old, SDNode *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000162 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000163 ReplacedNode(Old);
164 }
165 void ReplaceNode(SDValue Old, SDValue New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000166 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000167 ReplacedNode(Old.getNode());
168 }
169 void ReplaceNode(SDNode *Old, const SDValue *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000170 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000171 ReplacedNode(Old);
172 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000173};
174}
175
Nate Begeman5a5ca152009-04-29 05:20:52 +0000176/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
177/// performs the same shuffe in terms of order or result bytes, but on a type
178/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000179/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach6e992612010-07-02 17:41:59 +0000180SDValue
181SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Nate Begeman5a5ca152009-04-29 05:20:52 +0000182 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +0000183 ArrayRef<int> Mask) const {
Nate Begeman5a5ca152009-04-29 05:20:52 +0000184 unsigned NumMaskElts = VT.getVectorNumElements();
185 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000186 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000187
Nate Begeman9008ca62009-04-27 18:41:29 +0000188 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
189
190 if (NumEltsGrowth == 1)
191 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach6e992612010-07-02 17:41:59 +0000192
Nate Begeman9008ca62009-04-27 18:41:29 +0000193 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000194 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000195 int Idx = Mask[i];
196 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach6e992612010-07-02 17:41:59 +0000197 if (Idx < 0)
Nate Begeman9008ca62009-04-27 18:41:29 +0000198 NewMask.push_back(-1);
199 else
200 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000201 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000202 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000203 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000204 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
205 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000206}
207
Dan Gohman975716a2011-05-16 22:19:54 +0000208SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000209 : SelectionDAG::DAGUpdateListener(dag),
210 TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
Dan Gohmanea027022011-07-15 22:19:02 +0000211 DAG(dag) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000212}
213
Chris Lattner3e928bb2005-01-07 07:47:09 +0000214void SelectionDAGLegalize::LegalizeDAG() {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000215 DAG.AssignTopologicalOrder();
Dan Gohman2ba60e52011-10-28 01:29:32 +0000216
Dan Gohman65fd6562011-11-03 21:49:52 +0000217 // Visit all the nodes. We start in topological order, so that we see
218 // nodes with their original operands intact. Legalization can produce
219 // new nodes which may themselves need to be legalized. Iterate until all
220 // nodes have been legalized.
221 for (;;) {
222 bool AnyLegalized = false;
223 for (LegalizePosition = DAG.allnodes_end();
224 LegalizePosition != DAG.allnodes_begin(); ) {
225 --LegalizePosition;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000226
Dan Gohman65fd6562011-11-03 21:49:52 +0000227 SDNode *N = LegalizePosition;
228 if (LegalizedNodes.insert(N)) {
229 AnyLegalized = true;
230 LegalizeOp(N);
231 }
232 }
233 if (!AnyLegalized)
234 break;
235
236 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000237
238 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000239 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000240}
241
Evan Cheng9f877882006-12-13 20:57:08 +0000242/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
243/// a load from the constant pool.
Dan Gohman65fd6562011-11-03 21:49:52 +0000244SDValue
245SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng00495212006-12-12 21:32:44 +0000246 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000247 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000248
249 // If a FP immediate is precise when represented as a float and if the
250 // target can do an extending load from float to double, we put it into
251 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000252 // double. This shrinks FP constants and canonicalizes them for targets where
253 // an FP extending load is the same cost as a normal load (such as on the x87
254 // fp stack or PPC FP unit).
Owen Andersone50ed302009-08-10 22:56:29 +0000255 EVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000256 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000257 if (!UseCP) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000258 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000259 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000260 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000261 }
262
Owen Andersone50ed302009-08-10 22:56:29 +0000263 EVT OrigVT = VT;
264 EVT SVT = VT;
Owen Anderson825b72b2009-08-11 20:47:22 +0000265 while (SVT != MVT::f32) {
266 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman7720cb32010-06-18 14:01:07 +0000267 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Chengef120572008-03-04 08:05:30 +0000268 // Only do this if the target has a native EXTLOAD instruction from
269 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000270 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000271 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000272 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Andersonbaf3c402009-07-29 18:55:55 +0000273 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Chengef120572008-03-04 08:05:30 +0000274 VT = SVT;
275 Extend = true;
276 }
Evan Cheng00495212006-12-12 21:32:44 +0000277 }
278
Dan Gohman475871a2008-07-27 21:46:04 +0000279 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000280 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman65fd6562011-11-03 21:49:52 +0000281 if (Extend) {
282 SDValue Result =
283 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
284 DAG.getEntryNode(),
285 CPIdx, MachinePointerInfo::getConstantPool(),
286 VT, false, false, Alignment);
287 return Result;
288 }
289 SDValue Result =
290 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000291 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman65fd6562011-11-03 21:49:52 +0000292 Alignment);
293 return Result;
Evan Cheng00495212006-12-12 21:32:44 +0000294}
295
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000296/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman65fd6562011-11-03 21:49:52 +0000297static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
298 const TargetLowering &TLI,
Eli Friedman0e3642a2011-11-11 23:58:27 +0000299 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000300 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
301 "unaligned indexed stores not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000302 SDValue Chain = ST->getChain();
303 SDValue Ptr = ST->getBasePtr();
304 SDValue Val = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +0000305 EVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000306 int Alignment = ST->getAlignment();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000307 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000308 if (ST->getMemoryVT().isFloatingPoint() ||
309 ST->getMemoryVT().isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000310 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000311 if (TLI.isTypeLegal(intVT)) {
312 // Expand to a bitconvert of the value to the integer type of the
313 // same size, then a (misaligned) int store.
314 // FIXME: Does not handle truncating floating point stores!
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000315 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman65fd6562011-11-03 21:49:52 +0000316 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
317 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000318 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000319 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000320 }
Dan Gohman1b328962011-05-17 22:22:52 +0000321 // Do a (aligned) store to a stack slot, then copy from the stack slot
322 // to the final destination using (unaligned) integer loads and stores.
323 EVT StoredVT = ST->getMemoryVT();
324 EVT RegVT =
325 TLI.getRegisterType(*DAG.getContext(),
326 EVT::getIntegerVT(*DAG.getContext(),
327 StoredVT.getSizeInBits()));
328 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
329 unsigned RegBytes = RegVT.getSizeInBits() / 8;
330 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
331
332 // Make sure the stack slot is also aligned for the register type.
333 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
334
335 // Perform the original store, only redirected to the stack slot.
336 SDValue Store = DAG.getTruncStore(Chain, dl,
337 Val, StackPtr, MachinePointerInfo(),
338 StoredVT, false, false, 0);
339 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
340 SmallVector<SDValue, 8> Stores;
341 unsigned Offset = 0;
342
343 // Do all but one copies using the full register width.
344 for (unsigned i = 1; i < NumRegs; i++) {
345 // Load one integer register's worth from the stack slot.
346 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
347 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000348 false, false, false, 0);
Dan Gohman1b328962011-05-17 22:22:52 +0000349 // Store it to the final location. Remember the store.
350 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
351 ST->getPointerInfo().getWithOffset(Offset),
352 ST->isVolatile(), ST->isNonTemporal(),
353 MinAlign(ST->getAlignment(), Offset)));
354 // Increment the pointers.
355 Offset += RegBytes;
356 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
357 Increment);
358 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
359 }
360
361 // The last store may be partial. Do a truncating store. On big-endian
362 // machines this requires an extending load from the stack slot to ensure
363 // that the bits are in the right place.
364 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
365 8 * (StoredBytes - Offset));
366
367 // Load from the stack slot.
368 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
369 MachinePointerInfo(),
370 MemVT, false, false, 0);
371
372 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
373 ST->getPointerInfo()
374 .getWithOffset(Offset),
375 MemVT, ST->isVolatile(),
376 ST->isNonTemporal(),
377 MinAlign(ST->getAlignment(), Offset)));
378 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman65fd6562011-11-03 21:49:52 +0000379 SDValue Result =
380 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
381 Stores.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +0000382 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000383 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000384 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000385 assert(ST->getMemoryVT().isInteger() &&
386 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000387 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000388 // Get the half-size VT
Ken Dyckbceddbd2009-12-17 20:09:43 +0000389 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000390 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000391 int IncrementSize = NumBits / 8;
392
393 // Divide the stored value in two parts.
Owen Anderson95771af2011-02-25 21:41:48 +0000394 SDValue ShiftAmount = DAG.getConstant(NumBits,
395 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman475871a2008-07-27 21:46:04 +0000396 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000397 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000398
399 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000400 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000401 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000402 ST->getPointerInfo(), NewStoredVT,
David Greene1e559442010-02-15 17:00:31 +0000403 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000404 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000405 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000406 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000407 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000408 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene1e559442010-02-15 17:00:31 +0000409 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
410 Alignment);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000411
Dan Gohman65fd6562011-11-03 21:49:52 +0000412 SDValue Result =
413 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000414 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000415}
416
417/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman65fd6562011-11-03 21:49:52 +0000418static void
419ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
420 const TargetLowering &TLI,
421 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000422 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
423 "unaligned indexed loads not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000424 SDValue Chain = LD->getChain();
425 SDValue Ptr = LD->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +0000426 EVT VT = LD->getValueType(0);
427 EVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000428 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000429 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000430 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000431 if (TLI.isTypeLegal(intVT)) {
432 // Expand to a (misaligned) integer load of the same size,
433 // then bitconvert to floating point or vector.
Chris Lattnerecf42c42010-09-21 16:36:31 +0000434 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
435 LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000436 LD->isNonTemporal(),
437 LD->isInvariant(), LD->getAlignment());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000438 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000439 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000440 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000441
Dan Gohman65fd6562011-11-03 21:49:52 +0000442 ValResult = Result;
443 ChainResult = Chain;
444 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000445 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000446
Chris Lattnerecf42c42010-09-21 16:36:31 +0000447 // Copy the value to a (aligned) stack slot using (unaligned) integer
448 // loads and stores, then do a (aligned) load from the stack slot.
449 EVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
450 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
451 unsigned RegBytes = RegVT.getSizeInBits() / 8;
452 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
453
454 // Make sure the stack slot is also aligned for the register type.
455 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
456
457 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
458 SmallVector<SDValue, 8> Stores;
459 SDValue StackPtr = StackBase;
460 unsigned Offset = 0;
461
462 // Do all but one copies using the full register width.
463 for (unsigned i = 1; i < NumRegs; i++) {
464 // Load one integer register's worth from the original location.
465 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
466 LD->getPointerInfo().getWithOffset(Offset),
467 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000468 LD->isInvariant(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000469 MinAlign(LD->getAlignment(), Offset));
470 // Follow the load with a store to the stack slot. Remember the store.
471 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000472 MachinePointerInfo(), false, false, 0));
Chris Lattnerecf42c42010-09-21 16:36:31 +0000473 // Increment the pointers.
474 Offset += RegBytes;
475 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
476 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
477 Increment);
478 }
479
480 // The last copy may be partial. Do an extending load.
481 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
482 8 * (LoadedBytes - Offset));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000483 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000484 LD->getPointerInfo().getWithOffset(Offset),
485 MemVT, LD->isVolatile(),
486 LD->isNonTemporal(),
487 MinAlign(LD->getAlignment(), Offset));
488 // Follow the load with a store to the stack slot. Remember the store.
489 // On big-endian machines this requires a truncating store to ensure
490 // that the bits end up in the right place.
491 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
492 MachinePointerInfo(), MemVT,
493 false, false, 0));
494
495 // The order of the stores doesn't matter - say it with a TokenFactor.
496 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
497 Stores.size());
498
499 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastingsa9011292011-02-16 16:23:55 +0000500 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000501 MachinePointerInfo(), LoadedVT, false, false, 0);
502
503 // Callers expect a MERGE_VALUES node.
Dan Gohman65fd6562011-11-03 21:49:52 +0000504 ValResult = Load;
505 ChainResult = TF;
506 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000507 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000508 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000509 "Unaligned load of unsupported type.");
510
Dale Johannesen8155d642008-02-27 22:36:00 +0000511 // Compute the new VT that is half the size of the old one. This is an
512 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000513 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Andersone50ed302009-08-10 22:56:29 +0000514 EVT NewLoadedVT;
Owen Anderson23b9b192009-08-12 00:36:31 +0000515 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000516 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000517
Chris Lattnere400af82007-11-19 21:38:03 +0000518 unsigned Alignment = LD->getAlignment();
519 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000520 ISD::LoadExtType HiExtType = LD->getExtensionType();
521
522 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
523 if (HiExtType == ISD::NON_EXTLOAD)
524 HiExtType = ISD::ZEXTLOAD;
525
526 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000527 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000528 if (TLI.isLittleEndian()) {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000529 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000530 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000531 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000532 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000533 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000534 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000535 LD->getPointerInfo().getWithOffset(IncrementSize),
536 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000537 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000538 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000539 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000540 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000541 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000542 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000543 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000544 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000545 LD->getPointerInfo().getWithOffset(IncrementSize),
546 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000547 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000548 }
549
550 // aggregate the two parts
Owen Anderson95771af2011-02-25 21:41:48 +0000551 SDValue ShiftAmount = DAG.getConstant(NumBits,
552 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000553 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
554 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000555
Owen Anderson825b72b2009-08-11 20:47:22 +0000556 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000557 Hi.getValue(1));
558
Dan Gohman65fd6562011-11-03 21:49:52 +0000559 ValResult = Result;
560 ChainResult = TF;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000561}
Evan Cheng912095b2007-01-04 21:56:39 +0000562
Nate Begeman68679912008-04-25 18:07:40 +0000563/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
564/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
565/// is necessary to spill the vector being inserted into to memory, perform
566/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000567SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000568PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
569 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000570 SDValue Tmp1 = Vec;
571 SDValue Tmp2 = Val;
572 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000573
Nate Begeman68679912008-04-25 18:07:40 +0000574 // If the target doesn't support this, we have to spill the input vector
575 // to a temporary stack slot, update the element, then reload it. This is
576 // badness. We could also load the value into a vector register (either
577 // with a "move to register" or "extload into register" instruction, then
578 // permute it into place, if the idx is a constant and if the idx is
579 // supported by the target.
Owen Andersone50ed302009-08-10 22:56:29 +0000580 EVT VT = Tmp1.getValueType();
581 EVT EltVT = VT.getVectorElementType();
582 EVT IdxVT = Tmp3.getValueType();
583 EVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000584 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000585
Evan Chengff89dcb2009-10-18 18:16:27 +0000586 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
587
Nate Begeman68679912008-04-25 18:07:40 +0000588 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000589 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +0000590 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +0000591 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000592
593 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000594 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000595 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000596 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +0000597 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000598 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
599 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000600 // Store the scalar value.
Chris Lattner85ca1062010-09-21 07:32:19 +0000601 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene1e559442010-02-15 17:00:31 +0000602 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000603 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000604 return DAG.getLoad(VT, dl, Ch, StackPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000605 MachinePointerInfo::getFixedStack(SPFI), false, false,
606 false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000607}
608
Mon P Wange9f10152008-12-09 05:46:39 +0000609
Eli Friedman3f727d62009-05-27 02:16:40 +0000610SDValue SelectionDAGLegalize::
611ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, DebugLoc dl) {
612 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
613 // SCALAR_TO_VECTOR requires that the type of the value being inserted
614 // match the element type of the vector being created, except for
615 // integers in which case the inserted value can be over width.
Owen Andersone50ed302009-08-10 22:56:29 +0000616 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedman3f727d62009-05-27 02:16:40 +0000617 if (Val.getValueType() == EltVT ||
618 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
619 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
620 Vec.getValueType(), Val);
621
622 unsigned NumElts = Vec.getValueType().getVectorNumElements();
623 // We generate a shuffle of InVec and ScVec, so the shuffle mask
624 // should be 0,1,2,3,4,5... with the appropriate element replaced with
625 // elt 0 of the RHS.
626 SmallVector<int, 8> ShufOps;
627 for (unsigned i = 0; i != NumElts; ++i)
628 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
629
630 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
631 &ShufOps[0]);
632 }
633 }
634 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
635}
636
Eli Friedman7ef3d172009-06-06 07:04:42 +0000637SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
638 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
639 // FIXME: We shouldn't do this for TargetConstantFP's.
640 // FIXME: move this to the DAG Combiner! Note that we can't regress due
641 // to phase ordering between legalized code and the dag combiner. This
642 // probably means that we need to integrate dag combiner and legalizer
643 // together.
644 // We generally can't do this one for long doubles.
645 SDValue Tmp1 = ST->getChain();
646 SDValue Tmp2 = ST->getBasePtr();
647 SDValue Tmp3;
Eli Friedman7ef3d172009-06-06 07:04:42 +0000648 unsigned Alignment = ST->getAlignment();
649 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +0000650 bool isNonTemporal = ST->isNonTemporal();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000651 DebugLoc dl = ST->getDebugLoc();
652 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000653 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohman75b10042011-07-15 22:39:09 +0000654 TLI.isTypeLegal(MVT::i32)) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000655 Tmp3 = DAG.getConstant(CFP->getValueAPF().
656 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson825b72b2009-08-11 20:47:22 +0000657 MVT::i32);
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000658 return DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
659 isVolatile, isNonTemporal, Alignment);
660 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000661
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000662 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000663 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohman75b10042011-07-15 22:39:09 +0000664 if (TLI.isTypeLegal(MVT::i64)) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000665 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +0000666 zextOrTrunc(64), MVT::i64);
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000667 return DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
668 isVolatile, isNonTemporal, Alignment);
669 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000670
Dan Gohman75b10042011-07-15 22:39:09 +0000671 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000672 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
673 // stores. If the target supports neither 32- nor 64-bits, this
674 // xform is certainly not worth it.
675 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad40f8f622010-12-07 08:25:19 +0000676 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000677 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000678 if (TLI.isBigEndian()) std::swap(Lo, Hi);
679
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000680 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getPointerInfo(), isVolatile,
681 isNonTemporal, Alignment);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000682 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
683 DAG.getIntPtrConstant(4));
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000684 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2,
685 ST->getPointerInfo().getWithOffset(4),
David Greene1e559442010-02-15 17:00:31 +0000686 isVolatile, isNonTemporal, MinAlign(Alignment, 4U));
Eli Friedman7ef3d172009-06-06 07:04:42 +0000687
Owen Anderson825b72b2009-08-11 20:47:22 +0000688 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000689 }
690 }
691 }
Evan Cheng8e23e812011-04-01 00:42:02 +0000692 return SDValue(0, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000693}
694
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000695void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
696 StoreSDNode *ST = cast<StoreSDNode>(Node);
697 SDValue Tmp1 = ST->getChain();
698 SDValue Tmp2 = ST->getBasePtr();
699 DebugLoc dl = Node->getDebugLoc();
700
701 unsigned Alignment = ST->getAlignment();
702 bool isVolatile = ST->isVolatile();
703 bool isNonTemporal = ST->isNonTemporal();
704
705 if (!ST->isTruncatingStore()) {
706 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
707 ReplaceNode(ST, OptStore);
708 return;
709 }
710
711 {
712 SDValue Tmp3 = ST->getValue();
713 EVT VT = Tmp3.getValueType();
714 switch (TLI.getOperationAction(ISD::STORE, VT)) {
715 default: llvm_unreachable("This action is not supported yet!");
716 case TargetLowering::Legal:
717 // If this is an unaligned store and the target doesn't support it,
718 // expand it.
719 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
720 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
721 unsigned ABIAlignment= TLI.getTargetData()->getABITypeAlignment(Ty);
722 if (ST->getAlignment() < ABIAlignment)
723 ExpandUnalignedStore(cast<StoreSDNode>(Node),
724 DAG, TLI, this);
725 }
726 break;
727 case TargetLowering::Custom:
728 Tmp1 = TLI.LowerOperation(SDValue(Node, 0), DAG);
729 if (Tmp1.getNode())
730 ReplaceNode(SDValue(Node, 0), Tmp1);
731 break;
732 case TargetLowering::Promote: {
733 assert(VT.isVector() && "Unknown legal promote case!");
734 Tmp3 = DAG.getNode(ISD::BITCAST, dl,
735 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
736 SDValue Result =
737 DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
738 ST->getPointerInfo(), isVolatile,
739 isNonTemporal, Alignment);
740 ReplaceNode(SDValue(Node, 0), Result);
741 break;
742 }
743 }
744 return;
745 }
746 } else {
747 SDValue Tmp3 = ST->getValue();
748
749 EVT StVT = ST->getMemoryVT();
750 unsigned StWidth = StVT.getSizeInBits();
751
752 if (StWidth != StVT.getStoreSizeInBits()) {
753 // Promote to a byte-sized store with upper bits zero if not
754 // storing an integral number of bytes. For example, promote
755 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
756 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
757 StVT.getStoreSizeInBits());
758 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
759 SDValue Result =
760 DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
761 NVT, isVolatile, isNonTemporal, Alignment);
762 ReplaceNode(SDValue(Node, 0), Result);
763 } else if (StWidth & (StWidth - 1)) {
764 // If not storing a power-of-2 number of bits, expand as two stores.
765 assert(!StVT.isVector() && "Unsupported truncstore!");
766 unsigned RoundWidth = 1 << Log2_32(StWidth);
767 assert(RoundWidth < StWidth);
768 unsigned ExtraWidth = StWidth - RoundWidth;
769 assert(ExtraWidth < RoundWidth);
770 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
771 "Store size not an integral number of bytes!");
772 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
773 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
774 SDValue Lo, Hi;
775 unsigned IncrementSize;
776
777 if (TLI.isLittleEndian()) {
778 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
779 // Store the bottom RoundWidth bits.
780 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
781 RoundVT,
782 isVolatile, isNonTemporal, Alignment);
783
784 // Store the remaining ExtraWidth bits.
785 IncrementSize = RoundWidth / 8;
786 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
787 DAG.getIntPtrConstant(IncrementSize));
788 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
789 DAG.getConstant(RoundWidth,
790 TLI.getShiftAmountTy(Tmp3.getValueType())));
791 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2,
792 ST->getPointerInfo().getWithOffset(IncrementSize),
793 ExtraVT, isVolatile, isNonTemporal,
794 MinAlign(Alignment, IncrementSize));
795 } else {
796 // Big endian - avoid unaligned stores.
797 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
798 // Store the top RoundWidth bits.
799 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
800 DAG.getConstant(ExtraWidth,
801 TLI.getShiftAmountTy(Tmp3.getValueType())));
802 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getPointerInfo(),
803 RoundVT, isVolatile, isNonTemporal, Alignment);
804
805 // Store the remaining ExtraWidth bits.
806 IncrementSize = RoundWidth / 8;
807 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
808 DAG.getIntPtrConstant(IncrementSize));
809 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2,
810 ST->getPointerInfo().getWithOffset(IncrementSize),
811 ExtraVT, isVolatile, isNonTemporal,
812 MinAlign(Alignment, IncrementSize));
813 }
814
815 // The order of the stores doesn't matter.
816 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
817 ReplaceNode(SDValue(Node, 0), Result);
818 } else {
819 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
820 default: llvm_unreachable("This action is not supported yet!");
821 case TargetLowering::Legal:
822 // If this is an unaligned store and the target doesn't support it,
823 // expand it.
824 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
825 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
826 unsigned ABIAlignment= TLI.getTargetData()->getABITypeAlignment(Ty);
827 if (ST->getAlignment() < ABIAlignment)
828 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
829 }
830 break;
831 case TargetLowering::Custom:
832 Tmp1 = TLI.LowerOperation(SDValue(Node, 0), DAG);
833 if (Tmp1.getNode())
834 ReplaceNode(SDValue(Node, 0), Tmp1);
835 break;
836 case TargetLowering::Expand:
837 assert(!StVT.isVector() &&
838 "Vector Stores are handled in LegalizeVectorOps");
839
840 // TRUNCSTORE:i16 i32 -> STORE i16
841 assert(TLI.isTypeLegal(StVT) && "Do not know how to expand this store!");
842 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
843 SDValue Result =
844 DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(),
845 isVolatile, isNonTemporal, Alignment);
846 ReplaceNode(SDValue(Node, 0), Result);
847 break;
848 }
849 }
850 }
851}
852
853void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
854 LoadSDNode *LD = cast<LoadSDNode>(Node);
855 SDValue Tmp1 = LD->getChain(); // Legalize the chain.
856 SDValue Tmp2 = LD->getBasePtr(); // Legalize the base pointer.
857 DebugLoc dl = Node->getDebugLoc();
858
859 ISD::LoadExtType ExtType = LD->getExtensionType();
860 if (ExtType == ISD::NON_EXTLOAD) {
861 EVT VT = Node->getValueType(0);
862 SDValue Tmp3 = SDValue(Node, 0);
863 SDValue Tmp4 = SDValue(Node, 1);
864
865 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
866 default: llvm_unreachable("This action is not supported yet!");
867 case TargetLowering::Legal:
868 // If this is an unaligned load and the target doesn't support it,
869 // expand it.
870 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
871 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
872 unsigned ABIAlignment = TLI.getTargetData()->getABITypeAlignment(Ty);
873 if (LD->getAlignment() < ABIAlignment){
874 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
875 DAG, TLI, Tmp3, Tmp4);
876 }
877 }
878 break;
879 case TargetLowering::Custom:
880 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
881 if (Tmp1.getNode()) {
882 Tmp3 = Tmp1;
883 Tmp4 = Tmp1.getValue(1);
884 }
885 break;
886 case TargetLowering::Promote: {
887 // Only promote a load of vector type to another.
888 assert(VT.isVector() && "Cannot promote this load!");
889 // Change base type to a different vector type.
890 EVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
891
892 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getPointerInfo(),
893 LD->isVolatile(), LD->isNonTemporal(),
894 LD->isInvariant(), LD->getAlignment());
895 Tmp3 = DAG.getNode(ISD::BITCAST, dl, VT, Tmp1);
896 Tmp4 = Tmp1.getValue(1);
897 break;
898 }
899 }
900 if (Tmp4.getNode() != Node) {
901 assert(Tmp3.getNode() != Node && "Load must be completely replaced");
902 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp3);
903 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Tmp4);
904 ReplacedNode(Node);
905 }
906 return;
907 }
908
909 EVT SrcVT = LD->getMemoryVT();
910 unsigned SrcWidth = SrcVT.getSizeInBits();
911 unsigned Alignment = LD->getAlignment();
912 bool isVolatile = LD->isVolatile();
913 bool isNonTemporal = LD->isNonTemporal();
914
915 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
916 // Some targets pretend to have an i1 loading operation, and actually
917 // load an i8. This trick is correct for ZEXTLOAD because the top 7
918 // bits are guaranteed to be zero; it helps the optimizers understand
919 // that these bits are zero. It is also useful for EXTLOAD, since it
920 // tells the optimizers that those bits are undefined. It would be
921 // nice to have an effective generic way of getting these benefits...
922 // Until such a way is found, don't insist on promoting i1 here.
923 (SrcVT != MVT::i1 ||
924 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
925 // Promote to a byte-sized load if not loading an integral number of
926 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
927 unsigned NewWidth = SrcVT.getStoreSizeInBits();
928 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
929 SDValue Ch;
930
931 // The extra bits are guaranteed to be zero, since we stored them that
932 // way. A zext load from NVT thus automatically gives zext from SrcVT.
933
934 ISD::LoadExtType NewExtType =
935 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
936
937 SDValue Result =
938 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
939 Tmp1, Tmp2, LD->getPointerInfo(),
940 NVT, isVolatile, isNonTemporal, Alignment);
941
942 Ch = Result.getValue(1); // The chain.
943
944 if (ExtType == ISD::SEXTLOAD)
945 // Having the top bits zero doesn't help when sign extending.
946 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
947 Result.getValueType(),
948 Result, DAG.getValueType(SrcVT));
949 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
950 // All the top bits are guaranteed to be zero - inform the optimizers.
951 Result = DAG.getNode(ISD::AssertZext, dl,
952 Result.getValueType(), Result,
953 DAG.getValueType(SrcVT));
954
955 Tmp1 = Result;
956 Tmp2 = Ch;
957 } else if (SrcWidth & (SrcWidth - 1)) {
958 // If not loading a power-of-2 number of bits, expand as two loads.
959 assert(!SrcVT.isVector() && "Unsupported extload!");
960 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
961 assert(RoundWidth < SrcWidth);
962 unsigned ExtraWidth = SrcWidth - RoundWidth;
963 assert(ExtraWidth < RoundWidth);
964 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
965 "Load size not an integral number of bytes!");
966 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
967 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
968 SDValue Lo, Hi, Ch;
969 unsigned IncrementSize;
970
971 if (TLI.isLittleEndian()) {
972 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
973 // Load the bottom RoundWidth bits.
974 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
975 Tmp1, Tmp2,
976 LD->getPointerInfo(), RoundVT, isVolatile,
977 isNonTemporal, Alignment);
978
979 // Load the remaining ExtraWidth bits.
980 IncrementSize = RoundWidth / 8;
981 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
982 DAG.getIntPtrConstant(IncrementSize));
983 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
984 LD->getPointerInfo().getWithOffset(IncrementSize),
985 ExtraVT, isVolatile, isNonTemporal,
986 MinAlign(Alignment, IncrementSize));
987
988 // Build a factor node to remember that this load is independent of
989 // the other one.
990 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
991 Hi.getValue(1));
992
993 // Move the top bits to the right place.
994 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
995 DAG.getConstant(RoundWidth,
996 TLI.getShiftAmountTy(Hi.getValueType())));
997
998 // Join the hi and lo parts.
999 Tmp1 = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
1000 } else {
1001 // Big endian - avoid unaligned loads.
1002 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1003 // Load the top RoundWidth bits.
1004 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
1005 LD->getPointerInfo(), RoundVT, isVolatile,
1006 isNonTemporal, Alignment);
1007
1008 // Load the remaining ExtraWidth bits.
1009 IncrementSize = RoundWidth / 8;
1010 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
1011 DAG.getIntPtrConstant(IncrementSize));
1012 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
1013 dl, Node->getValueType(0), Tmp1, Tmp2,
1014 LD->getPointerInfo().getWithOffset(IncrementSize),
1015 ExtraVT, isVolatile, isNonTemporal,
1016 MinAlign(Alignment, IncrementSize));
1017
1018 // Build a factor node to remember that this load is independent of
1019 // the other one.
1020 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1021 Hi.getValue(1));
1022
1023 // Move the top bits to the right place.
1024 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1025 DAG.getConstant(ExtraWidth,
1026 TLI.getShiftAmountTy(Hi.getValueType())));
1027
1028 // Join the hi and lo parts.
1029 Tmp1 = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
1030 }
1031
1032 Tmp2 = Ch;
1033 } else {
1034 bool isCustom = false;
1035 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
1036 default: llvm_unreachable("This action is not supported yet!");
1037 case TargetLowering::Custom:
1038 isCustom = true;
1039 // FALLTHROUGH
1040 case TargetLowering::Legal:
1041 Tmp1 = SDValue(Node, 0);
1042 Tmp2 = SDValue(Node, 1);
1043
1044 if (isCustom) {
1045 SDValue Tmp3 = TLI.LowerOperation(SDValue(Node, 0), DAG);
1046 if (Tmp3.getNode()) {
1047 Tmp1 = Tmp3;
1048 Tmp2 = Tmp3.getValue(1);
1049 }
1050 } else {
1051 // If this is an unaligned load and the target doesn't support it,
1052 // expand it.
1053 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
1054 Type *Ty =
1055 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1056 unsigned ABIAlignment =
1057 TLI.getTargetData()->getABITypeAlignment(Ty);
1058 if (LD->getAlignment() < ABIAlignment){
1059 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
1060 DAG, TLI, Tmp1, Tmp2);
1061 }
1062 }
1063 }
1064 break;
1065 case TargetLowering::Expand:
1066 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) && TLI.isTypeLegal(SrcVT)) {
1067 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2,
1068 LD->getPointerInfo(),
1069 LD->isVolatile(), LD->isNonTemporal(),
1070 LD->isInvariant(), LD->getAlignment());
1071 unsigned ExtendOp;
1072 switch (ExtType) {
1073 case ISD::EXTLOAD:
1074 ExtendOp = (SrcVT.isFloatingPoint() ?
1075 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1076 break;
1077 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1078 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1079 default: llvm_unreachable("Unexpected extend load type!");
1080 }
1081 Tmp1 = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1082 Tmp2 = Load.getValue(1);
1083 break;
1084 }
1085
1086 assert(!SrcVT.isVector() &&
1087 "Vector Loads are handled in LegalizeVectorOps");
1088
1089 // FIXME: This does not work for vectors on most targets. Sign- and
1090 // zero-extend operations are currently folded into extending loads,
1091 // whether they are legal or not, and then we end up here without any
1092 // support for legalizing them.
1093 assert(ExtType != ISD::EXTLOAD &&
1094 "EXTLOAD should always be supported!");
1095 // Turn the unsupported load into an EXTLOAD followed by an explicit
1096 // zero/sign extend inreg.
1097 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
1098 Tmp1, Tmp2, LD->getPointerInfo(), SrcVT,
1099 LD->isVolatile(), LD->isNonTemporal(),
1100 LD->getAlignment());
1101 SDValue ValRes;
1102 if (ExtType == ISD::SEXTLOAD)
1103 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1104 Result.getValueType(),
1105 Result, DAG.getValueType(SrcVT));
1106 else
1107 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
1108 Tmp1 = ValRes;
1109 Tmp2 = Result.getValue(1);
1110 break;
1111 }
1112 }
1113
1114 // Since loads produce two values, make sure to remember that we legalized
1115 // both of them.
1116 if (Tmp2.getNode() != Node) {
1117 assert(Tmp1.getNode() != Node && "Load must be completely replaced");
1118 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp1);
1119 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Tmp2);
1120 ReplacedNode(Node);
1121 }
1122}
1123
Dan Gohman6a109f92011-07-15 21:42:20 +00001124/// LegalizeOp - Return a legal replacement for the given operation, with
1125/// all legal operands.
Dan Gohman65fd6562011-11-03 21:49:52 +00001126void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1127 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1128 return;
Scott Michelfdc40a02009-02-17 22:15:04 +00001129
Dale Johannesen7d2ad622009-01-30 23:10:59 +00001130 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +00001131
Eli Friedman1fde9c52009-05-24 02:46:31 +00001132 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001133 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1134 TargetLowering::TypeLegal &&
Eli Friedman1fde9c52009-05-24 02:46:31 +00001135 "Unexpected illegal type!");
1136
1137 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001138 assert((TLI.getTypeAction(*DAG.getContext(),
1139 Node->getOperand(i).getValueType()) ==
1140 TargetLowering::TypeLegal ||
Eli Friedman1fde9c52009-05-24 02:46:31 +00001141 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1142 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001143
Dan Gohman475871a2008-07-27 21:46:04 +00001144 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001145
Eli Friedman8c377c72009-05-27 01:25:56 +00001146 // Figure out the correct action; the way to query this varies by opcode
Bill Wendling6b9a2932011-01-26 22:21:35 +00001147 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman8c377c72009-05-27 01:25:56 +00001148 bool SimpleFinishLegalizing = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001149 switch (Node->getOpcode()) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001150 case ISD::INTRINSIC_W_CHAIN:
1151 case ISD::INTRINSIC_WO_CHAIN:
1152 case ISD::INTRINSIC_VOID:
Eli Friedman8c377c72009-05-27 01:25:56 +00001153 case ISD::STACKSAVE:
Owen Anderson825b72b2009-08-11 20:47:22 +00001154 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman8c377c72009-05-27 01:25:56 +00001155 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00001156 case ISD::VAARG:
1157 Action = TLI.getOperationAction(Node->getOpcode(),
1158 Node->getValueType(0));
1159 if (Action != TargetLowering::Promote)
1160 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1161 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001162 case ISD::SINT_TO_FP:
1163 case ISD::UINT_TO_FP:
1164 case ISD::EXTRACT_VECTOR_ELT:
1165 Action = TLI.getOperationAction(Node->getOpcode(),
1166 Node->getOperand(0).getValueType());
1167 break;
1168 case ISD::FP_ROUND_INREG:
1169 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00001170 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00001171 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1172 break;
1173 }
Eli Friedman327236c2011-08-24 20:50:09 +00001174 case ISD::ATOMIC_STORE: {
1175 Action = TLI.getOperationAction(Node->getOpcode(),
1176 Node->getOperand(2).getValueType());
1177 break;
1178 }
Eli Friedman3be2e512009-05-28 03:06:16 +00001179 case ISD::SELECT_CC:
1180 case ISD::SETCC:
1181 case ISD::BR_CC: {
1182 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1183 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1184 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Owen Andersone50ed302009-08-10 22:56:29 +00001185 EVT OpVT = Node->getOperand(CompareOperand).getValueType();
Eli Friedman3be2e512009-05-28 03:06:16 +00001186 ISD::CondCode CCCode =
1187 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1188 Action = TLI.getCondCodeAction(CCCode, OpVT);
1189 if (Action == TargetLowering::Legal) {
1190 if (Node->getOpcode() == ISD::SELECT_CC)
1191 Action = TLI.getOperationAction(Node->getOpcode(),
1192 Node->getValueType(0));
1193 else
1194 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1195 }
1196 break;
1197 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001198 case ISD::LOAD:
1199 case ISD::STORE:
Eli Friedmanad754602009-05-28 03:56:57 +00001200 // FIXME: Model these properly. LOAD and STORE are complicated, and
1201 // STORE expects the unlegalized operand in some cases.
1202 SimpleFinishLegalizing = false;
1203 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001204 case ISD::CALLSEQ_START:
1205 case ISD::CALLSEQ_END:
Eli Friedmanad754602009-05-28 03:56:57 +00001206 // FIXME: This shouldn't be necessary. These nodes have special properties
1207 // dealing with the recursive nature of legalization. Removing this
1208 // special case should be done as part of making LegalizeDAG non-recursive.
1209 SimpleFinishLegalizing = false;
1210 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001211 case ISD::EXTRACT_ELEMENT:
1212 case ISD::FLT_ROUNDS_:
1213 case ISD::SADDO:
1214 case ISD::SSUBO:
1215 case ISD::UADDO:
1216 case ISD::USUBO:
1217 case ISD::SMULO:
1218 case ISD::UMULO:
1219 case ISD::FPOWI:
1220 case ISD::MERGE_VALUES:
1221 case ISD::EH_RETURN:
1222 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00001223 case ISD::EH_SJLJ_SETJMP:
1224 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001225 // These operations lie about being legal: when they claim to be legal,
1226 // they should actually be expanded.
Eli Friedman8c377c72009-05-27 01:25:56 +00001227 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1228 if (Action == TargetLowering::Legal)
1229 Action = TargetLowering::Expand;
1230 break;
Duncan Sands4a544a72011-09-06 13:37:06 +00001231 case ISD::INIT_TRAMPOLINE:
1232 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman8c377c72009-05-27 01:25:56 +00001233 case ISD::FRAMEADDR:
1234 case ISD::RETURNADDR:
Eli Friedman4bc8c712009-05-27 12:20:41 +00001235 // These operations lie about being legal: when they claim to be legal,
1236 // they should actually be custom-lowered.
1237 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1238 if (Action == TargetLowering::Legal)
1239 Action = TargetLowering::Custom;
Eli Friedman8c377c72009-05-27 01:25:56 +00001240 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001241 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001242 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001243 Action = TargetLowering::Legal;
1244 } else {
1245 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001246 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001247 break;
1248 }
1249
1250 if (SimpleFinishLegalizing) {
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001251 SDNode *NewNode = Node;
Eli Friedman8c377c72009-05-27 01:25:56 +00001252 switch (Node->getOpcode()) {
1253 default: break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001254 case ISD::SHL:
1255 case ISD::SRL:
1256 case ISD::SRA:
1257 case ISD::ROTL:
1258 case ISD::ROTR:
1259 // Legalizing shifts/rotates requires adjusting the shift amount
1260 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001261 if (!Node->getOperand(1).getValueType().isVector()) {
1262 SDValue SAO =
1263 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1264 Node->getOperand(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00001265 HandleSDNode Handle(SAO);
1266 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001267 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1268 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001269 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001270 break;
Dan Gohmandb8dc2b2009-08-18 23:36:17 +00001271 case ISD::SRL_PARTS:
1272 case ISD::SRA_PARTS:
1273 case ISD::SHL_PARTS:
1274 // Legalizing shifts/rotates requires adjusting the shift amount
1275 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001276 if (!Node->getOperand(2).getValueType().isVector()) {
1277 SDValue SAO =
1278 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1279 Node->getOperand(2));
Dan Gohman65fd6562011-11-03 21:49:52 +00001280 HandleSDNode Handle(SAO);
1281 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001282 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1283 Node->getOperand(1),
1284 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001285 }
Dan Gohman2c9489d2009-08-18 23:52:48 +00001286 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001287 }
1288
Dan Gohman65fd6562011-11-03 21:49:52 +00001289 if (NewNode != Node) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001290 DAG.ReplaceAllUsesWith(Node, NewNode);
Dan Gohman65fd6562011-11-03 21:49:52 +00001291 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1292 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman0e3642a2011-11-11 23:58:27 +00001293 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001294 Node = NewNode;
1295 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001296 switch (Action) {
1297 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +00001298 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001299 case TargetLowering::Custom:
1300 // FIXME: The handling for custom lowering with multiple results is
1301 // a complete mess.
Dan Gohman65fd6562011-11-03 21:49:52 +00001302 Tmp1 = TLI.LowerOperation(SDValue(Node, 0), DAG);
Eli Friedman8c377c72009-05-27 01:25:56 +00001303 if (Tmp1.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001304 SmallVector<SDValue, 8> ResultVals;
Eli Friedman8c377c72009-05-27 01:25:56 +00001305 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1306 if (e == 1)
1307 ResultVals.push_back(Tmp1);
1308 else
1309 ResultVals.push_back(Tmp1.getValue(i));
1310 }
Dan Gohman65fd6562011-11-03 21:49:52 +00001311 if (Tmp1.getNode() != Node || Tmp1.getResNo() != 0) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001312 DAG.ReplaceAllUsesWith(Node, ResultVals.data());
Dan Gohman65fd6562011-11-03 21:49:52 +00001313 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1314 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001315 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001316 }
1317 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001318 }
1319
1320 // FALL THROUGH
1321 case TargetLowering::Expand:
Dan Gohman65fd6562011-11-03 21:49:52 +00001322 ExpandNode(Node);
1323 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001324 case TargetLowering::Promote:
Dan Gohman65fd6562011-11-03 21:49:52 +00001325 PromoteNode(Node);
1326 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001327 }
1328 }
1329
1330 switch (Node->getOpcode()) {
1331 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001332#ifndef NDEBUG
David Greene993aace2010-01-05 01:24:53 +00001333 dbgs() << "NODE: ";
1334 Node->dump( &DAG);
1335 dbgs() << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001336#endif
Craig Topper5e25ee82012-02-05 08:31:47 +00001337 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001338
Dan Gohman65fd6562011-11-03 21:49:52 +00001339 case ISD::CALLSEQ_START:
Dan Gohman6f3ddef2011-10-29 00:41:52 +00001340 case ISD::CALLSEQ_END:
Dan Gohman65fd6562011-11-03 21:49:52 +00001341 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001342 case ISD::LOAD: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001343 return LegalizeLoadOps(Node);
Chris Lattner01ff7212005-04-10 22:54:25 +00001344 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001345 case ISD::STORE: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001346 return LegalizeStoreOps(Node);
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001347 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001348 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001349}
1350
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001351SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1352 SDValue Vec = Op.getOperand(0);
1353 SDValue Idx = Op.getOperand(1);
1354 DebugLoc dl = Op.getDebugLoc();
1355 // Store the value to a temporary stack slot, then LOAD the returned part.
1356 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Chris Lattner6229d0a2010-09-21 18:41:36 +00001357 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1358 MachinePointerInfo(), false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001359
1360 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001361 unsigned EltSize =
1362 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001363 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1364 DAG.getConstant(EltSize, Idx.getValueType()));
1365
1366 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1367 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1368 else
1369 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1370
1371 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1372
Eli Friedmanc680ac92009-07-09 22:01:03 +00001373 if (Op.getValueType().isVector())
Chris Lattnerecf42c42010-09-21 16:36:31 +00001374 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001375 false, false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00001376 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001377 MachinePointerInfo(),
1378 Vec.getValueType().getVectorElementType(),
1379 false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001380}
1381
David Greenecfe33c42011-01-26 19:13:22 +00001382SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1383 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1384
1385 SDValue Vec = Op.getOperand(0);
1386 SDValue Part = Op.getOperand(1);
1387 SDValue Idx = Op.getOperand(2);
1388 DebugLoc dl = Op.getDebugLoc();
1389
1390 // Store the value to a temporary stack slot, then LOAD the returned part.
1391
1392 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1393 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1394 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1395
1396 // First store the whole vector.
1397 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1398 false, false, 0);
1399
1400 // Then store the inserted part.
1401
1402 // Add the offset to the index.
1403 unsigned EltSize =
1404 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1405
1406 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1407 DAG.getConstant(EltSize, Idx.getValueType()));
1408
1409 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1410 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1411 else
1412 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1413
1414 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1415 StackPtr);
1416
1417 // Store the subvector.
1418 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1419 MachinePointerInfo(), false, false, 0);
1420
1421 // Finally, load the updated vector.
1422 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001423 false, false, false, 0);
David Greenecfe33c42011-01-26 19:13:22 +00001424}
1425
Eli Friedman7ef3d172009-06-06 07:04:42 +00001426SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1427 // We can't handle this case efficiently. Allocate a sufficiently
1428 // aligned object on the stack, store each element into it, then load
1429 // the result as a vector.
1430 // Create the stack frame object.
Owen Andersone50ed302009-08-10 22:56:29 +00001431 EVT VT = Node->getValueType(0);
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001432 EVT EltVT = VT.getVectorElementType();
Eli Friedman7ef3d172009-06-06 07:04:42 +00001433 DebugLoc dl = Node->getDebugLoc();
1434 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Chengff89dcb2009-10-18 18:16:27 +00001435 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattnerecf42c42010-09-21 16:36:31 +00001436 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001437
1438 // Emit a store of each element to the stack slot.
1439 SmallVector<SDValue, 8> Stores;
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001440 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedman7ef3d172009-06-06 07:04:42 +00001441 // Store (in the right endianness) the elements to memory.
1442 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1443 // Ignore undef elements.
1444 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1445
1446 unsigned Offset = TypeByteSize*i;
1447
1448 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1449 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1450
Dan Gohman9949dd62010-02-25 20:30:49 +00001451 // If the destination vector element type is narrower than the source
1452 // element type, only store the bits necessary.
1453 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001454 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001455 Node->getOperand(i), Idx,
1456 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001457 EltVT, false, false, 0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00001458 } else
Jim Grosbach6e992612010-07-02 17:41:59 +00001459 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001460 Node->getOperand(i), Idx,
1461 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001462 false, false, 0));
Eli Friedman7ef3d172009-06-06 07:04:42 +00001463 }
1464
1465 SDValue StoreChain;
1466 if (!Stores.empty()) // Not all undef elements?
Owen Anderson825b72b2009-08-11 20:47:22 +00001467 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedman7ef3d172009-06-06 07:04:42 +00001468 &Stores[0], Stores.size());
1469 else
1470 StoreChain = DAG.getEntryNode();
1471
1472 // Result is a load from the stack slot.
Pete Cooperd752e0f2011-11-08 18:42:53 +00001473 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
1474 false, false, false, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001475}
1476
Eli Friedman4bc8c712009-05-27 12:20:41 +00001477SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
1478 DebugLoc dl = Node->getDebugLoc();
1479 SDValue Tmp1 = Node->getOperand(0);
1480 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands5d54b412010-03-12 11:45:06 +00001481
1482 // Get the sign bit of the RHS. First obtain a value that has the same
1483 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001484 SDValue SignBit;
Duncan Sands5d54b412010-03-12 11:45:06 +00001485 EVT FloatVT = Tmp2.getValueType();
1486 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohman75b10042011-07-15 22:39:09 +00001487 if (TLI.isTypeLegal(IVT)) {
Duncan Sands5d54b412010-03-12 11:45:06 +00001488 // Convert to an integer with the same sign bit.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001489 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001490 } else {
Duncan Sands5d54b412010-03-12 11:45:06 +00001491 // Store the float to memory, then load the sign part out as an integer.
1492 MVT LoadTy = TLI.getPointerTy();
1493 // First create a temporary that is aligned for both the load and store.
1494 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1495 // Then store the float to it.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001496 SDValue Ch =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001497 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00001498 false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001499 if (TLI.isBigEndian()) {
1500 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1501 // Load out a legal integer with the same sign bit as the float.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001502 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001503 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001504 } else { // Little endian
1505 SDValue LoadPtr = StackPtr;
1506 // The float may be wider than the integer we are going to load. Advance
1507 // the pointer so that the loaded integer will contain the sign bit.
1508 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1509 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1510 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(),
1511 LoadPtr, DAG.getIntPtrConstant(ByteOffset));
1512 // Load a legal integer containing the sign bit.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001513 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001514 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001515 // Move the sign bit to the top bit of the loaded integer.
1516 unsigned BitShift = LoadTy.getSizeInBits() -
1517 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1518 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1519 if (BitShift)
1520 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Anderson95771af2011-02-25 21:41:48 +00001521 DAG.getConstant(BitShift,
1522 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands5d54b412010-03-12 11:45:06 +00001523 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00001524 }
Duncan Sands5d54b412010-03-12 11:45:06 +00001525 // Now get the sign bit proper, by seeing whether the value is negative.
1526 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(SignBit.getValueType()),
1527 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1528 ISD::SETLT);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001529 // Get the absolute value of the result.
1530 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1531 // Select between the nabs and abs value based on the sign bit of
1532 // the input.
1533 return DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
1534 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1535 AbsVal);
1536}
1537
Eli Friedman4bc8c712009-05-27 12:20:41 +00001538void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1539 SmallVectorImpl<SDValue> &Results) {
1540 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1541 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1542 " not tell us which reg is the stack pointer!");
1543 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001544 EVT VT = Node->getValueType(0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001545 SDValue Tmp1 = SDValue(Node, 0);
1546 SDValue Tmp2 = SDValue(Node, 1);
1547 SDValue Tmp3 = Node->getOperand(2);
1548 SDValue Chain = Tmp1.getOperand(0);
1549
1550 // Chain the dynamic stack allocation so that it doesn't modify the stack
1551 // pointer when other instructions are using the stack.
1552 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
1553
1554 SDValue Size = Tmp2.getOperand(1);
1555 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1556 Chain = SP.getValue(1);
1557 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001558 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman4bc8c712009-05-27 12:20:41 +00001559 if (Align > StackAlign)
1560 SP = DAG.getNode(ISD::AND, dl, VT, SP,
1561 DAG.getConstant(-(uint64_t)Align, VT));
1562 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
1563 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1564
1565 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1566 DAG.getIntPtrConstant(0, true), SDValue());
1567
1568 Results.push_back(Tmp1);
1569 Results.push_back(Tmp2);
1570}
1571
Evan Cheng7f042682008-10-15 02:05:31 +00001572/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Dan Gohmanf77fc922009-10-17 01:37:38 +00001573/// condition code CC on the current target. This routine expands SETCC with
Evan Cheng7f042682008-10-15 02:05:31 +00001574/// illegal condition code into AND / OR of multiple SETCC values.
Owen Andersone50ed302009-08-10 22:56:29 +00001575void SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng7f042682008-10-15 02:05:31 +00001576 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00001577 SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +00001578 DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00001579 EVT OpVT = LHS.getValueType();
Evan Cheng7f042682008-10-15 02:05:31 +00001580 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
1581 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001582 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng7f042682008-10-15 02:05:31 +00001583 case TargetLowering::Legal:
1584 // Nothing to do.
1585 break;
1586 case TargetLowering::Expand: {
1587 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1588 unsigned Opc = 0;
1589 switch (CCCode) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001590 default: llvm_unreachable("Don't know how to expand this condition!");
Dan Gohmane7d238e2008-10-21 03:12:54 +00001591 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
1592 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
1593 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
1594 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
1595 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
1596 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
1597 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1598 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1599 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1600 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1601 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
1602 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00001603 // FIXME: Implement more expansions.
1604 }
1605
Dale Johannesenbb5da912009-02-02 20:41:04 +00001606 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1607 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1608 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00001609 RHS = SDValue();
1610 CC = SDValue();
1611 break;
1612 }
1613 }
1614}
1615
Chris Lattner1401d152008-01-16 07:45:30 +00001616/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1617/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1618/// a load from the stack slot to DestVT, extending it if needed.
1619/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001620SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Andersone50ed302009-08-10 22:56:29 +00001621 EVT SlotVT,
1622 EVT DestVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00001623 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00001624 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001625 unsigned SrcAlign =
1626 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson23b9b192009-08-12 00:36:31 +00001627 getTypeForEVT(*DAG.getContext()));
Dan Gohman475871a2008-07-27 21:46:04 +00001628 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001629
Evan Chengff89dcb2009-10-18 18:16:27 +00001630 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1631 int SPFI = StackPtrFI->getIndex();
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001632 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Chengff89dcb2009-10-18 18:16:27 +00001633
Duncan Sands83ec4b62008-06-06 12:08:01 +00001634 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1635 unsigned SlotSize = SlotVT.getSizeInBits();
1636 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001637 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Evan Chengadf97992010-04-15 01:25:27 +00001638 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(DestType);
Scott Michelfdc40a02009-02-17 22:15:04 +00001639
Chris Lattner1401d152008-01-16 07:45:30 +00001640 // Emit a store to the stack slot. Use a truncstore if the input value is
1641 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00001642 SDValue Store;
Evan Chengff89dcb2009-10-18 18:16:27 +00001643
Chris Lattner1401d152008-01-16 07:45:30 +00001644 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00001645 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001646 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001647 else {
1648 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00001649 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001650 PtrInfo, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001651 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001652
Chris Lattner35481892005-12-23 00:16:34 +00001653 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00001654 if (SlotSize == DestSize)
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001655 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001656 false, false, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001657
Chris Lattner1401d152008-01-16 07:45:30 +00001658 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastingsa9011292011-02-16 16:23:55 +00001659 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001660 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00001661}
1662
Dan Gohman475871a2008-07-27 21:46:04 +00001663SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00001664 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00001665 // Create a vector sized/aligned stack slot, store the value to element #0,
1666 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00001667 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00001668
Evan Chengff89dcb2009-10-18 18:16:27 +00001669 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1670 int SPFI = StackPtrFI->getIndex();
1671
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001672 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1673 StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001674 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +00001675 Node->getValueType(0).getVectorElementType(),
1676 false, false, 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00001677 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001678 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001679 false, false, false, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001680}
1681
1682
Chris Lattnerce872152006-03-19 06:31:19 +00001683/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00001684/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00001685SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001686 unsigned NumElems = Node->getNumOperands();
Eli Friedman7a5e5552009-06-07 06:52:44 +00001687 SDValue Value1, Value2;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001688 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001689 EVT VT = Node->getValueType(0);
1690 EVT OpVT = Node->getOperand(0).getValueType();
1691 EVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001692
1693 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00001694 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00001695 bool isOnlyLowElement = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001696 bool MoreThanTwoValues = false;
Chris Lattner2eb86532006-03-24 07:29:17 +00001697 bool isConstant = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001698 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001699 SDValue V = Node->getOperand(i);
Eli Friedman7a5e5552009-06-07 06:52:44 +00001700 if (V.getOpcode() == ISD::UNDEF)
1701 continue;
1702 if (i > 0)
Chris Lattnerce872152006-03-19 06:31:19 +00001703 isOnlyLowElement = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001704 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner2eb86532006-03-24 07:29:17 +00001705 isConstant = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001706
1707 if (!Value1.getNode()) {
1708 Value1 = V;
1709 } else if (!Value2.getNode()) {
1710 if (V != Value1)
1711 Value2 = V;
1712 } else if (V != Value1 && V != Value2) {
1713 MoreThanTwoValues = true;
1714 }
Chris Lattnerce872152006-03-19 06:31:19 +00001715 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001716
Eli Friedman7a5e5552009-06-07 06:52:44 +00001717 if (!Value1.getNode())
1718 return DAG.getUNDEF(VT);
1719
1720 if (isOnlyLowElement)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001721 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001722
Chris Lattner2eb86532006-03-24 07:29:17 +00001723 // If all elements are constants, create a load from the constant pool.
1724 if (isConstant) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001725 SmallVector<Constant*, 16> CV;
Chris Lattner2eb86532006-03-24 07:29:17 +00001726 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001727 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00001728 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00001729 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001730 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001731 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen9a645cd2009-11-10 23:16:41 +00001732 if (OpVT==EltVT)
1733 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1734 else {
1735 // If OpVT and EltVT don't match, EltVT is not legal and the
1736 // element values have been promoted/truncated earlier. Undo this;
1737 // we don't want a v16i8 to become a v16i32 for example.
1738 const ConstantInt *CI = V->getConstantIntValue();
1739 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1740 CI->getZExtValue()));
1741 }
Chris Lattner2eb86532006-03-24 07:29:17 +00001742 } else {
1743 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001744 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001745 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner2eb86532006-03-24 07:29:17 +00001746 }
1747 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00001748 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00001749 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00001750 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00001751 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00001752 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001753 false, false, false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00001754 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001755
Eli Friedman7a5e5552009-06-07 06:52:44 +00001756 if (!MoreThanTwoValues) {
1757 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1758 for (unsigned i = 0; i < NumElems; ++i) {
1759 SDValue V = Node->getOperand(i);
1760 if (V.getOpcode() == ISD::UNDEF)
1761 continue;
1762 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1763 }
1764 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00001765 // Get the splatted value into the low element of a vector register.
Eli Friedman7a5e5552009-06-07 06:52:44 +00001766 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1767 SDValue Vec2;
1768 if (Value2.getNode())
1769 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1770 else
1771 Vec2 = DAG.getUNDEF(VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001772
Chris Lattner87100e02006-03-20 01:52:29 +00001773 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Eli Friedman7a5e5552009-06-07 06:52:44 +00001774 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
Evan Cheng033e6812006-03-24 01:17:21 +00001775 }
1776 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001777
Eli Friedman7ef3d172009-06-06 07:04:42 +00001778 // Otherwise, we can't handle this case efficiently.
1779 return ExpandVectorBuildThroughStack(Node);
Chris Lattnerce872152006-03-19 06:31:19 +00001780}
1781
Chris Lattner77e77a62005-01-21 06:05:23 +00001782// ExpandLibCall - Expand a node into a call to a libcall. If the result value
1783// does not fit into a register, return the lo part and set the hi part to the
1784// by-reg argument. If it does fit into a single register, return the result
1785// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00001786SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedman47b41f72009-05-27 02:21:29 +00001787 bool isSigned) {
Chris Lattner77e77a62005-01-21 06:05:23 +00001788 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00001789 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00001790 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00001791 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001792 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelfdc40a02009-02-17 22:15:04 +00001793 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00001794 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00001795 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00001796 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00001797 }
Bill Wendling056292f2008-09-16 21:48:12 +00001798 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00001799 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001800
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001801 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Cheng3d2125c2010-11-30 23:55:39 +00001802
Evan Chengbf010eb2012-04-10 01:51:00 +00001803 // By default, the input chain to this libcall is the entry node of the
1804 // function. If the libcall is going to be emitted as a tail call then
1805 // TLI.isUsedByReturnOnly will change it to the right chain if the return
1806 // node which is being folded has a non-entry input chain.
1807 SDValue InChain = DAG.getEntryNode();
1808
Evan Cheng3d2125c2010-11-30 23:55:39 +00001809 // isTailCall may be true since the callee does not reference caller stack
1810 // frame. Check if it's in the right position.
Evan Chengb52ba492012-04-10 03:15:18 +00001811 SDValue TCChain = InChain;
1812 bool isTailCall = isInTailCallPosition(DAG, Node, TCChain, TLI);
1813 if (isTailCall)
1814 InChain = TCChain;
1815
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001816 TargetLowering::
1817 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001818 0, TLI.getLibcallCallingConv(LC), isTailCall,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001819 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Bill Wendling46ada192010-03-02 01:55:18 +00001820 Callee, Args, DAG, Node->getDebugLoc());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001821 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
1822
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00001823
Evan Cheng3d2125c2010-11-30 23:55:39 +00001824 if (!CallInfo.second.getNode())
1825 // It's a tailcall, return the chain (which is the DAG root).
1826 return DAG.getRoot();
1827
Eli Friedman74807f22009-05-26 08:55:52 +00001828 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00001829}
1830
Dan Gohmanf316eb72011-05-16 22:09:53 +00001831/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001832/// and returning a result of type RetVT.
1833SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1834 const SDValue *Ops, unsigned NumOps,
1835 bool isSigned, DebugLoc dl) {
1836 TargetLowering::ArgListTy Args;
1837 Args.reserve(NumOps);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001838
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001839 TargetLowering::ArgListEntry Entry;
1840 for (unsigned i = 0; i != NumOps; ++i) {
1841 Entry.Node = Ops[i];
1842 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1843 Entry.isSExt = isSigned;
1844 Entry.isZExt = !isSigned;
1845 Args.push_back(Entry);
1846 }
1847 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1848 TLI.getPointerTy());
Dan Gohmanf316eb72011-05-16 22:09:53 +00001849
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001850 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001851 TargetLowering::
1852 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1853 false, 0, TLI.getLibcallCallingConv(LC),
1854 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001855 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001856 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001857 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001858
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001859 return CallInfo.first;
1860}
1861
Jim Grosbache03262f2010-06-18 21:43:38 +00001862// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1863// ExpandLibCall except that the first operand is the in-chain.
1864std::pair<SDValue, SDValue>
1865SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1866 SDNode *Node,
1867 bool isSigned) {
Jim Grosbache03262f2010-06-18 21:43:38 +00001868 SDValue InChain = Node->getOperand(0);
1869
1870 TargetLowering::ArgListTy Args;
1871 TargetLowering::ArgListEntry Entry;
1872 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1873 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001874 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001875 Entry.Node = Node->getOperand(i);
1876 Entry.Ty = ArgTy;
1877 Entry.isSExt = isSigned;
1878 Entry.isZExt = !isSigned;
1879 Args.push_back(Entry);
1880 }
1881 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1882 TLI.getPointerTy());
1883
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001884 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001885 TargetLowering::
1886 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001887 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001888 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbache03262f2010-06-18 21:43:38 +00001889 Callee, Args, DAG, Node->getDebugLoc());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001890 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbache03262f2010-06-18 21:43:38 +00001891
Jim Grosbache03262f2010-06-18 21:43:38 +00001892 return CallInfo;
1893}
1894
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001895SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
1896 RTLIB::Libcall Call_F32,
1897 RTLIB::Libcall Call_F64,
1898 RTLIB::Libcall Call_F80,
1899 RTLIB::Libcall Call_PPCF128) {
1900 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001901 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001902 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001903 case MVT::f32: LC = Call_F32; break;
1904 case MVT::f64: LC = Call_F64; break;
1905 case MVT::f80: LC = Call_F80; break;
1906 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001907 }
1908 return ExpandLibCall(LC, Node, false);
1909}
1910
1911SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001912 RTLIB::Libcall Call_I8,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001913 RTLIB::Libcall Call_I16,
1914 RTLIB::Libcall Call_I32,
1915 RTLIB::Libcall Call_I64,
1916 RTLIB::Libcall Call_I128) {
1917 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001918 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001919 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001920 case MVT::i8: LC = Call_I8; break;
1921 case MVT::i16: LC = Call_I16; break;
1922 case MVT::i32: LC = Call_I32; break;
1923 case MVT::i64: LC = Call_I64; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001924 case MVT::i128: LC = Call_I128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001925 }
1926 return ExpandLibCall(LC, Node, isSigned);
1927}
1928
Evan Cheng65279cb2011-04-16 03:08:26 +00001929/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
1930static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
1931 const TargetLowering &TLI) {
Evan Cheng8e23e812011-04-01 00:42:02 +00001932 RTLIB::Libcall LC;
1933 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001934 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng8e23e812011-04-01 00:42:02 +00001935 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
1936 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
1937 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
1938 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
1939 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
1940 }
1941
Evan Cheng65279cb2011-04-16 03:08:26 +00001942 return TLI.getLibcallName(LC) != 0;
1943}
Evan Cheng8e23e812011-04-01 00:42:02 +00001944
Evan Cheng8ef09682012-06-21 05:56:05 +00001945/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Cheng65279cb2011-04-16 03:08:26 +00001946/// needed.
Evan Cheng8ef09682012-06-21 05:56:05 +00001947static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
1948 // The other use might have been replaced with a divrem already.
1949 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Cheng8e23e812011-04-01 00:42:02 +00001950 unsigned OtherOpcode = 0;
Evan Cheng65279cb2011-04-16 03:08:26 +00001951 if (isSigned)
Evan Cheng8e23e812011-04-01 00:42:02 +00001952 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00001953 else
Evan Cheng8e23e812011-04-01 00:42:02 +00001954 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00001955
Evan Cheng8e23e812011-04-01 00:42:02 +00001956 SDValue Op0 = Node->getOperand(0);
1957 SDValue Op1 = Node->getOperand(1);
1958 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
1959 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
1960 SDNode *User = *UI;
1961 if (User == Node)
1962 continue;
Evan Cheng8ef09682012-06-21 05:56:05 +00001963 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Cheng8e23e812011-04-01 00:42:02 +00001964 User->getOperand(0) == Op0 &&
Evan Cheng65279cb2011-04-16 03:08:26 +00001965 User->getOperand(1) == Op1)
1966 return true;
Evan Cheng8e23e812011-04-01 00:42:02 +00001967 }
Evan Cheng65279cb2011-04-16 03:08:26 +00001968 return false;
1969}
Evan Cheng8e23e812011-04-01 00:42:02 +00001970
Evan Cheng65279cb2011-04-16 03:08:26 +00001971/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
1972/// pairs.
1973void
1974SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
1975 SmallVectorImpl<SDValue> &Results) {
1976 unsigned Opcode = Node->getOpcode();
1977 bool isSigned = Opcode == ISD::SDIVREM;
1978
1979 RTLIB::Libcall LC;
1980 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001981 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng65279cb2011-04-16 03:08:26 +00001982 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
1983 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
1984 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
1985 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
1986 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Cheng8e23e812011-04-01 00:42:02 +00001987 }
1988
1989 // The input chain to this libcall is the entry node of the function.
1990 // Legalizing the call will automatically add the previous call to the
1991 // dependence.
1992 SDValue InChain = DAG.getEntryNode();
1993
1994 EVT RetVT = Node->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001995 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00001996
1997 TargetLowering::ArgListTy Args;
1998 TargetLowering::ArgListEntry Entry;
1999 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2000 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002001 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002002 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2003 Entry.isSExt = isSigned;
2004 Entry.isZExt = !isSigned;
2005 Args.push_back(Entry);
2006 }
2007
2008 // Also pass the return address of the remainder.
2009 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2010 Entry.Node = FIPtr;
2011 Entry.Ty = RetTy->getPointerTo();
2012 Entry.isSExt = isSigned;
2013 Entry.isZExt = !isSigned;
2014 Args.push_back(Entry);
2015
2016 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2017 TLI.getPointerTy());
2018
Evan Cheng8e23e812011-04-01 00:42:02 +00002019 DebugLoc dl = Node->getDebugLoc();
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002020 TargetLowering::
2021 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng8e23e812011-04-01 00:42:02 +00002022 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002023 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2024 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002025 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Cheng8e23e812011-04-01 00:42:02 +00002026
Evan Cheng8e23e812011-04-01 00:42:02 +00002027 // Remainder is loaded back from the stack frame.
Dan Gohman65fd6562011-11-03 21:49:52 +00002028 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002029 MachinePointerInfo(), false, false, false, 0);
Evan Cheng65279cb2011-04-16 03:08:26 +00002030 Results.push_back(CallInfo.first);
2031 Results.push_back(Rem);
Evan Cheng8e23e812011-04-01 00:42:02 +00002032}
2033
Chris Lattner22cde6a2006-01-28 08:25:58 +00002034/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2035/// INT_TO_FP operation of the specified operand when the target requests that
2036/// we expand it. At this point, we know that the result and operand types are
2037/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00002038SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2039 SDValue Op0,
Owen Andersone50ed302009-08-10 22:56:29 +00002040 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002041 DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002042 if (Op0.getValueType() == MVT::i32) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002043 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00002044
Chris Lattner23594d42008-01-16 07:03:22 +00002045 // Get the stack frame index of a 8 byte buffer.
Owen Anderson825b72b2009-08-11 20:47:22 +00002046 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00002047
Chris Lattner22cde6a2006-01-28 08:25:58 +00002048 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00002049 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00002050 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00002051 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00002052 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002053 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00002054 if (TLI.isLittleEndian())
2055 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00002056
Chris Lattner22cde6a2006-01-28 08:25:58 +00002057 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00002058 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002059 if (isSigned) {
2060 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson825b72b2009-08-11 20:47:22 +00002061 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2062 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002063 } else {
2064 Op0Mapped = Op0;
2065 }
2066 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00002067 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00002068 Op0Mapped, Lo, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002069 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002070 // initial hi portion of constructed double
Owen Anderson825b72b2009-08-11 20:47:22 +00002071 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002072 // store the hi of the constructed double - biased exponent
Chris Lattner6229d0a2010-09-21 18:41:36 +00002073 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2074 MachinePointerInfo(),
2075 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002076 // load the constructed double
Chris Lattnerecf42c42010-09-21 16:36:31 +00002077 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002078 MachinePointerInfo(), false, false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002079 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00002080 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002081 BitsToDouble(0x4330000080000000ULL) :
2082 BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00002083 MVT::f64);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002084 // subtract the bias
Owen Anderson825b72b2009-08-11 20:47:22 +00002085 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002086 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00002087 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002088 // handle final rounding
Owen Anderson825b72b2009-08-11 20:47:22 +00002089 if (DestVT == MVT::f64) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002090 // do nothing
2091 Result = Sub;
Owen Anderson825b72b2009-08-11 20:47:22 +00002092 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002093 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00002094 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002095 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002096 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002097 }
2098 return Result;
2099 }
2100 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002101 // Code below here assumes !isSigned without checking again.
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002102
2103 // Implementation of unsigned i64 to f64 following the algorithm in
2104 // __floatundidf in compiler_rt. This implementation has the advantage
2105 // of performing rounding correctly, both in the default rounding mode
2106 // and in all alternate rounding modes.
2107 // TODO: Generalize this for use with other types.
2108 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2109 SDValue TwoP52 =
2110 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2111 SDValue TwoP84PlusTwoP52 =
2112 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2113 SDValue TwoP84 =
2114 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2115
2116 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2117 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2118 DAG.getConstant(32, MVT::i64));
2119 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2120 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002121 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2122 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach6e992612010-07-02 17:41:59 +00002123 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2124 TwoP84PlusTwoP52);
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002125 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2126 }
2127
Owen Anderson3a9e7692010-10-05 17:24:05 +00002128 // Implementation of unsigned i64 to f32.
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002129 // TODO: Generalize this for use with other types.
2130 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Anderson3a9e7692010-10-05 17:24:05 +00002131 // For unsigned conversions, convert them to signed conversions using the
2132 // algorithm from the x86_64 __floatundidf in compiler_rt.
2133 if (!isSigned) {
2134 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002135
Owen Anderson95771af2011-02-25 21:41:48 +00002136 SDValue ShiftConst =
2137 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Anderson3a9e7692010-10-05 17:24:05 +00002138 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2139 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2140 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2141 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002142
Owen Anderson3a9e7692010-10-05 17:24:05 +00002143 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2144 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002145
Owen Anderson3a9e7692010-10-05 17:24:05 +00002146 // TODO: This really should be implemented using a branch rather than a
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002147 // select. We happen to get lucky and machinesink does the right
2148 // thing most of the time. This would be a good candidate for a
Owen Anderson3a9e7692010-10-05 17:24:05 +00002149 //pseudo-op, or, even better, for whole-function isel.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002150 SDValue SignBitTest = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002151 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
2152 return DAG.getNode(ISD::SELECT, dl, MVT::f32, SignBitTest, Slow, Fast);
2153 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002154
Owen Anderson3a9e7692010-10-05 17:24:05 +00002155 // Otherwise, implement the fully general conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002156
Jim Grosbach6e992612010-07-02 17:41:59 +00002157 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002158 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2159 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2160 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach6e992612010-07-02 17:41:59 +00002161 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002162 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
2163 SDValue Ne = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2164 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
2165 SDValue Sel = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ne, Or, Op0);
2166 SDValue Ge = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2167 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002168 ISD::SETUGE);
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002169 SDValue Sel2 = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ge, Sel, Op0);
Owen Anderson95771af2011-02-25 21:41:48 +00002170 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002171
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002172 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2173 DAG.getConstant(32, SHVT));
2174 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2175 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2176 SDValue TwoP32 =
2177 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2178 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2179 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2180 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2181 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2182 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2183 DAG.getIntPtrConstant(0));
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002184 }
2185
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002186 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002187
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002188 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
2189 Op0, DAG.getConstant(0, Op0.getValueType()),
2190 ISD::SETLT);
2191 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
2192 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
2193 SignSet, Four, Zero);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002194
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002195 // If the sign bit of the integer is set, the large number will be treated
2196 // as a negative number. To counteract this, the dynamic code adds an
2197 // offset depending on the data type.
2198 uint64_t FF;
2199 switch (Op0.getValueType().getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002200 default: llvm_unreachable("Unsupported integer type!");
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002201 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2202 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2203 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2204 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2205 }
2206 if (TLI.isLittleEndian()) FF <<= 32;
2207 Constant *FudgeFactor = ConstantInt::get(
2208 Type::getInt64Ty(*DAG.getContext()), FF);
2209
2210 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2211 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
2212 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
2213 Alignment = std::min(Alignment, 4u);
2214 SDValue FudgeInReg;
2215 if (DestVT == MVT::f32)
2216 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00002217 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002218 false, false, false, Alignment);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002219 else {
Dan Gohman65fd6562011-11-03 21:49:52 +00002220 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2221 DAG.getEntryNode(), CPIdx,
2222 MachinePointerInfo::getConstantPool(),
2223 MVT::f32, false, false, Alignment);
2224 HandleSDNode Handle(Load);
2225 LegalizeOp(Load.getNode());
2226 FudgeInReg = Handle.getValue();
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002227 }
2228
2229 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002230}
2231
2232/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2233/// *INT_TO_FP operation of the specified operand when the target requests that
2234/// we promote it. At this point, we know that the result and operand types are
2235/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2236/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00002237SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002238 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002239 bool isSigned,
2240 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002241 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002242 EVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002243
2244 unsigned OpToUse = 0;
2245
2246 // Scan for the appropriate larger type to use.
2247 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002248 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002249 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002250
2251 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002252 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2253 OpToUse = ISD::SINT_TO_FP;
2254 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002255 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002256 if (isSigned) continue;
2257
2258 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002259 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2260 OpToUse = ISD::UINT_TO_FP;
2261 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002262 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002263
2264 // Otherwise, try a larger type.
2265 }
2266
2267 // Okay, we found the operation and type to use. Zero extend our input to the
2268 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00002269 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00002270 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00002271 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002272}
2273
2274/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2275/// FP_TO_*INT operation of the specified operand when the target requests that
2276/// we promote it. At this point, we know that the result and operand types are
2277/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2278/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00002279SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002280 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002281 bool isSigned,
2282 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002283 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002284 EVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002285
2286 unsigned OpToUse = 0;
2287
2288 // Scan for the appropriate larger type to use.
2289 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002290 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002291 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002292
Eli Friedman3be2e512009-05-28 03:06:16 +00002293 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002294 OpToUse = ISD::FP_TO_SINT;
2295 break;
2296 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002297
Eli Friedman3be2e512009-05-28 03:06:16 +00002298 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002299 OpToUse = ISD::FP_TO_UINT;
2300 break;
2301 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002302
2303 // Otherwise, try a larger type.
2304 }
2305
Scott Michelfdc40a02009-02-17 22:15:04 +00002306
Chris Lattner27a6c732007-11-24 07:07:01 +00002307 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00002308 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00002309
Chris Lattner27a6c732007-11-24 07:07:01 +00002310 // Truncate the result of the extended FP_TO_*INT operation to the desired
2311 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00002312 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002313}
2314
2315/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2316///
Dale Johannesen8a782a22009-02-02 22:12:50 +00002317SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002318 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002319 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00002320 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson825b72b2009-08-11 20:47:22 +00002321 switch (VT.getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002322 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002323 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002324 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2325 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2326 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002327 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002328 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2329 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2330 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2331 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2332 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2333 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2334 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2335 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2336 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002337 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002338 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2339 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2340 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2341 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2342 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2343 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2344 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2345 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2346 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2347 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2348 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2349 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2350 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2351 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2352 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2353 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2354 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2355 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2356 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2357 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2358 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002359 }
2360}
2361
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002362/// SplatByte - Distribute ByteVal over NumBits bits.
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002363// FIXME: Move this helper to a common place.
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002364static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
2365 APInt Val = APInt(NumBits, ByteVal);
2366 unsigned Shift = 8;
2367 for (unsigned i = NumBits; i > 8; i >>= 1) {
2368 Val = (Val << Shift) | Val;
2369 Shift <<= 1;
2370 }
2371 return Val;
2372}
2373
Chris Lattner22cde6a2006-01-28 08:25:58 +00002374/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2375///
Scott Michelfdc40a02009-02-17 22:15:04 +00002376SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00002377 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002378 switch (Opc) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002379 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002380 case ISD::CTPOP: {
Owen Andersone50ed302009-08-10 22:56:29 +00002381 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002382 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002383 unsigned Len = VT.getSizeInBits();
2384
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002385 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2386 "CTPOP not implemented for this type.");
2387
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002388 // This is the "best" algorithm from
2389 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2390
2391 SDValue Mask55 = DAG.getConstant(SplatByte(Len, 0x55), VT);
2392 SDValue Mask33 = DAG.getConstant(SplatByte(Len, 0x33), VT);
2393 SDValue Mask0F = DAG.getConstant(SplatByte(Len, 0x0F), VT);
2394 SDValue Mask01 = DAG.getConstant(SplatByte(Len, 0x01), VT);
2395
2396 // v = v - ((v >> 1) & 0x55555555...)
2397 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2398 DAG.getNode(ISD::AND, dl, VT,
2399 DAG.getNode(ISD::SRL, dl, VT, Op,
2400 DAG.getConstant(1, ShVT)),
2401 Mask55));
2402 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2403 Op = DAG.getNode(ISD::ADD, dl, VT,
2404 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2405 DAG.getNode(ISD::AND, dl, VT,
2406 DAG.getNode(ISD::SRL, dl, VT, Op,
2407 DAG.getConstant(2, ShVT)),
2408 Mask33));
2409 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2410 Op = DAG.getNode(ISD::AND, dl, VT,
2411 DAG.getNode(ISD::ADD, dl, VT, Op,
2412 DAG.getNode(ISD::SRL, dl, VT, Op,
2413 DAG.getConstant(4, ShVT))),
2414 Mask0F);
2415 // v = (v * 0x01010101...) >> (Len - 8)
2416 Op = DAG.getNode(ISD::SRL, dl, VT,
2417 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2418 DAG.getConstant(Len - 8, ShVT));
Owen Anderson95771af2011-02-25 21:41:48 +00002419
Chris Lattner22cde6a2006-01-28 08:25:58 +00002420 return Op;
2421 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002422 case ISD::CTLZ_ZERO_UNDEF:
2423 // This trivially expands to CTLZ.
2424 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002425 case ISD::CTLZ: {
2426 // for now, we do this:
2427 // x = x | (x >> 1);
2428 // x = x | (x >> 2);
2429 // ...
2430 // x = x | (x >>16);
2431 // x = x | (x >>32); // for 64-bit input
2432 // return popcount(~x);
2433 //
2434 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002435 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002436 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002437 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002438 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002439 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002440 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00002441 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002442 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00002443 Op = DAG.getNOT(dl, Op, VT);
2444 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002445 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002446 case ISD::CTTZ_ZERO_UNDEF:
2447 // This trivially expands to CTTZ.
2448 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002449 case ISD::CTTZ: {
2450 // for now, we use: { return popcount(~x & (x - 1)); }
2451 // unless the target has ctlz but not ctpop, in which case we use:
2452 // { return 32 - nlz(~x & (x-1)); }
2453 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002454 EVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00002455 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2456 DAG.getNOT(dl, Op, VT),
2457 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00002458 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002459 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002460 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2461 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00002462 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002463 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00002464 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2465 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002466 }
2467 }
2468}
Chris Lattnere34b3962005-01-19 04:19:40 +00002469
Jim Grosbache03262f2010-06-18 21:43:38 +00002470std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2471 unsigned Opc = Node->getOpcode();
2472 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2473 RTLIB::Libcall LC;
2474
2475 switch (Opc) {
2476 default:
2477 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002478 case ISD::ATOMIC_SWAP:
2479 switch (VT.SimpleTy) {
2480 default: llvm_unreachable("Unexpected value type for atomic!");
2481 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2482 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2483 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2484 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
2485 }
2486 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002487 case ISD::ATOMIC_CMP_SWAP:
2488 switch (VT.SimpleTy) {
2489 default: llvm_unreachable("Unexpected value type for atomic!");
2490 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2491 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2492 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2493 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
2494 }
2495 break;
2496 case ISD::ATOMIC_LOAD_ADD:
2497 switch (VT.SimpleTy) {
2498 default: llvm_unreachable("Unexpected value type for atomic!");
2499 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2500 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2501 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2502 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
2503 }
2504 break;
2505 case ISD::ATOMIC_LOAD_SUB:
2506 switch (VT.SimpleTy) {
2507 default: llvm_unreachable("Unexpected value type for atomic!");
2508 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2509 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2510 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2511 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
2512 }
2513 break;
2514 case ISD::ATOMIC_LOAD_AND:
2515 switch (VT.SimpleTy) {
2516 default: llvm_unreachable("Unexpected value type for atomic!");
2517 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2518 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2519 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2520 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
2521 }
2522 break;
2523 case ISD::ATOMIC_LOAD_OR:
2524 switch (VT.SimpleTy) {
2525 default: llvm_unreachable("Unexpected value type for atomic!");
2526 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2527 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2528 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2529 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
2530 }
2531 break;
2532 case ISD::ATOMIC_LOAD_XOR:
2533 switch (VT.SimpleTy) {
2534 default: llvm_unreachable("Unexpected value type for atomic!");
2535 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2536 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2537 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2538 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
2539 }
2540 break;
2541 case ISD::ATOMIC_LOAD_NAND:
2542 switch (VT.SimpleTy) {
2543 default: llvm_unreachable("Unexpected value type for atomic!");
2544 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2545 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2546 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2547 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
2548 }
2549 break;
2550 }
2551
2552 return ExpandChainLibCall(LC, Node, false);
2553}
2554
Dan Gohman65fd6562011-11-03 21:49:52 +00002555void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2556 SmallVector<SDValue, 8> Results;
Eli Friedman8c377c72009-05-27 01:25:56 +00002557 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanbbdd9032009-05-28 20:40:34 +00002558 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Eli Friedman8c377c72009-05-27 01:25:56 +00002559 switch (Node->getOpcode()) {
2560 case ISD::CTPOP:
2561 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002562 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002563 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002564 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002565 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2566 Results.push_back(Tmp1);
2567 break;
2568 case ISD::BSWAP:
Bill Wendling775db972009-12-23 00:28:23 +00002569 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman8c377c72009-05-27 01:25:56 +00002570 break;
2571 case ISD::FRAMEADDR:
2572 case ISD::RETURNADDR:
2573 case ISD::FRAME_TO_ARGS_OFFSET:
2574 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2575 break;
2576 case ISD::FLT_ROUNDS_:
2577 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2578 break;
2579 case ISD::EH_RETURN:
Eli Friedman8c377c72009-05-27 01:25:56 +00002580 case ISD::EH_LABEL:
2581 case ISD::PREFETCH:
Eli Friedman8c377c72009-05-27 01:25:56 +00002582 case ISD::VAEND:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002583 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002584 // If the target didn't expand these, there's nothing to do, so just
2585 // preserve the chain and be done.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002586 Results.push_back(Node->getOperand(0));
2587 break;
2588 case ISD::EH_SJLJ_SETJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002589 // If the target didn't expand this, just return 'zero' and preserve the
2590 // chain.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002591 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman8c377c72009-05-27 01:25:56 +00002592 Results.push_back(Node->getOperand(0));
2593 break;
Eli Friedman14648462011-07-27 22:21:52 +00002594 case ISD::ATOMIC_FENCE:
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002595 case ISD::MEMBARRIER: {
2596 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman14648462011-07-27 22:21:52 +00002597 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002598 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002599 TargetLowering::
2600 CallLoweringInfo CLI(Node->getOperand(0),
2601 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002602 false, false, false, false, 0, CallingConv::C,
2603 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002604 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002605 DAG.getExternalSymbol("__sync_synchronize",
2606 TLI.getPointerTy()),
2607 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002608 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2609
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002610 Results.push_back(CallResult.second);
2611 break;
2612 }
Eli Friedman069e2ed2011-08-26 02:59:24 +00002613 case ISD::ATOMIC_LOAD: {
2614 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedman331120b2011-09-15 21:20:49 +00002615 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman069e2ed2011-08-26 02:59:24 +00002616 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2617 cast<AtomicSDNode>(Node)->getMemoryVT(),
2618 Node->getOperand(0),
2619 Node->getOperand(1), Zero, Zero,
2620 cast<AtomicSDNode>(Node)->getMemOperand(),
2621 cast<AtomicSDNode>(Node)->getOrdering(),
2622 cast<AtomicSDNode>(Node)->getSynchScope());
2623 Results.push_back(Swap.getValue(0));
2624 Results.push_back(Swap.getValue(1));
2625 break;
2626 }
2627 case ISD::ATOMIC_STORE: {
2628 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2629 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2630 cast<AtomicSDNode>(Node)->getMemoryVT(),
2631 Node->getOperand(0),
2632 Node->getOperand(1), Node->getOperand(2),
2633 cast<AtomicSDNode>(Node)->getMemOperand(),
2634 cast<AtomicSDNode>(Node)->getOrdering(),
2635 cast<AtomicSDNode>(Node)->getSynchScope());
2636 Results.push_back(Swap.getValue(1));
2637 break;
2638 }
Jim Grosbachb56ce812010-06-17 17:50:54 +00002639 // By default, atomic intrinsics are marked Legal and lowered. Targets
2640 // which don't support them directly, however, may want libcalls, in which
2641 // case they mark them Expand, and we get here.
Jim Grosbachb56ce812010-06-17 17:50:54 +00002642 case ISD::ATOMIC_SWAP:
2643 case ISD::ATOMIC_LOAD_ADD:
2644 case ISD::ATOMIC_LOAD_SUB:
2645 case ISD::ATOMIC_LOAD_AND:
2646 case ISD::ATOMIC_LOAD_OR:
2647 case ISD::ATOMIC_LOAD_XOR:
2648 case ISD::ATOMIC_LOAD_NAND:
2649 case ISD::ATOMIC_LOAD_MIN:
2650 case ISD::ATOMIC_LOAD_MAX:
2651 case ISD::ATOMIC_LOAD_UMIN:
2652 case ISD::ATOMIC_LOAD_UMAX:
Evan Chenga8457062010-06-18 22:01:37 +00002653 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbache03262f2010-06-18 21:43:38 +00002654 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2655 Results.push_back(Tmp.first);
2656 Results.push_back(Tmp.second);
Jim Grosbach59c38f32010-06-17 17:58:54 +00002657 break;
Evan Chenga8457062010-06-18 22:01:37 +00002658 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00002659 case ISD::DYNAMIC_STACKALLOC:
2660 ExpandDYNAMIC_STACKALLOC(Node, Results);
2661 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00002662 case ISD::MERGE_VALUES:
2663 for (unsigned i = 0; i < Node->getNumValues(); i++)
2664 Results.push_back(Node->getOperand(i));
2665 break;
2666 case ISD::UNDEF: {
Owen Andersone50ed302009-08-10 22:56:29 +00002667 EVT VT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00002668 if (VT.isInteger())
2669 Results.push_back(DAG.getConstant(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002670 else {
2671 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman8c377c72009-05-27 01:25:56 +00002672 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002673 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002674 break;
2675 }
2676 case ISD::TRAP: {
2677 // If this operation is not supported, lower it to 'abort()' call
2678 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002679 TargetLowering::
2680 CallLoweringInfo CLI(Node->getOperand(0),
2681 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002682 false, false, false, false, 0, CallingConv::C,
2683 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002684 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eli Friedman8c377c72009-05-27 01:25:56 +00002685 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00002686 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002687 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2688
Eli Friedman8c377c72009-05-27 01:25:56 +00002689 Results.push_back(CallResult.second);
2690 break;
2691 }
2692 case ISD::FP_ROUND:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002693 case ISD::BITCAST:
Eli Friedman8c377c72009-05-27 01:25:56 +00002694 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2695 Node->getValueType(0), dl);
2696 Results.push_back(Tmp1);
2697 break;
2698 case ISD::FP_EXTEND:
2699 Tmp1 = EmitStackConvert(Node->getOperand(0),
2700 Node->getOperand(0).getValueType(),
2701 Node->getValueType(0), dl);
2702 Results.push_back(Tmp1);
2703 break;
2704 case ISD::SIGN_EXTEND_INREG: {
2705 // NOTE: we could fall back on load/store here too for targets without
2706 // SAR. However, it is doubtful that any exist.
Owen Andersone50ed302009-08-10 22:56:29 +00002707 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00002708 EVT VT = Node->getValueType(0);
Owen Anderson95771af2011-02-25 21:41:48 +00002709 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohmand1996362010-01-09 02:13:55 +00002710 if (VT.isVector())
Dan Gohman87862e72009-12-11 21:31:27 +00002711 ShiftAmountTy = VT;
Dan Gohmand1996362010-01-09 02:13:55 +00002712 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2713 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman87862e72009-12-11 21:31:27 +00002714 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman8c377c72009-05-27 01:25:56 +00002715 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2716 Node->getOperand(0), ShiftCst);
Bill Wendling775db972009-12-23 00:28:23 +00002717 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2718 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002719 break;
2720 }
2721 case ISD::FP_ROUND_INREG: {
2722 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002723 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman8c377c72009-05-27 01:25:56 +00002724
2725 // NOTE: there is a choice here between constantly creating new stack
2726 // slots and always reusing the same one. We currently always create
2727 // new ones, as reuse may inhibit scheduling.
Owen Andersone50ed302009-08-10 22:56:29 +00002728 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00002729 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2730 Node->getValueType(0), dl);
2731 Results.push_back(Tmp1);
2732 break;
2733 }
2734 case ISD::SINT_TO_FP:
2735 case ISD::UINT_TO_FP:
2736 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2737 Node->getOperand(0), Node->getValueType(0), dl);
2738 Results.push_back(Tmp1);
2739 break;
2740 case ISD::FP_TO_UINT: {
2741 SDValue True, False;
Owen Andersone50ed302009-08-10 22:56:29 +00002742 EVT VT = Node->getOperand(0).getValueType();
2743 EVT NVT = Node->getValueType(0);
Benjamin Kramer3069cbf2010-12-04 15:28:22 +00002744 APFloat apf(APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman8c377c72009-05-27 01:25:56 +00002745 APInt x = APInt::getSignBit(NVT.getSizeInBits());
2746 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
2747 Tmp1 = DAG.getConstantFP(apf, VT);
2748 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
2749 Node->getOperand(0),
2750 Tmp1, ISD::SETLT);
2751 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00002752 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
2753 DAG.getNode(ISD::FSUB, dl, VT,
2754 Node->getOperand(0), Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00002755 False = DAG.getNode(ISD::XOR, dl, NVT, False,
2756 DAG.getConstant(x, NVT));
2757 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2, True, False);
2758 Results.push_back(Tmp1);
2759 break;
2760 }
Eli Friedman509150f2009-05-27 07:58:35 +00002761 case ISD::VAARG: {
2762 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00002763 EVT VT = Node->getValueType(0);
Eli Friedman509150f2009-05-27 07:58:35 +00002764 Tmp1 = Node->getOperand(0);
2765 Tmp2 = Node->getOperand(1);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002766 unsigned Align = Node->getConstantOperandVal(3);
2767
Chris Lattnerecf42c42010-09-21 16:36:31 +00002768 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002769 MachinePointerInfo(V),
2770 false, false, false, 0);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002771 SDValue VAList = VAListLoad;
2772
Rafael Espindolacbeeae22010-07-11 04:01:49 +00002773 if (Align > TLI.getMinStackArgumentAlignment()) {
2774 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
2775
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002776 VAList = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2777 DAG.getConstant(Align - 1,
2778 TLI.getPointerTy()));
2779
2780 VAList = DAG.getNode(ISD::AND, dl, TLI.getPointerTy(), VAList,
Chris Lattner07e3a382010-10-10 18:36:26 +00002781 DAG.getConstant(-(int64_t)Align,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002782 TLI.getPointerTy()));
2783 }
2784
Eli Friedman509150f2009-05-27 07:58:35 +00002785 // Increment the pointer, VAList, to the next vaarg
2786 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2787 DAG.getConstant(TLI.getTargetData()->
Evan Chengadf97992010-04-15 01:25:27 +00002788 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Eli Friedman509150f2009-05-27 07:58:35 +00002789 TLI.getPointerTy()));
2790 // Store the incremented VAList to the legalized pointer
Chris Lattner6229d0a2010-09-21 18:41:36 +00002791 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
2792 MachinePointerInfo(V), false, false, 0);
Eli Friedman509150f2009-05-27 07:58:35 +00002793 // Load the actual argument out of the pointer VAList
Chris Lattnerecf42c42010-09-21 16:36:31 +00002794 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002795 false, false, false, 0));
Eli Friedman509150f2009-05-27 07:58:35 +00002796 Results.push_back(Results[0].getValue(1));
2797 break;
2798 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002799 case ISD::VACOPY: {
2800 // This defaults to loading a pointer from the input and storing it to the
2801 // output, returning the chain.
2802 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2803 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
2804 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattnerecf42c42010-09-21 16:36:31 +00002805 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002806 false, false, false, 0);
Chris Lattnerecf42c42010-09-21 16:36:31 +00002807 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
2808 MachinePointerInfo(VD), false, false, 0);
Bill Wendling775db972009-12-23 00:28:23 +00002809 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002810 break;
2811 }
2812 case ISD::EXTRACT_VECTOR_ELT:
2813 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
2814 // This must be an access of the only element. Return it.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002815 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman8c377c72009-05-27 01:25:56 +00002816 Node->getOperand(0));
2817 else
2818 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
2819 Results.push_back(Tmp1);
2820 break;
2821 case ISD::EXTRACT_SUBVECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002822 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman8c377c72009-05-27 01:25:56 +00002823 break;
David Greenecfe33c42011-01-26 19:13:22 +00002824 case ISD::INSERT_SUBVECTOR:
2825 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
2826 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002827 case ISD::CONCAT_VECTORS: {
Bill Wendling775db972009-12-23 00:28:23 +00002828 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman509150f2009-05-27 07:58:35 +00002829 break;
2830 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002831 case ISD::SCALAR_TO_VECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002832 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman8c377c72009-05-27 01:25:56 +00002833 break;
Eli Friedman3f727d62009-05-27 02:16:40 +00002834 case ISD::INSERT_VECTOR_ELT:
Bill Wendling775db972009-12-23 00:28:23 +00002835 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
2836 Node->getOperand(1),
2837 Node->getOperand(2), dl));
Eli Friedman3f727d62009-05-27 02:16:40 +00002838 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002839 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00002840 SmallVector<int, 32> NewMask;
2841 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00002842
Owen Andersone50ed302009-08-10 22:56:29 +00002843 EVT VT = Node->getValueType(0);
2844 EVT EltVT = VT.getVectorElementType();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002845 SDValue Op0 = Node->getOperand(0);
2846 SDValue Op1 = Node->getOperand(1);
2847 if (!TLI.isTypeLegal(EltVT)) {
2848
2849 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
2850
2851 // BUILD_VECTOR operands are allowed to be wider than the element type.
2852 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept it
2853 if (NewEltVT.bitsLT(EltVT)) {
2854
2855 // Convert shuffle node.
2856 // If original node was v4i64 and the new EltVT is i32,
2857 // cast operands to v8i32 and re-build the mask.
2858
2859 // Calculate new VT, the size of the new VT should be equal to original.
2860 EVT NewVT = EVT::getVectorVT(*DAG.getContext(), NewEltVT,
2861 VT.getSizeInBits()/NewEltVT.getSizeInBits());
2862 assert(NewVT.bitsEq(VT));
2863
2864 // cast operands to new VT
2865 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
2866 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
2867
2868 // Convert the shuffle mask
2869 unsigned int factor = NewVT.getVectorNumElements()/VT.getVectorNumElements();
2870
2871 // EltVT gets smaller
2872 assert(factor > 0);
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002873
2874 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
2875 if (Mask[i] < 0) {
2876 for (unsigned fi = 0; fi < factor; ++fi)
2877 NewMask.push_back(Mask[i]);
2878 }
2879 else {
2880 for (unsigned fi = 0; fi < factor; ++fi)
2881 NewMask.push_back(Mask[i]*factor+fi);
2882 }
2883 }
2884 Mask = NewMask;
2885 VT = NewVT;
2886 }
2887 EltVT = NewEltVT;
2888 }
Eli Friedman509150f2009-05-27 07:58:35 +00002889 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002890 SmallVector<SDValue, 16> Ops;
Eli Friedman509150f2009-05-27 07:58:35 +00002891 for (unsigned i = 0; i != NumElems; ++i) {
2892 if (Mask[i] < 0) {
2893 Ops.push_back(DAG.getUNDEF(EltVT));
2894 continue;
2895 }
2896 unsigned Idx = Mask[i];
2897 if (Idx < NumElems)
Bill Wendling775db972009-12-23 00:28:23 +00002898 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002899 Op0,
Bill Wendling775db972009-12-23 00:28:23 +00002900 DAG.getIntPtrConstant(Idx)));
Eli Friedman509150f2009-05-27 07:58:35 +00002901 else
Bill Wendling775db972009-12-23 00:28:23 +00002902 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002903 Op1,
Bill Wendling775db972009-12-23 00:28:23 +00002904 DAG.getIntPtrConstant(Idx - NumElems)));
Eli Friedman509150f2009-05-27 07:58:35 +00002905 }
Nadav Rotem6c0366c2012-01-10 14:28:46 +00002906
Eli Friedman509150f2009-05-27 07:58:35 +00002907 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Nadav Rotem6c0366c2012-01-10 14:28:46 +00002908 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
2909 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00002910 Results.push_back(Tmp1);
2911 break;
2912 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002913 case ISD::EXTRACT_ELEMENT: {
Owen Andersone50ed302009-08-10 22:56:29 +00002914 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman8c377c72009-05-27 01:25:56 +00002915 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
2916 // 1 -> Hi
2917 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
2918 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00002919 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman8c377c72009-05-27 01:25:56 +00002920 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
2921 } else {
2922 // 0 -> Lo
2923 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
2924 Node->getOperand(0));
2925 }
2926 Results.push_back(Tmp1);
2927 break;
2928 }
Eli Friedman3f727d62009-05-27 02:16:40 +00002929 case ISD::STACKSAVE:
2930 // Expand to CopyFromReg if the target set
2931 // StackPointerRegisterToSaveRestore.
2932 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendling775db972009-12-23 00:28:23 +00002933 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
2934 Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00002935 Results.push_back(Results[0].getValue(1));
2936 } else {
Bill Wendling775db972009-12-23 00:28:23 +00002937 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00002938 Results.push_back(Node->getOperand(0));
2939 }
2940 break;
2941 case ISD::STACKRESTORE:
Bill Wendling775db972009-12-23 00:28:23 +00002942 // Expand to CopyToReg if the target set
2943 // StackPointerRegisterToSaveRestore.
2944 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2945 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
2946 Node->getOperand(1)));
2947 } else {
2948 Results.push_back(Node->getOperand(0));
2949 }
Eli Friedman3f727d62009-05-27 02:16:40 +00002950 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00002951 case ISD::FCOPYSIGN:
Bill Wendling775db972009-12-23 00:28:23 +00002952 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00002953 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002954 case ISD::FNEG:
2955 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2956 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
2957 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
2958 Node->getOperand(0));
2959 Results.push_back(Tmp1);
2960 break;
2961 case ISD::FABS: {
2962 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Andersone50ed302009-08-10 22:56:29 +00002963 EVT VT = Node->getValueType(0);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002964 Tmp1 = Node->getOperand(0);
2965 Tmp2 = DAG.getConstantFP(0.0, VT);
Bill Wendling775db972009-12-23 00:28:23 +00002966 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002967 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendling775db972009-12-23 00:28:23 +00002968 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
2969 Tmp1 = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002970 Results.push_back(Tmp1);
2971 break;
2972 }
2973 case ISD::FSQRT:
Bill Wendling775db972009-12-23 00:28:23 +00002974 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
2975 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002976 break;
2977 case ISD::FSIN:
Bill Wendling775db972009-12-23 00:28:23 +00002978 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
2979 RTLIB::SIN_F80, RTLIB::SIN_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002980 break;
2981 case ISD::FCOS:
Bill Wendling775db972009-12-23 00:28:23 +00002982 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
2983 RTLIB::COS_F80, RTLIB::COS_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002984 break;
2985 case ISD::FLOG:
Bill Wendling775db972009-12-23 00:28:23 +00002986 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
2987 RTLIB::LOG_F80, RTLIB::LOG_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002988 break;
2989 case ISD::FLOG2:
Bill Wendling775db972009-12-23 00:28:23 +00002990 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
2991 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002992 break;
2993 case ISD::FLOG10:
Bill Wendling775db972009-12-23 00:28:23 +00002994 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
2995 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002996 break;
2997 case ISD::FEXP:
Bill Wendling775db972009-12-23 00:28:23 +00002998 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
2999 RTLIB::EXP_F80, RTLIB::EXP_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003000 break;
3001 case ISD::FEXP2:
Bill Wendling775db972009-12-23 00:28:23 +00003002 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3003 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003004 break;
3005 case ISD::FTRUNC:
Bill Wendling775db972009-12-23 00:28:23 +00003006 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3007 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003008 break;
3009 case ISD::FFLOOR:
Bill Wendling775db972009-12-23 00:28:23 +00003010 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3011 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003012 break;
3013 case ISD::FCEIL:
Bill Wendling775db972009-12-23 00:28:23 +00003014 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3015 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003016 break;
3017 case ISD::FRINT:
Bill Wendling775db972009-12-23 00:28:23 +00003018 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
3019 RTLIB::RINT_F80, RTLIB::RINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003020 break;
3021 case ISD::FNEARBYINT:
Bill Wendling775db972009-12-23 00:28:23 +00003022 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3023 RTLIB::NEARBYINT_F64,
3024 RTLIB::NEARBYINT_F80,
3025 RTLIB::NEARBYINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003026 break;
3027 case ISD::FPOWI:
Bill Wendling775db972009-12-23 00:28:23 +00003028 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
3029 RTLIB::POWI_F80, RTLIB::POWI_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003030 break;
3031 case ISD::FPOW:
Bill Wendling775db972009-12-23 00:28:23 +00003032 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
3033 RTLIB::POW_F80, RTLIB::POW_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003034 break;
3035 case ISD::FDIV:
Bill Wendling775db972009-12-23 00:28:23 +00003036 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
3037 RTLIB::DIV_F80, RTLIB::DIV_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003038 break;
3039 case ISD::FREM:
Bill Wendling775db972009-12-23 00:28:23 +00003040 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
3041 RTLIB::REM_F80, RTLIB::REM_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003042 break;
Cameron Zwarich33390842011-07-08 21:39:21 +00003043 case ISD::FMA:
3044 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
3045 RTLIB::FMA_F80, RTLIB::FMA_PPCF128));
3046 break;
Anton Korobeynikov927411b2010-03-14 18:42:24 +00003047 case ISD::FP16_TO_FP32:
3048 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3049 break;
3050 case ISD::FP32_TO_FP16:
3051 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3052 break;
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003053 case ISD::ConstantFP: {
3054 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendling775db972009-12-23 00:28:23 +00003055 // Check to see if this FP immediate is already legal.
3056 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman65fd6562011-11-03 21:49:52 +00003057 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3058 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003059 break;
3060 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003061 case ISD::EHSELECTION: {
3062 unsigned Reg = TLI.getExceptionSelectorRegister();
3063 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003064 Results.push_back(DAG.getCopyFromReg(Node->getOperand(1), dl, Reg,
3065 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003066 Results.push_back(Results[0].getValue(1));
3067 break;
3068 }
3069 case ISD::EXCEPTIONADDR: {
Lang Hames07961342012-02-14 04:45:49 +00003070 unsigned Reg = TLI.getExceptionPointerRegister();
Eli Friedman26ea8f92009-05-27 07:05:37 +00003071 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003072 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, Reg,
3073 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003074 Results.push_back(Results[0].getValue(1));
3075 break;
3076 }
Owen Andersonafd3d562012-03-06 00:29:31 +00003077 case ISD::FSUB: {
3078 EVT VT = Node->getValueType(0);
3079 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3080 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3081 "Don't know how to expand this FP subtraction!");
3082 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3083 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3084 Results.push_back(Tmp1);
3085 break;
3086 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003087 case ISD::SUB: {
Owen Andersone50ed302009-08-10 22:56:29 +00003088 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003089 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3090 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3091 "Don't know how to expand this subtraction!");
3092 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3093 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Anderson4b6e6752012-05-21 22:39:20 +00003094 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendling775db972009-12-23 00:28:23 +00003095 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003096 break;
3097 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003098 case ISD::UREM:
3099 case ISD::SREM: {
Owen Andersone50ed302009-08-10 22:56:29 +00003100 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003101 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003102 bool isSigned = Node->getOpcode() == ISD::SREM;
3103 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3104 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3105 Tmp2 = Node->getOperand(0);
3106 Tmp3 = Node->getOperand(1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003107 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3108 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003109 useDivRem(Node, isSigned, false))) {
Eli Friedman3be2e512009-05-28 03:06:16 +00003110 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3111 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003112 // X % Y -> X-X/Y*Y
3113 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3114 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3115 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003116 } else if (isSigned)
3117 Tmp1 = ExpandIntLibCall(Node, true,
3118 RTLIB::SREM_I8,
3119 RTLIB::SREM_I16, RTLIB::SREM_I32,
3120 RTLIB::SREM_I64, RTLIB::SREM_I128);
3121 else
3122 Tmp1 = ExpandIntLibCall(Node, false,
3123 RTLIB::UREM_I8,
3124 RTLIB::UREM_I16, RTLIB::UREM_I32,
3125 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003126 Results.push_back(Tmp1);
3127 break;
3128 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003129 case ISD::UDIV:
3130 case ISD::SDIV: {
3131 bool isSigned = Node->getOpcode() == ISD::SDIV;
3132 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Andersone50ed302009-08-10 22:56:29 +00003133 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003134 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Cheng65279cb2011-04-16 03:08:26 +00003135 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3136 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003137 useDivRem(Node, isSigned, true)))
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003138 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3139 Node->getOperand(1));
Evan Cheng65279cb2011-04-16 03:08:26 +00003140 else if (isSigned)
3141 Tmp1 = ExpandIntLibCall(Node, true,
3142 RTLIB::SDIV_I8,
3143 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3144 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3145 else
3146 Tmp1 = ExpandIntLibCall(Node, false,
3147 RTLIB::UDIV_I8,
3148 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3149 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003150 Results.push_back(Tmp1);
3151 break;
3152 }
3153 case ISD::MULHU:
3154 case ISD::MULHS: {
3155 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3156 ISD::SMUL_LOHI;
Owen Andersone50ed302009-08-10 22:56:29 +00003157 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003158 SDVTList VTs = DAG.getVTList(VT, VT);
3159 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3160 "If this wasn't legal, it shouldn't have been created!");
3161 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3162 Node->getOperand(1));
3163 Results.push_back(Tmp1.getValue(1));
3164 break;
3165 }
Evan Cheng65279cb2011-04-16 03:08:26 +00003166 case ISD::SDIVREM:
3167 case ISD::UDIVREM:
3168 // Expand into divrem libcall
3169 ExpandDivRemLibCall(Node, Results);
3170 break;
Eli Friedman26ea8f92009-05-27 07:05:37 +00003171 case ISD::MUL: {
Owen Andersone50ed302009-08-10 22:56:29 +00003172 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003173 SDVTList VTs = DAG.getVTList(VT, VT);
3174 // See if multiply or divide can be lowered using two-result operations.
3175 // We just need the low half of the multiply; try both the signed
3176 // and unsigned forms. If the target supports both SMUL_LOHI and
3177 // UMUL_LOHI, form a preference by checking which forms of plain
3178 // MULH it supports.
3179 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3180 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3181 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3182 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3183 unsigned OpToUse = 0;
3184 if (HasSMUL_LOHI && !HasMULHS) {
3185 OpToUse = ISD::SMUL_LOHI;
3186 } else if (HasUMUL_LOHI && !HasMULHU) {
3187 OpToUse = ISD::UMUL_LOHI;
3188 } else if (HasSMUL_LOHI) {
3189 OpToUse = ISD::SMUL_LOHI;
3190 } else if (HasUMUL_LOHI) {
3191 OpToUse = ISD::UMUL_LOHI;
3192 }
3193 if (OpToUse) {
Bill Wendling775db972009-12-23 00:28:23 +00003194 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3195 Node->getOperand(1)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003196 break;
3197 }
Anton Korobeynikov8983da72009-11-07 17:14:39 +00003198 Tmp1 = ExpandIntLibCall(Node, false,
3199 RTLIB::MUL_I8,
3200 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman26ea8f92009-05-27 07:05:37 +00003201 RTLIB::MUL_I64, RTLIB::MUL_I128);
3202 Results.push_back(Tmp1);
3203 break;
3204 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003205 case ISD::SADDO:
3206 case ISD::SSUBO: {
3207 SDValue LHS = Node->getOperand(0);
3208 SDValue RHS = Node->getOperand(1);
3209 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3210 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3211 LHS, RHS);
3212 Results.push_back(Sum);
Bill Wendling122d06d2009-12-23 00:05:09 +00003213 EVT OType = Node->getValueType(1);
Bill Wendling775db972009-12-23 00:28:23 +00003214
Eli Friedman4bc8c712009-05-27 12:20:41 +00003215 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3216
3217 // LHSSign -> LHS >= 0
3218 // RHSSign -> RHS >= 0
3219 // SumSign -> Sum >= 0
3220 //
3221 // Add:
3222 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3223 // Sub:
3224 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3225 //
3226 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3227 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3228 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3229 Node->getOpcode() == ISD::SADDO ?
3230 ISD::SETEQ : ISD::SETNE);
3231
3232 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3233 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3234
3235 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3236 Results.push_back(Cmp);
3237 break;
3238 }
3239 case ISD::UADDO:
3240 case ISD::USUBO: {
3241 SDValue LHS = Node->getOperand(0);
3242 SDValue RHS = Node->getOperand(1);
3243 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3244 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3245 LHS, RHS);
3246 Results.push_back(Sum);
Bill Wendling775db972009-12-23 00:28:23 +00003247 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3248 Node->getOpcode () == ISD::UADDO ?
3249 ISD::SETULT : ISD::SETUGT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003250 break;
3251 }
Eli Friedmandb3c1692009-06-16 06:58:29 +00003252 case ISD::UMULO:
3253 case ISD::SMULO: {
Owen Andersone50ed302009-08-10 22:56:29 +00003254 EVT VT = Node->getValueType(0);
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003255 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmandb3c1692009-06-16 06:58:29 +00003256 SDValue LHS = Node->getOperand(0);
3257 SDValue RHS = Node->getOperand(1);
3258 SDValue BottomHalf;
3259 SDValue TopHalf;
Nuno Lopesec9d8b02009-12-23 17:48:10 +00003260 static const unsigned Ops[2][3] =
Eli Friedmandb3c1692009-06-16 06:58:29 +00003261 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3262 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3263 bool isSigned = Node->getOpcode() == ISD::SMULO;
3264 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3265 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3266 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3267 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3268 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3269 RHS);
3270 TopHalf = BottomHalf.getValue(1);
Eric Christopher38a18262011-01-20 00:29:24 +00003271 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3272 VT.getSizeInBits() * 2))) {
Eli Friedmandb3c1692009-06-16 06:58:29 +00003273 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3274 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3275 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3276 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3277 DAG.getIntPtrConstant(0));
3278 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3279 DAG.getIntPtrConstant(1));
Eric Christopher38a18262011-01-20 00:29:24 +00003280 } else {
3281 // We can fall back to a libcall with an illegal type for the MUL if we
3282 // have a libcall big enough.
3283 // Also, we can fall back to a division in some cases, but that's a big
3284 // performance hit in the general case.
Eric Christopher38a18262011-01-20 00:29:24 +00003285 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3286 if (WideVT == MVT::i16)
3287 LC = RTLIB::MUL_I16;
3288 else if (WideVT == MVT::i32)
3289 LC = RTLIB::MUL_I32;
3290 else if (WideVT == MVT::i64)
3291 LC = RTLIB::MUL_I64;
3292 else if (WideVT == MVT::i128)
3293 LC = RTLIB::MUL_I128;
3294 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanf316eb72011-05-16 22:09:53 +00003295
3296 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003297 // part.
3298 unsigned LoSize = VT.getSizeInBits();
3299 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3300 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3301 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3302 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Anderson95771af2011-02-25 21:41:48 +00003303
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003304 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3305 // pre-lowered to the correct types. This all depends upon WideVT not
3306 // being a legal type for the architecture and thus has to be split to
3307 // two arguments.
3308 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3309 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3310 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3311 DAG.getIntPtrConstant(0));
3312 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3313 DAG.getIntPtrConstant(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00003314 // Ret is a node with an illegal type. Because such things are not
3315 // generally permitted during this phase of legalization, delete the
3316 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3317 DAG.DeleteNode(Ret.getNode());
Eli Friedmandb3c1692009-06-16 06:58:29 +00003318 }
Dan Gohmanf316eb72011-05-16 22:09:53 +00003319
Eli Friedmandb3c1692009-06-16 06:58:29 +00003320 if (isSigned) {
Owen Anderson95771af2011-02-25 21:41:48 +00003321 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3322 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmandb3c1692009-06-16 06:58:29 +00003323 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
3324 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf, Tmp1,
3325 ISD::SETNE);
3326 } else {
3327 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf,
3328 DAG.getConstant(0, VT), ISD::SETNE);
3329 }
3330 Results.push_back(BottomHalf);
3331 Results.push_back(TopHalf);
3332 break;
3333 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003334 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +00003335 EVT PairTy = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003336 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3337 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendling775db972009-12-23 00:28:23 +00003338 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003339 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003340 TLI.getShiftAmountTy(PairTy)));
Bill Wendling775db972009-12-23 00:28:23 +00003341 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003342 break;
3343 }
Eli Friedman509150f2009-05-27 07:58:35 +00003344 case ISD::SELECT:
3345 Tmp1 = Node->getOperand(0);
3346 Tmp2 = Node->getOperand(1);
3347 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003348 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman509150f2009-05-27 07:58:35 +00003349 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3350 Tmp2, Tmp3,
3351 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendling775db972009-12-23 00:28:23 +00003352 } else {
Eli Friedman509150f2009-05-27 07:58:35 +00003353 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3354 DAG.getConstant(0, Tmp1.getValueType()),
3355 Tmp2, Tmp3, ISD::SETNE);
Bill Wendling775db972009-12-23 00:28:23 +00003356 }
Eli Friedman509150f2009-05-27 07:58:35 +00003357 Results.push_back(Tmp1);
3358 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003359 case ISD::BR_JT: {
3360 SDValue Chain = Node->getOperand(0);
3361 SDValue Table = Node->getOperand(1);
3362 SDValue Index = Node->getOperand(2);
3363
Owen Andersone50ed302009-08-10 22:56:29 +00003364 EVT PTy = TLI.getPointerTy();
Chris Lattner071c62f2010-01-25 23:26:13 +00003365
3366 const TargetData &TD = *TLI.getTargetData();
3367 unsigned EntrySize =
3368 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach6e992612010-07-02 17:41:59 +00003369
Chris Lattner071c62f2010-01-25 23:26:13 +00003370 Index = DAG.getNode(ISD::MUL, dl, PTy,
Eli Friedman4bc8c712009-05-27 12:20:41 +00003371 Index, DAG.getConstant(EntrySize, PTy));
3372 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3373
Owen Anderson23b9b192009-08-12 00:36:31 +00003374 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastingsa9011292011-02-16 16:23:55 +00003375 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattner85ca1062010-09-21 07:32:19 +00003376 MachinePointerInfo::getJumpTable(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00003377 false, false, 0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003378 Addr = LD;
Dan Gohman55e59c12010-04-19 19:05:59 +00003379 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman4bc8c712009-05-27 12:20:41 +00003380 // For PIC, the sequence is:
Bill Wendling775db972009-12-23 00:28:23 +00003381 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman4bc8c712009-05-27 12:20:41 +00003382 // RelocBase can be JumpTable, GOT or some sort of global base.
3383 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3384 TLI.getPICJumpTableRelocBase(Table, DAG));
3385 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003386 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003387 Results.push_back(Tmp1);
3388 break;
3389 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003390 case ISD::BRCOND:
3391 // Expand brcond's setcc into its constituent parts and create a BR_CC
3392 // Node.
3393 Tmp1 = Node->getOperand(0);
3394 Tmp2 = Node->getOperand(1);
Bill Wendling775db972009-12-23 00:28:23 +00003395 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003396 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003397 Tmp1, Tmp2.getOperand(2),
3398 Tmp2.getOperand(0), Tmp2.getOperand(1),
3399 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003400 } else {
Stuart Hastings88882242011-05-13 00:51:54 +00003401 // We test only the i1 bit. Skip the AND if UNDEF.
3402 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3403 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3404 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003405 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastings88882242011-05-13 00:51:54 +00003406 DAG.getCondCode(ISD::SETNE), Tmp3,
3407 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003408 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003409 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003410 Results.push_back(Tmp1);
3411 break;
Eli Friedmanad754602009-05-28 03:56:57 +00003412 case ISD::SETCC: {
3413 Tmp1 = Node->getOperand(0);
3414 Tmp2 = Node->getOperand(1);
3415 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003416 LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Eli Friedmanad754602009-05-28 03:56:57 +00003417
3418 // If we expanded the SETCC into an AND/OR, return the new node
3419 if (Tmp2.getNode() == 0) {
3420 Results.push_back(Tmp1);
3421 break;
3422 }
3423
3424 // Otherwise, SETCC for the given comparison type must be completely
3425 // illegal; expand it into a SELECT_CC.
Owen Andersone50ed302009-08-10 22:56:29 +00003426 EVT VT = Node->getValueType(0);
Eli Friedmanad754602009-05-28 03:56:57 +00003427 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
3428 DAG.getConstant(1, VT), DAG.getConstant(0, VT), Tmp3);
3429 Results.push_back(Tmp1);
3430 break;
3431 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003432 case ISD::SELECT_CC: {
3433 Tmp1 = Node->getOperand(0); // LHS
3434 Tmp2 = Node->getOperand(1); // RHS
3435 Tmp3 = Node->getOperand(2); // True
3436 Tmp4 = Node->getOperand(3); // False
3437 SDValue CC = Node->getOperand(4);
3438
3439 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp1.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003440 Tmp1, Tmp2, CC, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003441
3442 assert(!Tmp2.getNode() && "Can't legalize SELECT_CC with legal condition!");
3443 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3444 CC = DAG.getCondCode(ISD::SETNE);
3445 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, Tmp2,
3446 Tmp3, Tmp4, CC);
3447 Results.push_back(Tmp1);
3448 break;
3449 }
3450 case ISD::BR_CC: {
3451 Tmp1 = Node->getOperand(0); // Chain
3452 Tmp2 = Node->getOperand(2); // LHS
3453 Tmp3 = Node->getOperand(3); // RHS
3454 Tmp4 = Node->getOperand(1); // CC
3455
3456 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp2.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003457 Tmp2, Tmp3, Tmp4, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003458
3459 assert(!Tmp3.getNode() && "Can't legalize BR_CC with legal condition!");
3460 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3461 Tmp4 = DAG.getCondCode(ISD::SETNE);
3462 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, Tmp2,
3463 Tmp3, Node->getOperand(4));
3464 Results.push_back(Tmp1);
3465 break;
3466 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003467 case ISD::BUILD_VECTOR:
3468 Results.push_back(ExpandBUILD_VECTOR(Node));
3469 break;
3470 case ISD::SRA:
3471 case ISD::SRL:
3472 case ISD::SHL: {
3473 // Scalarize vector SRA/SRL/SHL.
3474 EVT VT = Node->getValueType(0);
3475 assert(VT.isVector() && "Unable to legalize non-vector shift");
3476 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3477 unsigned NumElem = VT.getVectorNumElements();
3478
3479 SmallVector<SDValue, 8> Scalars;
3480 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3481 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3482 VT.getScalarType(),
3483 Node->getOperand(0), DAG.getIntPtrConstant(Idx));
3484 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3485 VT.getScalarType(),
3486 Node->getOperand(1), DAG.getIntPtrConstant(Idx));
3487 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3488 VT.getScalarType(), Ex, Sh));
3489 }
3490 SDValue Result =
3491 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3492 &Scalars[0], Scalars.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +00003493 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +00003494 break;
3495 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003496 case ISD::GLOBAL_OFFSET_TABLE:
3497 case ISD::GlobalAddress:
3498 case ISD::GlobalTLSAddress:
3499 case ISD::ExternalSymbol:
3500 case ISD::ConstantPool:
3501 case ISD::JumpTable:
3502 case ISD::INTRINSIC_W_CHAIN:
3503 case ISD::INTRINSIC_WO_CHAIN:
3504 case ISD::INTRINSIC_VOID:
3505 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedman3f727d62009-05-27 02:16:40 +00003506 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00003507 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003508
3509 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003510 if (!Results.empty())
3511 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003512}
Dan Gohman65fd6562011-11-03 21:49:52 +00003513
3514void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3515 SmallVector<SDValue, 8> Results;
Owen Andersone50ed302009-08-10 22:56:29 +00003516 EVT OVT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00003517 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedmana64eb922009-07-17 05:16:04 +00003518 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendling775db972009-12-23 00:28:23 +00003519 Node->getOpcode() == ISD::SETCC) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003520 OVT = Node->getOperand(0).getValueType();
Bill Wendling775db972009-12-23 00:28:23 +00003521 }
Owen Andersone50ed302009-08-10 22:56:29 +00003522 EVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Eli Friedman8c377c72009-05-27 01:25:56 +00003523 DebugLoc dl = Node->getDebugLoc();
Eli Friedman509150f2009-05-27 07:58:35 +00003524 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman8c377c72009-05-27 01:25:56 +00003525 switch (Node->getOpcode()) {
3526 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003527 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003528 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003529 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003530 case ISD::CTPOP:
3531 // Zero extend the argument.
3532 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00003533 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
3534 // already the correct result.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003535 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003536 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth63974b22011-12-13 01:56:10 +00003537 // FIXME: This should set a bit in the zero extended value instead.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003538 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Eli Friedman8c377c72009-05-27 01:25:56 +00003539 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3540 ISD::SETEQ);
3541 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
3542 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth63974b22011-12-13 01:56:10 +00003543 } else if (Node->getOpcode() == ISD::CTLZ ||
3544 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003545 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3546 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3547 DAG.getConstant(NVT.getSizeInBits() -
3548 OVT.getSizeInBits(), NVT));
3549 }
Bill Wendling775db972009-12-23 00:28:23 +00003550 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00003551 break;
3552 case ISD::BSWAP: {
3553 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling167bea72009-12-22 22:53:39 +00003554 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00003555 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3556 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Anderson95771af2011-02-25 21:41:48 +00003557 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendling775db972009-12-23 00:28:23 +00003558 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003559 break;
3560 }
3561 case ISD::FP_TO_UINT:
3562 case ISD::FP_TO_SINT:
3563 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3564 Node->getOpcode() == ISD::FP_TO_SINT, dl);
3565 Results.push_back(Tmp1);
3566 break;
3567 case ISD::UINT_TO_FP:
3568 case ISD::SINT_TO_FP:
3569 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3570 Node->getOpcode() == ISD::SINT_TO_FP, dl);
3571 Results.push_back(Tmp1);
3572 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00003573 case ISD::VAARG: {
3574 SDValue Chain = Node->getOperand(0); // Get the chain.
3575 SDValue Ptr = Node->getOperand(1); // Get the pointer.
3576
3577 unsigned TruncOp;
3578 if (OVT.isVector()) {
3579 TruncOp = ISD::BITCAST;
3580 } else {
3581 assert(OVT.isInteger()
3582 && "VAARG promotion is supported only for vectors or integer types");
3583 TruncOp = ISD::TRUNCATE;
3584 }
3585
3586 // Perform the larger operation, then convert back
3587 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
3588 Node->getConstantOperandVal(3));
3589 Chain = Tmp1.getValue(1);
3590
3591 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
3592
3593 // Modified the chain result - switch anything that used the old chain to
3594 // use the new one.
3595 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
3596 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
3597 ReplacedNode(Node);
3598 break;
3599 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003600 case ISD::AND:
3601 case ISD::OR:
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003602 case ISD::XOR: {
3603 unsigned ExtOp, TruncOp;
3604 if (OVT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003605 ExtOp = ISD::BITCAST;
3606 TruncOp = ISD::BITCAST;
Chris Lattner35a38932010-04-07 23:47:51 +00003607 } else {
3608 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003609 ExtOp = ISD::ANY_EXTEND;
3610 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003611 }
3612 // Promote each of the values to the new type.
3613 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3614 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3615 // Perform the larger operation, then convert back
Bill Wendling775db972009-12-23 00:28:23 +00003616 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3617 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003618 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003619 }
3620 case ISD::SELECT: {
Eli Friedman509150f2009-05-27 07:58:35 +00003621 unsigned ExtOp, TruncOp;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003622 if (Node->getValueType(0).isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003623 ExtOp = ISD::BITCAST;
3624 TruncOp = ISD::BITCAST;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003625 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman509150f2009-05-27 07:58:35 +00003626 ExtOp = ISD::ANY_EXTEND;
3627 TruncOp = ISD::TRUNCATE;
3628 } else {
3629 ExtOp = ISD::FP_EXTEND;
3630 TruncOp = ISD::FP_ROUND;
3631 }
3632 Tmp1 = Node->getOperand(0);
3633 // Promote each of the values to the new type.
3634 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3635 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
3636 // Perform the larger operation, then round down.
3637 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
3638 if (TruncOp != ISD::FP_ROUND)
Bill Wendling775db972009-12-23 00:28:23 +00003639 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003640 else
Bill Wendling775db972009-12-23 00:28:23 +00003641 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman509150f2009-05-27 07:58:35 +00003642 DAG.getIntPtrConstant(0));
Bill Wendling775db972009-12-23 00:28:23 +00003643 Results.push_back(Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003644 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003645 }
Eli Friedman509150f2009-05-27 07:58:35 +00003646 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003647 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003648
3649 // Cast the two input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003650 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
3651 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman509150f2009-05-27 07:58:35 +00003652
3653 // Convert the shuffle mask to the right # elements.
Bill Wendling775db972009-12-23 00:28:23 +00003654 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003655 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003656 Results.push_back(Tmp1);
3657 break;
3658 }
Eli Friedmanad754602009-05-28 03:56:57 +00003659 case ISD::SETCC: {
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003660 unsigned ExtOp = ISD::FP_EXTEND;
3661 if (NVT.isInteger()) {
3662 ISD::CondCode CCCode =
3663 cast<CondCodeSDNode>(Node->getOperand(2))->get();
3664 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedmanad754602009-05-28 03:56:57 +00003665 }
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003666 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3667 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedmanad754602009-05-28 03:56:57 +00003668 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3669 Tmp1, Tmp2, Node->getOperand(2)));
3670 break;
3671 }
Pete Coopercfe29982012-03-19 23:38:12 +00003672 case ISD::FDIV:
Pete Cooper9751b812012-04-04 19:36:31 +00003673 case ISD::FREM:
Pete Cooperd578b902012-01-12 21:46:18 +00003674 case ISD::FPOW: {
3675 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3676 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopercfe29982012-03-19 23:38:12 +00003677 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooperd578b902012-01-12 21:46:18 +00003678 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3679 Tmp3, DAG.getIntPtrConstant(0)));
3680 break;
3681 }
3682 case ISD::FLOG2:
3683 case ISD::FEXP2:
3684 case ISD::FLOG:
3685 case ISD::FEXP: {
3686 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3687 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
3688 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3689 Tmp2, DAG.getIntPtrConstant(0)));
3690 break;
3691 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003692 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003693
3694 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003695 if (!Results.empty())
3696 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003697}
3698
Chris Lattner3e928bb2005-01-07 07:47:09 +00003699// SelectionDAG::Legalize - This is the entry point for the file.
3700//
Dan Gohman975716a2011-05-16 22:19:54 +00003701void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00003702 /// run - This is the main entry point to this class.
3703 ///
Dan Gohman975716a2011-05-16 22:19:54 +00003704 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00003705}