blob: 5eaf67ef0c78906e1c8b99828625de8a70445597 [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"
15#include "llvm/ADT/DenseMap.h"
16#include "llvm/ADT/SmallPtrSet.h"
17#include "llvm/ADT/SmallVector.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,
Tim Northover24d315d2013-01-08 17:09:59 +0000105 RTLIB::Libcall Call_F128, RTLIB::Libcall Call_PPCF128);
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000106 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
107 RTLIB::Libcall Call_I8,
108 RTLIB::Libcall Call_I16,
109 RTLIB::Libcall Call_I32,
110 RTLIB::Libcall Call_I64,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000111 RTLIB::Libcall Call_I128);
Evan Cheng65279cb2011-04-16 03:08:26 +0000112 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnercad063f2005-07-16 00:19:57 +0000113
Owen Andersone50ed302009-08-10 22:56:29 +0000114 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000115 SDValue ExpandBUILD_VECTOR(SDNode *Node);
116 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +0000117 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
118 SmallVectorImpl<SDValue> &Results);
119 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Andersone50ed302009-08-10 22:56:29 +0000120 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +0000121 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000122 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000123 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000124 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000125 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000126
Dale Johannesen8a782a22009-02-02 22:12:50 +0000127 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
128 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000129
Eli Friedman3d43b3f2009-05-23 22:37:25 +0000130 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenecfe33c42011-01-26 19:13:22 +0000131 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000132 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman8c377c72009-05-27 01:25:56 +0000133
Dan Gohman65fd6562011-11-03 21:49:52 +0000134 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
135
Jim Grosbache03262f2010-06-18 21:43:38 +0000136 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
137
Dan Gohman65fd6562011-11-03 21:49:52 +0000138 void ExpandNode(SDNode *Node);
139 void PromoteNode(SDNode *Node);
140
Eli Friedman0e3642a2011-11-11 23:58:27 +0000141 void ForgetNode(SDNode *N) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000142 LegalizedNodes.erase(N);
143 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
144 ++LegalizePosition;
145 }
146
Eli Friedman0e3642a2011-11-11 23:58:27 +0000147public:
148 // DAGUpdateListener implementation.
149 virtual void NodeDeleted(SDNode *N, SDNode *E) {
150 ForgetNode(N);
151 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000152 virtual void NodeUpdated(SDNode *N) {}
Eli Friedman0e3642a2011-11-11 23:58:27 +0000153
154 // Node replacement helpers
155 void ReplacedNode(SDNode *N) {
156 if (N->use_empty()) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000157 DAG.RemoveDeadNode(N);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000158 } else {
159 ForgetNode(N);
160 }
161 }
162 void ReplaceNode(SDNode *Old, SDNode *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000163 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000164 ReplacedNode(Old);
165 }
166 void ReplaceNode(SDValue Old, SDValue New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000167 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000168 ReplacedNode(Old.getNode());
169 }
170 void ReplaceNode(SDNode *Old, const SDValue *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000171 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000172 ReplacedNode(Old);
173 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000174};
175}
176
Nate Begeman5a5ca152009-04-29 05:20:52 +0000177/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
178/// performs the same shuffe in terms of order or result bytes, but on a type
179/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000180/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach6e992612010-07-02 17:41:59 +0000181SDValue
182SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Nate Begeman5a5ca152009-04-29 05:20:52 +0000183 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +0000184 ArrayRef<int> Mask) const {
Nate Begeman5a5ca152009-04-29 05:20:52 +0000185 unsigned NumMaskElts = VT.getVectorNumElements();
186 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000187 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000188
Nate Begeman9008ca62009-04-27 18:41:29 +0000189 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
190
191 if (NumEltsGrowth == 1)
192 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach6e992612010-07-02 17:41:59 +0000193
Nate Begeman9008ca62009-04-27 18:41:29 +0000194 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000195 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000196 int Idx = Mask[i];
197 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach6e992612010-07-02 17:41:59 +0000198 if (Idx < 0)
Nate Begeman9008ca62009-04-27 18:41:29 +0000199 NewMask.push_back(-1);
200 else
201 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000202 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000203 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000204 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000205 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
206 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000207}
208
Dan Gohman975716a2011-05-16 22:19:54 +0000209SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000210 : SelectionDAG::DAGUpdateListener(dag),
211 TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
Dan Gohmanea027022011-07-15 22:19:02 +0000212 DAG(dag) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000213}
214
Chris Lattner3e928bb2005-01-07 07:47:09 +0000215void SelectionDAGLegalize::LegalizeDAG() {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000216 DAG.AssignTopologicalOrder();
Dan Gohman2ba60e52011-10-28 01:29:32 +0000217
Dan Gohman65fd6562011-11-03 21:49:52 +0000218 // Visit all the nodes. We start in topological order, so that we see
219 // nodes with their original operands intact. Legalization can produce
220 // new nodes which may themselves need to be legalized. Iterate until all
221 // nodes have been legalized.
222 for (;;) {
223 bool AnyLegalized = false;
224 for (LegalizePosition = DAG.allnodes_end();
225 LegalizePosition != DAG.allnodes_begin(); ) {
226 --LegalizePosition;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000227
Dan Gohman65fd6562011-11-03 21:49:52 +0000228 SDNode *N = LegalizePosition;
229 if (LegalizedNodes.insert(N)) {
230 AnyLegalized = true;
231 LegalizeOp(N);
232 }
233 }
234 if (!AnyLegalized)
235 break;
236
237 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000238
239 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000240 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000241}
242
Evan Cheng9f877882006-12-13 20:57:08 +0000243/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
244/// a load from the constant pool.
Dan Gohman65fd6562011-11-03 21:49:52 +0000245SDValue
246SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng00495212006-12-12 21:32:44 +0000247 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000248 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000249
250 // If a FP immediate is precise when represented as a float and if the
251 // target can do an extending load from float to double, we put it into
252 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000253 // double. This shrinks FP constants and canonicalizes them for targets where
254 // an FP extending load is the same cost as a normal load (such as on the x87
255 // fp stack or PPC FP unit).
Owen Andersone50ed302009-08-10 22:56:29 +0000256 EVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000257 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000258 if (!UseCP) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000259 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000260 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000261 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000262 }
263
Owen Andersone50ed302009-08-10 22:56:29 +0000264 EVT OrigVT = VT;
265 EVT SVT = VT;
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 while (SVT != MVT::f32) {
267 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman7720cb32010-06-18 14:01:07 +0000268 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Chengef120572008-03-04 08:05:30 +0000269 // Only do this if the target has a native EXTLOAD instruction from
270 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000271 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000272 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000273 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Andersonbaf3c402009-07-29 18:55:55 +0000274 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Chengef120572008-03-04 08:05:30 +0000275 VT = SVT;
276 Extend = true;
277 }
Evan Cheng00495212006-12-12 21:32:44 +0000278 }
279
Dan Gohman475871a2008-07-27 21:46:04 +0000280 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000281 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman65fd6562011-11-03 21:49:52 +0000282 if (Extend) {
283 SDValue Result =
284 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
285 DAG.getEntryNode(),
286 CPIdx, MachinePointerInfo::getConstantPool(),
287 VT, false, false, Alignment);
288 return Result;
289 }
290 SDValue Result =
291 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000292 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman65fd6562011-11-03 21:49:52 +0000293 Alignment);
294 return Result;
Evan Cheng00495212006-12-12 21:32:44 +0000295}
296
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000297/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman65fd6562011-11-03 21:49:52 +0000298static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
299 const TargetLowering &TLI,
Eli Friedman0e3642a2011-11-11 23:58:27 +0000300 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000301 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
302 "unaligned indexed stores not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000303 SDValue Chain = ST->getChain();
304 SDValue Ptr = ST->getBasePtr();
305 SDValue Val = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +0000306 EVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000307 int Alignment = ST->getAlignment();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000308 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000309 if (ST->getMemoryVT().isFloatingPoint() ||
310 ST->getMemoryVT().isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000311 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000312 if (TLI.isTypeLegal(intVT)) {
313 // Expand to a bitconvert of the value to the integer type of the
314 // same size, then a (misaligned) int store.
315 // FIXME: Does not handle truncating floating point stores!
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000316 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman65fd6562011-11-03 21:49:52 +0000317 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
318 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000319 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000320 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000321 }
Dan Gohman1b328962011-05-17 22:22:52 +0000322 // Do a (aligned) store to a stack slot, then copy from the stack slot
323 // to the final destination using (unaligned) integer loads and stores.
324 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000325 MVT RegVT =
Dan Gohman1b328962011-05-17 22:22:52 +0000326 TLI.getRegisterType(*DAG.getContext(),
327 EVT::getIntegerVT(*DAG.getContext(),
328 StoredVT.getSizeInBits()));
329 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
330 unsigned RegBytes = RegVT.getSizeInBits() / 8;
331 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
332
333 // Make sure the stack slot is also aligned for the register type.
334 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
335
336 // Perform the original store, only redirected to the stack slot.
337 SDValue Store = DAG.getTruncStore(Chain, dl,
338 Val, StackPtr, MachinePointerInfo(),
339 StoredVT, false, false, 0);
340 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
341 SmallVector<SDValue, 8> Stores;
342 unsigned Offset = 0;
343
344 // Do all but one copies using the full register width.
345 for (unsigned i = 1; i < NumRegs; i++) {
346 // Load one integer register's worth from the stack slot.
347 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
348 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000349 false, false, false, 0);
Dan Gohman1b328962011-05-17 22:22:52 +0000350 // Store it to the final location. Remember the store.
351 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
352 ST->getPointerInfo().getWithOffset(Offset),
353 ST->isVolatile(), ST->isNonTemporal(),
354 MinAlign(ST->getAlignment(), Offset)));
355 // Increment the pointers.
356 Offset += RegBytes;
357 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
358 Increment);
359 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
360 }
361
362 // The last store may be partial. Do a truncating store. On big-endian
363 // machines this requires an extending load from the stack slot to ensure
364 // that the bits are in the right place.
365 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
366 8 * (StoredBytes - Offset));
367
368 // Load from the stack slot.
369 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
370 MachinePointerInfo(),
371 MemVT, false, false, 0);
372
373 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
374 ST->getPointerInfo()
375 .getWithOffset(Offset),
376 MemVT, ST->isVolatile(),
377 ST->isNonTemporal(),
378 MinAlign(ST->getAlignment(), Offset)));
379 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman65fd6562011-11-03 21:49:52 +0000380 SDValue Result =
381 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
382 Stores.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +0000383 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000384 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000385 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000386 assert(ST->getMemoryVT().isInteger() &&
387 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000388 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000389 // Get the half-size VT
Ken Dyckbceddbd2009-12-17 20:09:43 +0000390 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000391 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000392 int IncrementSize = NumBits / 8;
393
394 // Divide the stored value in two parts.
Owen Anderson95771af2011-02-25 21:41:48 +0000395 SDValue ShiftAmount = DAG.getConstant(NumBits,
396 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman475871a2008-07-27 21:46:04 +0000397 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000398 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000399
400 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000401 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000402 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000403 ST->getPointerInfo(), NewStoredVT,
David Greene1e559442010-02-15 17:00:31 +0000404 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000405 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000406 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000407 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000408 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000409 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene1e559442010-02-15 17:00:31 +0000410 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
411 Alignment);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000412
Dan Gohman65fd6562011-11-03 21:49:52 +0000413 SDValue Result =
414 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000415 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000416}
417
418/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman65fd6562011-11-03 21:49:52 +0000419static void
420ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
421 const TargetLowering &TLI,
422 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000423 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
424 "unaligned indexed loads not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000425 SDValue Chain = LD->getChain();
426 SDValue Ptr = LD->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +0000427 EVT VT = LD->getValueType(0);
428 EVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000429 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000430 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000431 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000432 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000433 // Expand to a (misaligned) integer load of the same size,
434 // then bitconvert to floating point or vector.
Chris Lattnerecf42c42010-09-21 16:36:31 +0000435 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
436 LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000437 LD->isNonTemporal(),
438 LD->isInvariant(), LD->getAlignment());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000439 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000440 if (LoadedVT != VT)
441 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
442 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000443
Dan Gohman65fd6562011-11-03 21:49:52 +0000444 ValResult = Result;
445 ChainResult = Chain;
446 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000447 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000448
Chris Lattnerecf42c42010-09-21 16:36:31 +0000449 // Copy the value to a (aligned) stack slot using (unaligned) integer
450 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000451 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattnerecf42c42010-09-21 16:36:31 +0000452 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
453 unsigned RegBytes = RegVT.getSizeInBits() / 8;
454 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
455
456 // Make sure the stack slot is also aligned for the register type.
457 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
458
459 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
460 SmallVector<SDValue, 8> Stores;
461 SDValue StackPtr = StackBase;
462 unsigned Offset = 0;
463
464 // Do all but one copies using the full register width.
465 for (unsigned i = 1; i < NumRegs; i++) {
466 // Load one integer register's worth from the original location.
467 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
468 LD->getPointerInfo().getWithOffset(Offset),
469 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000470 LD->isInvariant(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000471 MinAlign(LD->getAlignment(), Offset));
472 // Follow the load with a store to the stack slot. Remember the store.
473 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000474 MachinePointerInfo(), false, false, 0));
Chris Lattnerecf42c42010-09-21 16:36:31 +0000475 // Increment the pointers.
476 Offset += RegBytes;
477 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
478 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
479 Increment);
480 }
481
482 // The last copy may be partial. Do an extending load.
483 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
484 8 * (LoadedBytes - Offset));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000485 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000486 LD->getPointerInfo().getWithOffset(Offset),
487 MemVT, LD->isVolatile(),
488 LD->isNonTemporal(),
489 MinAlign(LD->getAlignment(), Offset));
490 // Follow the load with a store to the stack slot. Remember the store.
491 // On big-endian machines this requires a truncating store to ensure
492 // that the bits end up in the right place.
493 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
494 MachinePointerInfo(), MemVT,
495 false, false, 0));
496
497 // The order of the stores doesn't matter - say it with a TokenFactor.
498 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
499 Stores.size());
500
501 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastingsa9011292011-02-16 16:23:55 +0000502 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000503 MachinePointerInfo(), LoadedVT, false, false, 0);
504
505 // Callers expect a MERGE_VALUES node.
Dan Gohman65fd6562011-11-03 21:49:52 +0000506 ValResult = Load;
507 ChainResult = TF;
508 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000509 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000510 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000511 "Unaligned load of unsupported type.");
512
Dale Johannesen8155d642008-02-27 22:36:00 +0000513 // Compute the new VT that is half the size of the old one. This is an
514 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000515 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Andersone50ed302009-08-10 22:56:29 +0000516 EVT NewLoadedVT;
Owen Anderson23b9b192009-08-12 00:36:31 +0000517 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000518 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000519
Chris Lattnere400af82007-11-19 21:38:03 +0000520 unsigned Alignment = LD->getAlignment();
521 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000522 ISD::LoadExtType HiExtType = LD->getExtensionType();
523
524 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
525 if (HiExtType == ISD::NON_EXTLOAD)
526 HiExtType = ISD::ZEXTLOAD;
527
528 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000529 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000530 if (TLI.isLittleEndian()) {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000531 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000532 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000533 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000534 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000535 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000536 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000537 LD->getPointerInfo().getWithOffset(IncrementSize),
538 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000539 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000540 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000541 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000542 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000543 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000544 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000545 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000546 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000547 LD->getPointerInfo().getWithOffset(IncrementSize),
548 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000549 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000550 }
551
552 // aggregate the two parts
Owen Anderson95771af2011-02-25 21:41:48 +0000553 SDValue ShiftAmount = DAG.getConstant(NumBits,
554 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000555 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
556 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000557
Owen Anderson825b72b2009-08-11 20:47:22 +0000558 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000559 Hi.getValue(1));
560
Dan Gohman65fd6562011-11-03 21:49:52 +0000561 ValResult = Result;
562 ChainResult = TF;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000563}
Evan Cheng912095b2007-01-04 21:56:39 +0000564
Nate Begeman68679912008-04-25 18:07:40 +0000565/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
566/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
567/// is necessary to spill the vector being inserted into to memory, perform
568/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000569SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000570PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
571 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000572 SDValue Tmp1 = Vec;
573 SDValue Tmp2 = Val;
574 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000575
Nate Begeman68679912008-04-25 18:07:40 +0000576 // If the target doesn't support this, we have to spill the input vector
577 // to a temporary stack slot, update the element, then reload it. This is
578 // badness. We could also load the value into a vector register (either
579 // with a "move to register" or "extload into register" instruction, then
580 // permute it into place, if the idx is a constant and if the idx is
581 // supported by the target.
Owen Andersone50ed302009-08-10 22:56:29 +0000582 EVT VT = Tmp1.getValueType();
583 EVT EltVT = VT.getVectorElementType();
584 EVT IdxVT = Tmp3.getValueType();
585 EVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000586 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000587
Evan Chengff89dcb2009-10-18 18:16:27 +0000588 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
589
Nate Begeman68679912008-04-25 18:07:40 +0000590 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000591 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +0000592 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +0000593 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000594
595 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000596 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000597 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000598 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +0000599 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000600 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
601 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000602 // Store the scalar value.
Chris Lattner85ca1062010-09-21 07:32:19 +0000603 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene1e559442010-02-15 17:00:31 +0000604 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000605 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000606 return DAG.getLoad(VT, dl, Ch, StackPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000607 MachinePointerInfo::getFixedStack(SPFI), false, false,
608 false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000609}
610
Mon P Wange9f10152008-12-09 05:46:39 +0000611
Eli Friedman3f727d62009-05-27 02:16:40 +0000612SDValue SelectionDAGLegalize::
613ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, DebugLoc dl) {
614 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
615 // SCALAR_TO_VECTOR requires that the type of the value being inserted
616 // match the element type of the vector being created, except for
617 // integers in which case the inserted value can be over width.
Owen Andersone50ed302009-08-10 22:56:29 +0000618 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedman3f727d62009-05-27 02:16:40 +0000619 if (Val.getValueType() == EltVT ||
620 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
621 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
622 Vec.getValueType(), Val);
623
624 unsigned NumElts = Vec.getValueType().getVectorNumElements();
625 // We generate a shuffle of InVec and ScVec, so the shuffle mask
626 // should be 0,1,2,3,4,5... with the appropriate element replaced with
627 // elt 0 of the RHS.
628 SmallVector<int, 8> ShufOps;
629 for (unsigned i = 0; i != NumElts; ++i)
630 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
631
632 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
633 &ShufOps[0]);
634 }
635 }
636 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
637}
638
Eli Friedman7ef3d172009-06-06 07:04:42 +0000639SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
640 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
641 // FIXME: We shouldn't do this for TargetConstantFP's.
642 // FIXME: move this to the DAG Combiner! Note that we can't regress due
643 // to phase ordering between legalized code and the dag combiner. This
644 // probably means that we need to integrate dag combiner and legalizer
645 // together.
646 // We generally can't do this one for long doubles.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000647 SDValue Chain = ST->getChain();
648 SDValue Ptr = ST->getBasePtr();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000649 unsigned Alignment = ST->getAlignment();
650 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +0000651 bool isNonTemporal = ST->isNonTemporal();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000652 DebugLoc dl = ST->getDebugLoc();
653 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000654 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohman75b10042011-07-15 22:39:09 +0000655 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000656 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedman7ef3d172009-06-06 07:04:42 +0000657 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson825b72b2009-08-11 20:47:22 +0000658 MVT::i32);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000659 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000660 isVolatile, isNonTemporal, Alignment);
661 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000662
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000663 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000664 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohman75b10042011-07-15 22:39:09 +0000665 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000666 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +0000667 zextOrTrunc(64), MVT::i64);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000668 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000669 isVolatile, isNonTemporal, Alignment);
670 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000671
Dan Gohman75b10042011-07-15 22:39:09 +0000672 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000673 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
674 // stores. If the target supports neither 32- nor 64-bits, this
675 // xform is certainly not worth it.
676 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad40f8f622010-12-07 08:25:19 +0000677 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000678 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000679 if (TLI.isBigEndian()) std::swap(Lo, Hi);
680
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000681 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000682 isNonTemporal, Alignment);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000683 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Eli Friedman7ef3d172009-06-06 07:04:42 +0000684 DAG.getIntPtrConstant(4));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000685 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000686 ST->getPointerInfo().getWithOffset(4),
David Greene1e559442010-02-15 17:00:31 +0000687 isVolatile, isNonTemporal, MinAlign(Alignment, 4U));
Eli Friedman7ef3d172009-06-06 07:04:42 +0000688
Owen Anderson825b72b2009-08-11 20:47:22 +0000689 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000690 }
691 }
692 }
Evan Cheng8e23e812011-04-01 00:42:02 +0000693 return SDValue(0, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000694}
695
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000696void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
697 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000698 SDValue Chain = ST->getChain();
699 SDValue Ptr = ST->getBasePtr();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000700 DebugLoc dl = Node->getDebugLoc();
701
702 unsigned Alignment = ST->getAlignment();
703 bool isVolatile = ST->isVolatile();
704 bool isNonTemporal = ST->isNonTemporal();
705
706 if (!ST->isTruncatingStore()) {
707 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
708 ReplaceNode(ST, OptStore);
709 return;
710 }
711
712 {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000713 SDValue Value = ST->getValue();
Patrik Hagglund319bb392012-12-19 11:21:04 +0000714 MVT VT = Value.getSimpleValueType();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000715 switch (TLI.getOperationAction(ISD::STORE, VT)) {
716 default: llvm_unreachable("This action is not supported yet!");
717 case TargetLowering::Legal:
718 // If this is an unaligned store and the target doesn't support it,
719 // expand it.
720 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
721 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000722 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000723 if (ST->getAlignment() < ABIAlignment)
724 ExpandUnalignedStore(cast<StoreSDNode>(Node),
725 DAG, TLI, this);
726 }
727 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000728 case TargetLowering::Custom: {
729 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
730 if (Res.getNode())
731 ReplaceNode(SDValue(Node, 0), Res);
732 return;
733 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000734 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000735 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellard8b7f16e2012-12-10 21:41:54 +0000736 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
737 "Can only promote stores to same size type");
738 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000739 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000740 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000741 ST->getPointerInfo(), isVolatile,
742 isNonTemporal, Alignment);
743 ReplaceNode(SDValue(Node, 0), Result);
744 break;
745 }
746 }
747 return;
748 }
749 } else {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000750 SDValue Value = ST->getValue();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000751
752 EVT StVT = ST->getMemoryVT();
753 unsigned StWidth = StVT.getSizeInBits();
754
755 if (StWidth != StVT.getStoreSizeInBits()) {
756 // Promote to a byte-sized store with upper bits zero if not
757 // storing an integral number of bytes. For example, promote
758 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
759 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
760 StVT.getStoreSizeInBits());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000761 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000762 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000763 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000764 NVT, isVolatile, isNonTemporal, Alignment);
765 ReplaceNode(SDValue(Node, 0), Result);
766 } else if (StWidth & (StWidth - 1)) {
767 // If not storing a power-of-2 number of bits, expand as two stores.
768 assert(!StVT.isVector() && "Unsupported truncstore!");
769 unsigned RoundWidth = 1 << Log2_32(StWidth);
770 assert(RoundWidth < StWidth);
771 unsigned ExtraWidth = StWidth - RoundWidth;
772 assert(ExtraWidth < RoundWidth);
773 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
774 "Store size not an integral number of bytes!");
775 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
776 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
777 SDValue Lo, Hi;
778 unsigned IncrementSize;
779
780 if (TLI.isLittleEndian()) {
781 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
782 // Store the bottom RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000783 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000784 RoundVT,
785 isVolatile, isNonTemporal, Alignment);
786
787 // Store the remaining ExtraWidth bits.
788 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000789 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000790 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000791 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000792 DAG.getConstant(RoundWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000793 TLI.getShiftAmountTy(Value.getValueType())));
794 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000795 ST->getPointerInfo().getWithOffset(IncrementSize),
796 ExtraVT, isVolatile, isNonTemporal,
797 MinAlign(Alignment, IncrementSize));
798 } else {
799 // Big endian - avoid unaligned stores.
800 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
801 // Store the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000802 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000803 DAG.getConstant(ExtraWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000804 TLI.getShiftAmountTy(Value.getValueType())));
805 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000806 RoundVT, isVolatile, isNonTemporal, Alignment);
807
808 // Store the remaining ExtraWidth bits.
809 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000810 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000811 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000812 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000813 ST->getPointerInfo().getWithOffset(IncrementSize),
814 ExtraVT, isVolatile, isNonTemporal,
815 MinAlign(Alignment, IncrementSize));
816 }
817
818 // The order of the stores doesn't matter.
819 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
820 ReplaceNode(SDValue(Node, 0), Result);
821 } else {
Patrik Hagglund88ef5142012-12-19 08:28:51 +0000822 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
823 StVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000824 default: llvm_unreachable("This action is not supported yet!");
825 case TargetLowering::Legal:
826 // If this is an unaligned store and the target doesn't support it,
827 // expand it.
828 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
829 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000830 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000831 if (ST->getAlignment() < ABIAlignment)
832 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
833 }
834 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000835 case TargetLowering::Custom: {
836 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
837 if (Res.getNode())
838 ReplaceNode(SDValue(Node, 0), Res);
839 return;
840 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000841 case TargetLowering::Expand:
842 assert(!StVT.isVector() &&
843 "Vector Stores are handled in LegalizeVectorOps");
844
845 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000846 assert(TLI.isTypeLegal(StVT) &&
847 "Do not know how to expand this store!");
848 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000849 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000850 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000851 isVolatile, isNonTemporal, Alignment);
852 ReplaceNode(SDValue(Node, 0), Result);
853 break;
854 }
855 }
856 }
857}
858
859void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
860 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000861 SDValue Chain = LD->getChain(); // The chain.
862 SDValue Ptr = LD->getBasePtr(); // The base pointer.
863 SDValue Value; // The value returned by the load op.
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000864 DebugLoc dl = Node->getDebugLoc();
865
866 ISD::LoadExtType ExtType = LD->getExtensionType();
867 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000868 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000869 SDValue RVal = SDValue(Node, 0);
870 SDValue RChain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000871
872 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
873 default: llvm_unreachable("This action is not supported yet!");
874 case TargetLowering::Legal:
Evan Chengfe257cc2012-09-18 01:34:40 +0000875 // If this is an unaligned load and the target doesn't support it,
876 // expand it.
877 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
878 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
879 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +0000880 TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Chengfe257cc2012-09-18 01:34:40 +0000881 if (LD->getAlignment() < ABIAlignment){
882 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
883 }
884 }
885 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000886 case TargetLowering::Custom: {
Evan Chengfe257cc2012-09-18 01:34:40 +0000887 SDValue Res = TLI.LowerOperation(RVal, DAG);
888 if (Res.getNode()) {
889 RVal = Res;
890 RChain = Res.getValue(1);
891 }
892 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000893 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000894 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000895 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellardf45d11b2012-12-10 21:41:58 +0000896 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
897 "Can only promote loads to same size type");
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000898
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000899 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000900 LD->isVolatile(), LD->isNonTemporal(),
901 LD->isInvariant(), LD->getAlignment());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000902 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
903 RChain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000904 break;
905 }
906 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000907 if (RChain.getNode() != Node) {
908 assert(RVal.getNode() != Node && "Load must be completely replaced");
909 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
910 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000911 ReplacedNode(Node);
912 }
913 return;
914 }
915
916 EVT SrcVT = LD->getMemoryVT();
917 unsigned SrcWidth = SrcVT.getSizeInBits();
918 unsigned Alignment = LD->getAlignment();
919 bool isVolatile = LD->isVolatile();
920 bool isNonTemporal = LD->isNonTemporal();
921
922 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
923 // Some targets pretend to have an i1 loading operation, and actually
924 // load an i8. This trick is correct for ZEXTLOAD because the top 7
925 // bits are guaranteed to be zero; it helps the optimizers understand
926 // that these bits are zero. It is also useful for EXTLOAD, since it
927 // tells the optimizers that those bits are undefined. It would be
928 // nice to have an effective generic way of getting these benefits...
929 // Until such a way is found, don't insist on promoting i1 here.
930 (SrcVT != MVT::i1 ||
931 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
932 // Promote to a byte-sized load if not loading an integral number of
933 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
934 unsigned NewWidth = SrcVT.getStoreSizeInBits();
935 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
936 SDValue Ch;
937
938 // The extra bits are guaranteed to be zero, since we stored them that
939 // way. A zext load from NVT thus automatically gives zext from SrcVT.
940
941 ISD::LoadExtType NewExtType =
942 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
943
944 SDValue Result =
945 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000946 Chain, Ptr, LD->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000947 NVT, isVolatile, isNonTemporal, Alignment);
948
949 Ch = Result.getValue(1); // The chain.
950
951 if (ExtType == ISD::SEXTLOAD)
952 // Having the top bits zero doesn't help when sign extending.
953 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
954 Result.getValueType(),
955 Result, DAG.getValueType(SrcVT));
956 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
957 // All the top bits are guaranteed to be zero - inform the optimizers.
958 Result = DAG.getNode(ISD::AssertZext, dl,
959 Result.getValueType(), Result,
960 DAG.getValueType(SrcVT));
961
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000962 Value = Result;
963 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000964 } else if (SrcWidth & (SrcWidth - 1)) {
965 // If not loading a power-of-2 number of bits, expand as two loads.
966 assert(!SrcVT.isVector() && "Unsupported extload!");
967 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
968 assert(RoundWidth < SrcWidth);
969 unsigned ExtraWidth = SrcWidth - RoundWidth;
970 assert(ExtraWidth < RoundWidth);
971 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
972 "Load size not an integral number of bytes!");
973 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
974 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
975 SDValue Lo, Hi, Ch;
976 unsigned IncrementSize;
977
978 if (TLI.isLittleEndian()) {
979 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
980 // Load the bottom RoundWidth bits.
981 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000982 Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000983 LD->getPointerInfo(), RoundVT, isVolatile,
984 isNonTemporal, Alignment);
985
986 // Load the remaining ExtraWidth bits.
987 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000988 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000989 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000990 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000991 LD->getPointerInfo().getWithOffset(IncrementSize),
992 ExtraVT, isVolatile, isNonTemporal,
993 MinAlign(Alignment, IncrementSize));
994
995 // Build a factor node to remember that this load is independent of
996 // the other one.
997 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
998 Hi.getValue(1));
999
1000 // Move the top bits to the right place.
1001 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1002 DAG.getConstant(RoundWidth,
1003 TLI.getShiftAmountTy(Hi.getValueType())));
1004
1005 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001006 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001007 } else {
1008 // Big endian - avoid unaligned loads.
1009 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1010 // Load the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001011 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001012 LD->getPointerInfo(), RoundVT, isVolatile,
1013 isNonTemporal, Alignment);
1014
1015 // Load the remaining ExtraWidth bits.
1016 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001017 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001018 DAG.getIntPtrConstant(IncrementSize));
1019 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001020 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001021 LD->getPointerInfo().getWithOffset(IncrementSize),
1022 ExtraVT, isVolatile, isNonTemporal,
1023 MinAlign(Alignment, IncrementSize));
1024
1025 // Build a factor node to remember that this load is independent of
1026 // the other one.
1027 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1028 Hi.getValue(1));
1029
1030 // Move the top bits to the right place.
1031 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1032 DAG.getConstant(ExtraWidth,
1033 TLI.getShiftAmountTy(Hi.getValueType())));
1034
1035 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001036 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001037 }
1038
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001039 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001040 } else {
1041 bool isCustom = false;
Patrik Hagglund702474d2012-12-14 09:05:13 +00001042 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001043 default: llvm_unreachable("This action is not supported yet!");
1044 case TargetLowering::Custom:
1045 isCustom = true;
1046 // FALLTHROUGH
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001047 case TargetLowering::Legal: {
1048 Value = SDValue(Node, 0);
1049 Chain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001050
1051 if (isCustom) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001052 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1053 if (Res.getNode()) {
1054 Value = Res;
1055 Chain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001056 }
1057 } else {
1058 // If this is an unaligned load and the target doesn't support it,
1059 // expand it.
1060 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
1061 Type *Ty =
1062 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1063 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +00001064 TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001065 if (LD->getAlignment() < ABIAlignment){
1066 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001067 DAG, TLI, Value, Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001068 }
1069 }
1070 }
1071 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001072 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001073 case TargetLowering::Expand:
1074 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) && TLI.isTypeLegal(SrcVT)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001075 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001076 LD->getPointerInfo(),
1077 LD->isVolatile(), LD->isNonTemporal(),
1078 LD->isInvariant(), LD->getAlignment());
1079 unsigned ExtendOp;
1080 switch (ExtType) {
1081 case ISD::EXTLOAD:
1082 ExtendOp = (SrcVT.isFloatingPoint() ?
1083 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1084 break;
1085 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1086 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1087 default: llvm_unreachable("Unexpected extend load type!");
1088 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001089 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1090 Chain = Load.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001091 break;
1092 }
1093
1094 assert(!SrcVT.isVector() &&
1095 "Vector Loads are handled in LegalizeVectorOps");
1096
1097 // FIXME: This does not work for vectors on most targets. Sign- and
1098 // zero-extend operations are currently folded into extending loads,
1099 // whether they are legal or not, and then we end up here without any
1100 // support for legalizing them.
1101 assert(ExtType != ISD::EXTLOAD &&
1102 "EXTLOAD should always be supported!");
1103 // Turn the unsupported load into an EXTLOAD followed by an explicit
1104 // zero/sign extend inreg.
1105 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001106 Chain, Ptr, LD->getPointerInfo(), SrcVT,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001107 LD->isVolatile(), LD->isNonTemporal(),
1108 LD->getAlignment());
1109 SDValue ValRes;
1110 if (ExtType == ISD::SEXTLOAD)
1111 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1112 Result.getValueType(),
1113 Result, DAG.getValueType(SrcVT));
1114 else
1115 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001116 Value = ValRes;
1117 Chain = Result.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001118 break;
1119 }
1120 }
1121
1122 // Since loads produce two values, make sure to remember that we legalized
1123 // both of them.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001124 if (Chain.getNode() != Node) {
1125 assert(Value.getNode() != Node && "Load must be completely replaced");
1126 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1127 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001128 ReplacedNode(Node);
1129 }
1130}
1131
Dan Gohman6a109f92011-07-15 21:42:20 +00001132/// LegalizeOp - Return a legal replacement for the given operation, with
1133/// all legal operands.
Dan Gohman65fd6562011-11-03 21:49:52 +00001134void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1135 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1136 return;
Scott Michelfdc40a02009-02-17 22:15:04 +00001137
Eli Friedman1fde9c52009-05-24 02:46:31 +00001138 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001139 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1140 TargetLowering::TypeLegal &&
Eli Friedman1fde9c52009-05-24 02:46:31 +00001141 "Unexpected illegal type!");
1142
1143 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001144 assert((TLI.getTypeAction(*DAG.getContext(),
1145 Node->getOperand(i).getValueType()) ==
1146 TargetLowering::TypeLegal ||
Eli Friedman1fde9c52009-05-24 02:46:31 +00001147 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1148 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001149
Eli Friedman8c377c72009-05-27 01:25:56 +00001150 // Figure out the correct action; the way to query this varies by opcode
Bill Wendling6b9a2932011-01-26 22:21:35 +00001151 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman8c377c72009-05-27 01:25:56 +00001152 bool SimpleFinishLegalizing = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001153 switch (Node->getOpcode()) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001154 case ISD::INTRINSIC_W_CHAIN:
1155 case ISD::INTRINSIC_WO_CHAIN:
1156 case ISD::INTRINSIC_VOID:
Eli Friedman8c377c72009-05-27 01:25:56 +00001157 case ISD::STACKSAVE:
Owen Anderson825b72b2009-08-11 20:47:22 +00001158 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman8c377c72009-05-27 01:25:56 +00001159 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00001160 case ISD::VAARG:
1161 Action = TLI.getOperationAction(Node->getOpcode(),
1162 Node->getValueType(0));
1163 if (Action != TargetLowering::Promote)
1164 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1165 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001166 case ISD::SINT_TO_FP:
1167 case ISD::UINT_TO_FP:
1168 case ISD::EXTRACT_VECTOR_ELT:
1169 Action = TLI.getOperationAction(Node->getOpcode(),
1170 Node->getOperand(0).getValueType());
1171 break;
1172 case ISD::FP_ROUND_INREG:
1173 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00001174 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00001175 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1176 break;
1177 }
Eli Friedman327236c2011-08-24 20:50:09 +00001178 case ISD::ATOMIC_STORE: {
1179 Action = TLI.getOperationAction(Node->getOpcode(),
1180 Node->getOperand(2).getValueType());
1181 break;
1182 }
Eli Friedman3be2e512009-05-28 03:06:16 +00001183 case ISD::SELECT_CC:
1184 case ISD::SETCC:
1185 case ISD::BR_CC: {
1186 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1187 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1188 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001189 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedman3be2e512009-05-28 03:06:16 +00001190 ISD::CondCode CCCode =
1191 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1192 Action = TLI.getCondCodeAction(CCCode, OpVT);
1193 if (Action == TargetLowering::Legal) {
1194 if (Node->getOpcode() == ISD::SELECT_CC)
1195 Action = TLI.getOperationAction(Node->getOpcode(),
1196 Node->getValueType(0));
1197 else
1198 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1199 }
1200 break;
1201 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001202 case ISD::LOAD:
1203 case ISD::STORE:
Eli Friedmanad754602009-05-28 03:56:57 +00001204 // FIXME: Model these properly. LOAD and STORE are complicated, and
1205 // STORE expects the unlegalized operand in some cases.
1206 SimpleFinishLegalizing = false;
1207 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001208 case ISD::CALLSEQ_START:
1209 case ISD::CALLSEQ_END:
Eli Friedmanad754602009-05-28 03:56:57 +00001210 // FIXME: This shouldn't be necessary. These nodes have special properties
1211 // dealing with the recursive nature of legalization. Removing this
1212 // special case should be done as part of making LegalizeDAG non-recursive.
1213 SimpleFinishLegalizing = false;
1214 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001215 case ISD::EXTRACT_ELEMENT:
1216 case ISD::FLT_ROUNDS_:
1217 case ISD::SADDO:
1218 case ISD::SSUBO:
1219 case ISD::UADDO:
1220 case ISD::USUBO:
1221 case ISD::SMULO:
1222 case ISD::UMULO:
1223 case ISD::FPOWI:
1224 case ISD::MERGE_VALUES:
1225 case ISD::EH_RETURN:
1226 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00001227 case ISD::EH_SJLJ_SETJMP:
1228 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001229 // These operations lie about being legal: when they claim to be legal,
1230 // they should actually be expanded.
Eli Friedman8c377c72009-05-27 01:25:56 +00001231 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1232 if (Action == TargetLowering::Legal)
1233 Action = TargetLowering::Expand;
1234 break;
Duncan Sands4a544a72011-09-06 13:37:06 +00001235 case ISD::INIT_TRAMPOLINE:
1236 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman8c377c72009-05-27 01:25:56 +00001237 case ISD::FRAMEADDR:
1238 case ISD::RETURNADDR:
Eli Friedman4bc8c712009-05-27 12:20:41 +00001239 // These operations lie about being legal: when they claim to be legal,
1240 // they should actually be custom-lowered.
1241 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1242 if (Action == TargetLowering::Legal)
1243 Action = TargetLowering::Custom;
Eli Friedman8c377c72009-05-27 01:25:56 +00001244 break;
Shuxin Yang970755e2012-10-19 20:11:16 +00001245 case ISD::DEBUGTRAP:
1246 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1247 if (Action == TargetLowering::Expand) {
1248 // replace ISD::DEBUGTRAP with ISD::TRAP
1249 SDValue NewVal;
Shuxin Yangcfc6cb02012-10-19 23:00:20 +00001250 NewVal = DAG.getNode(ISD::TRAP, Node->getDebugLoc(), Node->getVTList(),
1251 Node->getOperand(0));
Shuxin Yang970755e2012-10-19 20:11:16 +00001252 ReplaceNode(Node, NewVal.getNode());
1253 LegalizeOp(NewVal.getNode());
1254 return;
1255 }
1256 break;
1257
Chris Lattner3e928bb2005-01-07 07:47:09 +00001258 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001259 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001260 Action = TargetLowering::Legal;
1261 } else {
1262 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001263 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001264 break;
1265 }
1266
1267 if (SimpleFinishLegalizing) {
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001268 SDNode *NewNode = Node;
Eli Friedman8c377c72009-05-27 01:25:56 +00001269 switch (Node->getOpcode()) {
1270 default: break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001271 case ISD::SHL:
1272 case ISD::SRL:
1273 case ISD::SRA:
1274 case ISD::ROTL:
1275 case ISD::ROTR:
1276 // Legalizing shifts/rotates requires adjusting the shift amount
1277 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001278 if (!Node->getOperand(1).getValueType().isVector()) {
1279 SDValue SAO =
1280 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1281 Node->getOperand(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00001282 HandleSDNode Handle(SAO);
1283 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001284 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1285 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001286 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001287 break;
Dan Gohmandb8dc2b2009-08-18 23:36:17 +00001288 case ISD::SRL_PARTS:
1289 case ISD::SRA_PARTS:
1290 case ISD::SHL_PARTS:
1291 // Legalizing shifts/rotates requires adjusting the shift amount
1292 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001293 if (!Node->getOperand(2).getValueType().isVector()) {
1294 SDValue SAO =
1295 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1296 Node->getOperand(2));
Dan Gohman65fd6562011-11-03 21:49:52 +00001297 HandleSDNode Handle(SAO);
1298 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001299 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1300 Node->getOperand(1),
1301 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001302 }
Dan Gohman2c9489d2009-08-18 23:52:48 +00001303 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001304 }
1305
Dan Gohman65fd6562011-11-03 21:49:52 +00001306 if (NewNode != Node) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001307 DAG.ReplaceAllUsesWith(Node, NewNode);
Dan Gohman65fd6562011-11-03 21:49:52 +00001308 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1309 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman0e3642a2011-11-11 23:58:27 +00001310 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001311 Node = NewNode;
1312 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001313 switch (Action) {
1314 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +00001315 return;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001316 case TargetLowering::Custom: {
Eli Friedman8c377c72009-05-27 01:25:56 +00001317 // FIXME: The handling for custom lowering with multiple results is
1318 // a complete mess.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001319 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1320 if (Res.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001321 SmallVector<SDValue, 8> ResultVals;
Eli Friedman8c377c72009-05-27 01:25:56 +00001322 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1323 if (e == 1)
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001324 ResultVals.push_back(Res);
Eli Friedman8c377c72009-05-27 01:25:56 +00001325 else
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001326 ResultVals.push_back(Res.getValue(i));
Eli Friedman8c377c72009-05-27 01:25:56 +00001327 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001328 if (Res.getNode() != Node || Res.getResNo() != 0) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001329 DAG.ReplaceAllUsesWith(Node, ResultVals.data());
Dan Gohman65fd6562011-11-03 21:49:52 +00001330 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1331 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001332 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001333 }
1334 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001335 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001336 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001337 // FALL THROUGH
1338 case TargetLowering::Expand:
Dan Gohman65fd6562011-11-03 21:49:52 +00001339 ExpandNode(Node);
1340 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001341 case TargetLowering::Promote:
Dan Gohman65fd6562011-11-03 21:49:52 +00001342 PromoteNode(Node);
1343 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001344 }
1345 }
1346
1347 switch (Node->getOpcode()) {
1348 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001349#ifndef NDEBUG
David Greene993aace2010-01-05 01:24:53 +00001350 dbgs() << "NODE: ";
1351 Node->dump( &DAG);
1352 dbgs() << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001353#endif
Craig Topper5e25ee82012-02-05 08:31:47 +00001354 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001355
Dan Gohman65fd6562011-11-03 21:49:52 +00001356 case ISD::CALLSEQ_START:
Dan Gohman6f3ddef2011-10-29 00:41:52 +00001357 case ISD::CALLSEQ_END:
Dan Gohman65fd6562011-11-03 21:49:52 +00001358 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001359 case ISD::LOAD: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001360 return LegalizeLoadOps(Node);
Chris Lattner01ff7212005-04-10 22:54:25 +00001361 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001362 case ISD::STORE: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001363 return LegalizeStoreOps(Node);
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001364 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001365 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001366}
1367
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001368SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1369 SDValue Vec = Op.getOperand(0);
1370 SDValue Idx = Op.getOperand(1);
1371 DebugLoc dl = Op.getDebugLoc();
1372 // Store the value to a temporary stack slot, then LOAD the returned part.
1373 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Chris Lattner6229d0a2010-09-21 18:41:36 +00001374 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1375 MachinePointerInfo(), false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001376
1377 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001378 unsigned EltSize =
1379 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001380 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1381 DAG.getConstant(EltSize, Idx.getValueType()));
1382
1383 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1384 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1385 else
1386 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1387
1388 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1389
Eli Friedmanc680ac92009-07-09 22:01:03 +00001390 if (Op.getValueType().isVector())
Chris Lattnerecf42c42010-09-21 16:36:31 +00001391 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001392 false, false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00001393 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001394 MachinePointerInfo(),
1395 Vec.getValueType().getVectorElementType(),
1396 false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001397}
1398
David Greenecfe33c42011-01-26 19:13:22 +00001399SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1400 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1401
1402 SDValue Vec = Op.getOperand(0);
1403 SDValue Part = Op.getOperand(1);
1404 SDValue Idx = Op.getOperand(2);
1405 DebugLoc dl = Op.getDebugLoc();
1406
1407 // Store the value to a temporary stack slot, then LOAD the returned part.
1408
1409 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1410 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1411 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1412
1413 // First store the whole vector.
1414 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1415 false, false, 0);
1416
1417 // Then store the inserted part.
1418
1419 // Add the offset to the index.
1420 unsigned EltSize =
1421 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1422
1423 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1424 DAG.getConstant(EltSize, Idx.getValueType()));
1425
1426 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1427 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1428 else
1429 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1430
1431 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1432 StackPtr);
1433
1434 // Store the subvector.
1435 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1436 MachinePointerInfo(), false, false, 0);
1437
1438 // Finally, load the updated vector.
1439 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001440 false, false, false, 0);
David Greenecfe33c42011-01-26 19:13:22 +00001441}
1442
Eli Friedman7ef3d172009-06-06 07:04:42 +00001443SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1444 // We can't handle this case efficiently. Allocate a sufficiently
1445 // aligned object on the stack, store each element into it, then load
1446 // the result as a vector.
1447 // Create the stack frame object.
Owen Andersone50ed302009-08-10 22:56:29 +00001448 EVT VT = Node->getValueType(0);
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001449 EVT EltVT = VT.getVectorElementType();
Eli Friedman7ef3d172009-06-06 07:04:42 +00001450 DebugLoc dl = Node->getDebugLoc();
1451 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Chengff89dcb2009-10-18 18:16:27 +00001452 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattnerecf42c42010-09-21 16:36:31 +00001453 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001454
1455 // Emit a store of each element to the stack slot.
1456 SmallVector<SDValue, 8> Stores;
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001457 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedman7ef3d172009-06-06 07:04:42 +00001458 // Store (in the right endianness) the elements to memory.
1459 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1460 // Ignore undef elements.
1461 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1462
1463 unsigned Offset = TypeByteSize*i;
1464
1465 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1466 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1467
Dan Gohman9949dd62010-02-25 20:30:49 +00001468 // If the destination vector element type is narrower than the source
1469 // element type, only store the bits necessary.
1470 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001471 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001472 Node->getOperand(i), Idx,
1473 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001474 EltVT, false, false, 0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00001475 } else
Jim Grosbach6e992612010-07-02 17:41:59 +00001476 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001477 Node->getOperand(i), Idx,
1478 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001479 false, false, 0));
Eli Friedman7ef3d172009-06-06 07:04:42 +00001480 }
1481
1482 SDValue StoreChain;
1483 if (!Stores.empty()) // Not all undef elements?
Owen Anderson825b72b2009-08-11 20:47:22 +00001484 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedman7ef3d172009-06-06 07:04:42 +00001485 &Stores[0], Stores.size());
1486 else
1487 StoreChain = DAG.getEntryNode();
1488
1489 // Result is a load from the stack slot.
Pete Cooperd752e0f2011-11-08 18:42:53 +00001490 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
1491 false, false, false, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001492}
1493
Eli Friedman4bc8c712009-05-27 12:20:41 +00001494SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
1495 DebugLoc dl = Node->getDebugLoc();
1496 SDValue Tmp1 = Node->getOperand(0);
1497 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands5d54b412010-03-12 11:45:06 +00001498
1499 // Get the sign bit of the RHS. First obtain a value that has the same
1500 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001501 SDValue SignBit;
Duncan Sands5d54b412010-03-12 11:45:06 +00001502 EVT FloatVT = Tmp2.getValueType();
1503 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohman75b10042011-07-15 22:39:09 +00001504 if (TLI.isTypeLegal(IVT)) {
Duncan Sands5d54b412010-03-12 11:45:06 +00001505 // Convert to an integer with the same sign bit.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001506 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001507 } else {
Duncan Sands5d54b412010-03-12 11:45:06 +00001508 // Store the float to memory, then load the sign part out as an integer.
1509 MVT LoadTy = TLI.getPointerTy();
1510 // First create a temporary that is aligned for both the load and store.
1511 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1512 // Then store the float to it.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001513 SDValue Ch =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001514 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00001515 false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001516 if (TLI.isBigEndian()) {
1517 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1518 // Load out a legal integer with the same sign bit as the float.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001519 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001520 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001521 } else { // Little endian
1522 SDValue LoadPtr = StackPtr;
1523 // The float may be wider than the integer we are going to load. Advance
1524 // the pointer so that the loaded integer will contain the sign bit.
1525 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1526 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1527 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(),
1528 LoadPtr, DAG.getIntPtrConstant(ByteOffset));
1529 // Load a legal integer containing the sign bit.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001530 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001531 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001532 // Move the sign bit to the top bit of the loaded integer.
1533 unsigned BitShift = LoadTy.getSizeInBits() -
1534 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1535 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1536 if (BitShift)
1537 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Anderson95771af2011-02-25 21:41:48 +00001538 DAG.getConstant(BitShift,
1539 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands5d54b412010-03-12 11:45:06 +00001540 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00001541 }
Duncan Sands5d54b412010-03-12 11:45:06 +00001542 // Now get the sign bit proper, by seeing whether the value is negative.
1543 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(SignBit.getValueType()),
1544 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1545 ISD::SETLT);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001546 // Get the absolute value of the result.
1547 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1548 // Select between the nabs and abs value based on the sign bit of
1549 // the input.
1550 return DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
1551 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1552 AbsVal);
1553}
1554
Eli Friedman4bc8c712009-05-27 12:20:41 +00001555void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1556 SmallVectorImpl<SDValue> &Results) {
1557 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1558 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1559 " not tell us which reg is the stack pointer!");
1560 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001561 EVT VT = Node->getValueType(0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001562 SDValue Tmp1 = SDValue(Node, 0);
1563 SDValue Tmp2 = SDValue(Node, 1);
1564 SDValue Tmp3 = Node->getOperand(2);
1565 SDValue Chain = Tmp1.getOperand(0);
1566
1567 // Chain the dynamic stack allocation so that it doesn't modify the stack
1568 // pointer when other instructions are using the stack.
1569 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
1570
1571 SDValue Size = Tmp2.getOperand(1);
1572 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1573 Chain = SP.getValue(1);
1574 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001575 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman4bc8c712009-05-27 12:20:41 +00001576 if (Align > StackAlign)
1577 SP = DAG.getNode(ISD::AND, dl, VT, SP,
1578 DAG.getConstant(-(uint64_t)Align, VT));
1579 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
1580 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1581
1582 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1583 DAG.getIntPtrConstant(0, true), SDValue());
1584
1585 Results.push_back(Tmp1);
1586 Results.push_back(Tmp2);
1587}
1588
Evan Cheng7f042682008-10-15 02:05:31 +00001589/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Dan Gohmanf77fc922009-10-17 01:37:38 +00001590/// condition code CC on the current target. This routine expands SETCC with
Evan Cheng7f042682008-10-15 02:05:31 +00001591/// illegal condition code into AND / OR of multiple SETCC values.
Owen Andersone50ed302009-08-10 22:56:29 +00001592void SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng7f042682008-10-15 02:05:31 +00001593 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00001594 SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +00001595 DebugLoc dl) {
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001596 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng7f042682008-10-15 02:05:31 +00001597 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
1598 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001599 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng7f042682008-10-15 02:05:31 +00001600 case TargetLowering::Legal:
1601 // Nothing to do.
1602 break;
1603 case TargetLowering::Expand: {
1604 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
Micah Villmowd6458a02012-10-10 20:50:51 +00001605 ISD::CondCode InvCC = ISD::SETCC_INVALID;
Evan Cheng7f042682008-10-15 02:05:31 +00001606 unsigned Opc = 0;
1607 switch (CCCode) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001608 default: llvm_unreachable("Don't know how to expand this condition!");
Micah Villmowd6458a02012-10-10 20:50:51 +00001609 case ISD::SETO:
1610 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1611 == TargetLowering::Legal
1612 && "If SETO is expanded, SETOEQ must be legal!");
1613 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
1614 case ISD::SETUO:
1615 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1616 == TargetLowering::Legal
1617 && "If SETUO is expanded, SETUNE must be legal!");
1618 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1619 case ISD::SETOEQ:
1620 case ISD::SETOGT:
1621 case ISD::SETOGE:
1622 case ISD::SETOLT:
1623 case ISD::SETOLE:
1624 case ISD::SETONE:
1625 case ISD::SETUEQ:
1626 case ISD::SETUNE:
1627 case ISD::SETUGT:
1628 case ISD::SETUGE:
1629 case ISD::SETULT:
1630 case ISD::SETULE:
1631 // If we are floating point, assign and break, otherwise fall through.
1632 if (!OpVT.isInteger()) {
1633 // We can use the 4th bit to tell if we are the unordered
1634 // or ordered version of the opcode.
1635 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1636 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1637 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1638 break;
1639 }
1640 // Fallthrough if we are unsigned integer.
1641 case ISD::SETLE:
1642 case ISD::SETGT:
1643 case ISD::SETGE:
1644 case ISD::SETLT:
1645 case ISD::SETNE:
1646 case ISD::SETEQ:
1647 InvCC = ISD::getSetCCSwappedOperands(CCCode);
1648 if (TLI.getCondCodeAction(InvCC, OpVT) == TargetLowering::Expand) {
1649 // We only support using the inverted operation and not a
1650 // different manner of supporting expanding these cases.
1651 llvm_unreachable("Don't know how to expand this condition!");
1652 }
1653 LHS = DAG.getSetCC(dl, VT, RHS, LHS, InvCC);
1654 RHS = SDValue();
1655 CC = SDValue();
1656 return;
Evan Cheng7f042682008-10-15 02:05:31 +00001657 }
Micah Villmowd6458a02012-10-10 20:50:51 +00001658
1659 SDValue SetCC1, SetCC2;
1660 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1661 // If we aren't the ordered or unorder operation,
1662 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1663 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1664 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1665 } else {
1666 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1667 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1668 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1669 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001670 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00001671 RHS = SDValue();
1672 CC = SDValue();
1673 break;
1674 }
1675 }
1676}
1677
Chris Lattner1401d152008-01-16 07:45:30 +00001678/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1679/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1680/// a load from the stack slot to DestVT, extending it if needed.
1681/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001682SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Andersone50ed302009-08-10 22:56:29 +00001683 EVT SlotVT,
1684 EVT DestVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00001685 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00001686 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001687 unsigned SrcAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00001688 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson23b9b192009-08-12 00:36:31 +00001689 getTypeForEVT(*DAG.getContext()));
Dan Gohman475871a2008-07-27 21:46:04 +00001690 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001691
Evan Chengff89dcb2009-10-18 18:16:27 +00001692 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1693 int SPFI = StackPtrFI->getIndex();
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001694 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Chengff89dcb2009-10-18 18:16:27 +00001695
Duncan Sands83ec4b62008-06-06 12:08:01 +00001696 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1697 unsigned SlotSize = SlotVT.getSizeInBits();
1698 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001699 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00001700 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelfdc40a02009-02-17 22:15:04 +00001701
Chris Lattner1401d152008-01-16 07:45:30 +00001702 // Emit a store to the stack slot. Use a truncstore if the input value is
1703 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00001704 SDValue Store;
Evan Chengff89dcb2009-10-18 18:16:27 +00001705
Chris Lattner1401d152008-01-16 07:45:30 +00001706 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00001707 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001708 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001709 else {
1710 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00001711 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001712 PtrInfo, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001713 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001714
Chris Lattner35481892005-12-23 00:16:34 +00001715 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00001716 if (SlotSize == DestSize)
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001717 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001718 false, false, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001719
Chris Lattner1401d152008-01-16 07:45:30 +00001720 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastingsa9011292011-02-16 16:23:55 +00001721 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001722 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00001723}
1724
Dan Gohman475871a2008-07-27 21:46:04 +00001725SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00001726 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00001727 // Create a vector sized/aligned stack slot, store the value to element #0,
1728 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00001729 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00001730
Evan Chengff89dcb2009-10-18 18:16:27 +00001731 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1732 int SPFI = StackPtrFI->getIndex();
1733
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001734 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1735 StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001736 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +00001737 Node->getValueType(0).getVectorElementType(),
1738 false, false, 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00001739 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001740 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001741 false, false, false, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001742}
1743
1744
Chris Lattnerce872152006-03-19 06:31:19 +00001745/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00001746/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00001747SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001748 unsigned NumElems = Node->getNumOperands();
Eli Friedman7a5e5552009-06-07 06:52:44 +00001749 SDValue Value1, Value2;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001750 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001751 EVT VT = Node->getValueType(0);
1752 EVT OpVT = Node->getOperand(0).getValueType();
1753 EVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001754
1755 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00001756 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00001757 bool isOnlyLowElement = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001758 bool MoreThanTwoValues = false;
Chris Lattner2eb86532006-03-24 07:29:17 +00001759 bool isConstant = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001760 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001761 SDValue V = Node->getOperand(i);
Eli Friedman7a5e5552009-06-07 06:52:44 +00001762 if (V.getOpcode() == ISD::UNDEF)
1763 continue;
1764 if (i > 0)
Chris Lattnerce872152006-03-19 06:31:19 +00001765 isOnlyLowElement = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001766 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner2eb86532006-03-24 07:29:17 +00001767 isConstant = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001768
1769 if (!Value1.getNode()) {
1770 Value1 = V;
1771 } else if (!Value2.getNode()) {
1772 if (V != Value1)
1773 Value2 = V;
1774 } else if (V != Value1 && V != Value2) {
1775 MoreThanTwoValues = true;
1776 }
Chris Lattnerce872152006-03-19 06:31:19 +00001777 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001778
Eli Friedman7a5e5552009-06-07 06:52:44 +00001779 if (!Value1.getNode())
1780 return DAG.getUNDEF(VT);
1781
1782 if (isOnlyLowElement)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001783 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001784
Chris Lattner2eb86532006-03-24 07:29:17 +00001785 // If all elements are constants, create a load from the constant pool.
1786 if (isConstant) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001787 SmallVector<Constant*, 16> CV;
Chris Lattner2eb86532006-03-24 07:29:17 +00001788 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001789 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00001790 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00001791 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001792 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001793 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen9a645cd2009-11-10 23:16:41 +00001794 if (OpVT==EltVT)
1795 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1796 else {
1797 // If OpVT and EltVT don't match, EltVT is not legal and the
1798 // element values have been promoted/truncated earlier. Undo this;
1799 // we don't want a v16i8 to become a v16i32 for example.
1800 const ConstantInt *CI = V->getConstantIntValue();
1801 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1802 CI->getZExtValue()));
1803 }
Chris Lattner2eb86532006-03-24 07:29:17 +00001804 } else {
1805 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001806 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001807 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner2eb86532006-03-24 07:29:17 +00001808 }
1809 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00001810 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00001811 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00001812 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00001813 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00001814 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001815 false, false, false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00001816 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001817
Eli Friedman7a5e5552009-06-07 06:52:44 +00001818 if (!MoreThanTwoValues) {
1819 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1820 for (unsigned i = 0; i < NumElems; ++i) {
1821 SDValue V = Node->getOperand(i);
1822 if (V.getOpcode() == ISD::UNDEF)
1823 continue;
1824 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1825 }
1826 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00001827 // Get the splatted value into the low element of a vector register.
Eli Friedman7a5e5552009-06-07 06:52:44 +00001828 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1829 SDValue Vec2;
1830 if (Value2.getNode())
1831 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1832 else
1833 Vec2 = DAG.getUNDEF(VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001834
Chris Lattner87100e02006-03-20 01:52:29 +00001835 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Eli Friedman7a5e5552009-06-07 06:52:44 +00001836 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
Evan Cheng033e6812006-03-24 01:17:21 +00001837 }
1838 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001839
Eli Friedman7ef3d172009-06-06 07:04:42 +00001840 // Otherwise, we can't handle this case efficiently.
1841 return ExpandVectorBuildThroughStack(Node);
Chris Lattnerce872152006-03-19 06:31:19 +00001842}
1843
Chandler Carruth40b2c322013-01-08 05:11:57 +00001844static bool isInTailCallPosition(SelectionDAG &DAG, SDNode *Node,
1845 SDValue &Chain, const TargetLowering &TLI) {
1846 const Function *F = DAG.getMachineFunction().getFunction();
1847
1848 // Conservatively require the attributes of the call to match those of
1849 // the return. Ignore noalias because it doesn't affect the call sequence.
1850 Attribute CallerRetAttr = F->getAttributes().getRetAttributes();
1851 if (AttrBuilder(CallerRetAttr)
1852 .removeAttribute(Attribute::NoAlias).hasAttributes())
1853 return false;
1854
1855 // It's not safe to eliminate the sign / zero extension of the return value.
1856 if (CallerRetAttr.hasAttribute(Attribute::ZExt) ||
1857 CallerRetAttr.hasAttribute(Attribute::SExt))
1858 return false;
1859
1860 // Check if the only use is a function return node.
1861 return TLI.isUsedByReturnOnly(Node, Chain);
1862}
1863
Chris Lattner77e77a62005-01-21 06:05:23 +00001864// ExpandLibCall - Expand a node into a call to a libcall. If the result value
1865// does not fit into a register, return the lo part and set the hi part to the
1866// by-reg argument. If it does fit into a single register, return the result
1867// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00001868SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedman47b41f72009-05-27 02:21:29 +00001869 bool isSigned) {
Chris Lattner77e77a62005-01-21 06:05:23 +00001870 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00001871 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00001872 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00001873 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001874 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelfdc40a02009-02-17 22:15:04 +00001875 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00001876 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00001877 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00001878 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00001879 }
Bill Wendling056292f2008-09-16 21:48:12 +00001880 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00001881 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001882
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001883 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Cheng3d2125c2010-11-30 23:55:39 +00001884
Evan Chengbf010eb2012-04-10 01:51:00 +00001885 // By default, the input chain to this libcall is the entry node of the
1886 // function. If the libcall is going to be emitted as a tail call then
1887 // TLI.isUsedByReturnOnly will change it to the right chain if the return
1888 // node which is being folded has a non-entry input chain.
1889 SDValue InChain = DAG.getEntryNode();
1890
Evan Cheng3d2125c2010-11-30 23:55:39 +00001891 // isTailCall may be true since the callee does not reference caller stack
1892 // frame. Check if it's in the right position.
Evan Chengb52ba492012-04-10 03:15:18 +00001893 SDValue TCChain = InChain;
1894 bool isTailCall = isInTailCallPosition(DAG, Node, TCChain, TLI);
1895 if (isTailCall)
1896 InChain = TCChain;
1897
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001898 TargetLowering::
1899 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001900 0, TLI.getLibcallCallingConv(LC), isTailCall,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001901 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Bill Wendling46ada192010-03-02 01:55:18 +00001902 Callee, Args, DAG, Node->getDebugLoc());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001903 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
1904
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00001905
Evan Cheng3d2125c2010-11-30 23:55:39 +00001906 if (!CallInfo.second.getNode())
1907 // It's a tailcall, return the chain (which is the DAG root).
1908 return DAG.getRoot();
1909
Eli Friedman74807f22009-05-26 08:55:52 +00001910 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00001911}
1912
Dan Gohmanf316eb72011-05-16 22:09:53 +00001913/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001914/// and returning a result of type RetVT.
1915SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1916 const SDValue *Ops, unsigned NumOps,
1917 bool isSigned, DebugLoc dl) {
1918 TargetLowering::ArgListTy Args;
1919 Args.reserve(NumOps);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001920
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001921 TargetLowering::ArgListEntry Entry;
1922 for (unsigned i = 0; i != NumOps; ++i) {
1923 Entry.Node = Ops[i];
1924 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1925 Entry.isSExt = isSigned;
1926 Entry.isZExt = !isSigned;
1927 Args.push_back(Entry);
1928 }
1929 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1930 TLI.getPointerTy());
Dan Gohmanf316eb72011-05-16 22:09:53 +00001931
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001932 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001933 TargetLowering::
1934 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1935 false, 0, TLI.getLibcallCallingConv(LC),
1936 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001937 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001938 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001939 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001940
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001941 return CallInfo.first;
1942}
1943
Jim Grosbache03262f2010-06-18 21:43:38 +00001944// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1945// ExpandLibCall except that the first operand is the in-chain.
1946std::pair<SDValue, SDValue>
1947SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1948 SDNode *Node,
1949 bool isSigned) {
Jim Grosbache03262f2010-06-18 21:43:38 +00001950 SDValue InChain = Node->getOperand(0);
1951
1952 TargetLowering::ArgListTy Args;
1953 TargetLowering::ArgListEntry Entry;
1954 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1955 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001956 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001957 Entry.Node = Node->getOperand(i);
1958 Entry.Ty = ArgTy;
1959 Entry.isSExt = isSigned;
1960 Entry.isZExt = !isSigned;
1961 Args.push_back(Entry);
1962 }
1963 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1964 TLI.getPointerTy());
1965
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001966 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001967 TargetLowering::
1968 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001969 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001970 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbache03262f2010-06-18 21:43:38 +00001971 Callee, Args, DAG, Node->getDebugLoc());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001972 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbache03262f2010-06-18 21:43:38 +00001973
Jim Grosbache03262f2010-06-18 21:43:38 +00001974 return CallInfo;
1975}
1976
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001977SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
1978 RTLIB::Libcall Call_F32,
1979 RTLIB::Libcall Call_F64,
1980 RTLIB::Libcall Call_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00001981 RTLIB::Libcall Call_F128,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001982 RTLIB::Libcall Call_PPCF128) {
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!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001986 case MVT::f32: LC = Call_F32; break;
1987 case MVT::f64: LC = Call_F64; break;
1988 case MVT::f80: LC = Call_F80; break;
Tim Northover24d315d2013-01-08 17:09:59 +00001989 case MVT::f128: LC = Call_F128; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001990 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001991 }
1992 return ExpandLibCall(LC, Node, false);
1993}
1994
1995SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001996 RTLIB::Libcall Call_I8,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001997 RTLIB::Libcall Call_I16,
1998 RTLIB::Libcall Call_I32,
1999 RTLIB::Libcall Call_I64,
2000 RTLIB::Libcall Call_I128) {
2001 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00002002 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002003 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikov8983da72009-11-07 17:14:39 +00002004 case MVT::i8: LC = Call_I8; break;
2005 case MVT::i16: LC = Call_I16; break;
2006 case MVT::i32: LC = Call_I32; break;
2007 case MVT::i64: LC = Call_I64; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002008 case MVT::i128: LC = Call_I128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002009 }
2010 return ExpandLibCall(LC, Node, isSigned);
2011}
2012
Evan Cheng65279cb2011-04-16 03:08:26 +00002013/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
2014static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2015 const TargetLowering &TLI) {
Evan Cheng8e23e812011-04-01 00:42:02 +00002016 RTLIB::Libcall LC;
2017 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002018 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng8e23e812011-04-01 00:42:02 +00002019 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2020 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2021 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2022 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2023 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2024 }
2025
Evan Cheng65279cb2011-04-16 03:08:26 +00002026 return TLI.getLibcallName(LC) != 0;
2027}
Evan Cheng8e23e812011-04-01 00:42:02 +00002028
Evan Cheng8ef09682012-06-21 05:56:05 +00002029/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Cheng65279cb2011-04-16 03:08:26 +00002030/// needed.
Evan Cheng8ef09682012-06-21 05:56:05 +00002031static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2032 // The other use might have been replaced with a divrem already.
2033 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Cheng8e23e812011-04-01 00:42:02 +00002034 unsigned OtherOpcode = 0;
Evan Cheng65279cb2011-04-16 03:08:26 +00002035 if (isSigned)
Evan Cheng8e23e812011-04-01 00:42:02 +00002036 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002037 else
Evan Cheng8e23e812011-04-01 00:42:02 +00002038 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002039
Evan Cheng8e23e812011-04-01 00:42:02 +00002040 SDValue Op0 = Node->getOperand(0);
2041 SDValue Op1 = Node->getOperand(1);
2042 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2043 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2044 SDNode *User = *UI;
2045 if (User == Node)
2046 continue;
Evan Cheng8ef09682012-06-21 05:56:05 +00002047 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Cheng8e23e812011-04-01 00:42:02 +00002048 User->getOperand(0) == Op0 &&
Evan Cheng65279cb2011-04-16 03:08:26 +00002049 User->getOperand(1) == Op1)
2050 return true;
Evan Cheng8e23e812011-04-01 00:42:02 +00002051 }
Evan Cheng65279cb2011-04-16 03:08:26 +00002052 return false;
2053}
Evan Cheng8e23e812011-04-01 00:42:02 +00002054
Evan Cheng65279cb2011-04-16 03:08:26 +00002055/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2056/// pairs.
2057void
2058SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2059 SmallVectorImpl<SDValue> &Results) {
2060 unsigned Opcode = Node->getOpcode();
2061 bool isSigned = Opcode == ISD::SDIVREM;
2062
2063 RTLIB::Libcall LC;
2064 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002065 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng65279cb2011-04-16 03:08:26 +00002066 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2067 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2068 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2069 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2070 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Cheng8e23e812011-04-01 00:42:02 +00002071 }
2072
2073 // The input chain to this libcall is the entry node of the function.
2074 // Legalizing the call will automatically add the previous call to the
2075 // dependence.
2076 SDValue InChain = DAG.getEntryNode();
2077
2078 EVT RetVT = Node->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002079 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002080
2081 TargetLowering::ArgListTy Args;
2082 TargetLowering::ArgListEntry Entry;
2083 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2084 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002085 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002086 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2087 Entry.isSExt = isSigned;
2088 Entry.isZExt = !isSigned;
2089 Args.push_back(Entry);
2090 }
2091
2092 // Also pass the return address of the remainder.
2093 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2094 Entry.Node = FIPtr;
Micah Villmowb8bce922012-10-24 17:25:11 +00002095 Entry.Ty = RetTy->getPointerTo();
Evan Cheng8e23e812011-04-01 00:42:02 +00002096 Entry.isSExt = isSigned;
2097 Entry.isZExt = !isSigned;
2098 Args.push_back(Entry);
2099
2100 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2101 TLI.getPointerTy());
2102
Evan Cheng8e23e812011-04-01 00:42:02 +00002103 DebugLoc dl = Node->getDebugLoc();
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002104 TargetLowering::
2105 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng8e23e812011-04-01 00:42:02 +00002106 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002107 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2108 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002109 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Cheng8e23e812011-04-01 00:42:02 +00002110
Evan Cheng8e23e812011-04-01 00:42:02 +00002111 // Remainder is loaded back from the stack frame.
Dan Gohman65fd6562011-11-03 21:49:52 +00002112 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002113 MachinePointerInfo(), false, false, false, 0);
Evan Cheng65279cb2011-04-16 03:08:26 +00002114 Results.push_back(CallInfo.first);
2115 Results.push_back(Rem);
Evan Cheng8e23e812011-04-01 00:42:02 +00002116}
2117
Chris Lattner22cde6a2006-01-28 08:25:58 +00002118/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2119/// INT_TO_FP operation of the specified operand when the target requests that
2120/// we expand it. At this point, we know that the result and operand types are
2121/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00002122SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2123 SDValue Op0,
Owen Andersone50ed302009-08-10 22:56:29 +00002124 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002125 DebugLoc dl) {
Akira Hatanaka1d522382012-08-28 02:12:42 +00002126 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002127 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00002128
Chris Lattner23594d42008-01-16 07:03:22 +00002129 // Get the stack frame index of a 8 byte buffer.
Owen Anderson825b72b2009-08-11 20:47:22 +00002130 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00002131
Chris Lattner22cde6a2006-01-28 08:25:58 +00002132 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00002133 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00002134 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00002135 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00002136 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002137 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00002138 if (TLI.isLittleEndian())
2139 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00002140
Chris Lattner22cde6a2006-01-28 08:25:58 +00002141 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00002142 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002143 if (isSigned) {
2144 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson825b72b2009-08-11 20:47:22 +00002145 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2146 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002147 } else {
2148 Op0Mapped = Op0;
2149 }
2150 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00002151 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00002152 Op0Mapped, Lo, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002153 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002154 // initial hi portion of constructed double
Owen Anderson825b72b2009-08-11 20:47:22 +00002155 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002156 // store the hi of the constructed double - biased exponent
Chris Lattner6229d0a2010-09-21 18:41:36 +00002157 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2158 MachinePointerInfo(),
2159 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002160 // load the constructed double
Chris Lattnerecf42c42010-09-21 16:36:31 +00002161 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002162 MachinePointerInfo(), false, false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002163 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00002164 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002165 BitsToDouble(0x4330000080000000ULL) :
2166 BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00002167 MVT::f64);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002168 // subtract the bias
Owen Anderson825b72b2009-08-11 20:47:22 +00002169 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002170 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00002171 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002172 // handle final rounding
Owen Anderson825b72b2009-08-11 20:47:22 +00002173 if (DestVT == MVT::f64) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002174 // do nothing
2175 Result = Sub;
Owen Anderson825b72b2009-08-11 20:47:22 +00002176 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002177 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00002178 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002179 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002180 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002181 }
2182 return Result;
2183 }
2184 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002185 // Code below here assumes !isSigned without checking again.
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002186
2187 // Implementation of unsigned i64 to f64 following the algorithm in
2188 // __floatundidf in compiler_rt. This implementation has the advantage
2189 // of performing rounding correctly, both in the default rounding mode
2190 // and in all alternate rounding modes.
2191 // TODO: Generalize this for use with other types.
2192 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2193 SDValue TwoP52 =
2194 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2195 SDValue TwoP84PlusTwoP52 =
2196 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2197 SDValue TwoP84 =
2198 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2199
2200 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2201 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2202 DAG.getConstant(32, MVT::i64));
2203 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2204 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002205 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2206 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach6e992612010-07-02 17:41:59 +00002207 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2208 TwoP84PlusTwoP52);
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002209 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2210 }
2211
Owen Anderson3a9e7692010-10-05 17:24:05 +00002212 // Implementation of unsigned i64 to f32.
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002213 // TODO: Generalize this for use with other types.
2214 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Anderson3a9e7692010-10-05 17:24:05 +00002215 // For unsigned conversions, convert them to signed conversions using the
2216 // algorithm from the x86_64 __floatundidf in compiler_rt.
2217 if (!isSigned) {
2218 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002219
Owen Anderson95771af2011-02-25 21:41:48 +00002220 SDValue ShiftConst =
2221 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Anderson3a9e7692010-10-05 17:24:05 +00002222 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2223 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2224 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2225 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002226
Owen Anderson3a9e7692010-10-05 17:24:05 +00002227 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2228 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002229
Owen Anderson3a9e7692010-10-05 17:24:05 +00002230 // TODO: This really should be implemented using a branch rather than a
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002231 // select. We happen to get lucky and machinesink does the right
2232 // thing most of the time. This would be a good candidate for a
Owen Anderson3a9e7692010-10-05 17:24:05 +00002233 //pseudo-op, or, even better, for whole-function isel.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002234 SDValue SignBitTest = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002235 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
2236 return DAG.getNode(ISD::SELECT, dl, MVT::f32, SignBitTest, Slow, Fast);
2237 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002238
Owen Anderson3a9e7692010-10-05 17:24:05 +00002239 // Otherwise, implement the fully general conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002240
Jim Grosbach6e992612010-07-02 17:41:59 +00002241 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002242 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2243 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2244 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach6e992612010-07-02 17:41:59 +00002245 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002246 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
2247 SDValue Ne = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2248 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
2249 SDValue Sel = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ne, Or, Op0);
2250 SDValue Ge = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2251 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002252 ISD::SETUGE);
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002253 SDValue Sel2 = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ge, Sel, Op0);
Owen Anderson95771af2011-02-25 21:41:48 +00002254 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002255
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002256 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2257 DAG.getConstant(32, SHVT));
2258 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2259 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2260 SDValue TwoP32 =
2261 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2262 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2263 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2264 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2265 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2266 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2267 DAG.getIntPtrConstant(0));
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002268 }
2269
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002270 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002271
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002272 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
2273 Op0, DAG.getConstant(0, Op0.getValueType()),
2274 ISD::SETLT);
2275 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
2276 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
2277 SignSet, Four, Zero);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002278
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002279 // If the sign bit of the integer is set, the large number will be treated
2280 // as a negative number. To counteract this, the dynamic code adds an
2281 // offset depending on the data type.
2282 uint64_t FF;
2283 switch (Op0.getValueType().getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002284 default: llvm_unreachable("Unsupported integer type!");
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002285 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2286 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2287 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2288 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2289 }
2290 if (TLI.isLittleEndian()) FF <<= 32;
2291 Constant *FudgeFactor = ConstantInt::get(
2292 Type::getInt64Ty(*DAG.getContext()), FF);
2293
2294 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2295 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
2296 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
2297 Alignment = std::min(Alignment, 4u);
2298 SDValue FudgeInReg;
2299 if (DestVT == MVT::f32)
2300 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00002301 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002302 false, false, false, Alignment);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002303 else {
Dan Gohman65fd6562011-11-03 21:49:52 +00002304 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2305 DAG.getEntryNode(), CPIdx,
2306 MachinePointerInfo::getConstantPool(),
2307 MVT::f32, false, false, Alignment);
2308 HandleSDNode Handle(Load);
2309 LegalizeOp(Load.getNode());
2310 FudgeInReg = Handle.getValue();
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002311 }
2312
2313 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002314}
2315
2316/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2317/// *INT_TO_FP operation of the specified operand when the target requests that
2318/// we promote it. At this point, we know that the result and operand types are
2319/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2320/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00002321SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002322 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002323 bool isSigned,
2324 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002325 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002326 EVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002327
2328 unsigned OpToUse = 0;
2329
2330 // Scan for the appropriate larger type to use.
2331 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002332 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002333 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002334
2335 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002336 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2337 OpToUse = ISD::SINT_TO_FP;
2338 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002339 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002340 if (isSigned) continue;
2341
2342 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002343 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2344 OpToUse = ISD::UINT_TO_FP;
2345 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002346 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002347
2348 // Otherwise, try a larger type.
2349 }
2350
2351 // Okay, we found the operation and type to use. Zero extend our input to the
2352 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00002353 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00002354 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00002355 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002356}
2357
2358/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2359/// FP_TO_*INT operation of the specified operand when the target requests that
2360/// we promote it. At this point, we know that the result and operand types are
2361/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2362/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00002363SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002364 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002365 bool isSigned,
2366 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002367 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002368 EVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002369
2370 unsigned OpToUse = 0;
2371
2372 // Scan for the appropriate larger type to use.
2373 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002374 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002375 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002376
Eli Friedman3be2e512009-05-28 03:06:16 +00002377 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002378 OpToUse = ISD::FP_TO_SINT;
2379 break;
2380 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002381
Eli Friedman3be2e512009-05-28 03:06:16 +00002382 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002383 OpToUse = ISD::FP_TO_UINT;
2384 break;
2385 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002386
2387 // Otherwise, try a larger type.
2388 }
2389
Scott Michelfdc40a02009-02-17 22:15:04 +00002390
Chris Lattner27a6c732007-11-24 07:07:01 +00002391 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00002392 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00002393
Chris Lattner27a6c732007-11-24 07:07:01 +00002394 // Truncate the result of the extended FP_TO_*INT operation to the desired
2395 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00002396 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002397}
2398
2399/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2400///
Dale Johannesen8a782a22009-02-02 22:12:50 +00002401SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002402 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002403 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00002404 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson825b72b2009-08-11 20:47:22 +00002405 switch (VT.getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002406 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002407 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002408 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2409 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2410 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002411 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002412 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2413 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2414 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2415 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2416 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2417 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2418 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2419 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2420 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002421 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002422 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2423 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2424 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2425 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2426 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2427 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2428 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2429 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2430 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2431 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2432 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2433 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2434 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2435 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2436 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2437 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2438 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2439 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2440 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2441 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2442 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002443 }
2444}
2445
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002446/// SplatByte - Distribute ByteVal over NumBits bits.
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002447// FIXME: Move this helper to a common place.
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002448static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
2449 APInt Val = APInt(NumBits, ByteVal);
2450 unsigned Shift = 8;
2451 for (unsigned i = NumBits; i > 8; i >>= 1) {
2452 Val = (Val << Shift) | Val;
2453 Shift <<= 1;
2454 }
2455 return Val;
2456}
2457
Chris Lattner22cde6a2006-01-28 08:25:58 +00002458/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2459///
Scott Michelfdc40a02009-02-17 22:15:04 +00002460SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00002461 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002462 switch (Opc) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002463 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002464 case ISD::CTPOP: {
Owen Andersone50ed302009-08-10 22:56:29 +00002465 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002466 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002467 unsigned Len = VT.getSizeInBits();
2468
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002469 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2470 "CTPOP not implemented for this type.");
2471
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002472 // This is the "best" algorithm from
2473 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2474
2475 SDValue Mask55 = DAG.getConstant(SplatByte(Len, 0x55), VT);
2476 SDValue Mask33 = DAG.getConstant(SplatByte(Len, 0x33), VT);
2477 SDValue Mask0F = DAG.getConstant(SplatByte(Len, 0x0F), VT);
2478 SDValue Mask01 = DAG.getConstant(SplatByte(Len, 0x01), VT);
2479
2480 // v = v - ((v >> 1) & 0x55555555...)
2481 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2482 DAG.getNode(ISD::AND, dl, VT,
2483 DAG.getNode(ISD::SRL, dl, VT, Op,
2484 DAG.getConstant(1, ShVT)),
2485 Mask55));
2486 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2487 Op = DAG.getNode(ISD::ADD, dl, VT,
2488 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2489 DAG.getNode(ISD::AND, dl, VT,
2490 DAG.getNode(ISD::SRL, dl, VT, Op,
2491 DAG.getConstant(2, ShVT)),
2492 Mask33));
2493 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2494 Op = DAG.getNode(ISD::AND, dl, VT,
2495 DAG.getNode(ISD::ADD, dl, VT, Op,
2496 DAG.getNode(ISD::SRL, dl, VT, Op,
2497 DAG.getConstant(4, ShVT))),
2498 Mask0F);
2499 // v = (v * 0x01010101...) >> (Len - 8)
2500 Op = DAG.getNode(ISD::SRL, dl, VT,
2501 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2502 DAG.getConstant(Len - 8, ShVT));
Owen Anderson95771af2011-02-25 21:41:48 +00002503
Chris Lattner22cde6a2006-01-28 08:25:58 +00002504 return Op;
2505 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002506 case ISD::CTLZ_ZERO_UNDEF:
2507 // This trivially expands to CTLZ.
2508 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002509 case ISD::CTLZ: {
2510 // for now, we do this:
2511 // x = x | (x >> 1);
2512 // x = x | (x >> 2);
2513 // ...
2514 // x = x | (x >>16);
2515 // x = x | (x >>32); // for 64-bit input
2516 // return popcount(~x);
2517 //
2518 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002519 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002520 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002521 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002522 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002523 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002524 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00002525 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002526 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00002527 Op = DAG.getNOT(dl, Op, VT);
2528 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002529 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002530 case ISD::CTTZ_ZERO_UNDEF:
2531 // This trivially expands to CTTZ.
2532 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002533 case ISD::CTTZ: {
2534 // for now, we use: { return popcount(~x & (x - 1)); }
2535 // unless the target has ctlz but not ctpop, in which case we use:
2536 // { return 32 - nlz(~x & (x-1)); }
2537 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002538 EVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00002539 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2540 DAG.getNOT(dl, Op, VT),
2541 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00002542 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002543 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002544 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2545 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00002546 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002547 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00002548 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2549 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002550 }
2551 }
2552}
Chris Lattnere34b3962005-01-19 04:19:40 +00002553
Jim Grosbache03262f2010-06-18 21:43:38 +00002554std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2555 unsigned Opc = Node->getOpcode();
2556 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2557 RTLIB::Libcall LC;
2558
2559 switch (Opc) {
2560 default:
2561 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002562 case ISD::ATOMIC_SWAP:
2563 switch (VT.SimpleTy) {
2564 default: llvm_unreachable("Unexpected value type for atomic!");
2565 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2566 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2567 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2568 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
2569 }
2570 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002571 case ISD::ATOMIC_CMP_SWAP:
2572 switch (VT.SimpleTy) {
2573 default: llvm_unreachable("Unexpected value type for atomic!");
2574 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2575 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2576 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2577 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
2578 }
2579 break;
2580 case ISD::ATOMIC_LOAD_ADD:
2581 switch (VT.SimpleTy) {
2582 default: llvm_unreachable("Unexpected value type for atomic!");
2583 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2584 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2585 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2586 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
2587 }
2588 break;
2589 case ISD::ATOMIC_LOAD_SUB:
2590 switch (VT.SimpleTy) {
2591 default: llvm_unreachable("Unexpected value type for atomic!");
2592 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2593 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2594 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2595 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
2596 }
2597 break;
2598 case ISD::ATOMIC_LOAD_AND:
2599 switch (VT.SimpleTy) {
2600 default: llvm_unreachable("Unexpected value type for atomic!");
2601 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2602 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2603 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2604 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
2605 }
2606 break;
2607 case ISD::ATOMIC_LOAD_OR:
2608 switch (VT.SimpleTy) {
2609 default: llvm_unreachable("Unexpected value type for atomic!");
2610 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2611 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2612 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2613 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
2614 }
2615 break;
2616 case ISD::ATOMIC_LOAD_XOR:
2617 switch (VT.SimpleTy) {
2618 default: llvm_unreachable("Unexpected value type for atomic!");
2619 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2620 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2621 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2622 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
2623 }
2624 break;
2625 case ISD::ATOMIC_LOAD_NAND:
2626 switch (VT.SimpleTy) {
2627 default: llvm_unreachable("Unexpected value type for atomic!");
2628 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2629 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2630 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2631 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
2632 }
2633 break;
2634 }
2635
2636 return ExpandChainLibCall(LC, Node, false);
2637}
2638
Dan Gohman65fd6562011-11-03 21:49:52 +00002639void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2640 SmallVector<SDValue, 8> Results;
Eli Friedman8c377c72009-05-27 01:25:56 +00002641 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanbbdd9032009-05-28 20:40:34 +00002642 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Eli Friedman8c377c72009-05-27 01:25:56 +00002643 switch (Node->getOpcode()) {
2644 case ISD::CTPOP:
2645 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002646 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002647 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002648 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002649 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2650 Results.push_back(Tmp1);
2651 break;
2652 case ISD::BSWAP:
Bill Wendling775db972009-12-23 00:28:23 +00002653 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman8c377c72009-05-27 01:25:56 +00002654 break;
2655 case ISD::FRAMEADDR:
2656 case ISD::RETURNADDR:
2657 case ISD::FRAME_TO_ARGS_OFFSET:
2658 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2659 break;
2660 case ISD::FLT_ROUNDS_:
2661 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2662 break;
2663 case ISD::EH_RETURN:
Eli Friedman8c377c72009-05-27 01:25:56 +00002664 case ISD::EH_LABEL:
2665 case ISD::PREFETCH:
Eli Friedman8c377c72009-05-27 01:25:56 +00002666 case ISD::VAEND:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002667 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002668 // If the target didn't expand these, there's nothing to do, so just
2669 // preserve the chain and be done.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002670 Results.push_back(Node->getOperand(0));
2671 break;
2672 case ISD::EH_SJLJ_SETJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002673 // If the target didn't expand this, just return 'zero' and preserve the
2674 // chain.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002675 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman8c377c72009-05-27 01:25:56 +00002676 Results.push_back(Node->getOperand(0));
2677 break;
Eli Friedman14648462011-07-27 22:21:52 +00002678 case ISD::ATOMIC_FENCE:
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002679 case ISD::MEMBARRIER: {
2680 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman14648462011-07-27 22:21:52 +00002681 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002682 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002683 TargetLowering::
2684 CallLoweringInfo CLI(Node->getOperand(0),
2685 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002686 false, false, false, false, 0, CallingConv::C,
2687 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002688 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002689 DAG.getExternalSymbol("__sync_synchronize",
2690 TLI.getPointerTy()),
2691 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002692 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2693
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002694 Results.push_back(CallResult.second);
2695 break;
2696 }
Eli Friedman069e2ed2011-08-26 02:59:24 +00002697 case ISD::ATOMIC_LOAD: {
2698 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedman331120b2011-09-15 21:20:49 +00002699 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman069e2ed2011-08-26 02:59:24 +00002700 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2701 cast<AtomicSDNode>(Node)->getMemoryVT(),
2702 Node->getOperand(0),
2703 Node->getOperand(1), Zero, Zero,
2704 cast<AtomicSDNode>(Node)->getMemOperand(),
2705 cast<AtomicSDNode>(Node)->getOrdering(),
2706 cast<AtomicSDNode>(Node)->getSynchScope());
2707 Results.push_back(Swap.getValue(0));
2708 Results.push_back(Swap.getValue(1));
2709 break;
2710 }
2711 case ISD::ATOMIC_STORE: {
2712 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2713 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2714 cast<AtomicSDNode>(Node)->getMemoryVT(),
2715 Node->getOperand(0),
2716 Node->getOperand(1), Node->getOperand(2),
2717 cast<AtomicSDNode>(Node)->getMemOperand(),
2718 cast<AtomicSDNode>(Node)->getOrdering(),
2719 cast<AtomicSDNode>(Node)->getSynchScope());
2720 Results.push_back(Swap.getValue(1));
2721 break;
2722 }
Jim Grosbachb56ce812010-06-17 17:50:54 +00002723 // By default, atomic intrinsics are marked Legal and lowered. Targets
2724 // which don't support them directly, however, may want libcalls, in which
2725 // case they mark them Expand, and we get here.
Jim Grosbachb56ce812010-06-17 17:50:54 +00002726 case ISD::ATOMIC_SWAP:
2727 case ISD::ATOMIC_LOAD_ADD:
2728 case ISD::ATOMIC_LOAD_SUB:
2729 case ISD::ATOMIC_LOAD_AND:
2730 case ISD::ATOMIC_LOAD_OR:
2731 case ISD::ATOMIC_LOAD_XOR:
2732 case ISD::ATOMIC_LOAD_NAND:
2733 case ISD::ATOMIC_LOAD_MIN:
2734 case ISD::ATOMIC_LOAD_MAX:
2735 case ISD::ATOMIC_LOAD_UMIN:
2736 case ISD::ATOMIC_LOAD_UMAX:
Evan Chenga8457062010-06-18 22:01:37 +00002737 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbache03262f2010-06-18 21:43:38 +00002738 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2739 Results.push_back(Tmp.first);
2740 Results.push_back(Tmp.second);
Jim Grosbach59c38f32010-06-17 17:58:54 +00002741 break;
Evan Chenga8457062010-06-18 22:01:37 +00002742 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00002743 case ISD::DYNAMIC_STACKALLOC:
2744 ExpandDYNAMIC_STACKALLOC(Node, Results);
2745 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00002746 case ISD::MERGE_VALUES:
2747 for (unsigned i = 0; i < Node->getNumValues(); i++)
2748 Results.push_back(Node->getOperand(i));
2749 break;
2750 case ISD::UNDEF: {
Owen Andersone50ed302009-08-10 22:56:29 +00002751 EVT VT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00002752 if (VT.isInteger())
2753 Results.push_back(DAG.getConstant(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002754 else {
2755 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman8c377c72009-05-27 01:25:56 +00002756 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002757 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002758 break;
2759 }
2760 case ISD::TRAP: {
2761 // If this operation is not supported, lower it to 'abort()' call
2762 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002763 TargetLowering::
2764 CallLoweringInfo CLI(Node->getOperand(0),
2765 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002766 false, false, false, false, 0, CallingConv::C,
2767 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002768 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eli Friedman8c377c72009-05-27 01:25:56 +00002769 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00002770 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002771 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2772
Eli Friedman8c377c72009-05-27 01:25:56 +00002773 Results.push_back(CallResult.second);
2774 break;
2775 }
2776 case ISD::FP_ROUND:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002777 case ISD::BITCAST:
Eli Friedman8c377c72009-05-27 01:25:56 +00002778 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2779 Node->getValueType(0), dl);
2780 Results.push_back(Tmp1);
2781 break;
2782 case ISD::FP_EXTEND:
2783 Tmp1 = EmitStackConvert(Node->getOperand(0),
2784 Node->getOperand(0).getValueType(),
2785 Node->getValueType(0), dl);
2786 Results.push_back(Tmp1);
2787 break;
2788 case ISD::SIGN_EXTEND_INREG: {
2789 // NOTE: we could fall back on load/store here too for targets without
2790 // SAR. However, it is doubtful that any exist.
Owen Andersone50ed302009-08-10 22:56:29 +00002791 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00002792 EVT VT = Node->getValueType(0);
Owen Anderson95771af2011-02-25 21:41:48 +00002793 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohmand1996362010-01-09 02:13:55 +00002794 if (VT.isVector())
Dan Gohman87862e72009-12-11 21:31:27 +00002795 ShiftAmountTy = VT;
Dan Gohmand1996362010-01-09 02:13:55 +00002796 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2797 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman87862e72009-12-11 21:31:27 +00002798 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman8c377c72009-05-27 01:25:56 +00002799 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2800 Node->getOperand(0), ShiftCst);
Bill Wendling775db972009-12-23 00:28:23 +00002801 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2802 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002803 break;
2804 }
2805 case ISD::FP_ROUND_INREG: {
2806 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002807 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman8c377c72009-05-27 01:25:56 +00002808
2809 // NOTE: there is a choice here between constantly creating new stack
2810 // slots and always reusing the same one. We currently always create
2811 // new ones, as reuse may inhibit scheduling.
Owen Andersone50ed302009-08-10 22:56:29 +00002812 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00002813 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2814 Node->getValueType(0), dl);
2815 Results.push_back(Tmp1);
2816 break;
2817 }
2818 case ISD::SINT_TO_FP:
2819 case ISD::UINT_TO_FP:
2820 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2821 Node->getOperand(0), Node->getValueType(0), dl);
2822 Results.push_back(Tmp1);
2823 break;
2824 case ISD::FP_TO_UINT: {
2825 SDValue True, False;
Owen Andersone50ed302009-08-10 22:56:29 +00002826 EVT VT = Node->getOperand(0).getValueType();
2827 EVT NVT = Node->getValueType(0);
Benjamin Kramer3069cbf2010-12-04 15:28:22 +00002828 APFloat apf(APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman8c377c72009-05-27 01:25:56 +00002829 APInt x = APInt::getSignBit(NVT.getSizeInBits());
2830 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
2831 Tmp1 = DAG.getConstantFP(apf, VT);
2832 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
2833 Node->getOperand(0),
2834 Tmp1, ISD::SETLT);
2835 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00002836 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
2837 DAG.getNode(ISD::FSUB, dl, VT,
2838 Node->getOperand(0), Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00002839 False = DAG.getNode(ISD::XOR, dl, NVT, False,
2840 DAG.getConstant(x, NVT));
2841 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2, True, False);
2842 Results.push_back(Tmp1);
2843 break;
2844 }
Eli Friedman509150f2009-05-27 07:58:35 +00002845 case ISD::VAARG: {
2846 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00002847 EVT VT = Node->getValueType(0);
Eli Friedman509150f2009-05-27 07:58:35 +00002848 Tmp1 = Node->getOperand(0);
2849 Tmp2 = Node->getOperand(1);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002850 unsigned Align = Node->getConstantOperandVal(3);
2851
Chris Lattnerecf42c42010-09-21 16:36:31 +00002852 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002853 MachinePointerInfo(V),
2854 false, false, false, 0);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002855 SDValue VAList = VAListLoad;
2856
Rafael Espindolacbeeae22010-07-11 04:01:49 +00002857 if (Align > TLI.getMinStackArgumentAlignment()) {
2858 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
2859
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002860 VAList = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2861 DAG.getConstant(Align - 1,
2862 TLI.getPointerTy()));
2863
2864 VAList = DAG.getNode(ISD::AND, dl, TLI.getPointerTy(), VAList,
Chris Lattner07e3a382010-10-10 18:36:26 +00002865 DAG.getConstant(-(int64_t)Align,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002866 TLI.getPointerTy()));
2867 }
2868
Eli Friedman509150f2009-05-27 07:58:35 +00002869 // Increment the pointer, VAList, to the next vaarg
2870 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Micah Villmow3574eca2012-10-08 16:38:25 +00002871 DAG.getConstant(TLI.getDataLayout()->
Evan Chengadf97992010-04-15 01:25:27 +00002872 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Eli Friedman509150f2009-05-27 07:58:35 +00002873 TLI.getPointerTy()));
2874 // Store the incremented VAList to the legalized pointer
Chris Lattner6229d0a2010-09-21 18:41:36 +00002875 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
2876 MachinePointerInfo(V), false, false, 0);
Eli Friedman509150f2009-05-27 07:58:35 +00002877 // Load the actual argument out of the pointer VAList
Chris Lattnerecf42c42010-09-21 16:36:31 +00002878 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002879 false, false, false, 0));
Eli Friedman509150f2009-05-27 07:58:35 +00002880 Results.push_back(Results[0].getValue(1));
2881 break;
2882 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002883 case ISD::VACOPY: {
2884 // This defaults to loading a pointer from the input and storing it to the
2885 // output, returning the chain.
2886 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2887 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
2888 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattnerecf42c42010-09-21 16:36:31 +00002889 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002890 false, false, false, 0);
Chris Lattnerecf42c42010-09-21 16:36:31 +00002891 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
2892 MachinePointerInfo(VD), false, false, 0);
Bill Wendling775db972009-12-23 00:28:23 +00002893 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002894 break;
2895 }
2896 case ISD::EXTRACT_VECTOR_ELT:
2897 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
2898 // This must be an access of the only element. Return it.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002899 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman8c377c72009-05-27 01:25:56 +00002900 Node->getOperand(0));
2901 else
2902 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
2903 Results.push_back(Tmp1);
2904 break;
2905 case ISD::EXTRACT_SUBVECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002906 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman8c377c72009-05-27 01:25:56 +00002907 break;
David Greenecfe33c42011-01-26 19:13:22 +00002908 case ISD::INSERT_SUBVECTOR:
2909 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
2910 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002911 case ISD::CONCAT_VECTORS: {
Bill Wendling775db972009-12-23 00:28:23 +00002912 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman509150f2009-05-27 07:58:35 +00002913 break;
2914 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002915 case ISD::SCALAR_TO_VECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002916 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman8c377c72009-05-27 01:25:56 +00002917 break;
Eli Friedman3f727d62009-05-27 02:16:40 +00002918 case ISD::INSERT_VECTOR_ELT:
Bill Wendling775db972009-12-23 00:28:23 +00002919 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
2920 Node->getOperand(1),
2921 Node->getOperand(2), dl));
Eli Friedman3f727d62009-05-27 02:16:40 +00002922 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002923 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00002924 SmallVector<int, 32> NewMask;
2925 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00002926
Owen Andersone50ed302009-08-10 22:56:29 +00002927 EVT VT = Node->getValueType(0);
2928 EVT EltVT = VT.getVectorElementType();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002929 SDValue Op0 = Node->getOperand(0);
2930 SDValue Op1 = Node->getOperand(1);
2931 if (!TLI.isTypeLegal(EltVT)) {
2932
2933 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
2934
2935 // BUILD_VECTOR operands are allowed to be wider than the element type.
2936 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept it
2937 if (NewEltVT.bitsLT(EltVT)) {
2938
2939 // Convert shuffle node.
2940 // If original node was v4i64 and the new EltVT is i32,
2941 // cast operands to v8i32 and re-build the mask.
2942
2943 // Calculate new VT, the size of the new VT should be equal to original.
2944 EVT NewVT = EVT::getVectorVT(*DAG.getContext(), NewEltVT,
2945 VT.getSizeInBits()/NewEltVT.getSizeInBits());
2946 assert(NewVT.bitsEq(VT));
2947
2948 // cast operands to new VT
2949 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
2950 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
2951
2952 // Convert the shuffle mask
2953 unsigned int factor = NewVT.getVectorNumElements()/VT.getVectorNumElements();
2954
2955 // EltVT gets smaller
2956 assert(factor > 0);
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002957
2958 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
2959 if (Mask[i] < 0) {
2960 for (unsigned fi = 0; fi < factor; ++fi)
2961 NewMask.push_back(Mask[i]);
2962 }
2963 else {
2964 for (unsigned fi = 0; fi < factor; ++fi)
2965 NewMask.push_back(Mask[i]*factor+fi);
2966 }
2967 }
2968 Mask = NewMask;
2969 VT = NewVT;
2970 }
2971 EltVT = NewEltVT;
2972 }
Eli Friedman509150f2009-05-27 07:58:35 +00002973 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002974 SmallVector<SDValue, 16> Ops;
Eli Friedman509150f2009-05-27 07:58:35 +00002975 for (unsigned i = 0; i != NumElems; ++i) {
2976 if (Mask[i] < 0) {
2977 Ops.push_back(DAG.getUNDEF(EltVT));
2978 continue;
2979 }
2980 unsigned Idx = Mask[i];
2981 if (Idx < NumElems)
Bill Wendling775db972009-12-23 00:28:23 +00002982 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002983 Op0,
Bill Wendling775db972009-12-23 00:28:23 +00002984 DAG.getIntPtrConstant(Idx)));
Eli Friedman509150f2009-05-27 07:58:35 +00002985 else
Bill Wendling775db972009-12-23 00:28:23 +00002986 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002987 Op1,
Bill Wendling775db972009-12-23 00:28:23 +00002988 DAG.getIntPtrConstant(Idx - NumElems)));
Eli Friedman509150f2009-05-27 07:58:35 +00002989 }
Nadav Rotem6c0366c2012-01-10 14:28:46 +00002990
Eli Friedman509150f2009-05-27 07:58:35 +00002991 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Nadav Rotem6c0366c2012-01-10 14:28:46 +00002992 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
2993 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00002994 Results.push_back(Tmp1);
2995 break;
2996 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002997 case ISD::EXTRACT_ELEMENT: {
Owen Andersone50ed302009-08-10 22:56:29 +00002998 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman8c377c72009-05-27 01:25:56 +00002999 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3000 // 1 -> Hi
3001 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3002 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003003 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman8c377c72009-05-27 01:25:56 +00003004 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3005 } else {
3006 // 0 -> Lo
3007 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3008 Node->getOperand(0));
3009 }
3010 Results.push_back(Tmp1);
3011 break;
3012 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003013 case ISD::STACKSAVE:
3014 // Expand to CopyFromReg if the target set
3015 // StackPointerRegisterToSaveRestore.
3016 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendling775db972009-12-23 00:28:23 +00003017 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3018 Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003019 Results.push_back(Results[0].getValue(1));
3020 } else {
Bill Wendling775db972009-12-23 00:28:23 +00003021 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003022 Results.push_back(Node->getOperand(0));
3023 }
3024 break;
3025 case ISD::STACKRESTORE:
Bill Wendling775db972009-12-23 00:28:23 +00003026 // Expand to CopyToReg if the target set
3027 // StackPointerRegisterToSaveRestore.
3028 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3029 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3030 Node->getOperand(1)));
3031 } else {
3032 Results.push_back(Node->getOperand(0));
3033 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003034 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003035 case ISD::FCOPYSIGN:
Bill Wendling775db972009-12-23 00:28:23 +00003036 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003037 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003038 case ISD::FNEG:
3039 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3040 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3041 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3042 Node->getOperand(0));
3043 Results.push_back(Tmp1);
3044 break;
3045 case ISD::FABS: {
3046 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Andersone50ed302009-08-10 22:56:29 +00003047 EVT VT = Node->getValueType(0);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003048 Tmp1 = Node->getOperand(0);
3049 Tmp2 = DAG.getConstantFP(0.0, VT);
Bill Wendling775db972009-12-23 00:28:23 +00003050 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003051 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendling775db972009-12-23 00:28:23 +00003052 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3053 Tmp1 = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003054 Results.push_back(Tmp1);
3055 break;
3056 }
3057 case ISD::FSQRT:
Bill Wendling775db972009-12-23 00:28:23 +00003058 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003059 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3060 RTLIB::SQRT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003061 break;
3062 case ISD::FSIN:
Bill Wendling775db972009-12-23 00:28:23 +00003063 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003064 RTLIB::SIN_F80, RTLIB::SIN_F128,
3065 RTLIB::SIN_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003066 break;
3067 case ISD::FCOS:
Bill Wendling775db972009-12-23 00:28:23 +00003068 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003069 RTLIB::COS_F80, RTLIB::COS_F128,
3070 RTLIB::COS_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003071 break;
3072 case ISD::FLOG:
Bill Wendling775db972009-12-23 00:28:23 +00003073 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003074 RTLIB::LOG_F80, RTLIB::LOG_F128,
3075 RTLIB::LOG_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003076 break;
3077 case ISD::FLOG2:
Bill Wendling775db972009-12-23 00:28:23 +00003078 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003079 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3080 RTLIB::LOG2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003081 break;
3082 case ISD::FLOG10:
Bill Wendling775db972009-12-23 00:28:23 +00003083 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003084 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3085 RTLIB::LOG10_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003086 break;
3087 case ISD::FEXP:
Bill Wendling775db972009-12-23 00:28:23 +00003088 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003089 RTLIB::EXP_F80, RTLIB::EXP_F128,
3090 RTLIB::EXP_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003091 break;
3092 case ISD::FEXP2:
Bill Wendling775db972009-12-23 00:28:23 +00003093 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003094 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3095 RTLIB::EXP2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003096 break;
3097 case ISD::FTRUNC:
Bill Wendling775db972009-12-23 00:28:23 +00003098 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003099 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3100 RTLIB::TRUNC_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003101 break;
3102 case ISD::FFLOOR:
Bill Wendling775db972009-12-23 00:28:23 +00003103 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003104 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3105 RTLIB::FLOOR_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003106 break;
3107 case ISD::FCEIL:
Bill Wendling775db972009-12-23 00:28:23 +00003108 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003109 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3110 RTLIB::CEIL_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003111 break;
3112 case ISD::FRINT:
Bill Wendling775db972009-12-23 00:28:23 +00003113 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003114 RTLIB::RINT_F80, RTLIB::RINT_F128,
3115 RTLIB::RINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003116 break;
3117 case ISD::FNEARBYINT:
Bill Wendling775db972009-12-23 00:28:23 +00003118 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3119 RTLIB::NEARBYINT_F64,
3120 RTLIB::NEARBYINT_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00003121 RTLIB::NEARBYINT_F128,
Bill Wendling775db972009-12-23 00:28:23 +00003122 RTLIB::NEARBYINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003123 break;
3124 case ISD::FPOWI:
Bill Wendling775db972009-12-23 00:28:23 +00003125 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003126 RTLIB::POWI_F80, RTLIB::POWI_F128,
3127 RTLIB::POWI_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003128 break;
3129 case ISD::FPOW:
Bill Wendling775db972009-12-23 00:28:23 +00003130 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003131 RTLIB::POW_F80, RTLIB::POW_F128,
3132 RTLIB::POW_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003133 break;
3134 case ISD::FDIV:
Bill Wendling775db972009-12-23 00:28:23 +00003135 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003136 RTLIB::DIV_F80, RTLIB::DIV_F128,
3137 RTLIB::DIV_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003138 break;
3139 case ISD::FREM:
Bill Wendling775db972009-12-23 00:28:23 +00003140 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003141 RTLIB::REM_F80, RTLIB::REM_F128,
3142 RTLIB::REM_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003143 break;
Cameron Zwarich33390842011-07-08 21:39:21 +00003144 case ISD::FMA:
3145 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003146 RTLIB::FMA_F80, RTLIB::FMA_F128,
3147 RTLIB::FMA_PPCF128));
Cameron Zwarich33390842011-07-08 21:39:21 +00003148 break;
Anton Korobeynikov927411b2010-03-14 18:42:24 +00003149 case ISD::FP16_TO_FP32:
3150 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3151 break;
3152 case ISD::FP32_TO_FP16:
3153 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3154 break;
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003155 case ISD::ConstantFP: {
3156 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendling775db972009-12-23 00:28:23 +00003157 // Check to see if this FP immediate is already legal.
3158 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman65fd6562011-11-03 21:49:52 +00003159 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3160 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003161 break;
3162 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003163 case ISD::EHSELECTION: {
3164 unsigned Reg = TLI.getExceptionSelectorRegister();
3165 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003166 Results.push_back(DAG.getCopyFromReg(Node->getOperand(1), dl, Reg,
3167 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003168 Results.push_back(Results[0].getValue(1));
3169 break;
3170 }
3171 case ISD::EXCEPTIONADDR: {
Lang Hames07961342012-02-14 04:45:49 +00003172 unsigned Reg = TLI.getExceptionPointerRegister();
Eli Friedman26ea8f92009-05-27 07:05:37 +00003173 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003174 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, Reg,
3175 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003176 Results.push_back(Results[0].getValue(1));
3177 break;
3178 }
Owen Andersonafd3d562012-03-06 00:29:31 +00003179 case ISD::FSUB: {
3180 EVT VT = Node->getValueType(0);
3181 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3182 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3183 "Don't know how to expand this FP subtraction!");
3184 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3185 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3186 Results.push_back(Tmp1);
3187 break;
3188 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003189 case ISD::SUB: {
Owen Andersone50ed302009-08-10 22:56:29 +00003190 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003191 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3192 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3193 "Don't know how to expand this subtraction!");
3194 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3195 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Anderson4b6e6752012-05-21 22:39:20 +00003196 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendling775db972009-12-23 00:28:23 +00003197 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003198 break;
3199 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003200 case ISD::UREM:
3201 case ISD::SREM: {
Owen Andersone50ed302009-08-10 22:56:29 +00003202 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003203 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003204 bool isSigned = Node->getOpcode() == ISD::SREM;
3205 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3206 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3207 Tmp2 = Node->getOperand(0);
3208 Tmp3 = Node->getOperand(1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003209 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3210 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Chengd36696c2012-10-12 01:15:47 +00003211 // If div is legal, it's better to do the normal expansion
3212 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003213 useDivRem(Node, isSigned, false))) {
Eli Friedman3be2e512009-05-28 03:06:16 +00003214 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3215 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003216 // X % Y -> X-X/Y*Y
3217 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3218 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3219 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003220 } else if (isSigned)
3221 Tmp1 = ExpandIntLibCall(Node, true,
3222 RTLIB::SREM_I8,
3223 RTLIB::SREM_I16, RTLIB::SREM_I32,
3224 RTLIB::SREM_I64, RTLIB::SREM_I128);
3225 else
3226 Tmp1 = ExpandIntLibCall(Node, false,
3227 RTLIB::UREM_I8,
3228 RTLIB::UREM_I16, RTLIB::UREM_I32,
3229 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003230 Results.push_back(Tmp1);
3231 break;
3232 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003233 case ISD::UDIV:
3234 case ISD::SDIV: {
3235 bool isSigned = Node->getOpcode() == ISD::SDIV;
3236 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Andersone50ed302009-08-10 22:56:29 +00003237 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003238 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Cheng65279cb2011-04-16 03:08:26 +00003239 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3240 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003241 useDivRem(Node, isSigned, true)))
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003242 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3243 Node->getOperand(1));
Evan Cheng65279cb2011-04-16 03:08:26 +00003244 else if (isSigned)
3245 Tmp1 = ExpandIntLibCall(Node, true,
3246 RTLIB::SDIV_I8,
3247 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3248 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3249 else
3250 Tmp1 = ExpandIntLibCall(Node, false,
3251 RTLIB::UDIV_I8,
3252 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3253 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003254 Results.push_back(Tmp1);
3255 break;
3256 }
3257 case ISD::MULHU:
3258 case ISD::MULHS: {
3259 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3260 ISD::SMUL_LOHI;
Owen Andersone50ed302009-08-10 22:56:29 +00003261 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003262 SDVTList VTs = DAG.getVTList(VT, VT);
3263 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3264 "If this wasn't legal, it shouldn't have been created!");
3265 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3266 Node->getOperand(1));
3267 Results.push_back(Tmp1.getValue(1));
3268 break;
3269 }
Evan Cheng65279cb2011-04-16 03:08:26 +00003270 case ISD::SDIVREM:
3271 case ISD::UDIVREM:
3272 // Expand into divrem libcall
3273 ExpandDivRemLibCall(Node, Results);
3274 break;
Eli Friedman26ea8f92009-05-27 07:05:37 +00003275 case ISD::MUL: {
Owen Andersone50ed302009-08-10 22:56:29 +00003276 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003277 SDVTList VTs = DAG.getVTList(VT, VT);
3278 // See if multiply or divide can be lowered using two-result operations.
3279 // We just need the low half of the multiply; try both the signed
3280 // and unsigned forms. If the target supports both SMUL_LOHI and
3281 // UMUL_LOHI, form a preference by checking which forms of plain
3282 // MULH it supports.
3283 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3284 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3285 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3286 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3287 unsigned OpToUse = 0;
3288 if (HasSMUL_LOHI && !HasMULHS) {
3289 OpToUse = ISD::SMUL_LOHI;
3290 } else if (HasUMUL_LOHI && !HasMULHU) {
3291 OpToUse = ISD::UMUL_LOHI;
3292 } else if (HasSMUL_LOHI) {
3293 OpToUse = ISD::SMUL_LOHI;
3294 } else if (HasUMUL_LOHI) {
3295 OpToUse = ISD::UMUL_LOHI;
3296 }
3297 if (OpToUse) {
Bill Wendling775db972009-12-23 00:28:23 +00003298 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3299 Node->getOperand(1)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003300 break;
3301 }
Anton Korobeynikov8983da72009-11-07 17:14:39 +00003302 Tmp1 = ExpandIntLibCall(Node, false,
3303 RTLIB::MUL_I8,
3304 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman26ea8f92009-05-27 07:05:37 +00003305 RTLIB::MUL_I64, RTLIB::MUL_I128);
3306 Results.push_back(Tmp1);
3307 break;
3308 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003309 case ISD::SADDO:
3310 case ISD::SSUBO: {
3311 SDValue LHS = Node->getOperand(0);
3312 SDValue RHS = Node->getOperand(1);
3313 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3314 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3315 LHS, RHS);
3316 Results.push_back(Sum);
Bill Wendling122d06d2009-12-23 00:05:09 +00003317 EVT OType = Node->getValueType(1);
Bill Wendling775db972009-12-23 00:28:23 +00003318
Eli Friedman4bc8c712009-05-27 12:20:41 +00003319 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3320
3321 // LHSSign -> LHS >= 0
3322 // RHSSign -> RHS >= 0
3323 // SumSign -> Sum >= 0
3324 //
3325 // Add:
3326 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3327 // Sub:
3328 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3329 //
3330 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3331 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3332 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3333 Node->getOpcode() == ISD::SADDO ?
3334 ISD::SETEQ : ISD::SETNE);
3335
3336 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3337 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3338
3339 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3340 Results.push_back(Cmp);
3341 break;
3342 }
3343 case ISD::UADDO:
3344 case ISD::USUBO: {
3345 SDValue LHS = Node->getOperand(0);
3346 SDValue RHS = Node->getOperand(1);
3347 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3348 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3349 LHS, RHS);
3350 Results.push_back(Sum);
Bill Wendling775db972009-12-23 00:28:23 +00003351 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3352 Node->getOpcode () == ISD::UADDO ?
3353 ISD::SETULT : ISD::SETUGT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003354 break;
3355 }
Eli Friedmandb3c1692009-06-16 06:58:29 +00003356 case ISD::UMULO:
3357 case ISD::SMULO: {
Owen Andersone50ed302009-08-10 22:56:29 +00003358 EVT VT = Node->getValueType(0);
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003359 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmandb3c1692009-06-16 06:58:29 +00003360 SDValue LHS = Node->getOperand(0);
3361 SDValue RHS = Node->getOperand(1);
3362 SDValue BottomHalf;
3363 SDValue TopHalf;
Nuno Lopesec9d8b02009-12-23 17:48:10 +00003364 static const unsigned Ops[2][3] =
Eli Friedmandb3c1692009-06-16 06:58:29 +00003365 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3366 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3367 bool isSigned = Node->getOpcode() == ISD::SMULO;
3368 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3369 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3370 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3371 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3372 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3373 RHS);
3374 TopHalf = BottomHalf.getValue(1);
Eric Christopher38a18262011-01-20 00:29:24 +00003375 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3376 VT.getSizeInBits() * 2))) {
Eli Friedmandb3c1692009-06-16 06:58:29 +00003377 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3378 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3379 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3380 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3381 DAG.getIntPtrConstant(0));
3382 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3383 DAG.getIntPtrConstant(1));
Eric Christopher38a18262011-01-20 00:29:24 +00003384 } else {
3385 // We can fall back to a libcall with an illegal type for the MUL if we
3386 // have a libcall big enough.
3387 // Also, we can fall back to a division in some cases, but that's a big
3388 // performance hit in the general case.
Eric Christopher38a18262011-01-20 00:29:24 +00003389 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3390 if (WideVT == MVT::i16)
3391 LC = RTLIB::MUL_I16;
3392 else if (WideVT == MVT::i32)
3393 LC = RTLIB::MUL_I32;
3394 else if (WideVT == MVT::i64)
3395 LC = RTLIB::MUL_I64;
3396 else if (WideVT == MVT::i128)
3397 LC = RTLIB::MUL_I128;
3398 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanf316eb72011-05-16 22:09:53 +00003399
3400 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003401 // part.
3402 unsigned LoSize = VT.getSizeInBits();
3403 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3404 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3405 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3406 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Anderson95771af2011-02-25 21:41:48 +00003407
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003408 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3409 // pre-lowered to the correct types. This all depends upon WideVT not
3410 // being a legal type for the architecture and thus has to be split to
3411 // two arguments.
3412 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3413 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3414 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3415 DAG.getIntPtrConstant(0));
3416 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3417 DAG.getIntPtrConstant(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00003418 // Ret is a node with an illegal type. Because such things are not
3419 // generally permitted during this phase of legalization, delete the
3420 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3421 DAG.DeleteNode(Ret.getNode());
Eli Friedmandb3c1692009-06-16 06:58:29 +00003422 }
Dan Gohmanf316eb72011-05-16 22:09:53 +00003423
Eli Friedmandb3c1692009-06-16 06:58:29 +00003424 if (isSigned) {
Owen Anderson95771af2011-02-25 21:41:48 +00003425 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3426 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmandb3c1692009-06-16 06:58:29 +00003427 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
3428 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf, Tmp1,
3429 ISD::SETNE);
3430 } else {
3431 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf,
3432 DAG.getConstant(0, VT), ISD::SETNE);
3433 }
3434 Results.push_back(BottomHalf);
3435 Results.push_back(TopHalf);
3436 break;
3437 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003438 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +00003439 EVT PairTy = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003440 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3441 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendling775db972009-12-23 00:28:23 +00003442 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003443 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003444 TLI.getShiftAmountTy(PairTy)));
Bill Wendling775db972009-12-23 00:28:23 +00003445 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003446 break;
3447 }
Eli Friedman509150f2009-05-27 07:58:35 +00003448 case ISD::SELECT:
3449 Tmp1 = Node->getOperand(0);
3450 Tmp2 = Node->getOperand(1);
3451 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003452 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman509150f2009-05-27 07:58:35 +00003453 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3454 Tmp2, Tmp3,
3455 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendling775db972009-12-23 00:28:23 +00003456 } else {
Eli Friedman509150f2009-05-27 07:58:35 +00003457 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3458 DAG.getConstant(0, Tmp1.getValueType()),
3459 Tmp2, Tmp3, ISD::SETNE);
Bill Wendling775db972009-12-23 00:28:23 +00003460 }
Eli Friedman509150f2009-05-27 07:58:35 +00003461 Results.push_back(Tmp1);
3462 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003463 case ISD::BR_JT: {
3464 SDValue Chain = Node->getOperand(0);
3465 SDValue Table = Node->getOperand(1);
3466 SDValue Index = Node->getOperand(2);
3467
Owen Andersone50ed302009-08-10 22:56:29 +00003468 EVT PTy = TLI.getPointerTy();
Chris Lattner071c62f2010-01-25 23:26:13 +00003469
Micah Villmow3574eca2012-10-08 16:38:25 +00003470 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattner071c62f2010-01-25 23:26:13 +00003471 unsigned EntrySize =
3472 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach6e992612010-07-02 17:41:59 +00003473
Chris Lattner071c62f2010-01-25 23:26:13 +00003474 Index = DAG.getNode(ISD::MUL, dl, PTy,
Eli Friedman4bc8c712009-05-27 12:20:41 +00003475 Index, DAG.getConstant(EntrySize, PTy));
3476 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3477
Owen Anderson23b9b192009-08-12 00:36:31 +00003478 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastingsa9011292011-02-16 16:23:55 +00003479 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattner85ca1062010-09-21 07:32:19 +00003480 MachinePointerInfo::getJumpTable(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00003481 false, false, 0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003482 Addr = LD;
Dan Gohman55e59c12010-04-19 19:05:59 +00003483 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman4bc8c712009-05-27 12:20:41 +00003484 // For PIC, the sequence is:
Bill Wendling775db972009-12-23 00:28:23 +00003485 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman4bc8c712009-05-27 12:20:41 +00003486 // RelocBase can be JumpTable, GOT or some sort of global base.
3487 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3488 TLI.getPICJumpTableRelocBase(Table, DAG));
3489 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003490 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003491 Results.push_back(Tmp1);
3492 break;
3493 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003494 case ISD::BRCOND:
3495 // Expand brcond's setcc into its constituent parts and create a BR_CC
3496 // Node.
3497 Tmp1 = Node->getOperand(0);
3498 Tmp2 = Node->getOperand(1);
Bill Wendling775db972009-12-23 00:28:23 +00003499 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003500 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003501 Tmp1, Tmp2.getOperand(2),
3502 Tmp2.getOperand(0), Tmp2.getOperand(1),
3503 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003504 } else {
Stuart Hastings88882242011-05-13 00:51:54 +00003505 // We test only the i1 bit. Skip the AND if UNDEF.
3506 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3507 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3508 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003509 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastings88882242011-05-13 00:51:54 +00003510 DAG.getCondCode(ISD::SETNE), Tmp3,
3511 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003512 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003513 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003514 Results.push_back(Tmp1);
3515 break;
Eli Friedmanad754602009-05-28 03:56:57 +00003516 case ISD::SETCC: {
3517 Tmp1 = Node->getOperand(0);
3518 Tmp2 = Node->getOperand(1);
3519 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003520 LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Eli Friedmanad754602009-05-28 03:56:57 +00003521
3522 // If we expanded the SETCC into an AND/OR, return the new node
3523 if (Tmp2.getNode() == 0) {
3524 Results.push_back(Tmp1);
3525 break;
3526 }
3527
3528 // Otherwise, SETCC for the given comparison type must be completely
3529 // illegal; expand it into a SELECT_CC.
Owen Andersone50ed302009-08-10 22:56:29 +00003530 EVT VT = Node->getValueType(0);
Eli Friedmanad754602009-05-28 03:56:57 +00003531 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
3532 DAG.getConstant(1, VT), DAG.getConstant(0, VT), Tmp3);
3533 Results.push_back(Tmp1);
3534 break;
3535 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003536 case ISD::SELECT_CC: {
3537 Tmp1 = Node->getOperand(0); // LHS
3538 Tmp2 = Node->getOperand(1); // RHS
3539 Tmp3 = Node->getOperand(2); // True
3540 Tmp4 = Node->getOperand(3); // False
3541 SDValue CC = Node->getOperand(4);
3542
3543 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp1.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003544 Tmp1, Tmp2, CC, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003545
3546 assert(!Tmp2.getNode() && "Can't legalize SELECT_CC with legal condition!");
3547 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3548 CC = DAG.getCondCode(ISD::SETNE);
3549 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, Tmp2,
3550 Tmp3, Tmp4, CC);
3551 Results.push_back(Tmp1);
3552 break;
3553 }
3554 case ISD::BR_CC: {
3555 Tmp1 = Node->getOperand(0); // Chain
3556 Tmp2 = Node->getOperand(2); // LHS
3557 Tmp3 = Node->getOperand(3); // RHS
3558 Tmp4 = Node->getOperand(1); // CC
3559
3560 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp2.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003561 Tmp2, Tmp3, Tmp4, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003562
3563 assert(!Tmp3.getNode() && "Can't legalize BR_CC with legal condition!");
3564 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3565 Tmp4 = DAG.getCondCode(ISD::SETNE);
3566 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, Tmp2,
3567 Tmp3, Node->getOperand(4));
3568 Results.push_back(Tmp1);
3569 break;
3570 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003571 case ISD::BUILD_VECTOR:
3572 Results.push_back(ExpandBUILD_VECTOR(Node));
3573 break;
3574 case ISD::SRA:
3575 case ISD::SRL:
3576 case ISD::SHL: {
3577 // Scalarize vector SRA/SRL/SHL.
3578 EVT VT = Node->getValueType(0);
3579 assert(VT.isVector() && "Unable to legalize non-vector shift");
3580 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3581 unsigned NumElem = VT.getVectorNumElements();
3582
3583 SmallVector<SDValue, 8> Scalars;
3584 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3585 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3586 VT.getScalarType(),
3587 Node->getOperand(0), DAG.getIntPtrConstant(Idx));
3588 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3589 VT.getScalarType(),
3590 Node->getOperand(1), DAG.getIntPtrConstant(Idx));
3591 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3592 VT.getScalarType(), Ex, Sh));
3593 }
3594 SDValue Result =
3595 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3596 &Scalars[0], Scalars.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +00003597 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +00003598 break;
3599 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003600 case ISD::GLOBAL_OFFSET_TABLE:
3601 case ISD::GlobalAddress:
3602 case ISD::GlobalTLSAddress:
3603 case ISD::ExternalSymbol:
3604 case ISD::ConstantPool:
3605 case ISD::JumpTable:
3606 case ISD::INTRINSIC_W_CHAIN:
3607 case ISD::INTRINSIC_WO_CHAIN:
3608 case ISD::INTRINSIC_VOID:
3609 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedman3f727d62009-05-27 02:16:40 +00003610 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00003611 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003612
3613 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003614 if (!Results.empty())
3615 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003616}
Dan Gohman65fd6562011-11-03 21:49:52 +00003617
3618void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3619 SmallVector<SDValue, 8> Results;
Patrik Hagglund319bb392012-12-19 11:21:04 +00003620 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00003621 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedmana64eb922009-07-17 05:16:04 +00003622 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendling775db972009-12-23 00:28:23 +00003623 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglund319bb392012-12-19 11:21:04 +00003624 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendling775db972009-12-23 00:28:23 +00003625 }
Patrik Hagglund319bb392012-12-19 11:21:04 +00003626 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Eli Friedman8c377c72009-05-27 01:25:56 +00003627 DebugLoc dl = Node->getDebugLoc();
Eli Friedman509150f2009-05-27 07:58:35 +00003628 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman8c377c72009-05-27 01:25:56 +00003629 switch (Node->getOpcode()) {
3630 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003631 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003632 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003633 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003634 case ISD::CTPOP:
3635 // Zero extend the argument.
3636 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00003637 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
3638 // already the correct result.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003639 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003640 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth63974b22011-12-13 01:56:10 +00003641 // FIXME: This should set a bit in the zero extended value instead.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003642 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Eli Friedman8c377c72009-05-27 01:25:56 +00003643 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3644 ISD::SETEQ);
3645 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
3646 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth63974b22011-12-13 01:56:10 +00003647 } else if (Node->getOpcode() == ISD::CTLZ ||
3648 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003649 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3650 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3651 DAG.getConstant(NVT.getSizeInBits() -
3652 OVT.getSizeInBits(), NVT));
3653 }
Bill Wendling775db972009-12-23 00:28:23 +00003654 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00003655 break;
3656 case ISD::BSWAP: {
3657 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling167bea72009-12-22 22:53:39 +00003658 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00003659 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3660 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Anderson95771af2011-02-25 21:41:48 +00003661 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendling775db972009-12-23 00:28:23 +00003662 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003663 break;
3664 }
3665 case ISD::FP_TO_UINT:
3666 case ISD::FP_TO_SINT:
3667 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3668 Node->getOpcode() == ISD::FP_TO_SINT, dl);
3669 Results.push_back(Tmp1);
3670 break;
3671 case ISD::UINT_TO_FP:
3672 case ISD::SINT_TO_FP:
3673 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3674 Node->getOpcode() == ISD::SINT_TO_FP, dl);
3675 Results.push_back(Tmp1);
3676 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00003677 case ISD::VAARG: {
3678 SDValue Chain = Node->getOperand(0); // Get the chain.
3679 SDValue Ptr = Node->getOperand(1); // Get the pointer.
3680
3681 unsigned TruncOp;
3682 if (OVT.isVector()) {
3683 TruncOp = ISD::BITCAST;
3684 } else {
3685 assert(OVT.isInteger()
3686 && "VAARG promotion is supported only for vectors or integer types");
3687 TruncOp = ISD::TRUNCATE;
3688 }
3689
3690 // Perform the larger operation, then convert back
3691 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
3692 Node->getConstantOperandVal(3));
3693 Chain = Tmp1.getValue(1);
3694
3695 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
3696
3697 // Modified the chain result - switch anything that used the old chain to
3698 // use the new one.
3699 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
3700 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
3701 ReplacedNode(Node);
3702 break;
3703 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003704 case ISD::AND:
3705 case ISD::OR:
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003706 case ISD::XOR: {
3707 unsigned ExtOp, TruncOp;
3708 if (OVT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003709 ExtOp = ISD::BITCAST;
3710 TruncOp = ISD::BITCAST;
Chris Lattner35a38932010-04-07 23:47:51 +00003711 } else {
3712 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003713 ExtOp = ISD::ANY_EXTEND;
3714 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003715 }
3716 // Promote each of the values to the new type.
3717 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3718 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3719 // Perform the larger operation, then convert back
Bill Wendling775db972009-12-23 00:28:23 +00003720 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3721 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003722 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003723 }
3724 case ISD::SELECT: {
Eli Friedman509150f2009-05-27 07:58:35 +00003725 unsigned ExtOp, TruncOp;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003726 if (Node->getValueType(0).isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003727 ExtOp = ISD::BITCAST;
3728 TruncOp = ISD::BITCAST;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003729 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman509150f2009-05-27 07:58:35 +00003730 ExtOp = ISD::ANY_EXTEND;
3731 TruncOp = ISD::TRUNCATE;
3732 } else {
3733 ExtOp = ISD::FP_EXTEND;
3734 TruncOp = ISD::FP_ROUND;
3735 }
3736 Tmp1 = Node->getOperand(0);
3737 // Promote each of the values to the new type.
3738 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3739 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
3740 // Perform the larger operation, then round down.
3741 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
3742 if (TruncOp != ISD::FP_ROUND)
Bill Wendling775db972009-12-23 00:28:23 +00003743 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003744 else
Bill Wendling775db972009-12-23 00:28:23 +00003745 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman509150f2009-05-27 07:58:35 +00003746 DAG.getIntPtrConstant(0));
Bill Wendling775db972009-12-23 00:28:23 +00003747 Results.push_back(Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003748 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003749 }
Eli Friedman509150f2009-05-27 07:58:35 +00003750 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003751 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003752
3753 // Cast the two input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003754 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
3755 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman509150f2009-05-27 07:58:35 +00003756
3757 // Convert the shuffle mask to the right # elements.
Bill Wendling775db972009-12-23 00:28:23 +00003758 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003759 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003760 Results.push_back(Tmp1);
3761 break;
3762 }
Eli Friedmanad754602009-05-28 03:56:57 +00003763 case ISD::SETCC: {
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003764 unsigned ExtOp = ISD::FP_EXTEND;
3765 if (NVT.isInteger()) {
3766 ISD::CondCode CCCode =
3767 cast<CondCodeSDNode>(Node->getOperand(2))->get();
3768 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedmanad754602009-05-28 03:56:57 +00003769 }
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003770 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3771 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedmanad754602009-05-28 03:56:57 +00003772 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3773 Tmp1, Tmp2, Node->getOperand(2)));
3774 break;
3775 }
Pete Coopercfe29982012-03-19 23:38:12 +00003776 case ISD::FDIV:
Pete Cooper9751b812012-04-04 19:36:31 +00003777 case ISD::FREM:
Pete Cooperd578b902012-01-12 21:46:18 +00003778 case ISD::FPOW: {
3779 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3780 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopercfe29982012-03-19 23:38:12 +00003781 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooperd578b902012-01-12 21:46:18 +00003782 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3783 Tmp3, DAG.getIntPtrConstant(0)));
3784 break;
3785 }
3786 case ISD::FLOG2:
3787 case ISD::FEXP2:
3788 case ISD::FLOG:
3789 case ISD::FEXP: {
3790 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3791 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
3792 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3793 Tmp2, DAG.getIntPtrConstant(0)));
3794 break;
3795 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003796 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003797
3798 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003799 if (!Results.empty())
3800 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003801}
3802
Chris Lattner3e928bb2005-01-07 07:47:09 +00003803// SelectionDAG::Legalize - This is the entry point for the file.
3804//
Dan Gohman975716a2011-05-16 22:19:54 +00003805void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00003806 /// run - This is the main entry point to this class.
3807 ///
Dan Gohman975716a2011-05-16 22:19:54 +00003808 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00003809}