blob: f085e444b650fb0ca3802a8368d1f098fe7c1d6c [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruthd04a8d42012-12-03 16:50:05 +000014#include "llvm/CodeGen/SelectionDAG.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
16#include "llvm/ADT/SmallVector.h"
Paul Redmond86cdbc92013-02-15 18:45:18 +000017#include "llvm/ADT/Triple.h"
Evan Cheng3d2125c2010-11-30 23:55:39 +000018#include "llvm/CodeGen/Analysis.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000019#include "llvm/CodeGen/MachineFunction.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000020#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000021#include "llvm/DebugInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000022#include "llvm/IR/CallingConv.h"
23#include "llvm/IR/Constants.h"
24#include "llvm/IR/DataLayout.h"
25#include "llvm/IR/DerivedTypes.h"
Chandler Carruth40b2c322013-01-08 05:11:57 +000026#include "llvm/IR/Function.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000027#include "llvm/IR/LLVMContext.h"
David Greene993aace2010-01-05 01:24:53 +000028#include "llvm/Support/Debug.h"
Jim Grosbache03262f2010-06-18 21:43:38 +000029#include "llvm/Support/ErrorHandling.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000030#include "llvm/Support/MathExtras.h"
Chris Lattner45cfe542009-08-23 06:03:38 +000031#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000032#include "llvm/Target/TargetFrameLowering.h"
33#include "llvm/Target/TargetLowering.h"
34#include "llvm/Target/TargetMachine.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000035using namespace llvm;
36
37//===----------------------------------------------------------------------===//
38/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
39/// hacks on it until the target machine can handle it. This involves
40/// eliminating value sizes the machine cannot handle (promoting small sizes to
41/// large sizes or splitting up large values into small values) as well as
42/// eliminating operations the machine cannot handle.
43///
44/// This code also does a small amount of optimization and recognition of idioms
45/// as part of its processing. For example, if a target does not support a
46/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
47/// will attempt merge setcc and brc instructions into brcc's.
48///
49namespace {
Dan Gohman65fd6562011-11-03 21:49:52 +000050class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
Dan Gohman55e59c12010-04-19 19:05:59 +000051 const TargetMachine &TM;
Dan Gohmand858e902010-04-17 15:26:15 +000052 const TargetLowering &TLI;
Chris Lattner3e928bb2005-01-07 07:47:09 +000053 SelectionDAG &DAG;
54
Dan Gohman65fd6562011-11-03 21:49:52 +000055 /// LegalizePosition - The iterator for walking through the node list.
56 SelectionDAG::allnodes_iterator LegalizePosition;
57
58 /// LegalizedNodes - The set of nodes which have already been legalized.
59 SmallPtrSet<SDNode *, 16> LegalizedNodes;
60
Chris Lattner6831a812006-02-13 09:18:02 +000061 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000062
Chris Lattner3e928bb2005-01-07 07:47:09 +000063public:
Dan Gohman975716a2011-05-16 22:19:54 +000064 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +000065
Chris Lattner3e928bb2005-01-07 07:47:09 +000066 void LegalizeDAG();
67
Chris Lattner456a93a2006-01-28 07:39:30 +000068private:
Dan Gohman65fd6562011-11-03 21:49:52 +000069 /// LegalizeOp - Legalizes the given operation.
70 void LegalizeOp(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +000071
Eli Friedman7ef3d172009-06-06 07:04:42 +000072 SDValue OptimizeFloatStore(StoreSDNode *ST);
73
Nadav Rotemb6e89f02012-07-11 08:52:09 +000074 void LegalizeLoadOps(SDNode *Node);
75 void LegalizeStoreOps(SDNode *Node);
76
Nate Begeman68679912008-04-25 18:07:40 +000077 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
78 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
79 /// is necessary to spill the vector being inserted into to memory, perform
80 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +000081 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Eli Friedman3f727d62009-05-27 02:16:40 +000082 SDValue Idx, DebugLoc dl);
83 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
84 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +000085
Nate Begeman5a5ca152009-04-29 05:20:52 +000086 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
87 /// performs the same shuffe in terms of order or result bytes, but on a type
88 /// whose vector element type is narrower than the original shuffle type.
89 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Owen Andersone50ed302009-08-10 22:56:29 +000090 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Jim Grosbach6e992612010-07-02 17:41:59 +000091 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +000092 ArrayRef<int> Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +000093
Owen Andersone50ed302009-08-10 22:56:29 +000094 void LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +000095 DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +000096
Eli Friedman47b41f72009-05-27 02:21:29 +000097 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherabbbfbd2011-04-20 01:19:45 +000098 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
99 unsigned NumOps, bool isSigned, DebugLoc dl);
100
Jim Grosbache03262f2010-06-18 21:43:38 +0000101 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
102 SDNode *Node, bool isSigned);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000103 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
104 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
Evan Cheng8688a582013-01-29 02:32:37 +0000105 RTLIB::Libcall Call_F128,
106 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000107 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
108 RTLIB::Libcall Call_I8,
109 RTLIB::Libcall Call_I16,
110 RTLIB::Libcall Call_I32,
111 RTLIB::Libcall Call_I64,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000112 RTLIB::Libcall Call_I128);
Evan Cheng65279cb2011-04-16 03:08:26 +0000113 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Evan Cheng8688a582013-01-29 02:32:37 +0000114 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnercad063f2005-07-16 00:19:57 +0000115
Owen Andersone50ed302009-08-10 22:56:29 +0000116 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000117 SDValue ExpandBUILD_VECTOR(SDNode *Node);
118 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +0000119 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
120 SmallVectorImpl<SDValue> &Results);
121 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Andersone50ed302009-08-10 22:56:29 +0000122 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +0000123 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000124 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000125 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000126 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000127 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000128
Dale Johannesen8a782a22009-02-02 22:12:50 +0000129 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
130 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000131
Eli Friedman3d43b3f2009-05-23 22:37:25 +0000132 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenecfe33c42011-01-26 19:13:22 +0000133 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000134 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman8c377c72009-05-27 01:25:56 +0000135
Dan Gohman65fd6562011-11-03 21:49:52 +0000136 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
137
Jim Grosbache03262f2010-06-18 21:43:38 +0000138 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
139
Dan Gohman65fd6562011-11-03 21:49:52 +0000140 void ExpandNode(SDNode *Node);
141 void PromoteNode(SDNode *Node);
142
Eli Friedman0e3642a2011-11-11 23:58:27 +0000143 void ForgetNode(SDNode *N) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000144 LegalizedNodes.erase(N);
145 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
146 ++LegalizePosition;
147 }
148
Eli Friedman0e3642a2011-11-11 23:58:27 +0000149public:
150 // DAGUpdateListener implementation.
151 virtual void NodeDeleted(SDNode *N, SDNode *E) {
152 ForgetNode(N);
153 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000154 virtual void NodeUpdated(SDNode *N) {}
Eli Friedman0e3642a2011-11-11 23:58:27 +0000155
156 // Node replacement helpers
157 void ReplacedNode(SDNode *N) {
158 if (N->use_empty()) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000159 DAG.RemoveDeadNode(N);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000160 } else {
161 ForgetNode(N);
162 }
163 }
164 void ReplaceNode(SDNode *Old, SDNode *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000165 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000166 ReplacedNode(Old);
167 }
168 void ReplaceNode(SDValue Old, SDValue New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000169 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000170 ReplacedNode(Old.getNode());
171 }
172 void ReplaceNode(SDNode *Old, const SDValue *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000173 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000174 ReplacedNode(Old);
175 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000176};
177}
178
Nate Begeman5a5ca152009-04-29 05:20:52 +0000179/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
180/// performs the same shuffe in terms of order or result bytes, but on a type
181/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000182/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach6e992612010-07-02 17:41:59 +0000183SDValue
184SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Nate Begeman5a5ca152009-04-29 05:20:52 +0000185 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +0000186 ArrayRef<int> Mask) const {
Nate Begeman5a5ca152009-04-29 05:20:52 +0000187 unsigned NumMaskElts = VT.getVectorNumElements();
188 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000189 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000190
Nate Begeman9008ca62009-04-27 18:41:29 +0000191 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
192
193 if (NumEltsGrowth == 1)
194 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach6e992612010-07-02 17:41:59 +0000195
Nate Begeman9008ca62009-04-27 18:41:29 +0000196 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000197 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000198 int Idx = Mask[i];
199 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach6e992612010-07-02 17:41:59 +0000200 if (Idx < 0)
Nate Begeman9008ca62009-04-27 18:41:29 +0000201 NewMask.push_back(-1);
202 else
203 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000204 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000205 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000206 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000207 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
208 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000209}
210
Dan Gohman975716a2011-05-16 22:19:54 +0000211SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000212 : SelectionDAG::DAGUpdateListener(dag),
213 TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
Dan Gohmanea027022011-07-15 22:19:02 +0000214 DAG(dag) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000215}
216
Chris Lattner3e928bb2005-01-07 07:47:09 +0000217void SelectionDAGLegalize::LegalizeDAG() {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000218 DAG.AssignTopologicalOrder();
Dan Gohman2ba60e52011-10-28 01:29:32 +0000219
Dan Gohman65fd6562011-11-03 21:49:52 +0000220 // Visit all the nodes. We start in topological order, so that we see
221 // nodes with their original operands intact. Legalization can produce
222 // new nodes which may themselves need to be legalized. Iterate until all
223 // nodes have been legalized.
224 for (;;) {
225 bool AnyLegalized = false;
226 for (LegalizePosition = DAG.allnodes_end();
227 LegalizePosition != DAG.allnodes_begin(); ) {
228 --LegalizePosition;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000229
Dan Gohman65fd6562011-11-03 21:49:52 +0000230 SDNode *N = LegalizePosition;
231 if (LegalizedNodes.insert(N)) {
232 AnyLegalized = true;
233 LegalizeOp(N);
234 }
235 }
236 if (!AnyLegalized)
237 break;
238
239 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000240
241 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000242 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000243}
244
Evan Cheng9f877882006-12-13 20:57:08 +0000245/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
246/// a load from the constant pool.
Dan Gohman65fd6562011-11-03 21:49:52 +0000247SDValue
248SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng00495212006-12-12 21:32:44 +0000249 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000250 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000251
252 // If a FP immediate is precise when represented as a float and if the
253 // target can do an extending load from float to double, we put it into
254 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000255 // double. This shrinks FP constants and canonicalizes them for targets where
256 // an FP extending load is the same cost as a normal load (such as on the x87
257 // fp stack or PPC FP unit).
Owen Andersone50ed302009-08-10 22:56:29 +0000258 EVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000259 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000260 if (!UseCP) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000261 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000262 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000263 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000264 }
265
Owen Andersone50ed302009-08-10 22:56:29 +0000266 EVT OrigVT = VT;
267 EVT SVT = VT;
Owen Anderson825b72b2009-08-11 20:47:22 +0000268 while (SVT != MVT::f32) {
269 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman7720cb32010-06-18 14:01:07 +0000270 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Chengef120572008-03-04 08:05:30 +0000271 // Only do this if the target has a native EXTLOAD instruction from
272 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000273 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000274 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000275 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Andersonbaf3c402009-07-29 18:55:55 +0000276 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Chengef120572008-03-04 08:05:30 +0000277 VT = SVT;
278 Extend = true;
279 }
Evan Cheng00495212006-12-12 21:32:44 +0000280 }
281
Dan Gohman475871a2008-07-27 21:46:04 +0000282 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000283 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman65fd6562011-11-03 21:49:52 +0000284 if (Extend) {
285 SDValue Result =
286 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
287 DAG.getEntryNode(),
288 CPIdx, MachinePointerInfo::getConstantPool(),
289 VT, false, false, Alignment);
290 return Result;
291 }
292 SDValue Result =
293 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000294 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman65fd6562011-11-03 21:49:52 +0000295 Alignment);
296 return Result;
Evan Cheng00495212006-12-12 21:32:44 +0000297}
298
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000299/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman65fd6562011-11-03 21:49:52 +0000300static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
301 const TargetLowering &TLI,
Eli Friedman0e3642a2011-11-11 23:58:27 +0000302 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000303 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
304 "unaligned indexed stores not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000305 SDValue Chain = ST->getChain();
306 SDValue Ptr = ST->getBasePtr();
307 SDValue Val = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +0000308 EVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000309 int Alignment = ST->getAlignment();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000310 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000311 if (ST->getMemoryVT().isFloatingPoint() ||
312 ST->getMemoryVT().isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000313 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000314 if (TLI.isTypeLegal(intVT)) {
315 // Expand to a bitconvert of the value to the integer type of the
316 // same size, then a (misaligned) int store.
317 // FIXME: Does not handle truncating floating point stores!
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000318 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman65fd6562011-11-03 21:49:52 +0000319 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
320 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000321 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000322 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000323 }
Dan Gohman1b328962011-05-17 22:22:52 +0000324 // Do a (aligned) store to a stack slot, then copy from the stack slot
325 // to the final destination using (unaligned) integer loads and stores.
326 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000327 MVT RegVT =
Dan Gohman1b328962011-05-17 22:22:52 +0000328 TLI.getRegisterType(*DAG.getContext(),
329 EVT::getIntegerVT(*DAG.getContext(),
330 StoredVT.getSizeInBits()));
331 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
332 unsigned RegBytes = RegVT.getSizeInBits() / 8;
333 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
334
335 // Make sure the stack slot is also aligned for the register type.
336 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
337
338 // Perform the original store, only redirected to the stack slot.
339 SDValue Store = DAG.getTruncStore(Chain, dl,
340 Val, StackPtr, MachinePointerInfo(),
341 StoredVT, false, false, 0);
342 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
343 SmallVector<SDValue, 8> Stores;
344 unsigned Offset = 0;
345
346 // Do all but one copies using the full register width.
347 for (unsigned i = 1; i < NumRegs; i++) {
348 // Load one integer register's worth from the stack slot.
349 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
350 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000351 false, false, false, 0);
Dan Gohman1b328962011-05-17 22:22:52 +0000352 // Store it to the final location. Remember the store.
353 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
354 ST->getPointerInfo().getWithOffset(Offset),
355 ST->isVolatile(), ST->isNonTemporal(),
356 MinAlign(ST->getAlignment(), Offset)));
357 // Increment the pointers.
358 Offset += RegBytes;
359 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
360 Increment);
361 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
362 }
363
364 // The last store may be partial. Do a truncating store. On big-endian
365 // machines this requires an extending load from the stack slot to ensure
366 // that the bits are in the right place.
367 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
368 8 * (StoredBytes - Offset));
369
370 // Load from the stack slot.
371 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
372 MachinePointerInfo(),
373 MemVT, false, false, 0);
374
375 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
376 ST->getPointerInfo()
377 .getWithOffset(Offset),
378 MemVT, ST->isVolatile(),
379 ST->isNonTemporal(),
380 MinAlign(ST->getAlignment(), Offset)));
381 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman65fd6562011-11-03 21:49:52 +0000382 SDValue Result =
383 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
384 Stores.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +0000385 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000386 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000387 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000388 assert(ST->getMemoryVT().isInteger() &&
389 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000390 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000391 // Get the half-size VT
Ken Dyckbceddbd2009-12-17 20:09:43 +0000392 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000393 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000394 int IncrementSize = NumBits / 8;
395
396 // Divide the stored value in two parts.
Owen Anderson95771af2011-02-25 21:41:48 +0000397 SDValue ShiftAmount = DAG.getConstant(NumBits,
398 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman475871a2008-07-27 21:46:04 +0000399 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000400 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000401
402 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000403 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000404 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000405 ST->getPointerInfo(), NewStoredVT,
David Greene1e559442010-02-15 17:00:31 +0000406 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000407 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000408 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000409 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000410 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000411 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene1e559442010-02-15 17:00:31 +0000412 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
413 Alignment);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000414
Dan Gohman65fd6562011-11-03 21:49:52 +0000415 SDValue Result =
416 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000417 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000418}
419
420/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman65fd6562011-11-03 21:49:52 +0000421static void
422ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
423 const TargetLowering &TLI,
424 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000425 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
426 "unaligned indexed loads not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000427 SDValue Chain = LD->getChain();
428 SDValue Ptr = LD->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +0000429 EVT VT = LD->getValueType(0);
430 EVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000431 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000432 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000433 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000434 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000435 // Expand to a (misaligned) integer load of the same size,
436 // then bitconvert to floating point or vector.
Chris Lattnerecf42c42010-09-21 16:36:31 +0000437 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
438 LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000439 LD->isNonTemporal(),
440 LD->isInvariant(), LD->getAlignment());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000441 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000442 if (LoadedVT != VT)
443 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
444 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000445
Dan Gohman65fd6562011-11-03 21:49:52 +0000446 ValResult = Result;
447 ChainResult = Chain;
448 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000449 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000450
Chris Lattnerecf42c42010-09-21 16:36:31 +0000451 // Copy the value to a (aligned) stack slot using (unaligned) integer
452 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000453 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattnerecf42c42010-09-21 16:36:31 +0000454 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
455 unsigned RegBytes = RegVT.getSizeInBits() / 8;
456 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
457
458 // Make sure the stack slot is also aligned for the register type.
459 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
460
461 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
462 SmallVector<SDValue, 8> Stores;
463 SDValue StackPtr = StackBase;
464 unsigned Offset = 0;
465
466 // Do all but one copies using the full register width.
467 for (unsigned i = 1; i < NumRegs; i++) {
468 // Load one integer register's worth from the original location.
469 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
470 LD->getPointerInfo().getWithOffset(Offset),
471 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000472 LD->isInvariant(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000473 MinAlign(LD->getAlignment(), Offset));
474 // Follow the load with a store to the stack slot. Remember the store.
475 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000476 MachinePointerInfo(), false, false, 0));
Chris Lattnerecf42c42010-09-21 16:36:31 +0000477 // Increment the pointers.
478 Offset += RegBytes;
479 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
480 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
481 Increment);
482 }
483
484 // The last copy may be partial. Do an extending load.
485 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
486 8 * (LoadedBytes - Offset));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000487 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000488 LD->getPointerInfo().getWithOffset(Offset),
489 MemVT, LD->isVolatile(),
490 LD->isNonTemporal(),
491 MinAlign(LD->getAlignment(), Offset));
492 // Follow the load with a store to the stack slot. Remember the store.
493 // On big-endian machines this requires a truncating store to ensure
494 // that the bits end up in the right place.
495 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
496 MachinePointerInfo(), MemVT,
497 false, false, 0));
498
499 // The order of the stores doesn't matter - say it with a TokenFactor.
500 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
501 Stores.size());
502
503 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastingsa9011292011-02-16 16:23:55 +0000504 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000505 MachinePointerInfo(), LoadedVT, false, false, 0);
506
507 // Callers expect a MERGE_VALUES node.
Dan Gohman65fd6562011-11-03 21:49:52 +0000508 ValResult = Load;
509 ChainResult = TF;
510 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000511 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000512 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000513 "Unaligned load of unsupported type.");
514
Dale Johannesen8155d642008-02-27 22:36:00 +0000515 // Compute the new VT that is half the size of the old one. This is an
516 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000517 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Andersone50ed302009-08-10 22:56:29 +0000518 EVT NewLoadedVT;
Owen Anderson23b9b192009-08-12 00:36:31 +0000519 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000520 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000521
Chris Lattnere400af82007-11-19 21:38:03 +0000522 unsigned Alignment = LD->getAlignment();
523 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000524 ISD::LoadExtType HiExtType = LD->getExtensionType();
525
526 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
527 if (HiExtType == ISD::NON_EXTLOAD)
528 HiExtType = ISD::ZEXTLOAD;
529
530 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000531 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000532 if (TLI.isLittleEndian()) {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000533 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000534 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000535 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000536 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000537 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000538 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000539 LD->getPointerInfo().getWithOffset(IncrementSize),
540 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000541 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000542 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000543 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000544 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000545 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000546 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000547 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000548 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000549 LD->getPointerInfo().getWithOffset(IncrementSize),
550 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000551 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000552 }
553
554 // aggregate the two parts
Owen Anderson95771af2011-02-25 21:41:48 +0000555 SDValue ShiftAmount = DAG.getConstant(NumBits,
556 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000557 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
558 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000559
Owen Anderson825b72b2009-08-11 20:47:22 +0000560 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000561 Hi.getValue(1));
562
Dan Gohman65fd6562011-11-03 21:49:52 +0000563 ValResult = Result;
564 ChainResult = TF;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000565}
Evan Cheng912095b2007-01-04 21:56:39 +0000566
Nate Begeman68679912008-04-25 18:07:40 +0000567/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
568/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
569/// is necessary to spill the vector being inserted into to memory, perform
570/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000571SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000572PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
573 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000574 SDValue Tmp1 = Vec;
575 SDValue Tmp2 = Val;
576 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000577
Nate Begeman68679912008-04-25 18:07:40 +0000578 // If the target doesn't support this, we have to spill the input vector
579 // to a temporary stack slot, update the element, then reload it. This is
580 // badness. We could also load the value into a vector register (either
581 // with a "move to register" or "extload into register" instruction, then
582 // permute it into place, if the idx is a constant and if the idx is
583 // supported by the target.
Owen Andersone50ed302009-08-10 22:56:29 +0000584 EVT VT = Tmp1.getValueType();
585 EVT EltVT = VT.getVectorElementType();
586 EVT IdxVT = Tmp3.getValueType();
587 EVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000588 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000589
Evan Chengff89dcb2009-10-18 18:16:27 +0000590 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
591
Nate Begeman68679912008-04-25 18:07:40 +0000592 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000593 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +0000594 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +0000595 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000596
597 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000598 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000599 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000600 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +0000601 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000602 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
603 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000604 // Store the scalar value.
Chris Lattner85ca1062010-09-21 07:32:19 +0000605 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene1e559442010-02-15 17:00:31 +0000606 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000607 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000608 return DAG.getLoad(VT, dl, Ch, StackPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000609 MachinePointerInfo::getFixedStack(SPFI), false, false,
610 false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000611}
612
Mon P Wange9f10152008-12-09 05:46:39 +0000613
Eli Friedman3f727d62009-05-27 02:16:40 +0000614SDValue SelectionDAGLegalize::
615ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, DebugLoc dl) {
616 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
617 // SCALAR_TO_VECTOR requires that the type of the value being inserted
618 // match the element type of the vector being created, except for
619 // integers in which case the inserted value can be over width.
Owen Andersone50ed302009-08-10 22:56:29 +0000620 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedman3f727d62009-05-27 02:16:40 +0000621 if (Val.getValueType() == EltVT ||
622 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
623 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
624 Vec.getValueType(), Val);
625
626 unsigned NumElts = Vec.getValueType().getVectorNumElements();
627 // We generate a shuffle of InVec and ScVec, so the shuffle mask
628 // should be 0,1,2,3,4,5... with the appropriate element replaced with
629 // elt 0 of the RHS.
630 SmallVector<int, 8> ShufOps;
631 for (unsigned i = 0; i != NumElts; ++i)
632 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
633
634 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
635 &ShufOps[0]);
636 }
637 }
638 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
639}
640
Eli Friedman7ef3d172009-06-06 07:04:42 +0000641SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
642 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
643 // FIXME: We shouldn't do this for TargetConstantFP's.
644 // FIXME: move this to the DAG Combiner! Note that we can't regress due
645 // to phase ordering between legalized code and the dag combiner. This
646 // probably means that we need to integrate dag combiner and legalizer
647 // together.
648 // We generally can't do this one for long doubles.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000649 SDValue Chain = ST->getChain();
650 SDValue Ptr = ST->getBasePtr();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000651 unsigned Alignment = ST->getAlignment();
652 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +0000653 bool isNonTemporal = ST->isNonTemporal();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000654 DebugLoc dl = ST->getDebugLoc();
655 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000656 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohman75b10042011-07-15 22:39:09 +0000657 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000658 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedman7ef3d172009-06-06 07:04:42 +0000659 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson825b72b2009-08-11 20:47:22 +0000660 MVT::i32);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000661 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000662 isVolatile, isNonTemporal, Alignment);
663 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000664
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000665 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000666 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohman75b10042011-07-15 22:39:09 +0000667 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000668 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +0000669 zextOrTrunc(64), MVT::i64);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000670 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000671 isVolatile, isNonTemporal, Alignment);
672 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000673
Dan Gohman75b10042011-07-15 22:39:09 +0000674 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000675 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
676 // stores. If the target supports neither 32- nor 64-bits, this
677 // xform is certainly not worth it.
678 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad40f8f622010-12-07 08:25:19 +0000679 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000680 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000681 if (TLI.isBigEndian()) std::swap(Lo, Hi);
682
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000683 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000684 isNonTemporal, Alignment);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000685 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Eli Friedman7ef3d172009-06-06 07:04:42 +0000686 DAG.getIntPtrConstant(4));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000687 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000688 ST->getPointerInfo().getWithOffset(4),
David Greene1e559442010-02-15 17:00:31 +0000689 isVolatile, isNonTemporal, MinAlign(Alignment, 4U));
Eli Friedman7ef3d172009-06-06 07:04:42 +0000690
Owen Anderson825b72b2009-08-11 20:47:22 +0000691 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000692 }
693 }
694 }
Evan Cheng8e23e812011-04-01 00:42:02 +0000695 return SDValue(0, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000696}
697
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000698void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
699 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000700 SDValue Chain = ST->getChain();
701 SDValue Ptr = ST->getBasePtr();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000702 DebugLoc dl = Node->getDebugLoc();
703
704 unsigned Alignment = ST->getAlignment();
705 bool isVolatile = ST->isVolatile();
706 bool isNonTemporal = ST->isNonTemporal();
707
708 if (!ST->isTruncatingStore()) {
709 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
710 ReplaceNode(ST, OptStore);
711 return;
712 }
713
714 {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000715 SDValue Value = ST->getValue();
Patrik Hagglund319bb392012-12-19 11:21:04 +0000716 MVT VT = Value.getSimpleValueType();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000717 switch (TLI.getOperationAction(ISD::STORE, VT)) {
718 default: llvm_unreachable("This action is not supported yet!");
719 case TargetLowering::Legal:
720 // If this is an unaligned store and the target doesn't support it,
721 // expand it.
722 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
723 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000724 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000725 if (ST->getAlignment() < ABIAlignment)
726 ExpandUnalignedStore(cast<StoreSDNode>(Node),
727 DAG, TLI, this);
728 }
729 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000730 case TargetLowering::Custom: {
731 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
732 if (Res.getNode())
733 ReplaceNode(SDValue(Node, 0), Res);
734 return;
735 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000736 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000737 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellard8b7f16e2012-12-10 21:41:54 +0000738 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
739 "Can only promote stores to same size type");
740 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000741 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000742 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000743 ST->getPointerInfo(), isVolatile,
744 isNonTemporal, Alignment);
745 ReplaceNode(SDValue(Node, 0), Result);
746 break;
747 }
748 }
749 return;
750 }
751 } else {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000752 SDValue Value = ST->getValue();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000753
754 EVT StVT = ST->getMemoryVT();
755 unsigned StWidth = StVT.getSizeInBits();
756
757 if (StWidth != StVT.getStoreSizeInBits()) {
758 // Promote to a byte-sized store with upper bits zero if not
759 // storing an integral number of bytes. For example, promote
760 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
761 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
762 StVT.getStoreSizeInBits());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000763 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000764 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000765 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000766 NVT, isVolatile, isNonTemporal, Alignment);
767 ReplaceNode(SDValue(Node, 0), Result);
768 } else if (StWidth & (StWidth - 1)) {
769 // If not storing a power-of-2 number of bits, expand as two stores.
770 assert(!StVT.isVector() && "Unsupported truncstore!");
771 unsigned RoundWidth = 1 << Log2_32(StWidth);
772 assert(RoundWidth < StWidth);
773 unsigned ExtraWidth = StWidth - RoundWidth;
774 assert(ExtraWidth < RoundWidth);
775 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
776 "Store size not an integral number of bytes!");
777 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
778 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
779 SDValue Lo, Hi;
780 unsigned IncrementSize;
781
782 if (TLI.isLittleEndian()) {
783 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
784 // Store the bottom RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000785 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000786 RoundVT,
787 isVolatile, isNonTemporal, Alignment);
788
789 // Store the remaining ExtraWidth bits.
790 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000791 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000792 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000793 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000794 DAG.getConstant(RoundWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000795 TLI.getShiftAmountTy(Value.getValueType())));
796 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000797 ST->getPointerInfo().getWithOffset(IncrementSize),
798 ExtraVT, isVolatile, isNonTemporal,
799 MinAlign(Alignment, IncrementSize));
800 } else {
801 // Big endian - avoid unaligned stores.
802 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
803 // Store the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000804 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000805 DAG.getConstant(ExtraWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000806 TLI.getShiftAmountTy(Value.getValueType())));
807 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000808 RoundVT, isVolatile, isNonTemporal, Alignment);
809
810 // Store the remaining ExtraWidth bits.
811 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000812 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000813 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000814 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000815 ST->getPointerInfo().getWithOffset(IncrementSize),
816 ExtraVT, isVolatile, isNonTemporal,
817 MinAlign(Alignment, IncrementSize));
818 }
819
820 // The order of the stores doesn't matter.
821 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
822 ReplaceNode(SDValue(Node, 0), Result);
823 } else {
Patrik Hagglund88ef5142012-12-19 08:28:51 +0000824 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
825 StVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000826 default: llvm_unreachable("This action is not supported yet!");
827 case TargetLowering::Legal:
828 // If this is an unaligned store and the target doesn't support it,
829 // expand it.
830 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
831 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000832 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000833 if (ST->getAlignment() < ABIAlignment)
834 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
835 }
836 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000837 case TargetLowering::Custom: {
838 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
839 if (Res.getNode())
840 ReplaceNode(SDValue(Node, 0), Res);
841 return;
842 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000843 case TargetLowering::Expand:
844 assert(!StVT.isVector() &&
845 "Vector Stores are handled in LegalizeVectorOps");
846
847 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000848 assert(TLI.isTypeLegal(StVT) &&
849 "Do not know how to expand this store!");
850 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000851 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000852 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000853 isVolatile, isNonTemporal, Alignment);
854 ReplaceNode(SDValue(Node, 0), Result);
855 break;
856 }
857 }
858 }
859}
860
861void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
862 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000863 SDValue Chain = LD->getChain(); // The chain.
864 SDValue Ptr = LD->getBasePtr(); // The base pointer.
865 SDValue Value; // The value returned by the load op.
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000866 DebugLoc dl = Node->getDebugLoc();
867
868 ISD::LoadExtType ExtType = LD->getExtensionType();
869 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000870 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000871 SDValue RVal = SDValue(Node, 0);
872 SDValue RChain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000873
874 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
875 default: llvm_unreachable("This action is not supported yet!");
876 case TargetLowering::Legal:
Evan Chengfe257cc2012-09-18 01:34:40 +0000877 // If this is an unaligned load and the target doesn't support it,
878 // expand it.
879 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
880 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
881 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +0000882 TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Chengfe257cc2012-09-18 01:34:40 +0000883 if (LD->getAlignment() < ABIAlignment){
884 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
885 }
886 }
887 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000888 case TargetLowering::Custom: {
Evan Chengfe257cc2012-09-18 01:34:40 +0000889 SDValue Res = TLI.LowerOperation(RVal, DAG);
890 if (Res.getNode()) {
891 RVal = Res;
892 RChain = Res.getValue(1);
893 }
894 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000895 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000896 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000897 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellardf45d11b2012-12-10 21:41:58 +0000898 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
899 "Can only promote loads to same size type");
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000900
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000901 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000902 LD->isVolatile(), LD->isNonTemporal(),
903 LD->isInvariant(), LD->getAlignment());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000904 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
905 RChain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000906 break;
907 }
908 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000909 if (RChain.getNode() != Node) {
910 assert(RVal.getNode() != Node && "Load must be completely replaced");
911 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
912 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000913 ReplacedNode(Node);
914 }
915 return;
916 }
917
918 EVT SrcVT = LD->getMemoryVT();
919 unsigned SrcWidth = SrcVT.getSizeInBits();
920 unsigned Alignment = LD->getAlignment();
921 bool isVolatile = LD->isVolatile();
922 bool isNonTemporal = LD->isNonTemporal();
923
924 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
925 // Some targets pretend to have an i1 loading operation, and actually
926 // load an i8. This trick is correct for ZEXTLOAD because the top 7
927 // bits are guaranteed to be zero; it helps the optimizers understand
928 // that these bits are zero. It is also useful for EXTLOAD, since it
929 // tells the optimizers that those bits are undefined. It would be
930 // nice to have an effective generic way of getting these benefits...
931 // Until such a way is found, don't insist on promoting i1 here.
932 (SrcVT != MVT::i1 ||
933 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
934 // Promote to a byte-sized load if not loading an integral number of
935 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
936 unsigned NewWidth = SrcVT.getStoreSizeInBits();
937 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
938 SDValue Ch;
939
940 // The extra bits are guaranteed to be zero, since we stored them that
941 // way. A zext load from NVT thus automatically gives zext from SrcVT.
942
943 ISD::LoadExtType NewExtType =
944 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
945
946 SDValue Result =
947 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000948 Chain, Ptr, LD->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000949 NVT, isVolatile, isNonTemporal, Alignment);
950
951 Ch = Result.getValue(1); // The chain.
952
953 if (ExtType == ISD::SEXTLOAD)
954 // Having the top bits zero doesn't help when sign extending.
955 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
956 Result.getValueType(),
957 Result, DAG.getValueType(SrcVT));
958 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
959 // All the top bits are guaranteed to be zero - inform the optimizers.
960 Result = DAG.getNode(ISD::AssertZext, dl,
961 Result.getValueType(), Result,
962 DAG.getValueType(SrcVT));
963
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000964 Value = Result;
965 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000966 } else if (SrcWidth & (SrcWidth - 1)) {
967 // If not loading a power-of-2 number of bits, expand as two loads.
968 assert(!SrcVT.isVector() && "Unsupported extload!");
969 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
970 assert(RoundWidth < SrcWidth);
971 unsigned ExtraWidth = SrcWidth - RoundWidth;
972 assert(ExtraWidth < RoundWidth);
973 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
974 "Load size not an integral number of bytes!");
975 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
976 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
977 SDValue Lo, Hi, Ch;
978 unsigned IncrementSize;
979
980 if (TLI.isLittleEndian()) {
981 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
982 // Load the bottom RoundWidth bits.
983 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000984 Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000985 LD->getPointerInfo(), RoundVT, isVolatile,
986 isNonTemporal, Alignment);
987
988 // Load the remaining ExtraWidth bits.
989 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000990 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000991 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000992 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000993 LD->getPointerInfo().getWithOffset(IncrementSize),
994 ExtraVT, isVolatile, isNonTemporal,
995 MinAlign(Alignment, IncrementSize));
996
997 // Build a factor node to remember that this load is independent of
998 // the other one.
999 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1000 Hi.getValue(1));
1001
1002 // Move the top bits to the right place.
1003 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1004 DAG.getConstant(RoundWidth,
1005 TLI.getShiftAmountTy(Hi.getValueType())));
1006
1007 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001008 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001009 } else {
1010 // Big endian - avoid unaligned loads.
1011 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1012 // Load the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001013 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001014 LD->getPointerInfo(), RoundVT, isVolatile,
1015 isNonTemporal, Alignment);
1016
1017 // Load the remaining ExtraWidth bits.
1018 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001019 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001020 DAG.getIntPtrConstant(IncrementSize));
1021 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001022 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001023 LD->getPointerInfo().getWithOffset(IncrementSize),
1024 ExtraVT, isVolatile, isNonTemporal,
1025 MinAlign(Alignment, IncrementSize));
1026
1027 // Build a factor node to remember that this load is independent of
1028 // the other one.
1029 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1030 Hi.getValue(1));
1031
1032 // Move the top bits to the right place.
1033 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1034 DAG.getConstant(ExtraWidth,
1035 TLI.getShiftAmountTy(Hi.getValueType())));
1036
1037 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001038 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001039 }
1040
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001041 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001042 } else {
1043 bool isCustom = false;
Patrik Hagglund702474d2012-12-14 09:05:13 +00001044 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001045 default: llvm_unreachable("This action is not supported yet!");
1046 case TargetLowering::Custom:
1047 isCustom = true;
1048 // FALLTHROUGH
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001049 case TargetLowering::Legal: {
1050 Value = SDValue(Node, 0);
1051 Chain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001052
1053 if (isCustom) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001054 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1055 if (Res.getNode()) {
1056 Value = Res;
1057 Chain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001058 }
1059 } else {
1060 // If this is an unaligned load and the target doesn't support it,
1061 // expand it.
1062 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
1063 Type *Ty =
1064 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1065 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +00001066 TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001067 if (LD->getAlignment() < ABIAlignment){
1068 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001069 DAG, TLI, Value, Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001070 }
1071 }
1072 }
1073 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001074 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001075 case TargetLowering::Expand:
1076 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) && TLI.isTypeLegal(SrcVT)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001077 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001078 LD->getPointerInfo(),
1079 LD->isVolatile(), LD->isNonTemporal(),
1080 LD->isInvariant(), LD->getAlignment());
1081 unsigned ExtendOp;
1082 switch (ExtType) {
1083 case ISD::EXTLOAD:
1084 ExtendOp = (SrcVT.isFloatingPoint() ?
1085 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1086 break;
1087 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1088 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1089 default: llvm_unreachable("Unexpected extend load type!");
1090 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001091 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1092 Chain = Load.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001093 break;
1094 }
1095
1096 assert(!SrcVT.isVector() &&
1097 "Vector Loads are handled in LegalizeVectorOps");
1098
1099 // FIXME: This does not work for vectors on most targets. Sign- and
1100 // zero-extend operations are currently folded into extending loads,
1101 // whether they are legal or not, and then we end up here without any
1102 // support for legalizing them.
1103 assert(ExtType != ISD::EXTLOAD &&
1104 "EXTLOAD should always be supported!");
1105 // Turn the unsupported load into an EXTLOAD followed by an explicit
1106 // zero/sign extend inreg.
1107 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001108 Chain, Ptr, LD->getPointerInfo(), SrcVT,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001109 LD->isVolatile(), LD->isNonTemporal(),
1110 LD->getAlignment());
1111 SDValue ValRes;
1112 if (ExtType == ISD::SEXTLOAD)
1113 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1114 Result.getValueType(),
1115 Result, DAG.getValueType(SrcVT));
1116 else
1117 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001118 Value = ValRes;
1119 Chain = Result.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001120 break;
1121 }
1122 }
1123
1124 // Since loads produce two values, make sure to remember that we legalized
1125 // both of them.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001126 if (Chain.getNode() != Node) {
1127 assert(Value.getNode() != Node && "Load must be completely replaced");
1128 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1129 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001130 ReplacedNode(Node);
1131 }
1132}
1133
Dan Gohman6a109f92011-07-15 21:42:20 +00001134/// LegalizeOp - Return a legal replacement for the given operation, with
1135/// all legal operands.
Dan Gohman65fd6562011-11-03 21:49:52 +00001136void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1137 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1138 return;
Scott Michelfdc40a02009-02-17 22:15:04 +00001139
Eli Friedman1fde9c52009-05-24 02:46:31 +00001140 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001141 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1142 TargetLowering::TypeLegal &&
Eli Friedman1fde9c52009-05-24 02:46:31 +00001143 "Unexpected illegal type!");
1144
1145 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001146 assert((TLI.getTypeAction(*DAG.getContext(),
1147 Node->getOperand(i).getValueType()) ==
1148 TargetLowering::TypeLegal ||
Eli Friedman1fde9c52009-05-24 02:46:31 +00001149 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1150 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001151
Eli Friedman8c377c72009-05-27 01:25:56 +00001152 // Figure out the correct action; the way to query this varies by opcode
Bill Wendling6b9a2932011-01-26 22:21:35 +00001153 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman8c377c72009-05-27 01:25:56 +00001154 bool SimpleFinishLegalizing = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001155 switch (Node->getOpcode()) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001156 case ISD::INTRINSIC_W_CHAIN:
1157 case ISD::INTRINSIC_WO_CHAIN:
1158 case ISD::INTRINSIC_VOID:
Eli Friedman8c377c72009-05-27 01:25:56 +00001159 case ISD::STACKSAVE:
Owen Anderson825b72b2009-08-11 20:47:22 +00001160 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman8c377c72009-05-27 01:25:56 +00001161 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00001162 case ISD::VAARG:
1163 Action = TLI.getOperationAction(Node->getOpcode(),
1164 Node->getValueType(0));
1165 if (Action != TargetLowering::Promote)
1166 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1167 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001168 case ISD::SINT_TO_FP:
1169 case ISD::UINT_TO_FP:
1170 case ISD::EXTRACT_VECTOR_ELT:
1171 Action = TLI.getOperationAction(Node->getOpcode(),
1172 Node->getOperand(0).getValueType());
1173 break;
1174 case ISD::FP_ROUND_INREG:
1175 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00001176 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00001177 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1178 break;
1179 }
Eli Friedman327236c2011-08-24 20:50:09 +00001180 case ISD::ATOMIC_STORE: {
1181 Action = TLI.getOperationAction(Node->getOpcode(),
1182 Node->getOperand(2).getValueType());
1183 break;
1184 }
Eli Friedman3be2e512009-05-28 03:06:16 +00001185 case ISD::SELECT_CC:
1186 case ISD::SETCC:
1187 case ISD::BR_CC: {
1188 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1189 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1190 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001191 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedman3be2e512009-05-28 03:06:16 +00001192 ISD::CondCode CCCode =
1193 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1194 Action = TLI.getCondCodeAction(CCCode, OpVT);
1195 if (Action == TargetLowering::Legal) {
1196 if (Node->getOpcode() == ISD::SELECT_CC)
1197 Action = TLI.getOperationAction(Node->getOpcode(),
1198 Node->getValueType(0));
1199 else
1200 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1201 }
1202 break;
1203 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001204 case ISD::LOAD:
1205 case ISD::STORE:
Eli Friedmanad754602009-05-28 03:56:57 +00001206 // FIXME: Model these properly. LOAD and STORE are complicated, and
1207 // STORE expects the unlegalized operand in some cases.
1208 SimpleFinishLegalizing = false;
1209 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001210 case ISD::CALLSEQ_START:
1211 case ISD::CALLSEQ_END:
Eli Friedmanad754602009-05-28 03:56:57 +00001212 // FIXME: This shouldn't be necessary. These nodes have special properties
1213 // dealing with the recursive nature of legalization. Removing this
1214 // special case should be done as part of making LegalizeDAG non-recursive.
1215 SimpleFinishLegalizing = false;
1216 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001217 case ISD::EXTRACT_ELEMENT:
1218 case ISD::FLT_ROUNDS_:
1219 case ISD::SADDO:
1220 case ISD::SSUBO:
1221 case ISD::UADDO:
1222 case ISD::USUBO:
1223 case ISD::SMULO:
1224 case ISD::UMULO:
1225 case ISD::FPOWI:
1226 case ISD::MERGE_VALUES:
1227 case ISD::EH_RETURN:
1228 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00001229 case ISD::EH_SJLJ_SETJMP:
1230 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001231 // These operations lie about being legal: when they claim to be legal,
1232 // they should actually be expanded.
Eli Friedman8c377c72009-05-27 01:25:56 +00001233 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1234 if (Action == TargetLowering::Legal)
1235 Action = TargetLowering::Expand;
1236 break;
Duncan Sands4a544a72011-09-06 13:37:06 +00001237 case ISD::INIT_TRAMPOLINE:
1238 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman8c377c72009-05-27 01:25:56 +00001239 case ISD::FRAMEADDR:
1240 case ISD::RETURNADDR:
Eli Friedman4bc8c712009-05-27 12:20:41 +00001241 // These operations lie about being legal: when they claim to be legal,
1242 // they should actually be custom-lowered.
1243 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1244 if (Action == TargetLowering::Legal)
1245 Action = TargetLowering::Custom;
Eli Friedman8c377c72009-05-27 01:25:56 +00001246 break;
Shuxin Yang970755e2012-10-19 20:11:16 +00001247 case ISD::DEBUGTRAP:
1248 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1249 if (Action == TargetLowering::Expand) {
1250 // replace ISD::DEBUGTRAP with ISD::TRAP
1251 SDValue NewVal;
Shuxin Yangcfc6cb02012-10-19 23:00:20 +00001252 NewVal = DAG.getNode(ISD::TRAP, Node->getDebugLoc(), Node->getVTList(),
1253 Node->getOperand(0));
Shuxin Yang970755e2012-10-19 20:11:16 +00001254 ReplaceNode(Node, NewVal.getNode());
1255 LegalizeOp(NewVal.getNode());
1256 return;
1257 }
1258 break;
1259
Chris Lattner3e928bb2005-01-07 07:47:09 +00001260 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001261 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001262 Action = TargetLowering::Legal;
1263 } else {
1264 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001265 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001266 break;
1267 }
1268
1269 if (SimpleFinishLegalizing) {
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001270 SDNode *NewNode = Node;
Eli Friedman8c377c72009-05-27 01:25:56 +00001271 switch (Node->getOpcode()) {
1272 default: break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001273 case ISD::SHL:
1274 case ISD::SRL:
1275 case ISD::SRA:
1276 case ISD::ROTL:
1277 case ISD::ROTR:
1278 // Legalizing shifts/rotates requires adjusting the shift amount
1279 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001280 if (!Node->getOperand(1).getValueType().isVector()) {
1281 SDValue SAO =
1282 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1283 Node->getOperand(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00001284 HandleSDNode Handle(SAO);
1285 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001286 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1287 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001288 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001289 break;
Dan Gohmandb8dc2b2009-08-18 23:36:17 +00001290 case ISD::SRL_PARTS:
1291 case ISD::SRA_PARTS:
1292 case ISD::SHL_PARTS:
1293 // Legalizing shifts/rotates requires adjusting the shift amount
1294 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001295 if (!Node->getOperand(2).getValueType().isVector()) {
1296 SDValue SAO =
1297 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1298 Node->getOperand(2));
Dan Gohman65fd6562011-11-03 21:49:52 +00001299 HandleSDNode Handle(SAO);
1300 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001301 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1302 Node->getOperand(1),
1303 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001304 }
Dan Gohman2c9489d2009-08-18 23:52:48 +00001305 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001306 }
1307
Dan Gohman65fd6562011-11-03 21:49:52 +00001308 if (NewNode != Node) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001309 DAG.ReplaceAllUsesWith(Node, NewNode);
Dan Gohman65fd6562011-11-03 21:49:52 +00001310 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1311 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman0e3642a2011-11-11 23:58:27 +00001312 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001313 Node = NewNode;
1314 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001315 switch (Action) {
1316 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +00001317 return;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001318 case TargetLowering::Custom: {
Eli Friedman8c377c72009-05-27 01:25:56 +00001319 // FIXME: The handling for custom lowering with multiple results is
1320 // a complete mess.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001321 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1322 if (Res.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001323 SmallVector<SDValue, 8> ResultVals;
Eli Friedman8c377c72009-05-27 01:25:56 +00001324 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1325 if (e == 1)
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001326 ResultVals.push_back(Res);
Eli Friedman8c377c72009-05-27 01:25:56 +00001327 else
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001328 ResultVals.push_back(Res.getValue(i));
Eli Friedman8c377c72009-05-27 01:25:56 +00001329 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001330 if (Res.getNode() != Node || Res.getResNo() != 0) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001331 DAG.ReplaceAllUsesWith(Node, ResultVals.data());
Dan Gohman65fd6562011-11-03 21:49:52 +00001332 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1333 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001334 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001335 }
1336 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001337 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001338 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001339 // FALL THROUGH
1340 case TargetLowering::Expand:
Dan Gohman65fd6562011-11-03 21:49:52 +00001341 ExpandNode(Node);
1342 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001343 case TargetLowering::Promote:
Dan Gohman65fd6562011-11-03 21:49:52 +00001344 PromoteNode(Node);
1345 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001346 }
1347 }
1348
1349 switch (Node->getOpcode()) {
1350 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001351#ifndef NDEBUG
David Greene993aace2010-01-05 01:24:53 +00001352 dbgs() << "NODE: ";
1353 Node->dump( &DAG);
1354 dbgs() << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001355#endif
Craig Topper5e25ee82012-02-05 08:31:47 +00001356 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001357
Dan Gohman65fd6562011-11-03 21:49:52 +00001358 case ISD::CALLSEQ_START:
Dan Gohman6f3ddef2011-10-29 00:41:52 +00001359 case ISD::CALLSEQ_END:
Dan Gohman65fd6562011-11-03 21:49:52 +00001360 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001361 case ISD::LOAD: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001362 return LegalizeLoadOps(Node);
Chris Lattner01ff7212005-04-10 22:54:25 +00001363 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001364 case ISD::STORE: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001365 return LegalizeStoreOps(Node);
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001366 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001367 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001368}
1369
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001370SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1371 SDValue Vec = Op.getOperand(0);
1372 SDValue Idx = Op.getOperand(1);
1373 DebugLoc dl = Op.getDebugLoc();
1374 // Store the value to a temporary stack slot, then LOAD the returned part.
1375 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Chris Lattner6229d0a2010-09-21 18:41:36 +00001376 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1377 MachinePointerInfo(), false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001378
1379 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001380 unsigned EltSize =
1381 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001382 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1383 DAG.getConstant(EltSize, Idx.getValueType()));
1384
1385 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1386 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1387 else
1388 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1389
1390 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1391
Eli Friedmanc680ac92009-07-09 22:01:03 +00001392 if (Op.getValueType().isVector())
Chris Lattnerecf42c42010-09-21 16:36:31 +00001393 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001394 false, false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00001395 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001396 MachinePointerInfo(),
1397 Vec.getValueType().getVectorElementType(),
1398 false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001399}
1400
David Greenecfe33c42011-01-26 19:13:22 +00001401SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1402 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1403
1404 SDValue Vec = Op.getOperand(0);
1405 SDValue Part = Op.getOperand(1);
1406 SDValue Idx = Op.getOperand(2);
1407 DebugLoc dl = Op.getDebugLoc();
1408
1409 // Store the value to a temporary stack slot, then LOAD the returned part.
1410
1411 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1412 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1413 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1414
1415 // First store the whole vector.
1416 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1417 false, false, 0);
1418
1419 // Then store the inserted part.
1420
1421 // Add the offset to the index.
1422 unsigned EltSize =
1423 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1424
1425 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1426 DAG.getConstant(EltSize, Idx.getValueType()));
1427
1428 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1429 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1430 else
1431 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1432
1433 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1434 StackPtr);
1435
1436 // Store the subvector.
1437 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1438 MachinePointerInfo(), false, false, 0);
1439
1440 // Finally, load the updated vector.
1441 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001442 false, false, false, 0);
David Greenecfe33c42011-01-26 19:13:22 +00001443}
1444
Eli Friedman7ef3d172009-06-06 07:04:42 +00001445SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1446 // We can't handle this case efficiently. Allocate a sufficiently
1447 // aligned object on the stack, store each element into it, then load
1448 // the result as a vector.
1449 // Create the stack frame object.
Owen Andersone50ed302009-08-10 22:56:29 +00001450 EVT VT = Node->getValueType(0);
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001451 EVT EltVT = VT.getVectorElementType();
Eli Friedman7ef3d172009-06-06 07:04:42 +00001452 DebugLoc dl = Node->getDebugLoc();
1453 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Chengff89dcb2009-10-18 18:16:27 +00001454 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattnerecf42c42010-09-21 16:36:31 +00001455 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001456
1457 // Emit a store of each element to the stack slot.
1458 SmallVector<SDValue, 8> Stores;
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001459 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedman7ef3d172009-06-06 07:04:42 +00001460 // Store (in the right endianness) the elements to memory.
1461 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1462 // Ignore undef elements.
1463 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1464
1465 unsigned Offset = TypeByteSize*i;
1466
1467 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1468 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1469
Dan Gohman9949dd62010-02-25 20:30:49 +00001470 // If the destination vector element type is narrower than the source
1471 // element type, only store the bits necessary.
1472 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001473 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001474 Node->getOperand(i), Idx,
1475 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001476 EltVT, false, false, 0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00001477 } else
Jim Grosbach6e992612010-07-02 17:41:59 +00001478 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001479 Node->getOperand(i), Idx,
1480 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001481 false, false, 0));
Eli Friedman7ef3d172009-06-06 07:04:42 +00001482 }
1483
1484 SDValue StoreChain;
1485 if (!Stores.empty()) // Not all undef elements?
Owen Anderson825b72b2009-08-11 20:47:22 +00001486 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedman7ef3d172009-06-06 07:04:42 +00001487 &Stores[0], Stores.size());
1488 else
1489 StoreChain = DAG.getEntryNode();
1490
1491 // Result is a load from the stack slot.
Pete Cooperd752e0f2011-11-08 18:42:53 +00001492 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
1493 false, false, false, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001494}
1495
Eli Friedman4bc8c712009-05-27 12:20:41 +00001496SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
1497 DebugLoc dl = Node->getDebugLoc();
1498 SDValue Tmp1 = Node->getOperand(0);
1499 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands5d54b412010-03-12 11:45:06 +00001500
1501 // Get the sign bit of the RHS. First obtain a value that has the same
1502 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001503 SDValue SignBit;
Duncan Sands5d54b412010-03-12 11:45:06 +00001504 EVT FloatVT = Tmp2.getValueType();
1505 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohman75b10042011-07-15 22:39:09 +00001506 if (TLI.isTypeLegal(IVT)) {
Duncan Sands5d54b412010-03-12 11:45:06 +00001507 // Convert to an integer with the same sign bit.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001508 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001509 } else {
Duncan Sands5d54b412010-03-12 11:45:06 +00001510 // Store the float to memory, then load the sign part out as an integer.
1511 MVT LoadTy = TLI.getPointerTy();
1512 // First create a temporary that is aligned for both the load and store.
1513 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1514 // Then store the float to it.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001515 SDValue Ch =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001516 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00001517 false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001518 if (TLI.isBigEndian()) {
1519 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1520 // Load out a legal integer with the same sign bit as the float.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001521 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001522 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001523 } else { // Little endian
1524 SDValue LoadPtr = StackPtr;
1525 // The float may be wider than the integer we are going to load. Advance
1526 // the pointer so that the loaded integer will contain the sign bit.
1527 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1528 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1529 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(),
1530 LoadPtr, DAG.getIntPtrConstant(ByteOffset));
1531 // Load a legal integer containing the sign bit.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001532 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001533 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001534 // Move the sign bit to the top bit of the loaded integer.
1535 unsigned BitShift = LoadTy.getSizeInBits() -
1536 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1537 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1538 if (BitShift)
1539 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Anderson95771af2011-02-25 21:41:48 +00001540 DAG.getConstant(BitShift,
1541 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands5d54b412010-03-12 11:45:06 +00001542 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00001543 }
Duncan Sands5d54b412010-03-12 11:45:06 +00001544 // Now get the sign bit proper, by seeing whether the value is negative.
1545 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(SignBit.getValueType()),
1546 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1547 ISD::SETLT);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001548 // Get the absolute value of the result.
1549 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1550 // Select between the nabs and abs value based on the sign bit of
1551 // the input.
1552 return DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
1553 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1554 AbsVal);
1555}
1556
Eli Friedman4bc8c712009-05-27 12:20:41 +00001557void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1558 SmallVectorImpl<SDValue> &Results) {
1559 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1560 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1561 " not tell us which reg is the stack pointer!");
1562 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001563 EVT VT = Node->getValueType(0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001564 SDValue Tmp1 = SDValue(Node, 0);
1565 SDValue Tmp2 = SDValue(Node, 1);
1566 SDValue Tmp3 = Node->getOperand(2);
1567 SDValue Chain = Tmp1.getOperand(0);
1568
1569 // Chain the dynamic stack allocation so that it doesn't modify the stack
1570 // pointer when other instructions are using the stack.
1571 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
1572
1573 SDValue Size = Tmp2.getOperand(1);
1574 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1575 Chain = SP.getValue(1);
1576 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001577 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman4bc8c712009-05-27 12:20:41 +00001578 if (Align > StackAlign)
1579 SP = DAG.getNode(ISD::AND, dl, VT, SP,
1580 DAG.getConstant(-(uint64_t)Align, VT));
1581 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
1582 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1583
1584 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1585 DAG.getIntPtrConstant(0, true), SDValue());
1586
1587 Results.push_back(Tmp1);
1588 Results.push_back(Tmp2);
1589}
1590
Evan Cheng7f042682008-10-15 02:05:31 +00001591/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Dan Gohmanf77fc922009-10-17 01:37:38 +00001592/// condition code CC on the current target. This routine expands SETCC with
Evan Cheng7f042682008-10-15 02:05:31 +00001593/// illegal condition code into AND / OR of multiple SETCC values.
Owen Andersone50ed302009-08-10 22:56:29 +00001594void SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng7f042682008-10-15 02:05:31 +00001595 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00001596 SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +00001597 DebugLoc dl) {
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001598 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng7f042682008-10-15 02:05:31 +00001599 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
1600 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001601 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng7f042682008-10-15 02:05:31 +00001602 case TargetLowering::Legal:
1603 // Nothing to do.
1604 break;
1605 case TargetLowering::Expand: {
1606 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
Micah Villmowd6458a02012-10-10 20:50:51 +00001607 ISD::CondCode InvCC = ISD::SETCC_INVALID;
Evan Cheng7f042682008-10-15 02:05:31 +00001608 unsigned Opc = 0;
1609 switch (CCCode) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001610 default: llvm_unreachable("Don't know how to expand this condition!");
Micah Villmowd6458a02012-10-10 20:50:51 +00001611 case ISD::SETO:
1612 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1613 == TargetLowering::Legal
1614 && "If SETO is expanded, SETOEQ must be legal!");
1615 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
1616 case ISD::SETUO:
1617 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1618 == TargetLowering::Legal
1619 && "If SETUO is expanded, SETUNE must be legal!");
1620 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1621 case ISD::SETOEQ:
1622 case ISD::SETOGT:
1623 case ISD::SETOGE:
1624 case ISD::SETOLT:
1625 case ISD::SETOLE:
1626 case ISD::SETONE:
1627 case ISD::SETUEQ:
1628 case ISD::SETUNE:
1629 case ISD::SETUGT:
1630 case ISD::SETUGE:
1631 case ISD::SETULT:
1632 case ISD::SETULE:
1633 // If we are floating point, assign and break, otherwise fall through.
1634 if (!OpVT.isInteger()) {
1635 // We can use the 4th bit to tell if we are the unordered
1636 // or ordered version of the opcode.
1637 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1638 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1639 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1640 break;
1641 }
1642 // Fallthrough if we are unsigned integer.
1643 case ISD::SETLE:
1644 case ISD::SETGT:
1645 case ISD::SETGE:
1646 case ISD::SETLT:
1647 case ISD::SETNE:
1648 case ISD::SETEQ:
1649 InvCC = ISD::getSetCCSwappedOperands(CCCode);
1650 if (TLI.getCondCodeAction(InvCC, OpVT) == TargetLowering::Expand) {
1651 // We only support using the inverted operation and not a
1652 // different manner of supporting expanding these cases.
1653 llvm_unreachable("Don't know how to expand this condition!");
1654 }
1655 LHS = DAG.getSetCC(dl, VT, RHS, LHS, InvCC);
1656 RHS = SDValue();
1657 CC = SDValue();
1658 return;
Evan Cheng7f042682008-10-15 02:05:31 +00001659 }
Micah Villmowd6458a02012-10-10 20:50:51 +00001660
1661 SDValue SetCC1, SetCC2;
1662 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1663 // If we aren't the ordered or unorder operation,
1664 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1665 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1666 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1667 } else {
1668 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1669 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1670 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1671 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001672 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00001673 RHS = SDValue();
1674 CC = SDValue();
1675 break;
1676 }
1677 }
1678}
1679
Chris Lattner1401d152008-01-16 07:45:30 +00001680/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1681/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1682/// a load from the stack slot to DestVT, extending it if needed.
1683/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001684SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Andersone50ed302009-08-10 22:56:29 +00001685 EVT SlotVT,
1686 EVT DestVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00001687 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00001688 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001689 unsigned SrcAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00001690 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson23b9b192009-08-12 00:36:31 +00001691 getTypeForEVT(*DAG.getContext()));
Dan Gohman475871a2008-07-27 21:46:04 +00001692 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001693
Evan Chengff89dcb2009-10-18 18:16:27 +00001694 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1695 int SPFI = StackPtrFI->getIndex();
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001696 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Chengff89dcb2009-10-18 18:16:27 +00001697
Duncan Sands83ec4b62008-06-06 12:08:01 +00001698 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1699 unsigned SlotSize = SlotVT.getSizeInBits();
1700 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001701 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00001702 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelfdc40a02009-02-17 22:15:04 +00001703
Chris Lattner1401d152008-01-16 07:45:30 +00001704 // Emit a store to the stack slot. Use a truncstore if the input value is
1705 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00001706 SDValue Store;
Evan Chengff89dcb2009-10-18 18:16:27 +00001707
Chris Lattner1401d152008-01-16 07:45:30 +00001708 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00001709 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001710 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001711 else {
1712 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00001713 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001714 PtrInfo, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001715 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001716
Chris Lattner35481892005-12-23 00:16:34 +00001717 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00001718 if (SlotSize == DestSize)
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001719 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001720 false, false, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001721
Chris Lattner1401d152008-01-16 07:45:30 +00001722 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastingsa9011292011-02-16 16:23:55 +00001723 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001724 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00001725}
1726
Dan Gohman475871a2008-07-27 21:46:04 +00001727SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00001728 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00001729 // Create a vector sized/aligned stack slot, store the value to element #0,
1730 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00001731 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00001732
Evan Chengff89dcb2009-10-18 18:16:27 +00001733 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1734 int SPFI = StackPtrFI->getIndex();
1735
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001736 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1737 StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001738 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +00001739 Node->getValueType(0).getVectorElementType(),
1740 false, false, 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00001741 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001742 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001743 false, false, false, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001744}
1745
1746
Chris Lattnerce872152006-03-19 06:31:19 +00001747/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00001748/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00001749SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001750 unsigned NumElems = Node->getNumOperands();
Eli Friedman7a5e5552009-06-07 06:52:44 +00001751 SDValue Value1, Value2;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001752 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001753 EVT VT = Node->getValueType(0);
1754 EVT OpVT = Node->getOperand(0).getValueType();
1755 EVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001756
1757 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00001758 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00001759 bool isOnlyLowElement = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001760 bool MoreThanTwoValues = false;
Chris Lattner2eb86532006-03-24 07:29:17 +00001761 bool isConstant = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001762 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001763 SDValue V = Node->getOperand(i);
Eli Friedman7a5e5552009-06-07 06:52:44 +00001764 if (V.getOpcode() == ISD::UNDEF)
1765 continue;
1766 if (i > 0)
Chris Lattnerce872152006-03-19 06:31:19 +00001767 isOnlyLowElement = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001768 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner2eb86532006-03-24 07:29:17 +00001769 isConstant = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001770
1771 if (!Value1.getNode()) {
1772 Value1 = V;
1773 } else if (!Value2.getNode()) {
1774 if (V != Value1)
1775 Value2 = V;
1776 } else if (V != Value1 && V != Value2) {
1777 MoreThanTwoValues = true;
1778 }
Chris Lattnerce872152006-03-19 06:31:19 +00001779 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001780
Eli Friedman7a5e5552009-06-07 06:52:44 +00001781 if (!Value1.getNode())
1782 return DAG.getUNDEF(VT);
1783
1784 if (isOnlyLowElement)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001785 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001786
Chris Lattner2eb86532006-03-24 07:29:17 +00001787 // If all elements are constants, create a load from the constant pool.
1788 if (isConstant) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001789 SmallVector<Constant*, 16> CV;
Chris Lattner2eb86532006-03-24 07:29:17 +00001790 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001791 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00001792 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00001793 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001794 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001795 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen9a645cd2009-11-10 23:16:41 +00001796 if (OpVT==EltVT)
1797 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1798 else {
1799 // If OpVT and EltVT don't match, EltVT is not legal and the
1800 // element values have been promoted/truncated earlier. Undo this;
1801 // we don't want a v16i8 to become a v16i32 for example.
1802 const ConstantInt *CI = V->getConstantIntValue();
1803 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1804 CI->getZExtValue()));
1805 }
Chris Lattner2eb86532006-03-24 07:29:17 +00001806 } else {
1807 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001808 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001809 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner2eb86532006-03-24 07:29:17 +00001810 }
1811 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00001812 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00001813 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00001814 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00001815 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00001816 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001817 false, false, false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00001818 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001819
Eli Friedman7a5e5552009-06-07 06:52:44 +00001820 if (!MoreThanTwoValues) {
1821 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1822 for (unsigned i = 0; i < NumElems; ++i) {
1823 SDValue V = Node->getOperand(i);
1824 if (V.getOpcode() == ISD::UNDEF)
1825 continue;
1826 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1827 }
1828 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00001829 // Get the splatted value into the low element of a vector register.
Eli Friedman7a5e5552009-06-07 06:52:44 +00001830 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1831 SDValue Vec2;
1832 if (Value2.getNode())
1833 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1834 else
1835 Vec2 = DAG.getUNDEF(VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001836
Chris Lattner87100e02006-03-20 01:52:29 +00001837 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Eli Friedman7a5e5552009-06-07 06:52:44 +00001838 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
Evan Cheng033e6812006-03-24 01:17:21 +00001839 }
1840 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001841
Eli Friedman7ef3d172009-06-06 07:04:42 +00001842 // Otherwise, we can't handle this case efficiently.
1843 return ExpandVectorBuildThroughStack(Node);
Chris Lattnerce872152006-03-19 06:31:19 +00001844}
1845
Chris Lattner77e77a62005-01-21 06:05:23 +00001846// ExpandLibCall - Expand a node into a call to a libcall. If the result value
1847// does not fit into a register, return the lo part and set the hi part to the
1848// by-reg argument. If it does fit into a single register, return the result
1849// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00001850SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedman47b41f72009-05-27 02:21:29 +00001851 bool isSigned) {
Chris Lattner77e77a62005-01-21 06:05:23 +00001852 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00001853 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00001854 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00001855 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001856 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelfdc40a02009-02-17 22:15:04 +00001857 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00001858 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00001859 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00001860 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00001861 }
Bill Wendling056292f2008-09-16 21:48:12 +00001862 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00001863 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001864
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001865 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Cheng3d2125c2010-11-30 23:55:39 +00001866
Evan Chengbf010eb2012-04-10 01:51:00 +00001867 // By default, the input chain to this libcall is the entry node of the
1868 // function. If the libcall is going to be emitted as a tail call then
1869 // TLI.isUsedByReturnOnly will change it to the right chain if the return
1870 // node which is being folded has a non-entry input chain.
1871 SDValue InChain = DAG.getEntryNode();
1872
Evan Cheng3d2125c2010-11-30 23:55:39 +00001873 // isTailCall may be true since the callee does not reference caller stack
1874 // frame. Check if it's in the right position.
Evan Chengb52ba492012-04-10 03:15:18 +00001875 SDValue TCChain = InChain;
Tim Northover2c8cf4b2013-01-09 13:18:15 +00001876 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Chengb52ba492012-04-10 03:15:18 +00001877 if (isTailCall)
1878 InChain = TCChain;
1879
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001880 TargetLowering::
1881 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001882 0, TLI.getLibcallCallingConv(LC), isTailCall,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001883 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Bill Wendling46ada192010-03-02 01:55:18 +00001884 Callee, Args, DAG, Node->getDebugLoc());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001885 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
1886
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00001887
Evan Cheng3d2125c2010-11-30 23:55:39 +00001888 if (!CallInfo.second.getNode())
1889 // It's a tailcall, return the chain (which is the DAG root).
1890 return DAG.getRoot();
1891
Eli Friedman74807f22009-05-26 08:55:52 +00001892 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00001893}
1894
Dan Gohmanf316eb72011-05-16 22:09:53 +00001895/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001896/// and returning a result of type RetVT.
1897SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1898 const SDValue *Ops, unsigned NumOps,
1899 bool isSigned, DebugLoc dl) {
1900 TargetLowering::ArgListTy Args;
1901 Args.reserve(NumOps);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001902
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001903 TargetLowering::ArgListEntry Entry;
1904 for (unsigned i = 0; i != NumOps; ++i) {
1905 Entry.Node = Ops[i];
1906 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1907 Entry.isSExt = isSigned;
1908 Entry.isZExt = !isSigned;
1909 Args.push_back(Entry);
1910 }
1911 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1912 TLI.getPointerTy());
Dan Gohmanf316eb72011-05-16 22:09:53 +00001913
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001914 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001915 TargetLowering::
1916 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1917 false, 0, TLI.getLibcallCallingConv(LC),
1918 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001919 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001920 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001921 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001922
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001923 return CallInfo.first;
1924}
1925
Jim Grosbache03262f2010-06-18 21:43:38 +00001926// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1927// ExpandLibCall except that the first operand is the in-chain.
1928std::pair<SDValue, SDValue>
1929SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1930 SDNode *Node,
1931 bool isSigned) {
Jim Grosbache03262f2010-06-18 21:43:38 +00001932 SDValue InChain = Node->getOperand(0);
1933
1934 TargetLowering::ArgListTy Args;
1935 TargetLowering::ArgListEntry Entry;
1936 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1937 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001938 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001939 Entry.Node = Node->getOperand(i);
1940 Entry.Ty = ArgTy;
1941 Entry.isSExt = isSigned;
1942 Entry.isZExt = !isSigned;
1943 Args.push_back(Entry);
1944 }
1945 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1946 TLI.getPointerTy());
1947
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001948 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001949 TargetLowering::
1950 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001951 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001952 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbache03262f2010-06-18 21:43:38 +00001953 Callee, Args, DAG, Node->getDebugLoc());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001954 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbache03262f2010-06-18 21:43:38 +00001955
Jim Grosbache03262f2010-06-18 21:43:38 +00001956 return CallInfo;
1957}
1958
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001959SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
1960 RTLIB::Libcall Call_F32,
1961 RTLIB::Libcall Call_F64,
1962 RTLIB::Libcall Call_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00001963 RTLIB::Libcall Call_F128,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001964 RTLIB::Libcall Call_PPCF128) {
1965 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001966 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001967 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001968 case MVT::f32: LC = Call_F32; break;
1969 case MVT::f64: LC = Call_F64; break;
1970 case MVT::f80: LC = Call_F80; break;
Tim Northover24d315d2013-01-08 17:09:59 +00001971 case MVT::f128: LC = Call_F128; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001972 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001973 }
1974 return ExpandLibCall(LC, Node, false);
1975}
1976
1977SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001978 RTLIB::Libcall Call_I8,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001979 RTLIB::Libcall Call_I16,
1980 RTLIB::Libcall Call_I32,
1981 RTLIB::Libcall Call_I64,
1982 RTLIB::Libcall Call_I128) {
1983 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001984 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001985 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001986 case MVT::i8: LC = Call_I8; break;
1987 case MVT::i16: LC = Call_I16; break;
1988 case MVT::i32: LC = Call_I32; break;
1989 case MVT::i64: LC = Call_I64; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001990 case MVT::i128: LC = Call_I128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001991 }
1992 return ExpandLibCall(LC, Node, isSigned);
1993}
1994
Evan Cheng65279cb2011-04-16 03:08:26 +00001995/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
1996static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
1997 const TargetLowering &TLI) {
Evan Cheng8e23e812011-04-01 00:42:02 +00001998 RTLIB::Libcall LC;
1999 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002000 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng8e23e812011-04-01 00:42:02 +00002001 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2002 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2003 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2004 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2005 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2006 }
2007
Evan Cheng65279cb2011-04-16 03:08:26 +00002008 return TLI.getLibcallName(LC) != 0;
2009}
Evan Cheng8e23e812011-04-01 00:42:02 +00002010
Evan Cheng8ef09682012-06-21 05:56:05 +00002011/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Cheng65279cb2011-04-16 03:08:26 +00002012/// needed.
Evan Cheng8ef09682012-06-21 05:56:05 +00002013static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2014 // The other use might have been replaced with a divrem already.
2015 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Cheng8e23e812011-04-01 00:42:02 +00002016 unsigned OtherOpcode = 0;
Evan Cheng65279cb2011-04-16 03:08:26 +00002017 if (isSigned)
Evan Cheng8e23e812011-04-01 00:42:02 +00002018 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002019 else
Evan Cheng8e23e812011-04-01 00:42:02 +00002020 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002021
Evan Cheng8e23e812011-04-01 00:42:02 +00002022 SDValue Op0 = Node->getOperand(0);
2023 SDValue Op1 = Node->getOperand(1);
2024 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2025 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2026 SDNode *User = *UI;
2027 if (User == Node)
2028 continue;
Evan Cheng8ef09682012-06-21 05:56:05 +00002029 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Cheng8e23e812011-04-01 00:42:02 +00002030 User->getOperand(0) == Op0 &&
Evan Cheng65279cb2011-04-16 03:08:26 +00002031 User->getOperand(1) == Op1)
2032 return true;
Evan Cheng8e23e812011-04-01 00:42:02 +00002033 }
Evan Cheng65279cb2011-04-16 03:08:26 +00002034 return false;
2035}
Evan Cheng8e23e812011-04-01 00:42:02 +00002036
Evan Cheng65279cb2011-04-16 03:08:26 +00002037/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2038/// pairs.
2039void
2040SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2041 SmallVectorImpl<SDValue> &Results) {
2042 unsigned Opcode = Node->getOpcode();
2043 bool isSigned = Opcode == ISD::SDIVREM;
2044
2045 RTLIB::Libcall LC;
2046 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002047 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng65279cb2011-04-16 03:08:26 +00002048 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2049 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2050 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2051 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2052 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Cheng8e23e812011-04-01 00:42:02 +00002053 }
2054
2055 // The input chain to this libcall is the entry node of the function.
2056 // Legalizing the call will automatically add the previous call to the
2057 // dependence.
2058 SDValue InChain = DAG.getEntryNode();
2059
2060 EVT RetVT = Node->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002061 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002062
2063 TargetLowering::ArgListTy Args;
2064 TargetLowering::ArgListEntry Entry;
2065 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2066 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002067 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002068 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2069 Entry.isSExt = isSigned;
2070 Entry.isZExt = !isSigned;
2071 Args.push_back(Entry);
2072 }
2073
2074 // Also pass the return address of the remainder.
2075 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2076 Entry.Node = FIPtr;
Micah Villmowb8bce922012-10-24 17:25:11 +00002077 Entry.Ty = RetTy->getPointerTo();
Evan Cheng8e23e812011-04-01 00:42:02 +00002078 Entry.isSExt = isSigned;
2079 Entry.isZExt = !isSigned;
2080 Args.push_back(Entry);
2081
2082 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2083 TLI.getPointerTy());
2084
Evan Cheng8e23e812011-04-01 00:42:02 +00002085 DebugLoc dl = Node->getDebugLoc();
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002086 TargetLowering::
2087 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng8e23e812011-04-01 00:42:02 +00002088 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002089 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2090 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002091 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Cheng8e23e812011-04-01 00:42:02 +00002092
Evan Cheng8e23e812011-04-01 00:42:02 +00002093 // Remainder is loaded back from the stack frame.
Dan Gohman65fd6562011-11-03 21:49:52 +00002094 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002095 MachinePointerInfo(), false, false, false, 0);
Evan Cheng65279cb2011-04-16 03:08:26 +00002096 Results.push_back(CallInfo.first);
2097 Results.push_back(Rem);
Evan Cheng8e23e812011-04-01 00:42:02 +00002098}
2099
Evan Cheng8688a582013-01-29 02:32:37 +00002100/// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2101static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2102 RTLIB::Libcall LC;
2103 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
2104 default: llvm_unreachable("Unexpected request for libcall!");
2105 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2106 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2107 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2108 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2109 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2110 }
2111 return TLI.getLibcallName(LC) != 0;
2112}
2113
Paul Redmond86cdbc92013-02-15 18:45:18 +00002114/// canCombineSinCosLibcall - Return true if sincos libcall is available and
2115/// can be used to combine sin and cos.
2116static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2117 const TargetMachine &TM) {
2118 if (!isSinCosLibcallAvailable(Node, TLI))
2119 return false;
2120 // GNU sin/cos functions set errno while sincos does not. Therefore
2121 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2122 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2123 if (isGNU && !TM.Options.UnsafeFPMath)
2124 return false;
2125 return true;
2126}
2127
Evan Cheng8688a582013-01-29 02:32:37 +00002128/// useSinCos - Only issue sincos libcall if both sin and cos are
2129/// needed.
2130static bool useSinCos(SDNode *Node) {
2131 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2132 ? ISD::FCOS : ISD::FSIN;
2133
2134 SDValue Op0 = Node->getOperand(0);
2135 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2136 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2137 SDNode *User = *UI;
2138 if (User == Node)
2139 continue;
2140 // The other user might have been turned into sincos already.
2141 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2142 return true;
2143 }
2144 return false;
2145}
2146
2147/// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2148/// pairs.
2149void
2150SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2151 SmallVectorImpl<SDValue> &Results) {
2152 RTLIB::Libcall LC;
2153 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
2154 default: llvm_unreachable("Unexpected request for libcall!");
2155 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2156 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2157 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2158 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2159 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2160 }
2161
2162 // The input chain to this libcall is the entry node of the function.
2163 // Legalizing the call will automatically add the previous call to the
2164 // dependence.
2165 SDValue InChain = DAG.getEntryNode();
2166
2167 EVT RetVT = Node->getValueType(0);
2168 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
2169
2170 TargetLowering::ArgListTy Args;
2171 TargetLowering::ArgListEntry Entry;
2172
2173 // Pass the argument.
2174 Entry.Node = Node->getOperand(0);
2175 Entry.Ty = RetTy;
2176 Entry.isSExt = false;
2177 Entry.isZExt = false;
2178 Args.push_back(Entry);
2179
2180 // Pass the return address of sin.
2181 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2182 Entry.Node = SinPtr;
2183 Entry.Ty = RetTy->getPointerTo();
2184 Entry.isSExt = false;
2185 Entry.isZExt = false;
2186 Args.push_back(Entry);
2187
2188 // Also pass the return address of the cos.
2189 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2190 Entry.Node = CosPtr;
2191 Entry.Ty = RetTy->getPointerTo();
2192 Entry.isSExt = false;
2193 Entry.isZExt = false;
2194 Args.push_back(Entry);
2195
2196 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2197 TLI.getPointerTy());
2198
2199 DebugLoc dl = Node->getDebugLoc();
2200 TargetLowering::
2201 CallLoweringInfo CLI(InChain, Type::getVoidTy(*DAG.getContext()),
2202 false, false, false, false,
2203 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
2204 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2205 Callee, Args, DAG, dl);
2206 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2207
2208 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2209 MachinePointerInfo(), false, false, false, 0));
2210 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2211 MachinePointerInfo(), false, false, false, 0));
2212}
2213
Chris Lattner22cde6a2006-01-28 08:25:58 +00002214/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2215/// INT_TO_FP operation of the specified operand when the target requests that
2216/// we expand it. At this point, we know that the result and operand types are
2217/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00002218SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2219 SDValue Op0,
Owen Andersone50ed302009-08-10 22:56:29 +00002220 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002221 DebugLoc dl) {
Akira Hatanaka1d522382012-08-28 02:12:42 +00002222 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002223 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00002224
Chris Lattner23594d42008-01-16 07:03:22 +00002225 // Get the stack frame index of a 8 byte buffer.
Owen Anderson825b72b2009-08-11 20:47:22 +00002226 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00002227
Chris Lattner22cde6a2006-01-28 08:25:58 +00002228 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00002229 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00002230 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00002231 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00002232 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002233 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00002234 if (TLI.isLittleEndian())
2235 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00002236
Chris Lattner22cde6a2006-01-28 08:25:58 +00002237 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00002238 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002239 if (isSigned) {
2240 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson825b72b2009-08-11 20:47:22 +00002241 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2242 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002243 } else {
2244 Op0Mapped = Op0;
2245 }
2246 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00002247 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00002248 Op0Mapped, Lo, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002249 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002250 // initial hi portion of constructed double
Owen Anderson825b72b2009-08-11 20:47:22 +00002251 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002252 // store the hi of the constructed double - biased exponent
Chris Lattner6229d0a2010-09-21 18:41:36 +00002253 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2254 MachinePointerInfo(),
2255 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002256 // load the constructed double
Chris Lattnerecf42c42010-09-21 16:36:31 +00002257 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002258 MachinePointerInfo(), false, false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002259 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00002260 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002261 BitsToDouble(0x4330000080000000ULL) :
2262 BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00002263 MVT::f64);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002264 // subtract the bias
Owen Anderson825b72b2009-08-11 20:47:22 +00002265 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002266 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00002267 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002268 // handle final rounding
Owen Anderson825b72b2009-08-11 20:47:22 +00002269 if (DestVT == MVT::f64) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002270 // do nothing
2271 Result = Sub;
Owen Anderson825b72b2009-08-11 20:47:22 +00002272 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002273 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00002274 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002275 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002276 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002277 }
2278 return Result;
2279 }
2280 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002281 // Code below here assumes !isSigned without checking again.
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002282
2283 // Implementation of unsigned i64 to f64 following the algorithm in
2284 // __floatundidf in compiler_rt. This implementation has the advantage
2285 // of performing rounding correctly, both in the default rounding mode
2286 // and in all alternate rounding modes.
2287 // TODO: Generalize this for use with other types.
2288 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2289 SDValue TwoP52 =
2290 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2291 SDValue TwoP84PlusTwoP52 =
2292 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2293 SDValue TwoP84 =
2294 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2295
2296 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2297 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2298 DAG.getConstant(32, MVT::i64));
2299 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2300 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002301 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2302 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach6e992612010-07-02 17:41:59 +00002303 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2304 TwoP84PlusTwoP52);
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002305 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2306 }
2307
Owen Anderson3a9e7692010-10-05 17:24:05 +00002308 // Implementation of unsigned i64 to f32.
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002309 // TODO: Generalize this for use with other types.
2310 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Anderson3a9e7692010-10-05 17:24:05 +00002311 // For unsigned conversions, convert them to signed conversions using the
2312 // algorithm from the x86_64 __floatundidf in compiler_rt.
2313 if (!isSigned) {
2314 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002315
Owen Anderson95771af2011-02-25 21:41:48 +00002316 SDValue ShiftConst =
2317 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Anderson3a9e7692010-10-05 17:24:05 +00002318 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2319 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2320 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2321 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002322
Owen Anderson3a9e7692010-10-05 17:24:05 +00002323 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2324 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002325
Owen Anderson3a9e7692010-10-05 17:24:05 +00002326 // TODO: This really should be implemented using a branch rather than a
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002327 // select. We happen to get lucky and machinesink does the right
2328 // thing most of the time. This would be a good candidate for a
Owen Anderson3a9e7692010-10-05 17:24:05 +00002329 //pseudo-op, or, even better, for whole-function isel.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002330 SDValue SignBitTest = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002331 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
2332 return DAG.getNode(ISD::SELECT, dl, MVT::f32, SignBitTest, Slow, Fast);
2333 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002334
Owen Anderson3a9e7692010-10-05 17:24:05 +00002335 // Otherwise, implement the fully general conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002336
Jim Grosbach6e992612010-07-02 17:41:59 +00002337 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002338 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2339 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2340 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach6e992612010-07-02 17:41:59 +00002341 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002342 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
2343 SDValue Ne = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2344 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
2345 SDValue Sel = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ne, Or, Op0);
2346 SDValue Ge = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2347 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002348 ISD::SETUGE);
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002349 SDValue Sel2 = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ge, Sel, Op0);
Owen Anderson95771af2011-02-25 21:41:48 +00002350 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002351
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002352 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2353 DAG.getConstant(32, SHVT));
2354 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2355 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2356 SDValue TwoP32 =
2357 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2358 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2359 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2360 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2361 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2362 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2363 DAG.getIntPtrConstant(0));
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002364 }
2365
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002366 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002367
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002368 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
2369 Op0, DAG.getConstant(0, Op0.getValueType()),
2370 ISD::SETLT);
2371 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
2372 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
2373 SignSet, Four, Zero);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002374
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002375 // If the sign bit of the integer is set, the large number will be treated
2376 // as a negative number. To counteract this, the dynamic code adds an
2377 // offset depending on the data type.
2378 uint64_t FF;
2379 switch (Op0.getValueType().getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002380 default: llvm_unreachable("Unsupported integer type!");
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002381 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2382 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2383 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2384 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2385 }
2386 if (TLI.isLittleEndian()) FF <<= 32;
2387 Constant *FudgeFactor = ConstantInt::get(
2388 Type::getInt64Ty(*DAG.getContext()), FF);
2389
2390 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2391 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
2392 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
2393 Alignment = std::min(Alignment, 4u);
2394 SDValue FudgeInReg;
2395 if (DestVT == MVT::f32)
2396 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00002397 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002398 false, false, false, Alignment);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002399 else {
Dan Gohman65fd6562011-11-03 21:49:52 +00002400 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2401 DAG.getEntryNode(), CPIdx,
2402 MachinePointerInfo::getConstantPool(),
2403 MVT::f32, false, false, Alignment);
2404 HandleSDNode Handle(Load);
2405 LegalizeOp(Load.getNode());
2406 FudgeInReg = Handle.getValue();
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002407 }
2408
2409 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002410}
2411
2412/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2413/// *INT_TO_FP operation of the specified operand when the target requests that
2414/// we promote it. At this point, we know that the result and operand types are
2415/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2416/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00002417SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002418 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002419 bool isSigned,
2420 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002421 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002422 EVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002423
2424 unsigned OpToUse = 0;
2425
2426 // Scan for the appropriate larger type to use.
2427 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002428 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002429 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002430
2431 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002432 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2433 OpToUse = ISD::SINT_TO_FP;
2434 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002435 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002436 if (isSigned) continue;
2437
2438 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002439 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2440 OpToUse = ISD::UINT_TO_FP;
2441 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002442 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002443
2444 // Otherwise, try a larger type.
2445 }
2446
2447 // Okay, we found the operation and type to use. Zero extend our input to the
2448 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00002449 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00002450 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00002451 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002452}
2453
2454/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2455/// FP_TO_*INT operation of the specified operand when the target requests that
2456/// we promote it. At this point, we know that the result and operand types are
2457/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2458/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00002459SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002460 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002461 bool isSigned,
2462 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002463 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002464 EVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002465
2466 unsigned OpToUse = 0;
2467
2468 // Scan for the appropriate larger type to use.
2469 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002470 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002471 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002472
Eli Friedman3be2e512009-05-28 03:06:16 +00002473 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002474 OpToUse = ISD::FP_TO_SINT;
2475 break;
2476 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002477
Eli Friedman3be2e512009-05-28 03:06:16 +00002478 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002479 OpToUse = ISD::FP_TO_UINT;
2480 break;
2481 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002482
2483 // Otherwise, try a larger type.
2484 }
2485
Scott Michelfdc40a02009-02-17 22:15:04 +00002486
Chris Lattner27a6c732007-11-24 07:07:01 +00002487 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00002488 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00002489
Chris Lattner27a6c732007-11-24 07:07:01 +00002490 // Truncate the result of the extended FP_TO_*INT operation to the desired
2491 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00002492 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002493}
2494
2495/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2496///
Dale Johannesen8a782a22009-02-02 22:12:50 +00002497SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002498 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002499 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00002500 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson825b72b2009-08-11 20:47:22 +00002501 switch (VT.getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002502 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002503 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002504 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2505 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2506 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002507 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002508 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2509 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2510 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2511 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2512 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2513 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2514 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2515 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2516 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002517 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002518 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2519 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2520 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2521 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2522 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2523 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2524 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2525 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2526 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2527 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2528 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2529 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2530 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2531 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2532 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2533 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2534 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2535 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2536 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2537 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2538 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002539 }
2540}
2541
2542/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2543///
Scott Michelfdc40a02009-02-17 22:15:04 +00002544SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00002545 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002546 switch (Opc) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002547 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002548 case ISD::CTPOP: {
Owen Andersone50ed302009-08-10 22:56:29 +00002549 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002550 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002551 unsigned Len = VT.getSizeInBits();
2552
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002553 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2554 "CTPOP not implemented for this type.");
2555
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002556 // This is the "best" algorithm from
2557 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2558
Benjamin Kramerad4da0f2013-02-20 13:00:06 +00002559 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), VT);
2560 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), VT);
2561 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), VT);
2562 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002563
2564 // v = v - ((v >> 1) & 0x55555555...)
2565 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2566 DAG.getNode(ISD::AND, dl, VT,
2567 DAG.getNode(ISD::SRL, dl, VT, Op,
2568 DAG.getConstant(1, ShVT)),
2569 Mask55));
2570 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2571 Op = DAG.getNode(ISD::ADD, dl, VT,
2572 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2573 DAG.getNode(ISD::AND, dl, VT,
2574 DAG.getNode(ISD::SRL, dl, VT, Op,
2575 DAG.getConstant(2, ShVT)),
2576 Mask33));
2577 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2578 Op = DAG.getNode(ISD::AND, dl, VT,
2579 DAG.getNode(ISD::ADD, dl, VT, Op,
2580 DAG.getNode(ISD::SRL, dl, VT, Op,
2581 DAG.getConstant(4, ShVT))),
2582 Mask0F);
2583 // v = (v * 0x01010101...) >> (Len - 8)
2584 Op = DAG.getNode(ISD::SRL, dl, VT,
2585 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2586 DAG.getConstant(Len - 8, ShVT));
Owen Anderson95771af2011-02-25 21:41:48 +00002587
Chris Lattner22cde6a2006-01-28 08:25:58 +00002588 return Op;
2589 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002590 case ISD::CTLZ_ZERO_UNDEF:
2591 // This trivially expands to CTLZ.
2592 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002593 case ISD::CTLZ: {
2594 // for now, we do this:
2595 // x = x | (x >> 1);
2596 // x = x | (x >> 2);
2597 // ...
2598 // x = x | (x >>16);
2599 // x = x | (x >>32); // for 64-bit input
2600 // return popcount(~x);
2601 //
2602 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002603 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002604 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002605 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002606 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002607 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002608 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00002609 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002610 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00002611 Op = DAG.getNOT(dl, Op, VT);
2612 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002613 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002614 case ISD::CTTZ_ZERO_UNDEF:
2615 // This trivially expands to CTTZ.
2616 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002617 case ISD::CTTZ: {
2618 // for now, we use: { return popcount(~x & (x - 1)); }
2619 // unless the target has ctlz but not ctpop, in which case we use:
2620 // { return 32 - nlz(~x & (x-1)); }
2621 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002622 EVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00002623 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2624 DAG.getNOT(dl, Op, VT),
2625 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00002626 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002627 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002628 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2629 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00002630 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002631 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00002632 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2633 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002634 }
2635 }
2636}
Chris Lattnere34b3962005-01-19 04:19:40 +00002637
Jim Grosbache03262f2010-06-18 21:43:38 +00002638std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2639 unsigned Opc = Node->getOpcode();
2640 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2641 RTLIB::Libcall LC;
2642
2643 switch (Opc) {
2644 default:
2645 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002646 case ISD::ATOMIC_SWAP:
2647 switch (VT.SimpleTy) {
2648 default: llvm_unreachable("Unexpected value type for atomic!");
2649 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2650 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2651 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2652 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
2653 }
2654 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002655 case ISD::ATOMIC_CMP_SWAP:
2656 switch (VT.SimpleTy) {
2657 default: llvm_unreachable("Unexpected value type for atomic!");
2658 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2659 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2660 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2661 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
2662 }
2663 break;
2664 case ISD::ATOMIC_LOAD_ADD:
2665 switch (VT.SimpleTy) {
2666 default: llvm_unreachable("Unexpected value type for atomic!");
2667 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2668 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2669 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2670 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
2671 }
2672 break;
2673 case ISD::ATOMIC_LOAD_SUB:
2674 switch (VT.SimpleTy) {
2675 default: llvm_unreachable("Unexpected value type for atomic!");
2676 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2677 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2678 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2679 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
2680 }
2681 break;
2682 case ISD::ATOMIC_LOAD_AND:
2683 switch (VT.SimpleTy) {
2684 default: llvm_unreachable("Unexpected value type for atomic!");
2685 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2686 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2687 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2688 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
2689 }
2690 break;
2691 case ISD::ATOMIC_LOAD_OR:
2692 switch (VT.SimpleTy) {
2693 default: llvm_unreachable("Unexpected value type for atomic!");
2694 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2695 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2696 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2697 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
2698 }
2699 break;
2700 case ISD::ATOMIC_LOAD_XOR:
2701 switch (VT.SimpleTy) {
2702 default: llvm_unreachable("Unexpected value type for atomic!");
2703 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2704 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2705 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2706 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
2707 }
2708 break;
2709 case ISD::ATOMIC_LOAD_NAND:
2710 switch (VT.SimpleTy) {
2711 default: llvm_unreachable("Unexpected value type for atomic!");
2712 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2713 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2714 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2715 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
2716 }
2717 break;
2718 }
2719
2720 return ExpandChainLibCall(LC, Node, false);
2721}
2722
Dan Gohman65fd6562011-11-03 21:49:52 +00002723void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2724 SmallVector<SDValue, 8> Results;
Eli Friedman8c377c72009-05-27 01:25:56 +00002725 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanbbdd9032009-05-28 20:40:34 +00002726 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Eli Friedman8c377c72009-05-27 01:25:56 +00002727 switch (Node->getOpcode()) {
2728 case ISD::CTPOP:
2729 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002730 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002731 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002732 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002733 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2734 Results.push_back(Tmp1);
2735 break;
2736 case ISD::BSWAP:
Bill Wendling775db972009-12-23 00:28:23 +00002737 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman8c377c72009-05-27 01:25:56 +00002738 break;
2739 case ISD::FRAMEADDR:
2740 case ISD::RETURNADDR:
2741 case ISD::FRAME_TO_ARGS_OFFSET:
2742 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2743 break;
2744 case ISD::FLT_ROUNDS_:
2745 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2746 break;
2747 case ISD::EH_RETURN:
Eli Friedman8c377c72009-05-27 01:25:56 +00002748 case ISD::EH_LABEL:
2749 case ISD::PREFETCH:
Eli Friedman8c377c72009-05-27 01:25:56 +00002750 case ISD::VAEND:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002751 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002752 // If the target didn't expand these, there's nothing to do, so just
2753 // preserve the chain and be done.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002754 Results.push_back(Node->getOperand(0));
2755 break;
2756 case ISD::EH_SJLJ_SETJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002757 // If the target didn't expand this, just return 'zero' and preserve the
2758 // chain.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002759 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman8c377c72009-05-27 01:25:56 +00002760 Results.push_back(Node->getOperand(0));
2761 break;
Eli Friedman14648462011-07-27 22:21:52 +00002762 case ISD::ATOMIC_FENCE:
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002763 case ISD::MEMBARRIER: {
2764 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman14648462011-07-27 22:21:52 +00002765 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002766 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002767 TargetLowering::
2768 CallLoweringInfo CLI(Node->getOperand(0),
2769 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002770 false, false, false, false, 0, CallingConv::C,
2771 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002772 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002773 DAG.getExternalSymbol("__sync_synchronize",
2774 TLI.getPointerTy()),
2775 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002776 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2777
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002778 Results.push_back(CallResult.second);
2779 break;
2780 }
Eli Friedman069e2ed2011-08-26 02:59:24 +00002781 case ISD::ATOMIC_LOAD: {
2782 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedman331120b2011-09-15 21:20:49 +00002783 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman069e2ed2011-08-26 02:59:24 +00002784 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2785 cast<AtomicSDNode>(Node)->getMemoryVT(),
2786 Node->getOperand(0),
2787 Node->getOperand(1), Zero, Zero,
2788 cast<AtomicSDNode>(Node)->getMemOperand(),
2789 cast<AtomicSDNode>(Node)->getOrdering(),
2790 cast<AtomicSDNode>(Node)->getSynchScope());
2791 Results.push_back(Swap.getValue(0));
2792 Results.push_back(Swap.getValue(1));
2793 break;
2794 }
2795 case ISD::ATOMIC_STORE: {
2796 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2797 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2798 cast<AtomicSDNode>(Node)->getMemoryVT(),
2799 Node->getOperand(0),
2800 Node->getOperand(1), Node->getOperand(2),
2801 cast<AtomicSDNode>(Node)->getMemOperand(),
2802 cast<AtomicSDNode>(Node)->getOrdering(),
2803 cast<AtomicSDNode>(Node)->getSynchScope());
2804 Results.push_back(Swap.getValue(1));
2805 break;
2806 }
Jim Grosbachb56ce812010-06-17 17:50:54 +00002807 // By default, atomic intrinsics are marked Legal and lowered. Targets
2808 // which don't support them directly, however, may want libcalls, in which
2809 // case they mark them Expand, and we get here.
Jim Grosbachb56ce812010-06-17 17:50:54 +00002810 case ISD::ATOMIC_SWAP:
2811 case ISD::ATOMIC_LOAD_ADD:
2812 case ISD::ATOMIC_LOAD_SUB:
2813 case ISD::ATOMIC_LOAD_AND:
2814 case ISD::ATOMIC_LOAD_OR:
2815 case ISD::ATOMIC_LOAD_XOR:
2816 case ISD::ATOMIC_LOAD_NAND:
2817 case ISD::ATOMIC_LOAD_MIN:
2818 case ISD::ATOMIC_LOAD_MAX:
2819 case ISD::ATOMIC_LOAD_UMIN:
2820 case ISD::ATOMIC_LOAD_UMAX:
Evan Chenga8457062010-06-18 22:01:37 +00002821 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbache03262f2010-06-18 21:43:38 +00002822 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2823 Results.push_back(Tmp.first);
2824 Results.push_back(Tmp.second);
Jim Grosbach59c38f32010-06-17 17:58:54 +00002825 break;
Evan Chenga8457062010-06-18 22:01:37 +00002826 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00002827 case ISD::DYNAMIC_STACKALLOC:
2828 ExpandDYNAMIC_STACKALLOC(Node, Results);
2829 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00002830 case ISD::MERGE_VALUES:
2831 for (unsigned i = 0; i < Node->getNumValues(); i++)
2832 Results.push_back(Node->getOperand(i));
2833 break;
2834 case ISD::UNDEF: {
Owen Andersone50ed302009-08-10 22:56:29 +00002835 EVT VT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00002836 if (VT.isInteger())
2837 Results.push_back(DAG.getConstant(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002838 else {
2839 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman8c377c72009-05-27 01:25:56 +00002840 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002841 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002842 break;
2843 }
2844 case ISD::TRAP: {
2845 // If this operation is not supported, lower it to 'abort()' call
2846 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002847 TargetLowering::
2848 CallLoweringInfo CLI(Node->getOperand(0),
2849 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002850 false, false, false, false, 0, CallingConv::C,
2851 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002852 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eli Friedman8c377c72009-05-27 01:25:56 +00002853 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00002854 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002855 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2856
Eli Friedman8c377c72009-05-27 01:25:56 +00002857 Results.push_back(CallResult.second);
2858 break;
2859 }
2860 case ISD::FP_ROUND:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002861 case ISD::BITCAST:
Eli Friedman8c377c72009-05-27 01:25:56 +00002862 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2863 Node->getValueType(0), dl);
2864 Results.push_back(Tmp1);
2865 break;
2866 case ISD::FP_EXTEND:
2867 Tmp1 = EmitStackConvert(Node->getOperand(0),
2868 Node->getOperand(0).getValueType(),
2869 Node->getValueType(0), dl);
2870 Results.push_back(Tmp1);
2871 break;
2872 case ISD::SIGN_EXTEND_INREG: {
2873 // NOTE: we could fall back on load/store here too for targets without
2874 // SAR. However, it is doubtful that any exist.
Owen Andersone50ed302009-08-10 22:56:29 +00002875 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00002876 EVT VT = Node->getValueType(0);
Owen Anderson95771af2011-02-25 21:41:48 +00002877 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohmand1996362010-01-09 02:13:55 +00002878 if (VT.isVector())
Dan Gohman87862e72009-12-11 21:31:27 +00002879 ShiftAmountTy = VT;
Dan Gohmand1996362010-01-09 02:13:55 +00002880 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2881 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman87862e72009-12-11 21:31:27 +00002882 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman8c377c72009-05-27 01:25:56 +00002883 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2884 Node->getOperand(0), ShiftCst);
Bill Wendling775db972009-12-23 00:28:23 +00002885 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2886 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002887 break;
2888 }
2889 case ISD::FP_ROUND_INREG: {
2890 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002891 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman8c377c72009-05-27 01:25:56 +00002892
2893 // NOTE: there is a choice here between constantly creating new stack
2894 // slots and always reusing the same one. We currently always create
2895 // new ones, as reuse may inhibit scheduling.
Owen Andersone50ed302009-08-10 22:56:29 +00002896 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00002897 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2898 Node->getValueType(0), dl);
2899 Results.push_back(Tmp1);
2900 break;
2901 }
2902 case ISD::SINT_TO_FP:
2903 case ISD::UINT_TO_FP:
2904 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2905 Node->getOperand(0), Node->getValueType(0), dl);
2906 Results.push_back(Tmp1);
2907 break;
2908 case ISD::FP_TO_UINT: {
2909 SDValue True, False;
Owen Andersone50ed302009-08-10 22:56:29 +00002910 EVT VT = Node->getOperand(0).getValueType();
2911 EVT NVT = Node->getValueType(0);
Tim Northover0a29cb02013-01-22 09:46:31 +00002912 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
2913 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman8c377c72009-05-27 01:25:56 +00002914 APInt x = APInt::getSignBit(NVT.getSizeInBits());
2915 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
2916 Tmp1 = DAG.getConstantFP(apf, VT);
2917 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
2918 Node->getOperand(0),
2919 Tmp1, ISD::SETLT);
2920 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00002921 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
2922 DAG.getNode(ISD::FSUB, dl, VT,
2923 Node->getOperand(0), Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00002924 False = DAG.getNode(ISD::XOR, dl, NVT, False,
2925 DAG.getConstant(x, NVT));
2926 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2, True, False);
2927 Results.push_back(Tmp1);
2928 break;
2929 }
Eli Friedman509150f2009-05-27 07:58:35 +00002930 case ISD::VAARG: {
2931 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00002932 EVT VT = Node->getValueType(0);
Eli Friedman509150f2009-05-27 07:58:35 +00002933 Tmp1 = Node->getOperand(0);
2934 Tmp2 = Node->getOperand(1);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002935 unsigned Align = Node->getConstantOperandVal(3);
2936
Chris Lattnerecf42c42010-09-21 16:36:31 +00002937 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002938 MachinePointerInfo(V),
2939 false, false, false, 0);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002940 SDValue VAList = VAListLoad;
2941
Rafael Espindolacbeeae22010-07-11 04:01:49 +00002942 if (Align > TLI.getMinStackArgumentAlignment()) {
2943 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
2944
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002945 VAList = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2946 DAG.getConstant(Align - 1,
2947 TLI.getPointerTy()));
2948
2949 VAList = DAG.getNode(ISD::AND, dl, TLI.getPointerTy(), VAList,
Chris Lattner07e3a382010-10-10 18:36:26 +00002950 DAG.getConstant(-(int64_t)Align,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002951 TLI.getPointerTy()));
2952 }
2953
Eli Friedman509150f2009-05-27 07:58:35 +00002954 // Increment the pointer, VAList, to the next vaarg
2955 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Micah Villmow3574eca2012-10-08 16:38:25 +00002956 DAG.getConstant(TLI.getDataLayout()->
Evan Chengadf97992010-04-15 01:25:27 +00002957 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Eli Friedman509150f2009-05-27 07:58:35 +00002958 TLI.getPointerTy()));
2959 // Store the incremented VAList to the legalized pointer
Chris Lattner6229d0a2010-09-21 18:41:36 +00002960 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
2961 MachinePointerInfo(V), false, false, 0);
Eli Friedman509150f2009-05-27 07:58:35 +00002962 // Load the actual argument out of the pointer VAList
Chris Lattnerecf42c42010-09-21 16:36:31 +00002963 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002964 false, false, false, 0));
Eli Friedman509150f2009-05-27 07:58:35 +00002965 Results.push_back(Results[0].getValue(1));
2966 break;
2967 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002968 case ISD::VACOPY: {
2969 // This defaults to loading a pointer from the input and storing it to the
2970 // output, returning the chain.
2971 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2972 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
2973 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattnerecf42c42010-09-21 16:36:31 +00002974 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002975 false, false, false, 0);
Chris Lattnerecf42c42010-09-21 16:36:31 +00002976 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
2977 MachinePointerInfo(VD), false, false, 0);
Bill Wendling775db972009-12-23 00:28:23 +00002978 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002979 break;
2980 }
2981 case ISD::EXTRACT_VECTOR_ELT:
2982 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
2983 // This must be an access of the only element. Return it.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002984 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman8c377c72009-05-27 01:25:56 +00002985 Node->getOperand(0));
2986 else
2987 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
2988 Results.push_back(Tmp1);
2989 break;
2990 case ISD::EXTRACT_SUBVECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002991 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman8c377c72009-05-27 01:25:56 +00002992 break;
David Greenecfe33c42011-01-26 19:13:22 +00002993 case ISD::INSERT_SUBVECTOR:
2994 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
2995 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002996 case ISD::CONCAT_VECTORS: {
Bill Wendling775db972009-12-23 00:28:23 +00002997 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman509150f2009-05-27 07:58:35 +00002998 break;
2999 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003000 case ISD::SCALAR_TO_VECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00003001 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman8c377c72009-05-27 01:25:56 +00003002 break;
Eli Friedman3f727d62009-05-27 02:16:40 +00003003 case ISD::INSERT_VECTOR_ELT:
Bill Wendling775db972009-12-23 00:28:23 +00003004 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3005 Node->getOperand(1),
3006 Node->getOperand(2), dl));
Eli Friedman3f727d62009-05-27 02:16:40 +00003007 break;
Eli Friedman509150f2009-05-27 07:58:35 +00003008 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003009 SmallVector<int, 32> NewMask;
3010 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003011
Owen Andersone50ed302009-08-10 22:56:29 +00003012 EVT VT = Node->getValueType(0);
3013 EVT EltVT = VT.getVectorElementType();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003014 SDValue Op0 = Node->getOperand(0);
3015 SDValue Op1 = Node->getOperand(1);
3016 if (!TLI.isTypeLegal(EltVT)) {
3017
3018 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3019
3020 // BUILD_VECTOR operands are allowed to be wider than the element type.
3021 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept it
3022 if (NewEltVT.bitsLT(EltVT)) {
3023
3024 // Convert shuffle node.
3025 // If original node was v4i64 and the new EltVT is i32,
3026 // cast operands to v8i32 and re-build the mask.
3027
3028 // Calculate new VT, the size of the new VT should be equal to original.
3029 EVT NewVT = EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3030 VT.getSizeInBits()/NewEltVT.getSizeInBits());
3031 assert(NewVT.bitsEq(VT));
3032
3033 // cast operands to new VT
3034 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3035 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3036
3037 // Convert the shuffle mask
3038 unsigned int factor = NewVT.getVectorNumElements()/VT.getVectorNumElements();
3039
3040 // EltVT gets smaller
3041 assert(factor > 0);
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003042
3043 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3044 if (Mask[i] < 0) {
3045 for (unsigned fi = 0; fi < factor; ++fi)
3046 NewMask.push_back(Mask[i]);
3047 }
3048 else {
3049 for (unsigned fi = 0; fi < factor; ++fi)
3050 NewMask.push_back(Mask[i]*factor+fi);
3051 }
3052 }
3053 Mask = NewMask;
3054 VT = NewVT;
3055 }
3056 EltVT = NewEltVT;
3057 }
Eli Friedman509150f2009-05-27 07:58:35 +00003058 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003059 SmallVector<SDValue, 16> Ops;
Eli Friedman509150f2009-05-27 07:58:35 +00003060 for (unsigned i = 0; i != NumElems; ++i) {
3061 if (Mask[i] < 0) {
3062 Ops.push_back(DAG.getUNDEF(EltVT));
3063 continue;
3064 }
3065 unsigned Idx = Mask[i];
3066 if (Idx < NumElems)
Bill Wendling775db972009-12-23 00:28:23 +00003067 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003068 Op0,
Bill Wendling775db972009-12-23 00:28:23 +00003069 DAG.getIntPtrConstant(Idx)));
Eli Friedman509150f2009-05-27 07:58:35 +00003070 else
Bill Wendling775db972009-12-23 00:28:23 +00003071 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003072 Op1,
Bill Wendling775db972009-12-23 00:28:23 +00003073 DAG.getIntPtrConstant(Idx - NumElems)));
Eli Friedman509150f2009-05-27 07:58:35 +00003074 }
Nadav Rotem6c0366c2012-01-10 14:28:46 +00003075
Eli Friedman509150f2009-05-27 07:58:35 +00003076 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Nadav Rotem6c0366c2012-01-10 14:28:46 +00003077 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3078 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003079 Results.push_back(Tmp1);
3080 break;
3081 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003082 case ISD::EXTRACT_ELEMENT: {
Owen Andersone50ed302009-08-10 22:56:29 +00003083 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman8c377c72009-05-27 01:25:56 +00003084 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3085 // 1 -> Hi
3086 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3087 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003088 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman8c377c72009-05-27 01:25:56 +00003089 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3090 } else {
3091 // 0 -> Lo
3092 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3093 Node->getOperand(0));
3094 }
3095 Results.push_back(Tmp1);
3096 break;
3097 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003098 case ISD::STACKSAVE:
3099 // Expand to CopyFromReg if the target set
3100 // StackPointerRegisterToSaveRestore.
3101 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendling775db972009-12-23 00:28:23 +00003102 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3103 Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003104 Results.push_back(Results[0].getValue(1));
3105 } else {
Bill Wendling775db972009-12-23 00:28:23 +00003106 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003107 Results.push_back(Node->getOperand(0));
3108 }
3109 break;
3110 case ISD::STACKRESTORE:
Bill Wendling775db972009-12-23 00:28:23 +00003111 // Expand to CopyToReg if the target set
3112 // StackPointerRegisterToSaveRestore.
3113 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3114 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3115 Node->getOperand(1)));
3116 } else {
3117 Results.push_back(Node->getOperand(0));
3118 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003119 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003120 case ISD::FCOPYSIGN:
Bill Wendling775db972009-12-23 00:28:23 +00003121 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003122 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003123 case ISD::FNEG:
3124 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3125 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3126 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3127 Node->getOperand(0));
3128 Results.push_back(Tmp1);
3129 break;
3130 case ISD::FABS: {
3131 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Andersone50ed302009-08-10 22:56:29 +00003132 EVT VT = Node->getValueType(0);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003133 Tmp1 = Node->getOperand(0);
3134 Tmp2 = DAG.getConstantFP(0.0, VT);
Bill Wendling775db972009-12-23 00:28:23 +00003135 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003136 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendling775db972009-12-23 00:28:23 +00003137 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3138 Tmp1 = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003139 Results.push_back(Tmp1);
3140 break;
3141 }
3142 case ISD::FSQRT:
Bill Wendling775db972009-12-23 00:28:23 +00003143 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003144 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3145 RTLIB::SQRT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003146 break;
3147 case ISD::FSIN:
Evan Cheng8688a582013-01-29 02:32:37 +00003148 case ISD::FCOS: {
3149 EVT VT = Node->getValueType(0);
3150 bool isSIN = Node->getOpcode() == ISD::FSIN;
3151 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3152 // fcos which share the same operand and both are used.
3153 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmond86cdbc92013-02-15 18:45:18 +00003154 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng8688a582013-01-29 02:32:37 +00003155 && useSinCos(Node)) {
3156 SDVTList VTs = DAG.getVTList(VT, VT);
3157 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3158 if (!isSIN)
3159 Tmp1 = Tmp1.getValue(1);
3160 Results.push_back(Tmp1);
3161 } else if (isSIN) {
3162 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3163 RTLIB::SIN_F80, RTLIB::SIN_F128,
3164 RTLIB::SIN_PPCF128));
3165 } else {
3166 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3167 RTLIB::COS_F80, RTLIB::COS_F128,
3168 RTLIB::COS_PPCF128));
3169 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003170 break;
Evan Cheng8688a582013-01-29 02:32:37 +00003171 }
3172 case ISD::FSINCOS:
3173 // Expand into sincos libcall.
3174 ExpandSinCosLibCall(Node, Results);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003175 break;
3176 case ISD::FLOG:
Bill Wendling775db972009-12-23 00:28:23 +00003177 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003178 RTLIB::LOG_F80, RTLIB::LOG_F128,
3179 RTLIB::LOG_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003180 break;
3181 case ISD::FLOG2:
Bill Wendling775db972009-12-23 00:28:23 +00003182 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003183 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3184 RTLIB::LOG2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003185 break;
3186 case ISD::FLOG10:
Bill Wendling775db972009-12-23 00:28:23 +00003187 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003188 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3189 RTLIB::LOG10_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003190 break;
3191 case ISD::FEXP:
Bill Wendling775db972009-12-23 00:28:23 +00003192 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003193 RTLIB::EXP_F80, RTLIB::EXP_F128,
3194 RTLIB::EXP_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003195 break;
3196 case ISD::FEXP2:
Bill Wendling775db972009-12-23 00:28:23 +00003197 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003198 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3199 RTLIB::EXP2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003200 break;
3201 case ISD::FTRUNC:
Bill Wendling775db972009-12-23 00:28:23 +00003202 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003203 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3204 RTLIB::TRUNC_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003205 break;
3206 case ISD::FFLOOR:
Bill Wendling775db972009-12-23 00:28:23 +00003207 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003208 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3209 RTLIB::FLOOR_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003210 break;
3211 case ISD::FCEIL:
Bill Wendling775db972009-12-23 00:28:23 +00003212 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003213 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3214 RTLIB::CEIL_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003215 break;
3216 case ISD::FRINT:
Bill Wendling775db972009-12-23 00:28:23 +00003217 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003218 RTLIB::RINT_F80, RTLIB::RINT_F128,
3219 RTLIB::RINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003220 break;
3221 case ISD::FNEARBYINT:
Bill Wendling775db972009-12-23 00:28:23 +00003222 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3223 RTLIB::NEARBYINT_F64,
3224 RTLIB::NEARBYINT_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00003225 RTLIB::NEARBYINT_F128,
Bill Wendling775db972009-12-23 00:28:23 +00003226 RTLIB::NEARBYINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003227 break;
3228 case ISD::FPOWI:
Bill Wendling775db972009-12-23 00:28:23 +00003229 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003230 RTLIB::POWI_F80, RTLIB::POWI_F128,
3231 RTLIB::POWI_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003232 break;
3233 case ISD::FPOW:
Bill Wendling775db972009-12-23 00:28:23 +00003234 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003235 RTLIB::POW_F80, RTLIB::POW_F128,
3236 RTLIB::POW_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003237 break;
3238 case ISD::FDIV:
Bill Wendling775db972009-12-23 00:28:23 +00003239 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003240 RTLIB::DIV_F80, RTLIB::DIV_F128,
3241 RTLIB::DIV_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003242 break;
3243 case ISD::FREM:
Bill Wendling775db972009-12-23 00:28:23 +00003244 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003245 RTLIB::REM_F80, RTLIB::REM_F128,
3246 RTLIB::REM_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003247 break;
Cameron Zwarich33390842011-07-08 21:39:21 +00003248 case ISD::FMA:
3249 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003250 RTLIB::FMA_F80, RTLIB::FMA_F128,
3251 RTLIB::FMA_PPCF128));
Cameron Zwarich33390842011-07-08 21:39:21 +00003252 break;
Anton Korobeynikov927411b2010-03-14 18:42:24 +00003253 case ISD::FP16_TO_FP32:
3254 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3255 break;
3256 case ISD::FP32_TO_FP16:
3257 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3258 break;
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003259 case ISD::ConstantFP: {
3260 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendling775db972009-12-23 00:28:23 +00003261 // Check to see if this FP immediate is already legal.
3262 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman65fd6562011-11-03 21:49:52 +00003263 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3264 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003265 break;
3266 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003267 case ISD::EHSELECTION: {
3268 unsigned Reg = TLI.getExceptionSelectorRegister();
3269 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003270 Results.push_back(DAG.getCopyFromReg(Node->getOperand(1), dl, Reg,
3271 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003272 Results.push_back(Results[0].getValue(1));
3273 break;
3274 }
3275 case ISD::EXCEPTIONADDR: {
Lang Hames07961342012-02-14 04:45:49 +00003276 unsigned Reg = TLI.getExceptionPointerRegister();
Eli Friedman26ea8f92009-05-27 07:05:37 +00003277 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003278 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, Reg,
3279 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003280 Results.push_back(Results[0].getValue(1));
3281 break;
3282 }
Owen Andersonafd3d562012-03-06 00:29:31 +00003283 case ISD::FSUB: {
3284 EVT VT = Node->getValueType(0);
3285 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3286 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3287 "Don't know how to expand this FP subtraction!");
3288 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3289 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3290 Results.push_back(Tmp1);
3291 break;
3292 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003293 case ISD::SUB: {
Owen Andersone50ed302009-08-10 22:56:29 +00003294 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003295 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3296 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3297 "Don't know how to expand this subtraction!");
3298 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3299 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Anderson4b6e6752012-05-21 22:39:20 +00003300 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendling775db972009-12-23 00:28:23 +00003301 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003302 break;
3303 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003304 case ISD::UREM:
3305 case ISD::SREM: {
Owen Andersone50ed302009-08-10 22:56:29 +00003306 EVT VT = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003307 bool isSigned = Node->getOpcode() == ISD::SREM;
3308 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3309 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3310 Tmp2 = Node->getOperand(0);
3311 Tmp3 = Node->getOperand(1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003312 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3313 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Chengd36696c2012-10-12 01:15:47 +00003314 // If div is legal, it's better to do the normal expansion
3315 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003316 useDivRem(Node, isSigned, false))) {
Evan Cheng8688a582013-01-29 02:32:37 +00003317 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedman3be2e512009-05-28 03:06:16 +00003318 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3319 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003320 // X % Y -> X-X/Y*Y
3321 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3322 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3323 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003324 } else if (isSigned)
3325 Tmp1 = ExpandIntLibCall(Node, true,
3326 RTLIB::SREM_I8,
3327 RTLIB::SREM_I16, RTLIB::SREM_I32,
3328 RTLIB::SREM_I64, RTLIB::SREM_I128);
3329 else
3330 Tmp1 = ExpandIntLibCall(Node, false,
3331 RTLIB::UREM_I8,
3332 RTLIB::UREM_I16, RTLIB::UREM_I32,
3333 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003334 Results.push_back(Tmp1);
3335 break;
3336 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003337 case ISD::UDIV:
3338 case ISD::SDIV: {
3339 bool isSigned = Node->getOpcode() == ISD::SDIV;
3340 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Andersone50ed302009-08-10 22:56:29 +00003341 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003342 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Cheng65279cb2011-04-16 03:08:26 +00003343 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3344 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003345 useDivRem(Node, isSigned, true)))
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003346 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3347 Node->getOperand(1));
Evan Cheng65279cb2011-04-16 03:08:26 +00003348 else if (isSigned)
3349 Tmp1 = ExpandIntLibCall(Node, true,
3350 RTLIB::SDIV_I8,
3351 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3352 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3353 else
3354 Tmp1 = ExpandIntLibCall(Node, false,
3355 RTLIB::UDIV_I8,
3356 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3357 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003358 Results.push_back(Tmp1);
3359 break;
3360 }
3361 case ISD::MULHU:
3362 case ISD::MULHS: {
3363 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3364 ISD::SMUL_LOHI;
Owen Andersone50ed302009-08-10 22:56:29 +00003365 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003366 SDVTList VTs = DAG.getVTList(VT, VT);
3367 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3368 "If this wasn't legal, it shouldn't have been created!");
3369 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3370 Node->getOperand(1));
3371 Results.push_back(Tmp1.getValue(1));
3372 break;
3373 }
Evan Cheng65279cb2011-04-16 03:08:26 +00003374 case ISD::SDIVREM:
3375 case ISD::UDIVREM:
3376 // Expand into divrem libcall
3377 ExpandDivRemLibCall(Node, Results);
3378 break;
Eli Friedman26ea8f92009-05-27 07:05:37 +00003379 case ISD::MUL: {
Owen Andersone50ed302009-08-10 22:56:29 +00003380 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003381 SDVTList VTs = DAG.getVTList(VT, VT);
3382 // See if multiply or divide can be lowered using two-result operations.
3383 // We just need the low half of the multiply; try both the signed
3384 // and unsigned forms. If the target supports both SMUL_LOHI and
3385 // UMUL_LOHI, form a preference by checking which forms of plain
3386 // MULH it supports.
3387 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3388 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3389 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3390 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3391 unsigned OpToUse = 0;
3392 if (HasSMUL_LOHI && !HasMULHS) {
3393 OpToUse = ISD::SMUL_LOHI;
3394 } else if (HasUMUL_LOHI && !HasMULHU) {
3395 OpToUse = ISD::UMUL_LOHI;
3396 } else if (HasSMUL_LOHI) {
3397 OpToUse = ISD::SMUL_LOHI;
3398 } else if (HasUMUL_LOHI) {
3399 OpToUse = ISD::UMUL_LOHI;
3400 }
3401 if (OpToUse) {
Bill Wendling775db972009-12-23 00:28:23 +00003402 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3403 Node->getOperand(1)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003404 break;
3405 }
Anton Korobeynikov8983da72009-11-07 17:14:39 +00003406 Tmp1 = ExpandIntLibCall(Node, false,
3407 RTLIB::MUL_I8,
3408 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman26ea8f92009-05-27 07:05:37 +00003409 RTLIB::MUL_I64, RTLIB::MUL_I128);
3410 Results.push_back(Tmp1);
3411 break;
3412 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003413 case ISD::SADDO:
3414 case ISD::SSUBO: {
3415 SDValue LHS = Node->getOperand(0);
3416 SDValue RHS = Node->getOperand(1);
3417 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3418 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3419 LHS, RHS);
3420 Results.push_back(Sum);
Bill Wendling122d06d2009-12-23 00:05:09 +00003421 EVT OType = Node->getValueType(1);
Bill Wendling775db972009-12-23 00:28:23 +00003422
Eli Friedman4bc8c712009-05-27 12:20:41 +00003423 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3424
3425 // LHSSign -> LHS >= 0
3426 // RHSSign -> RHS >= 0
3427 // SumSign -> Sum >= 0
3428 //
3429 // Add:
3430 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3431 // Sub:
3432 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3433 //
3434 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3435 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3436 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3437 Node->getOpcode() == ISD::SADDO ?
3438 ISD::SETEQ : ISD::SETNE);
3439
3440 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3441 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3442
3443 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3444 Results.push_back(Cmp);
3445 break;
3446 }
3447 case ISD::UADDO:
3448 case ISD::USUBO: {
3449 SDValue LHS = Node->getOperand(0);
3450 SDValue RHS = Node->getOperand(1);
3451 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3452 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3453 LHS, RHS);
3454 Results.push_back(Sum);
Bill Wendling775db972009-12-23 00:28:23 +00003455 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3456 Node->getOpcode () == ISD::UADDO ?
3457 ISD::SETULT : ISD::SETUGT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003458 break;
3459 }
Eli Friedmandb3c1692009-06-16 06:58:29 +00003460 case ISD::UMULO:
3461 case ISD::SMULO: {
Owen Andersone50ed302009-08-10 22:56:29 +00003462 EVT VT = Node->getValueType(0);
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003463 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmandb3c1692009-06-16 06:58:29 +00003464 SDValue LHS = Node->getOperand(0);
3465 SDValue RHS = Node->getOperand(1);
3466 SDValue BottomHalf;
3467 SDValue TopHalf;
Nuno Lopesec9d8b02009-12-23 17:48:10 +00003468 static const unsigned Ops[2][3] =
Eli Friedmandb3c1692009-06-16 06:58:29 +00003469 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3470 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3471 bool isSigned = Node->getOpcode() == ISD::SMULO;
3472 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3473 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3474 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3475 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3476 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3477 RHS);
3478 TopHalf = BottomHalf.getValue(1);
Eric Christopher38a18262011-01-20 00:29:24 +00003479 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3480 VT.getSizeInBits() * 2))) {
Eli Friedmandb3c1692009-06-16 06:58:29 +00003481 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3482 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3483 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3484 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3485 DAG.getIntPtrConstant(0));
3486 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3487 DAG.getIntPtrConstant(1));
Eric Christopher38a18262011-01-20 00:29:24 +00003488 } else {
3489 // We can fall back to a libcall with an illegal type for the MUL if we
3490 // have a libcall big enough.
3491 // Also, we can fall back to a division in some cases, but that's a big
3492 // performance hit in the general case.
Eric Christopher38a18262011-01-20 00:29:24 +00003493 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3494 if (WideVT == MVT::i16)
3495 LC = RTLIB::MUL_I16;
3496 else if (WideVT == MVT::i32)
3497 LC = RTLIB::MUL_I32;
3498 else if (WideVT == MVT::i64)
3499 LC = RTLIB::MUL_I64;
3500 else if (WideVT == MVT::i128)
3501 LC = RTLIB::MUL_I128;
3502 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanf316eb72011-05-16 22:09:53 +00003503
3504 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003505 // part.
3506 unsigned LoSize = VT.getSizeInBits();
3507 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3508 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3509 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3510 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Anderson95771af2011-02-25 21:41:48 +00003511
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003512 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3513 // pre-lowered to the correct types. This all depends upon WideVT not
3514 // being a legal type for the architecture and thus has to be split to
3515 // two arguments.
3516 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3517 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3518 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3519 DAG.getIntPtrConstant(0));
3520 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3521 DAG.getIntPtrConstant(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00003522 // Ret is a node with an illegal type. Because such things are not
3523 // generally permitted during this phase of legalization, delete the
3524 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3525 DAG.DeleteNode(Ret.getNode());
Eli Friedmandb3c1692009-06-16 06:58:29 +00003526 }
Dan Gohmanf316eb72011-05-16 22:09:53 +00003527
Eli Friedmandb3c1692009-06-16 06:58:29 +00003528 if (isSigned) {
Owen Anderson95771af2011-02-25 21:41:48 +00003529 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3530 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmandb3c1692009-06-16 06:58:29 +00003531 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
3532 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf, Tmp1,
3533 ISD::SETNE);
3534 } else {
3535 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf,
3536 DAG.getConstant(0, VT), ISD::SETNE);
3537 }
3538 Results.push_back(BottomHalf);
3539 Results.push_back(TopHalf);
3540 break;
3541 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003542 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +00003543 EVT PairTy = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003544 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3545 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendling775db972009-12-23 00:28:23 +00003546 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003547 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003548 TLI.getShiftAmountTy(PairTy)));
Bill Wendling775db972009-12-23 00:28:23 +00003549 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003550 break;
3551 }
Eli Friedman509150f2009-05-27 07:58:35 +00003552 case ISD::SELECT:
3553 Tmp1 = Node->getOperand(0);
3554 Tmp2 = Node->getOperand(1);
3555 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003556 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman509150f2009-05-27 07:58:35 +00003557 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3558 Tmp2, Tmp3,
3559 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendling775db972009-12-23 00:28:23 +00003560 } else {
Eli Friedman509150f2009-05-27 07:58:35 +00003561 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3562 DAG.getConstant(0, Tmp1.getValueType()),
3563 Tmp2, Tmp3, ISD::SETNE);
Bill Wendling775db972009-12-23 00:28:23 +00003564 }
Eli Friedman509150f2009-05-27 07:58:35 +00003565 Results.push_back(Tmp1);
3566 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003567 case ISD::BR_JT: {
3568 SDValue Chain = Node->getOperand(0);
3569 SDValue Table = Node->getOperand(1);
3570 SDValue Index = Node->getOperand(2);
3571
Owen Andersone50ed302009-08-10 22:56:29 +00003572 EVT PTy = TLI.getPointerTy();
Chris Lattner071c62f2010-01-25 23:26:13 +00003573
Micah Villmow3574eca2012-10-08 16:38:25 +00003574 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattner071c62f2010-01-25 23:26:13 +00003575 unsigned EntrySize =
3576 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach6e992612010-07-02 17:41:59 +00003577
Chris Lattner071c62f2010-01-25 23:26:13 +00003578 Index = DAG.getNode(ISD::MUL, dl, PTy,
Eli Friedman4bc8c712009-05-27 12:20:41 +00003579 Index, DAG.getConstant(EntrySize, PTy));
3580 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3581
Owen Anderson23b9b192009-08-12 00:36:31 +00003582 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastingsa9011292011-02-16 16:23:55 +00003583 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattner85ca1062010-09-21 07:32:19 +00003584 MachinePointerInfo::getJumpTable(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00003585 false, false, 0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003586 Addr = LD;
Dan Gohman55e59c12010-04-19 19:05:59 +00003587 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman4bc8c712009-05-27 12:20:41 +00003588 // For PIC, the sequence is:
Bill Wendling775db972009-12-23 00:28:23 +00003589 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman4bc8c712009-05-27 12:20:41 +00003590 // RelocBase can be JumpTable, GOT or some sort of global base.
3591 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3592 TLI.getPICJumpTableRelocBase(Table, DAG));
3593 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003594 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003595 Results.push_back(Tmp1);
3596 break;
3597 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003598 case ISD::BRCOND:
3599 // Expand brcond's setcc into its constituent parts and create a BR_CC
3600 // Node.
3601 Tmp1 = Node->getOperand(0);
3602 Tmp2 = Node->getOperand(1);
Bill Wendling775db972009-12-23 00:28:23 +00003603 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003604 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003605 Tmp1, Tmp2.getOperand(2),
3606 Tmp2.getOperand(0), Tmp2.getOperand(1),
3607 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003608 } else {
Stuart Hastings88882242011-05-13 00:51:54 +00003609 // We test only the i1 bit. Skip the AND if UNDEF.
3610 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3611 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3612 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003613 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastings88882242011-05-13 00:51:54 +00003614 DAG.getCondCode(ISD::SETNE), Tmp3,
3615 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003616 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003617 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003618 Results.push_back(Tmp1);
3619 break;
Eli Friedmanad754602009-05-28 03:56:57 +00003620 case ISD::SETCC: {
3621 Tmp1 = Node->getOperand(0);
3622 Tmp2 = Node->getOperand(1);
3623 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003624 LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Eli Friedmanad754602009-05-28 03:56:57 +00003625
3626 // If we expanded the SETCC into an AND/OR, return the new node
3627 if (Tmp2.getNode() == 0) {
3628 Results.push_back(Tmp1);
3629 break;
3630 }
3631
3632 // Otherwise, SETCC for the given comparison type must be completely
3633 // illegal; expand it into a SELECT_CC.
Owen Andersone50ed302009-08-10 22:56:29 +00003634 EVT VT = Node->getValueType(0);
Eli Friedmanad754602009-05-28 03:56:57 +00003635 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
3636 DAG.getConstant(1, VT), DAG.getConstant(0, VT), Tmp3);
3637 Results.push_back(Tmp1);
3638 break;
3639 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003640 case ISD::SELECT_CC: {
3641 Tmp1 = Node->getOperand(0); // LHS
3642 Tmp2 = Node->getOperand(1); // RHS
3643 Tmp3 = Node->getOperand(2); // True
3644 Tmp4 = Node->getOperand(3); // False
3645 SDValue CC = Node->getOperand(4);
3646
3647 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp1.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003648 Tmp1, Tmp2, CC, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003649
3650 assert(!Tmp2.getNode() && "Can't legalize SELECT_CC with legal condition!");
3651 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3652 CC = DAG.getCondCode(ISD::SETNE);
3653 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, Tmp2,
3654 Tmp3, Tmp4, CC);
3655 Results.push_back(Tmp1);
3656 break;
3657 }
3658 case ISD::BR_CC: {
3659 Tmp1 = Node->getOperand(0); // Chain
3660 Tmp2 = Node->getOperand(2); // LHS
3661 Tmp3 = Node->getOperand(3); // RHS
3662 Tmp4 = Node->getOperand(1); // CC
3663
3664 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp2.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003665 Tmp2, Tmp3, Tmp4, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003666
3667 assert(!Tmp3.getNode() && "Can't legalize BR_CC with legal condition!");
3668 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3669 Tmp4 = DAG.getCondCode(ISD::SETNE);
3670 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, Tmp2,
3671 Tmp3, Node->getOperand(4));
3672 Results.push_back(Tmp1);
3673 break;
3674 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003675 case ISD::BUILD_VECTOR:
3676 Results.push_back(ExpandBUILD_VECTOR(Node));
3677 break;
3678 case ISD::SRA:
3679 case ISD::SRL:
3680 case ISD::SHL: {
3681 // Scalarize vector SRA/SRL/SHL.
3682 EVT VT = Node->getValueType(0);
3683 assert(VT.isVector() && "Unable to legalize non-vector shift");
3684 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3685 unsigned NumElem = VT.getVectorNumElements();
3686
3687 SmallVector<SDValue, 8> Scalars;
3688 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3689 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3690 VT.getScalarType(),
3691 Node->getOperand(0), DAG.getIntPtrConstant(Idx));
3692 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3693 VT.getScalarType(),
3694 Node->getOperand(1), DAG.getIntPtrConstant(Idx));
3695 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3696 VT.getScalarType(), Ex, Sh));
3697 }
3698 SDValue Result =
3699 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3700 &Scalars[0], Scalars.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +00003701 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +00003702 break;
3703 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003704 case ISD::GLOBAL_OFFSET_TABLE:
3705 case ISD::GlobalAddress:
3706 case ISD::GlobalTLSAddress:
3707 case ISD::ExternalSymbol:
3708 case ISD::ConstantPool:
3709 case ISD::JumpTable:
3710 case ISD::INTRINSIC_W_CHAIN:
3711 case ISD::INTRINSIC_WO_CHAIN:
3712 case ISD::INTRINSIC_VOID:
3713 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedman3f727d62009-05-27 02:16:40 +00003714 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00003715 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003716
3717 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003718 if (!Results.empty())
3719 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003720}
Dan Gohman65fd6562011-11-03 21:49:52 +00003721
3722void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3723 SmallVector<SDValue, 8> Results;
Patrik Hagglund319bb392012-12-19 11:21:04 +00003724 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00003725 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedmana64eb922009-07-17 05:16:04 +00003726 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendling775db972009-12-23 00:28:23 +00003727 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglund319bb392012-12-19 11:21:04 +00003728 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendling775db972009-12-23 00:28:23 +00003729 }
Patrik Hagglund319bb392012-12-19 11:21:04 +00003730 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Eli Friedman8c377c72009-05-27 01:25:56 +00003731 DebugLoc dl = Node->getDebugLoc();
Eli Friedman509150f2009-05-27 07:58:35 +00003732 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman8c377c72009-05-27 01:25:56 +00003733 switch (Node->getOpcode()) {
3734 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003735 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003736 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003737 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003738 case ISD::CTPOP:
3739 // Zero extend the argument.
3740 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00003741 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
3742 // already the correct result.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003743 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003744 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth63974b22011-12-13 01:56:10 +00003745 // FIXME: This should set a bit in the zero extended value instead.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003746 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Eli Friedman8c377c72009-05-27 01:25:56 +00003747 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3748 ISD::SETEQ);
3749 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
3750 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth63974b22011-12-13 01:56:10 +00003751 } else if (Node->getOpcode() == ISD::CTLZ ||
3752 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003753 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3754 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3755 DAG.getConstant(NVT.getSizeInBits() -
3756 OVT.getSizeInBits(), NVT));
3757 }
Bill Wendling775db972009-12-23 00:28:23 +00003758 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00003759 break;
3760 case ISD::BSWAP: {
3761 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling167bea72009-12-22 22:53:39 +00003762 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00003763 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3764 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Anderson95771af2011-02-25 21:41:48 +00003765 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendling775db972009-12-23 00:28:23 +00003766 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003767 break;
3768 }
3769 case ISD::FP_TO_UINT:
3770 case ISD::FP_TO_SINT:
3771 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3772 Node->getOpcode() == ISD::FP_TO_SINT, dl);
3773 Results.push_back(Tmp1);
3774 break;
3775 case ISD::UINT_TO_FP:
3776 case ISD::SINT_TO_FP:
3777 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3778 Node->getOpcode() == ISD::SINT_TO_FP, dl);
3779 Results.push_back(Tmp1);
3780 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00003781 case ISD::VAARG: {
3782 SDValue Chain = Node->getOperand(0); // Get the chain.
3783 SDValue Ptr = Node->getOperand(1); // Get the pointer.
3784
3785 unsigned TruncOp;
3786 if (OVT.isVector()) {
3787 TruncOp = ISD::BITCAST;
3788 } else {
3789 assert(OVT.isInteger()
3790 && "VAARG promotion is supported only for vectors or integer types");
3791 TruncOp = ISD::TRUNCATE;
3792 }
3793
3794 // Perform the larger operation, then convert back
3795 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
3796 Node->getConstantOperandVal(3));
3797 Chain = Tmp1.getValue(1);
3798
3799 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
3800
3801 // Modified the chain result - switch anything that used the old chain to
3802 // use the new one.
3803 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
3804 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
3805 ReplacedNode(Node);
3806 break;
3807 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003808 case ISD::AND:
3809 case ISD::OR:
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003810 case ISD::XOR: {
3811 unsigned ExtOp, TruncOp;
3812 if (OVT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003813 ExtOp = ISD::BITCAST;
3814 TruncOp = ISD::BITCAST;
Chris Lattner35a38932010-04-07 23:47:51 +00003815 } else {
3816 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003817 ExtOp = ISD::ANY_EXTEND;
3818 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003819 }
3820 // Promote each of the values to the new type.
3821 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3822 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3823 // Perform the larger operation, then convert back
Bill Wendling775db972009-12-23 00:28:23 +00003824 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3825 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003826 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003827 }
3828 case ISD::SELECT: {
Eli Friedman509150f2009-05-27 07:58:35 +00003829 unsigned ExtOp, TruncOp;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003830 if (Node->getValueType(0).isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003831 ExtOp = ISD::BITCAST;
3832 TruncOp = ISD::BITCAST;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003833 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman509150f2009-05-27 07:58:35 +00003834 ExtOp = ISD::ANY_EXTEND;
3835 TruncOp = ISD::TRUNCATE;
3836 } else {
3837 ExtOp = ISD::FP_EXTEND;
3838 TruncOp = ISD::FP_ROUND;
3839 }
3840 Tmp1 = Node->getOperand(0);
3841 // Promote each of the values to the new type.
3842 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3843 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
3844 // Perform the larger operation, then round down.
3845 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
3846 if (TruncOp != ISD::FP_ROUND)
Bill Wendling775db972009-12-23 00:28:23 +00003847 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003848 else
Bill Wendling775db972009-12-23 00:28:23 +00003849 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman509150f2009-05-27 07:58:35 +00003850 DAG.getIntPtrConstant(0));
Bill Wendling775db972009-12-23 00:28:23 +00003851 Results.push_back(Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003852 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003853 }
Eli Friedman509150f2009-05-27 07:58:35 +00003854 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003855 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003856
3857 // Cast the two input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003858 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
3859 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman509150f2009-05-27 07:58:35 +00003860
3861 // Convert the shuffle mask to the right # elements.
Bill Wendling775db972009-12-23 00:28:23 +00003862 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003863 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003864 Results.push_back(Tmp1);
3865 break;
3866 }
Eli Friedmanad754602009-05-28 03:56:57 +00003867 case ISD::SETCC: {
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003868 unsigned ExtOp = ISD::FP_EXTEND;
3869 if (NVT.isInteger()) {
3870 ISD::CondCode CCCode =
3871 cast<CondCodeSDNode>(Node->getOperand(2))->get();
3872 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedmanad754602009-05-28 03:56:57 +00003873 }
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003874 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3875 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedmanad754602009-05-28 03:56:57 +00003876 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3877 Tmp1, Tmp2, Node->getOperand(2)));
3878 break;
3879 }
Pete Coopercfe29982012-03-19 23:38:12 +00003880 case ISD::FDIV:
Pete Cooper9751b812012-04-04 19:36:31 +00003881 case ISD::FREM:
Pete Cooperd578b902012-01-12 21:46:18 +00003882 case ISD::FPOW: {
3883 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3884 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopercfe29982012-03-19 23:38:12 +00003885 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooperd578b902012-01-12 21:46:18 +00003886 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3887 Tmp3, DAG.getIntPtrConstant(0)));
3888 break;
3889 }
3890 case ISD::FLOG2:
3891 case ISD::FEXP2:
3892 case ISD::FLOG:
3893 case ISD::FEXP: {
3894 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3895 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
3896 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3897 Tmp2, DAG.getIntPtrConstant(0)));
3898 break;
3899 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003900 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003901
3902 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003903 if (!Results.empty())
3904 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003905}
3906
Chris Lattner3e928bb2005-01-07 07:47:09 +00003907// SelectionDAG::Legalize - This is the entry point for the file.
3908//
Dan Gohman975716a2011-05-16 22:19:54 +00003909void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00003910 /// run - This is the main entry point to this class.
3911 ///
Dan Gohman975716a2011-05-16 22:19:54 +00003912 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00003913}