blob: 4a0176bc031a6c073062ac5e6ad0d5b915fbf391 [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"
Paul Redmond86cdbc92013-02-15 18:45:18 +000018#include "llvm/ADT/Triple.h"
Evan Cheng3d2125c2010-11-30 23:55:39 +000019#include "llvm/CodeGen/Analysis.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000020#include "llvm/CodeGen/MachineFunction.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000021#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000022#include "llvm/DebugInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000023#include "llvm/IR/CallingConv.h"
24#include "llvm/IR/Constants.h"
25#include "llvm/IR/DataLayout.h"
26#include "llvm/IR/DerivedTypes.h"
Chandler Carruth40b2c322013-01-08 05:11:57 +000027#include "llvm/IR/Function.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000028#include "llvm/IR/LLVMContext.h"
David Greene993aace2010-01-05 01:24:53 +000029#include "llvm/Support/Debug.h"
Jim Grosbache03262f2010-06-18 21:43:38 +000030#include "llvm/Support/ErrorHandling.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000031#include "llvm/Support/MathExtras.h"
Chris Lattner45cfe542009-08-23 06:03:38 +000032#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000033#include "llvm/Target/TargetFrameLowering.h"
34#include "llvm/Target/TargetLowering.h"
35#include "llvm/Target/TargetMachine.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000036using namespace llvm;
37
38//===----------------------------------------------------------------------===//
39/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
40/// hacks on it until the target machine can handle it. This involves
41/// eliminating value sizes the machine cannot handle (promoting small sizes to
42/// large sizes or splitting up large values into small values) as well as
43/// eliminating operations the machine cannot handle.
44///
45/// This code also does a small amount of optimization and recognition of idioms
46/// as part of its processing. For example, if a target does not support a
47/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
48/// will attempt merge setcc and brc instructions into brcc's.
49///
50namespace {
Dan Gohman65fd6562011-11-03 21:49:52 +000051class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
Dan Gohman55e59c12010-04-19 19:05:59 +000052 const TargetMachine &TM;
Dan Gohmand858e902010-04-17 15:26:15 +000053 const TargetLowering &TLI;
Chris Lattner3e928bb2005-01-07 07:47:09 +000054 SelectionDAG &DAG;
55
Dan Gohman65fd6562011-11-03 21:49:52 +000056 /// LegalizePosition - The iterator for walking through the node list.
57 SelectionDAG::allnodes_iterator LegalizePosition;
58
59 /// LegalizedNodes - The set of nodes which have already been legalized.
60 SmallPtrSet<SDNode *, 16> LegalizedNodes;
61
Chris Lattner6831a812006-02-13 09:18:02 +000062 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000063
Chris Lattner3e928bb2005-01-07 07:47:09 +000064public:
Dan Gohman975716a2011-05-16 22:19:54 +000065 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +000066
Chris Lattner3e928bb2005-01-07 07:47:09 +000067 void LegalizeDAG();
68
Chris Lattner456a93a2006-01-28 07:39:30 +000069private:
Dan Gohman65fd6562011-11-03 21:49:52 +000070 /// LegalizeOp - Legalizes the given operation.
71 void LegalizeOp(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +000072
Eli Friedman7ef3d172009-06-06 07:04:42 +000073 SDValue OptimizeFloatStore(StoreSDNode *ST);
74
Nadav Rotemb6e89f02012-07-11 08:52:09 +000075 void LegalizeLoadOps(SDNode *Node);
76 void LegalizeStoreOps(SDNode *Node);
77
Nate Begeman68679912008-04-25 18:07:40 +000078 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
79 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
80 /// is necessary to spill the vector being inserted into to memory, perform
81 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +000082 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Eli Friedman3f727d62009-05-27 02:16:40 +000083 SDValue Idx, DebugLoc dl);
84 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
85 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +000086
Nate Begeman5a5ca152009-04-29 05:20:52 +000087 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
88 /// performs the same shuffe in terms of order or result bytes, but on a type
89 /// whose vector element type is narrower than the original shuffle type.
90 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Owen Andersone50ed302009-08-10 22:56:29 +000091 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Jim Grosbach6e992612010-07-02 17:41:59 +000092 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +000093 ArrayRef<int> Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +000094
Owen Andersone50ed302009-08-10 22:56:29 +000095 void LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +000096 DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +000097
Eli Friedman47b41f72009-05-27 02:21:29 +000098 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherabbbfbd2011-04-20 01:19:45 +000099 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
100 unsigned NumOps, bool isSigned, DebugLoc dl);
101
Jim Grosbache03262f2010-06-18 21:43:38 +0000102 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
103 SDNode *Node, bool isSigned);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000104 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
105 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
Evan Cheng8688a582013-01-29 02:32:37 +0000106 RTLIB::Libcall Call_F128,
107 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000108 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
109 RTLIB::Libcall Call_I8,
110 RTLIB::Libcall Call_I16,
111 RTLIB::Libcall Call_I32,
112 RTLIB::Libcall Call_I64,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000113 RTLIB::Libcall Call_I128);
Evan Cheng65279cb2011-04-16 03:08:26 +0000114 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Evan Cheng8688a582013-01-29 02:32:37 +0000115 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnercad063f2005-07-16 00:19:57 +0000116
Owen Andersone50ed302009-08-10 22:56:29 +0000117 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000118 SDValue ExpandBUILD_VECTOR(SDNode *Node);
119 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +0000120 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
121 SmallVectorImpl<SDValue> &Results);
122 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Andersone50ed302009-08-10 22:56:29 +0000123 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +0000124 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000125 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000126 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000127 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000128 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000129
Dale Johannesen8a782a22009-02-02 22:12:50 +0000130 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
131 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000132
Eli Friedman3d43b3f2009-05-23 22:37:25 +0000133 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenecfe33c42011-01-26 19:13:22 +0000134 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000135 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman8c377c72009-05-27 01:25:56 +0000136
Dan Gohman65fd6562011-11-03 21:49:52 +0000137 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
138
Jim Grosbache03262f2010-06-18 21:43:38 +0000139 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
140
Dan Gohman65fd6562011-11-03 21:49:52 +0000141 void ExpandNode(SDNode *Node);
142 void PromoteNode(SDNode *Node);
143
Eli Friedman0e3642a2011-11-11 23:58:27 +0000144 void ForgetNode(SDNode *N) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000145 LegalizedNodes.erase(N);
146 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
147 ++LegalizePosition;
148 }
149
Eli Friedman0e3642a2011-11-11 23:58:27 +0000150public:
151 // DAGUpdateListener implementation.
152 virtual void NodeDeleted(SDNode *N, SDNode *E) {
153 ForgetNode(N);
154 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000155 virtual void NodeUpdated(SDNode *N) {}
Eli Friedman0e3642a2011-11-11 23:58:27 +0000156
157 // Node replacement helpers
158 void ReplacedNode(SDNode *N) {
159 if (N->use_empty()) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000160 DAG.RemoveDeadNode(N);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000161 } else {
162 ForgetNode(N);
163 }
164 }
165 void ReplaceNode(SDNode *Old, SDNode *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000166 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000167 ReplacedNode(Old);
168 }
169 void ReplaceNode(SDValue Old, SDValue New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000170 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000171 ReplacedNode(Old.getNode());
172 }
173 void ReplaceNode(SDNode *Old, const SDValue *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000174 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000175 ReplacedNode(Old);
176 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000177};
178}
179
Nate Begeman5a5ca152009-04-29 05:20:52 +0000180/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
181/// performs the same shuffe in terms of order or result bytes, but on a type
182/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000183/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach6e992612010-07-02 17:41:59 +0000184SDValue
185SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Nate Begeman5a5ca152009-04-29 05:20:52 +0000186 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +0000187 ArrayRef<int> Mask) const {
Nate Begeman5a5ca152009-04-29 05:20:52 +0000188 unsigned NumMaskElts = VT.getVectorNumElements();
189 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000190 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000191
Nate Begeman9008ca62009-04-27 18:41:29 +0000192 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
193
194 if (NumEltsGrowth == 1)
195 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach6e992612010-07-02 17:41:59 +0000196
Nate Begeman9008ca62009-04-27 18:41:29 +0000197 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000198 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000199 int Idx = Mask[i];
200 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach6e992612010-07-02 17:41:59 +0000201 if (Idx < 0)
Nate Begeman9008ca62009-04-27 18:41:29 +0000202 NewMask.push_back(-1);
203 else
204 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000205 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000206 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000207 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000208 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
209 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000210}
211
Dan Gohman975716a2011-05-16 22:19:54 +0000212SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000213 : SelectionDAG::DAGUpdateListener(dag),
214 TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
Dan Gohmanea027022011-07-15 22:19:02 +0000215 DAG(dag) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000216}
217
Chris Lattner3e928bb2005-01-07 07:47:09 +0000218void SelectionDAGLegalize::LegalizeDAG() {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000219 DAG.AssignTopologicalOrder();
Dan Gohman2ba60e52011-10-28 01:29:32 +0000220
Dan Gohman65fd6562011-11-03 21:49:52 +0000221 // Visit all the nodes. We start in topological order, so that we see
222 // nodes with their original operands intact. Legalization can produce
223 // new nodes which may themselves need to be legalized. Iterate until all
224 // nodes have been legalized.
225 for (;;) {
226 bool AnyLegalized = false;
227 for (LegalizePosition = DAG.allnodes_end();
228 LegalizePosition != DAG.allnodes_begin(); ) {
229 --LegalizePosition;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000230
Dan Gohman65fd6562011-11-03 21:49:52 +0000231 SDNode *N = LegalizePosition;
232 if (LegalizedNodes.insert(N)) {
233 AnyLegalized = true;
234 LegalizeOp(N);
235 }
236 }
237 if (!AnyLegalized)
238 break;
239
240 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000241
242 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000243 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000244}
245
Evan Cheng9f877882006-12-13 20:57:08 +0000246/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
247/// a load from the constant pool.
Dan Gohman65fd6562011-11-03 21:49:52 +0000248SDValue
249SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng00495212006-12-12 21:32:44 +0000250 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000251 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000252
253 // If a FP immediate is precise when represented as a float and if the
254 // target can do an extending load from float to double, we put it into
255 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000256 // double. This shrinks FP constants and canonicalizes them for targets where
257 // an FP extending load is the same cost as a normal load (such as on the x87
258 // fp stack or PPC FP unit).
Owen Andersone50ed302009-08-10 22:56:29 +0000259 EVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000260 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000261 if (!UseCP) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000262 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000263 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000264 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000265 }
266
Owen Andersone50ed302009-08-10 22:56:29 +0000267 EVT OrigVT = VT;
268 EVT SVT = VT;
Owen Anderson825b72b2009-08-11 20:47:22 +0000269 while (SVT != MVT::f32) {
270 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman7720cb32010-06-18 14:01:07 +0000271 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Chengef120572008-03-04 08:05:30 +0000272 // Only do this if the target has a native EXTLOAD instruction from
273 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000274 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000275 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000276 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Andersonbaf3c402009-07-29 18:55:55 +0000277 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Chengef120572008-03-04 08:05:30 +0000278 VT = SVT;
279 Extend = true;
280 }
Evan Cheng00495212006-12-12 21:32:44 +0000281 }
282
Dan Gohman475871a2008-07-27 21:46:04 +0000283 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000284 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman65fd6562011-11-03 21:49:52 +0000285 if (Extend) {
286 SDValue Result =
287 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
288 DAG.getEntryNode(),
289 CPIdx, MachinePointerInfo::getConstantPool(),
290 VT, false, false, Alignment);
291 return Result;
292 }
293 SDValue Result =
294 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000295 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman65fd6562011-11-03 21:49:52 +0000296 Alignment);
297 return Result;
Evan Cheng00495212006-12-12 21:32:44 +0000298}
299
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000300/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman65fd6562011-11-03 21:49:52 +0000301static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
302 const TargetLowering &TLI,
Eli Friedman0e3642a2011-11-11 23:58:27 +0000303 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000304 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
305 "unaligned indexed stores not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000306 SDValue Chain = ST->getChain();
307 SDValue Ptr = ST->getBasePtr();
308 SDValue Val = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +0000309 EVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000310 int Alignment = ST->getAlignment();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000311 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000312 if (ST->getMemoryVT().isFloatingPoint() ||
313 ST->getMemoryVT().isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000314 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000315 if (TLI.isTypeLegal(intVT)) {
316 // Expand to a bitconvert of the value to the integer type of the
317 // same size, then a (misaligned) int store.
318 // FIXME: Does not handle truncating floating point stores!
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000319 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman65fd6562011-11-03 21:49:52 +0000320 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
321 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000322 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000323 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000324 }
Dan Gohman1b328962011-05-17 22:22:52 +0000325 // Do a (aligned) store to a stack slot, then copy from the stack slot
326 // to the final destination using (unaligned) integer loads and stores.
327 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000328 MVT RegVT =
Dan Gohman1b328962011-05-17 22:22:52 +0000329 TLI.getRegisterType(*DAG.getContext(),
330 EVT::getIntegerVT(*DAG.getContext(),
331 StoredVT.getSizeInBits()));
332 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
333 unsigned RegBytes = RegVT.getSizeInBits() / 8;
334 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
335
336 // Make sure the stack slot is also aligned for the register type.
337 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
338
339 // Perform the original store, only redirected to the stack slot.
340 SDValue Store = DAG.getTruncStore(Chain, dl,
341 Val, StackPtr, MachinePointerInfo(),
342 StoredVT, false, false, 0);
343 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
344 SmallVector<SDValue, 8> Stores;
345 unsigned Offset = 0;
346
347 // Do all but one copies using the full register width.
348 for (unsigned i = 1; i < NumRegs; i++) {
349 // Load one integer register's worth from the stack slot.
350 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
351 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000352 false, false, false, 0);
Dan Gohman1b328962011-05-17 22:22:52 +0000353 // Store it to the final location. Remember the store.
354 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
355 ST->getPointerInfo().getWithOffset(Offset),
356 ST->isVolatile(), ST->isNonTemporal(),
357 MinAlign(ST->getAlignment(), Offset)));
358 // Increment the pointers.
359 Offset += RegBytes;
360 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
361 Increment);
362 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
363 }
364
365 // The last store may be partial. Do a truncating store. On big-endian
366 // machines this requires an extending load from the stack slot to ensure
367 // that the bits are in the right place.
368 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
369 8 * (StoredBytes - Offset));
370
371 // Load from the stack slot.
372 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
373 MachinePointerInfo(),
374 MemVT, false, false, 0);
375
376 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
377 ST->getPointerInfo()
378 .getWithOffset(Offset),
379 MemVT, ST->isVolatile(),
380 ST->isNonTemporal(),
381 MinAlign(ST->getAlignment(), Offset)));
382 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman65fd6562011-11-03 21:49:52 +0000383 SDValue Result =
384 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
385 Stores.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +0000386 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000387 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000388 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000389 assert(ST->getMemoryVT().isInteger() &&
390 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000391 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000392 // Get the half-size VT
Ken Dyckbceddbd2009-12-17 20:09:43 +0000393 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000394 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000395 int IncrementSize = NumBits / 8;
396
397 // Divide the stored value in two parts.
Owen Anderson95771af2011-02-25 21:41:48 +0000398 SDValue ShiftAmount = DAG.getConstant(NumBits,
399 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman475871a2008-07-27 21:46:04 +0000400 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000401 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000402
403 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000404 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000405 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000406 ST->getPointerInfo(), NewStoredVT,
David Greene1e559442010-02-15 17:00:31 +0000407 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000408 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000409 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000410 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000411 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000412 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene1e559442010-02-15 17:00:31 +0000413 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
414 Alignment);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000415
Dan Gohman65fd6562011-11-03 21:49:52 +0000416 SDValue Result =
417 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000418 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000419}
420
421/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman65fd6562011-11-03 21:49:52 +0000422static void
423ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
424 const TargetLowering &TLI,
425 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000426 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
427 "unaligned indexed loads not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000428 SDValue Chain = LD->getChain();
429 SDValue Ptr = LD->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +0000430 EVT VT = LD->getValueType(0);
431 EVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000432 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000433 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000434 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000435 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000436 // Expand to a (misaligned) integer load of the same size,
437 // then bitconvert to floating point or vector.
Chris Lattnerecf42c42010-09-21 16:36:31 +0000438 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
439 LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000440 LD->isNonTemporal(),
441 LD->isInvariant(), LD->getAlignment());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000442 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000443 if (LoadedVT != VT)
444 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
445 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000446
Dan Gohman65fd6562011-11-03 21:49:52 +0000447 ValResult = Result;
448 ChainResult = Chain;
449 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000450 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000451
Chris Lattnerecf42c42010-09-21 16:36:31 +0000452 // Copy the value to a (aligned) stack slot using (unaligned) integer
453 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000454 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattnerecf42c42010-09-21 16:36:31 +0000455 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
456 unsigned RegBytes = RegVT.getSizeInBits() / 8;
457 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
458
459 // Make sure the stack slot is also aligned for the register type.
460 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
461
462 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
463 SmallVector<SDValue, 8> Stores;
464 SDValue StackPtr = StackBase;
465 unsigned Offset = 0;
466
467 // Do all but one copies using the full register width.
468 for (unsigned i = 1; i < NumRegs; i++) {
469 // Load one integer register's worth from the original location.
470 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
471 LD->getPointerInfo().getWithOffset(Offset),
472 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000473 LD->isInvariant(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000474 MinAlign(LD->getAlignment(), Offset));
475 // Follow the load with a store to the stack slot. Remember the store.
476 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000477 MachinePointerInfo(), false, false, 0));
Chris Lattnerecf42c42010-09-21 16:36:31 +0000478 // Increment the pointers.
479 Offset += RegBytes;
480 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
481 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
482 Increment);
483 }
484
485 // The last copy may be partial. Do an extending load.
486 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
487 8 * (LoadedBytes - Offset));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000488 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000489 LD->getPointerInfo().getWithOffset(Offset),
490 MemVT, LD->isVolatile(),
491 LD->isNonTemporal(),
492 MinAlign(LD->getAlignment(), Offset));
493 // Follow the load with a store to the stack slot. Remember the store.
494 // On big-endian machines this requires a truncating store to ensure
495 // that the bits end up in the right place.
496 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
497 MachinePointerInfo(), MemVT,
498 false, false, 0));
499
500 // The order of the stores doesn't matter - say it with a TokenFactor.
501 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
502 Stores.size());
503
504 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastingsa9011292011-02-16 16:23:55 +0000505 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000506 MachinePointerInfo(), LoadedVT, false, false, 0);
507
508 // Callers expect a MERGE_VALUES node.
Dan Gohman65fd6562011-11-03 21:49:52 +0000509 ValResult = Load;
510 ChainResult = TF;
511 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000512 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000513 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000514 "Unaligned load of unsupported type.");
515
Dale Johannesen8155d642008-02-27 22:36:00 +0000516 // Compute the new VT that is half the size of the old one. This is an
517 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000518 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Andersone50ed302009-08-10 22:56:29 +0000519 EVT NewLoadedVT;
Owen Anderson23b9b192009-08-12 00:36:31 +0000520 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000521 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000522
Chris Lattnere400af82007-11-19 21:38:03 +0000523 unsigned Alignment = LD->getAlignment();
524 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000525 ISD::LoadExtType HiExtType = LD->getExtensionType();
526
527 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
528 if (HiExtType == ISD::NON_EXTLOAD)
529 HiExtType = ISD::ZEXTLOAD;
530
531 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000532 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000533 if (TLI.isLittleEndian()) {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000534 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000535 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000536 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000537 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000538 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000539 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000540 LD->getPointerInfo().getWithOffset(IncrementSize),
541 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000542 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000543 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000544 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000545 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000546 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000547 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000548 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000549 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000550 LD->getPointerInfo().getWithOffset(IncrementSize),
551 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000552 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000553 }
554
555 // aggregate the two parts
Owen Anderson95771af2011-02-25 21:41:48 +0000556 SDValue ShiftAmount = DAG.getConstant(NumBits,
557 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000558 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
559 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000560
Owen Anderson825b72b2009-08-11 20:47:22 +0000561 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000562 Hi.getValue(1));
563
Dan Gohman65fd6562011-11-03 21:49:52 +0000564 ValResult = Result;
565 ChainResult = TF;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000566}
Evan Cheng912095b2007-01-04 21:56:39 +0000567
Nate Begeman68679912008-04-25 18:07:40 +0000568/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
569/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
570/// is necessary to spill the vector being inserted into to memory, perform
571/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000572SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000573PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
574 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000575 SDValue Tmp1 = Vec;
576 SDValue Tmp2 = Val;
577 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000578
Nate Begeman68679912008-04-25 18:07:40 +0000579 // If the target doesn't support this, we have to spill the input vector
580 // to a temporary stack slot, update the element, then reload it. This is
581 // badness. We could also load the value into a vector register (either
582 // with a "move to register" or "extload into register" instruction, then
583 // permute it into place, if the idx is a constant and if the idx is
584 // supported by the target.
Owen Andersone50ed302009-08-10 22:56:29 +0000585 EVT VT = Tmp1.getValueType();
586 EVT EltVT = VT.getVectorElementType();
587 EVT IdxVT = Tmp3.getValueType();
588 EVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000589 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000590
Evan Chengff89dcb2009-10-18 18:16:27 +0000591 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
592
Nate Begeman68679912008-04-25 18:07:40 +0000593 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000594 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +0000595 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +0000596 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000597
598 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000599 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000600 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000601 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +0000602 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000603 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
604 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000605 // Store the scalar value.
Chris Lattner85ca1062010-09-21 07:32:19 +0000606 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene1e559442010-02-15 17:00:31 +0000607 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000608 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000609 return DAG.getLoad(VT, dl, Ch, StackPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000610 MachinePointerInfo::getFixedStack(SPFI), false, false,
611 false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000612}
613
Mon P Wange9f10152008-12-09 05:46:39 +0000614
Eli Friedman3f727d62009-05-27 02:16:40 +0000615SDValue SelectionDAGLegalize::
616ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, DebugLoc dl) {
617 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
618 // SCALAR_TO_VECTOR requires that the type of the value being inserted
619 // match the element type of the vector being created, except for
620 // integers in which case the inserted value can be over width.
Owen Andersone50ed302009-08-10 22:56:29 +0000621 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedman3f727d62009-05-27 02:16:40 +0000622 if (Val.getValueType() == EltVT ||
623 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
624 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
625 Vec.getValueType(), Val);
626
627 unsigned NumElts = Vec.getValueType().getVectorNumElements();
628 // We generate a shuffle of InVec and ScVec, so the shuffle mask
629 // should be 0,1,2,3,4,5... with the appropriate element replaced with
630 // elt 0 of the RHS.
631 SmallVector<int, 8> ShufOps;
632 for (unsigned i = 0; i != NumElts; ++i)
633 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
634
635 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
636 &ShufOps[0]);
637 }
638 }
639 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
640}
641
Eli Friedman7ef3d172009-06-06 07:04:42 +0000642SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
643 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
644 // FIXME: We shouldn't do this for TargetConstantFP's.
645 // FIXME: move this to the DAG Combiner! Note that we can't regress due
646 // to phase ordering between legalized code and the dag combiner. This
647 // probably means that we need to integrate dag combiner and legalizer
648 // together.
649 // We generally can't do this one for long doubles.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000650 SDValue Chain = ST->getChain();
651 SDValue Ptr = ST->getBasePtr();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000652 unsigned Alignment = ST->getAlignment();
653 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +0000654 bool isNonTemporal = ST->isNonTemporal();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000655 DebugLoc dl = ST->getDebugLoc();
656 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000657 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohman75b10042011-07-15 22:39:09 +0000658 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000659 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedman7ef3d172009-06-06 07:04:42 +0000660 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson825b72b2009-08-11 20:47:22 +0000661 MVT::i32);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000662 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000663 isVolatile, isNonTemporal, Alignment);
664 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000665
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000666 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000667 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohman75b10042011-07-15 22:39:09 +0000668 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000669 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +0000670 zextOrTrunc(64), MVT::i64);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000671 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000672 isVolatile, isNonTemporal, Alignment);
673 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000674
Dan Gohman75b10042011-07-15 22:39:09 +0000675 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000676 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
677 // stores. If the target supports neither 32- nor 64-bits, this
678 // xform is certainly not worth it.
679 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad40f8f622010-12-07 08:25:19 +0000680 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000681 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000682 if (TLI.isBigEndian()) std::swap(Lo, Hi);
683
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000684 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000685 isNonTemporal, Alignment);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000686 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Eli Friedman7ef3d172009-06-06 07:04:42 +0000687 DAG.getIntPtrConstant(4));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000688 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000689 ST->getPointerInfo().getWithOffset(4),
David Greene1e559442010-02-15 17:00:31 +0000690 isVolatile, isNonTemporal, MinAlign(Alignment, 4U));
Eli Friedman7ef3d172009-06-06 07:04:42 +0000691
Owen Anderson825b72b2009-08-11 20:47:22 +0000692 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000693 }
694 }
695 }
Evan Cheng8e23e812011-04-01 00:42:02 +0000696 return SDValue(0, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000697}
698
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000699void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
700 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000701 SDValue Chain = ST->getChain();
702 SDValue Ptr = ST->getBasePtr();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000703 DebugLoc dl = Node->getDebugLoc();
704
705 unsigned Alignment = ST->getAlignment();
706 bool isVolatile = ST->isVolatile();
707 bool isNonTemporal = ST->isNonTemporal();
708
709 if (!ST->isTruncatingStore()) {
710 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
711 ReplaceNode(ST, OptStore);
712 return;
713 }
714
715 {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000716 SDValue Value = ST->getValue();
Patrik Hagglund319bb392012-12-19 11:21:04 +0000717 MVT VT = Value.getSimpleValueType();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000718 switch (TLI.getOperationAction(ISD::STORE, VT)) {
719 default: llvm_unreachable("This action is not supported yet!");
720 case TargetLowering::Legal:
721 // If this is an unaligned store and the target doesn't support it,
722 // expand it.
723 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
724 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000725 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000726 if (ST->getAlignment() < ABIAlignment)
727 ExpandUnalignedStore(cast<StoreSDNode>(Node),
728 DAG, TLI, this);
729 }
730 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000731 case TargetLowering::Custom: {
732 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
733 if (Res.getNode())
734 ReplaceNode(SDValue(Node, 0), Res);
735 return;
736 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000737 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000738 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellard8b7f16e2012-12-10 21:41:54 +0000739 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
740 "Can only promote stores to same size type");
741 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000742 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000743 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000744 ST->getPointerInfo(), isVolatile,
745 isNonTemporal, Alignment);
746 ReplaceNode(SDValue(Node, 0), Result);
747 break;
748 }
749 }
750 return;
751 }
752 } else {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000753 SDValue Value = ST->getValue();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000754
755 EVT StVT = ST->getMemoryVT();
756 unsigned StWidth = StVT.getSizeInBits();
757
758 if (StWidth != StVT.getStoreSizeInBits()) {
759 // Promote to a byte-sized store with upper bits zero if not
760 // storing an integral number of bytes. For example, promote
761 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
762 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
763 StVT.getStoreSizeInBits());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000764 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000765 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000766 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000767 NVT, isVolatile, isNonTemporal, Alignment);
768 ReplaceNode(SDValue(Node, 0), Result);
769 } else if (StWidth & (StWidth - 1)) {
770 // If not storing a power-of-2 number of bits, expand as two stores.
771 assert(!StVT.isVector() && "Unsupported truncstore!");
772 unsigned RoundWidth = 1 << Log2_32(StWidth);
773 assert(RoundWidth < StWidth);
774 unsigned ExtraWidth = StWidth - RoundWidth;
775 assert(ExtraWidth < RoundWidth);
776 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
777 "Store size not an integral number of bytes!");
778 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
779 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
780 SDValue Lo, Hi;
781 unsigned IncrementSize;
782
783 if (TLI.isLittleEndian()) {
784 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
785 // Store the bottom RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000786 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000787 RoundVT,
788 isVolatile, isNonTemporal, Alignment);
789
790 // Store the remaining ExtraWidth bits.
791 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000792 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000793 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000794 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000795 DAG.getConstant(RoundWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000796 TLI.getShiftAmountTy(Value.getValueType())));
797 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000798 ST->getPointerInfo().getWithOffset(IncrementSize),
799 ExtraVT, isVolatile, isNonTemporal,
800 MinAlign(Alignment, IncrementSize));
801 } else {
802 // Big endian - avoid unaligned stores.
803 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
804 // Store the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000805 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000806 DAG.getConstant(ExtraWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000807 TLI.getShiftAmountTy(Value.getValueType())));
808 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000809 RoundVT, isVolatile, isNonTemporal, Alignment);
810
811 // Store the remaining ExtraWidth bits.
812 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000813 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000814 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000815 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000816 ST->getPointerInfo().getWithOffset(IncrementSize),
817 ExtraVT, isVolatile, isNonTemporal,
818 MinAlign(Alignment, IncrementSize));
819 }
820
821 // The order of the stores doesn't matter.
822 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
823 ReplaceNode(SDValue(Node, 0), Result);
824 } else {
Patrik Hagglund88ef5142012-12-19 08:28:51 +0000825 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
826 StVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000827 default: llvm_unreachable("This action is not supported yet!");
828 case TargetLowering::Legal:
829 // If this is an unaligned store and the target doesn't support it,
830 // expand it.
831 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
832 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000833 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000834 if (ST->getAlignment() < ABIAlignment)
835 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
836 }
837 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000838 case TargetLowering::Custom: {
839 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
840 if (Res.getNode())
841 ReplaceNode(SDValue(Node, 0), Res);
842 return;
843 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000844 case TargetLowering::Expand:
845 assert(!StVT.isVector() &&
846 "Vector Stores are handled in LegalizeVectorOps");
847
848 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000849 assert(TLI.isTypeLegal(StVT) &&
850 "Do not know how to expand this store!");
851 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000852 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000853 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000854 isVolatile, isNonTemporal, Alignment);
855 ReplaceNode(SDValue(Node, 0), Result);
856 break;
857 }
858 }
859 }
860}
861
862void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
863 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000864 SDValue Chain = LD->getChain(); // The chain.
865 SDValue Ptr = LD->getBasePtr(); // The base pointer.
866 SDValue Value; // The value returned by the load op.
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000867 DebugLoc dl = Node->getDebugLoc();
868
869 ISD::LoadExtType ExtType = LD->getExtensionType();
870 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000871 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000872 SDValue RVal = SDValue(Node, 0);
873 SDValue RChain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000874
875 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
876 default: llvm_unreachable("This action is not supported yet!");
877 case TargetLowering::Legal:
Evan Chengfe257cc2012-09-18 01:34:40 +0000878 // If this is an unaligned load and the target doesn't support it,
879 // expand it.
880 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
881 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
882 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +0000883 TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Chengfe257cc2012-09-18 01:34:40 +0000884 if (LD->getAlignment() < ABIAlignment){
885 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
886 }
887 }
888 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000889 case TargetLowering::Custom: {
Evan Chengfe257cc2012-09-18 01:34:40 +0000890 SDValue Res = TLI.LowerOperation(RVal, DAG);
891 if (Res.getNode()) {
892 RVal = Res;
893 RChain = Res.getValue(1);
894 }
895 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000896 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000897 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000898 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellardf45d11b2012-12-10 21:41:58 +0000899 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
900 "Can only promote loads to same size type");
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000901
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000902 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000903 LD->isVolatile(), LD->isNonTemporal(),
904 LD->isInvariant(), LD->getAlignment());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000905 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
906 RChain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000907 break;
908 }
909 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000910 if (RChain.getNode() != Node) {
911 assert(RVal.getNode() != Node && "Load must be completely replaced");
912 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
913 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000914 ReplacedNode(Node);
915 }
916 return;
917 }
918
919 EVT SrcVT = LD->getMemoryVT();
920 unsigned SrcWidth = SrcVT.getSizeInBits();
921 unsigned Alignment = LD->getAlignment();
922 bool isVolatile = LD->isVolatile();
923 bool isNonTemporal = LD->isNonTemporal();
924
925 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
926 // Some targets pretend to have an i1 loading operation, and actually
927 // load an i8. This trick is correct for ZEXTLOAD because the top 7
928 // bits are guaranteed to be zero; it helps the optimizers understand
929 // that these bits are zero. It is also useful for EXTLOAD, since it
930 // tells the optimizers that those bits are undefined. It would be
931 // nice to have an effective generic way of getting these benefits...
932 // Until such a way is found, don't insist on promoting i1 here.
933 (SrcVT != MVT::i1 ||
934 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
935 // Promote to a byte-sized load if not loading an integral number of
936 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
937 unsigned NewWidth = SrcVT.getStoreSizeInBits();
938 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
939 SDValue Ch;
940
941 // The extra bits are guaranteed to be zero, since we stored them that
942 // way. A zext load from NVT thus automatically gives zext from SrcVT.
943
944 ISD::LoadExtType NewExtType =
945 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
946
947 SDValue Result =
948 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000949 Chain, Ptr, LD->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000950 NVT, isVolatile, isNonTemporal, Alignment);
951
952 Ch = Result.getValue(1); // The chain.
953
954 if (ExtType == ISD::SEXTLOAD)
955 // Having the top bits zero doesn't help when sign extending.
956 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
957 Result.getValueType(),
958 Result, DAG.getValueType(SrcVT));
959 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
960 // All the top bits are guaranteed to be zero - inform the optimizers.
961 Result = DAG.getNode(ISD::AssertZext, dl,
962 Result.getValueType(), Result,
963 DAG.getValueType(SrcVT));
964
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000965 Value = Result;
966 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000967 } else if (SrcWidth & (SrcWidth - 1)) {
968 // If not loading a power-of-2 number of bits, expand as two loads.
969 assert(!SrcVT.isVector() && "Unsupported extload!");
970 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
971 assert(RoundWidth < SrcWidth);
972 unsigned ExtraWidth = SrcWidth - RoundWidth;
973 assert(ExtraWidth < RoundWidth);
974 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
975 "Load size not an integral number of bytes!");
976 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
977 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
978 SDValue Lo, Hi, Ch;
979 unsigned IncrementSize;
980
981 if (TLI.isLittleEndian()) {
982 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
983 // Load the bottom RoundWidth bits.
984 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000985 Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000986 LD->getPointerInfo(), RoundVT, isVolatile,
987 isNonTemporal, Alignment);
988
989 // Load the remaining ExtraWidth bits.
990 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000991 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000992 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000993 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000994 LD->getPointerInfo().getWithOffset(IncrementSize),
995 ExtraVT, isVolatile, isNonTemporal,
996 MinAlign(Alignment, IncrementSize));
997
998 // Build a factor node to remember that this load is independent of
999 // the other one.
1000 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1001 Hi.getValue(1));
1002
1003 // Move the top bits to the right place.
1004 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1005 DAG.getConstant(RoundWidth,
1006 TLI.getShiftAmountTy(Hi.getValueType())));
1007
1008 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001009 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001010 } else {
1011 // Big endian - avoid unaligned loads.
1012 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1013 // Load the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001014 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001015 LD->getPointerInfo(), RoundVT, isVolatile,
1016 isNonTemporal, Alignment);
1017
1018 // Load the remaining ExtraWidth bits.
1019 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001020 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001021 DAG.getIntPtrConstant(IncrementSize));
1022 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001023 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001024 LD->getPointerInfo().getWithOffset(IncrementSize),
1025 ExtraVT, isVolatile, isNonTemporal,
1026 MinAlign(Alignment, IncrementSize));
1027
1028 // Build a factor node to remember that this load is independent of
1029 // the other one.
1030 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1031 Hi.getValue(1));
1032
1033 // Move the top bits to the right place.
1034 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1035 DAG.getConstant(ExtraWidth,
1036 TLI.getShiftAmountTy(Hi.getValueType())));
1037
1038 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001039 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001040 }
1041
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001042 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001043 } else {
1044 bool isCustom = false;
Patrik Hagglund702474d2012-12-14 09:05:13 +00001045 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001046 default: llvm_unreachable("This action is not supported yet!");
1047 case TargetLowering::Custom:
1048 isCustom = true;
1049 // FALLTHROUGH
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001050 case TargetLowering::Legal: {
1051 Value = SDValue(Node, 0);
1052 Chain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001053
1054 if (isCustom) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001055 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1056 if (Res.getNode()) {
1057 Value = Res;
1058 Chain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001059 }
1060 } else {
1061 // If this is an unaligned load and the target doesn't support it,
1062 // expand it.
1063 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
1064 Type *Ty =
1065 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1066 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +00001067 TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001068 if (LD->getAlignment() < ABIAlignment){
1069 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001070 DAG, TLI, Value, Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001071 }
1072 }
1073 }
1074 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001075 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001076 case TargetLowering::Expand:
1077 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) && TLI.isTypeLegal(SrcVT)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001078 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001079 LD->getPointerInfo(),
1080 LD->isVolatile(), LD->isNonTemporal(),
1081 LD->isInvariant(), LD->getAlignment());
1082 unsigned ExtendOp;
1083 switch (ExtType) {
1084 case ISD::EXTLOAD:
1085 ExtendOp = (SrcVT.isFloatingPoint() ?
1086 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1087 break;
1088 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1089 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1090 default: llvm_unreachable("Unexpected extend load type!");
1091 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001092 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1093 Chain = Load.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001094 break;
1095 }
1096
1097 assert(!SrcVT.isVector() &&
1098 "Vector Loads are handled in LegalizeVectorOps");
1099
1100 // FIXME: This does not work for vectors on most targets. Sign- and
1101 // zero-extend operations are currently folded into extending loads,
1102 // whether they are legal or not, and then we end up here without any
1103 // support for legalizing them.
1104 assert(ExtType != ISD::EXTLOAD &&
1105 "EXTLOAD should always be supported!");
1106 // Turn the unsupported load into an EXTLOAD followed by an explicit
1107 // zero/sign extend inreg.
1108 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001109 Chain, Ptr, LD->getPointerInfo(), SrcVT,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001110 LD->isVolatile(), LD->isNonTemporal(),
1111 LD->getAlignment());
1112 SDValue ValRes;
1113 if (ExtType == ISD::SEXTLOAD)
1114 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1115 Result.getValueType(),
1116 Result, DAG.getValueType(SrcVT));
1117 else
1118 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001119 Value = ValRes;
1120 Chain = Result.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001121 break;
1122 }
1123 }
1124
1125 // Since loads produce two values, make sure to remember that we legalized
1126 // both of them.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001127 if (Chain.getNode() != Node) {
1128 assert(Value.getNode() != Node && "Load must be completely replaced");
1129 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1130 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001131 ReplacedNode(Node);
1132 }
1133}
1134
Dan Gohman6a109f92011-07-15 21:42:20 +00001135/// LegalizeOp - Return a legal replacement for the given operation, with
1136/// all legal operands.
Dan Gohman65fd6562011-11-03 21:49:52 +00001137void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1138 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1139 return;
Scott Michelfdc40a02009-02-17 22:15:04 +00001140
Eli Friedman1fde9c52009-05-24 02:46:31 +00001141 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001142 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1143 TargetLowering::TypeLegal &&
Eli Friedman1fde9c52009-05-24 02:46:31 +00001144 "Unexpected illegal type!");
1145
1146 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001147 assert((TLI.getTypeAction(*DAG.getContext(),
1148 Node->getOperand(i).getValueType()) ==
1149 TargetLowering::TypeLegal ||
Eli Friedman1fde9c52009-05-24 02:46:31 +00001150 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1151 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001152
Eli Friedman8c377c72009-05-27 01:25:56 +00001153 // Figure out the correct action; the way to query this varies by opcode
Bill Wendling6b9a2932011-01-26 22:21:35 +00001154 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman8c377c72009-05-27 01:25:56 +00001155 bool SimpleFinishLegalizing = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001156 switch (Node->getOpcode()) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001157 case ISD::INTRINSIC_W_CHAIN:
1158 case ISD::INTRINSIC_WO_CHAIN:
1159 case ISD::INTRINSIC_VOID:
Eli Friedman8c377c72009-05-27 01:25:56 +00001160 case ISD::STACKSAVE:
Owen Anderson825b72b2009-08-11 20:47:22 +00001161 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman8c377c72009-05-27 01:25:56 +00001162 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00001163 case ISD::VAARG:
1164 Action = TLI.getOperationAction(Node->getOpcode(),
1165 Node->getValueType(0));
1166 if (Action != TargetLowering::Promote)
1167 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1168 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001169 case ISD::SINT_TO_FP:
1170 case ISD::UINT_TO_FP:
1171 case ISD::EXTRACT_VECTOR_ELT:
1172 Action = TLI.getOperationAction(Node->getOpcode(),
1173 Node->getOperand(0).getValueType());
1174 break;
1175 case ISD::FP_ROUND_INREG:
1176 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00001177 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00001178 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1179 break;
1180 }
Eli Friedman327236c2011-08-24 20:50:09 +00001181 case ISD::ATOMIC_STORE: {
1182 Action = TLI.getOperationAction(Node->getOpcode(),
1183 Node->getOperand(2).getValueType());
1184 break;
1185 }
Eli Friedman3be2e512009-05-28 03:06:16 +00001186 case ISD::SELECT_CC:
1187 case ISD::SETCC:
1188 case ISD::BR_CC: {
1189 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1190 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1191 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001192 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedman3be2e512009-05-28 03:06:16 +00001193 ISD::CondCode CCCode =
1194 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1195 Action = TLI.getCondCodeAction(CCCode, OpVT);
1196 if (Action == TargetLowering::Legal) {
1197 if (Node->getOpcode() == ISD::SELECT_CC)
1198 Action = TLI.getOperationAction(Node->getOpcode(),
1199 Node->getValueType(0));
1200 else
1201 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1202 }
1203 break;
1204 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001205 case ISD::LOAD:
1206 case ISD::STORE:
Eli Friedmanad754602009-05-28 03:56:57 +00001207 // FIXME: Model these properly. LOAD and STORE are complicated, and
1208 // STORE expects the unlegalized operand in some cases.
1209 SimpleFinishLegalizing = false;
1210 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001211 case ISD::CALLSEQ_START:
1212 case ISD::CALLSEQ_END:
Eli Friedmanad754602009-05-28 03:56:57 +00001213 // FIXME: This shouldn't be necessary. These nodes have special properties
1214 // dealing with the recursive nature of legalization. Removing this
1215 // special case should be done as part of making LegalizeDAG non-recursive.
1216 SimpleFinishLegalizing = false;
1217 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001218 case ISD::EXTRACT_ELEMENT:
1219 case ISD::FLT_ROUNDS_:
1220 case ISD::SADDO:
1221 case ISD::SSUBO:
1222 case ISD::UADDO:
1223 case ISD::USUBO:
1224 case ISD::SMULO:
1225 case ISD::UMULO:
1226 case ISD::FPOWI:
1227 case ISD::MERGE_VALUES:
1228 case ISD::EH_RETURN:
1229 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00001230 case ISD::EH_SJLJ_SETJMP:
1231 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001232 // These operations lie about being legal: when they claim to be legal,
1233 // they should actually be expanded.
Eli Friedman8c377c72009-05-27 01:25:56 +00001234 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1235 if (Action == TargetLowering::Legal)
1236 Action = TargetLowering::Expand;
1237 break;
Duncan Sands4a544a72011-09-06 13:37:06 +00001238 case ISD::INIT_TRAMPOLINE:
1239 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman8c377c72009-05-27 01:25:56 +00001240 case ISD::FRAMEADDR:
1241 case ISD::RETURNADDR:
Eli Friedman4bc8c712009-05-27 12:20:41 +00001242 // These operations lie about being legal: when they claim to be legal,
1243 // they should actually be custom-lowered.
1244 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1245 if (Action == TargetLowering::Legal)
1246 Action = TargetLowering::Custom;
Eli Friedman8c377c72009-05-27 01:25:56 +00001247 break;
Shuxin Yang970755e2012-10-19 20:11:16 +00001248 case ISD::DEBUGTRAP:
1249 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1250 if (Action == TargetLowering::Expand) {
1251 // replace ISD::DEBUGTRAP with ISD::TRAP
1252 SDValue NewVal;
Shuxin Yangcfc6cb02012-10-19 23:00:20 +00001253 NewVal = DAG.getNode(ISD::TRAP, Node->getDebugLoc(), Node->getVTList(),
1254 Node->getOperand(0));
Shuxin Yang970755e2012-10-19 20:11:16 +00001255 ReplaceNode(Node, NewVal.getNode());
1256 LegalizeOp(NewVal.getNode());
1257 return;
1258 }
1259 break;
1260
Chris Lattner3e928bb2005-01-07 07:47:09 +00001261 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001262 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001263 Action = TargetLowering::Legal;
1264 } else {
1265 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001266 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001267 break;
1268 }
1269
1270 if (SimpleFinishLegalizing) {
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001271 SDNode *NewNode = Node;
Eli Friedman8c377c72009-05-27 01:25:56 +00001272 switch (Node->getOpcode()) {
1273 default: break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001274 case ISD::SHL:
1275 case ISD::SRL:
1276 case ISD::SRA:
1277 case ISD::ROTL:
1278 case ISD::ROTR:
1279 // Legalizing shifts/rotates requires adjusting the shift amount
1280 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001281 if (!Node->getOperand(1).getValueType().isVector()) {
1282 SDValue SAO =
1283 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1284 Node->getOperand(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00001285 HandleSDNode Handle(SAO);
1286 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001287 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1288 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001289 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001290 break;
Dan Gohmandb8dc2b2009-08-18 23:36:17 +00001291 case ISD::SRL_PARTS:
1292 case ISD::SRA_PARTS:
1293 case ISD::SHL_PARTS:
1294 // Legalizing shifts/rotates requires adjusting the shift amount
1295 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001296 if (!Node->getOperand(2).getValueType().isVector()) {
1297 SDValue SAO =
1298 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1299 Node->getOperand(2));
Dan Gohman65fd6562011-11-03 21:49:52 +00001300 HandleSDNode Handle(SAO);
1301 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001302 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1303 Node->getOperand(1),
1304 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001305 }
Dan Gohman2c9489d2009-08-18 23:52:48 +00001306 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001307 }
1308
Dan Gohman65fd6562011-11-03 21:49:52 +00001309 if (NewNode != Node) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001310 DAG.ReplaceAllUsesWith(Node, NewNode);
Dan Gohman65fd6562011-11-03 21:49:52 +00001311 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1312 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman0e3642a2011-11-11 23:58:27 +00001313 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001314 Node = NewNode;
1315 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001316 switch (Action) {
1317 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +00001318 return;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001319 case TargetLowering::Custom: {
Eli Friedman8c377c72009-05-27 01:25:56 +00001320 // FIXME: The handling for custom lowering with multiple results is
1321 // a complete mess.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001322 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1323 if (Res.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001324 SmallVector<SDValue, 8> ResultVals;
Eli Friedman8c377c72009-05-27 01:25:56 +00001325 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1326 if (e == 1)
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001327 ResultVals.push_back(Res);
Eli Friedman8c377c72009-05-27 01:25:56 +00001328 else
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001329 ResultVals.push_back(Res.getValue(i));
Eli Friedman8c377c72009-05-27 01:25:56 +00001330 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001331 if (Res.getNode() != Node || Res.getResNo() != 0) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001332 DAG.ReplaceAllUsesWith(Node, ResultVals.data());
Dan Gohman65fd6562011-11-03 21:49:52 +00001333 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1334 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001335 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001336 }
1337 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001338 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001339 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001340 // FALL THROUGH
1341 case TargetLowering::Expand:
Dan Gohman65fd6562011-11-03 21:49:52 +00001342 ExpandNode(Node);
1343 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001344 case TargetLowering::Promote:
Dan Gohman65fd6562011-11-03 21:49:52 +00001345 PromoteNode(Node);
1346 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001347 }
1348 }
1349
1350 switch (Node->getOpcode()) {
1351 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001352#ifndef NDEBUG
David Greene993aace2010-01-05 01:24:53 +00001353 dbgs() << "NODE: ";
1354 Node->dump( &DAG);
1355 dbgs() << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001356#endif
Craig Topper5e25ee82012-02-05 08:31:47 +00001357 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001358
Dan Gohman65fd6562011-11-03 21:49:52 +00001359 case ISD::CALLSEQ_START:
Dan Gohman6f3ddef2011-10-29 00:41:52 +00001360 case ISD::CALLSEQ_END:
Dan Gohman65fd6562011-11-03 21:49:52 +00001361 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001362 case ISD::LOAD: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001363 return LegalizeLoadOps(Node);
Chris Lattner01ff7212005-04-10 22:54:25 +00001364 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001365 case ISD::STORE: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001366 return LegalizeStoreOps(Node);
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001367 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001368 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001369}
1370
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001371SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1372 SDValue Vec = Op.getOperand(0);
1373 SDValue Idx = Op.getOperand(1);
1374 DebugLoc dl = Op.getDebugLoc();
1375 // Store the value to a temporary stack slot, then LOAD the returned part.
1376 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Chris Lattner6229d0a2010-09-21 18:41:36 +00001377 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1378 MachinePointerInfo(), false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001379
1380 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001381 unsigned EltSize =
1382 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001383 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1384 DAG.getConstant(EltSize, Idx.getValueType()));
1385
1386 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1387 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1388 else
1389 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1390
1391 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1392
Eli Friedmanc680ac92009-07-09 22:01:03 +00001393 if (Op.getValueType().isVector())
Chris Lattnerecf42c42010-09-21 16:36:31 +00001394 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001395 false, false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00001396 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001397 MachinePointerInfo(),
1398 Vec.getValueType().getVectorElementType(),
1399 false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001400}
1401
David Greenecfe33c42011-01-26 19:13:22 +00001402SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1403 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1404
1405 SDValue Vec = Op.getOperand(0);
1406 SDValue Part = Op.getOperand(1);
1407 SDValue Idx = Op.getOperand(2);
1408 DebugLoc dl = Op.getDebugLoc();
1409
1410 // Store the value to a temporary stack slot, then LOAD the returned part.
1411
1412 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1413 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1414 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1415
1416 // First store the whole vector.
1417 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1418 false, false, 0);
1419
1420 // Then store the inserted part.
1421
1422 // Add the offset to the index.
1423 unsigned EltSize =
1424 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1425
1426 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1427 DAG.getConstant(EltSize, Idx.getValueType()));
1428
1429 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1430 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1431 else
1432 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1433
1434 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1435 StackPtr);
1436
1437 // Store the subvector.
1438 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1439 MachinePointerInfo(), false, false, 0);
1440
1441 // Finally, load the updated vector.
1442 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001443 false, false, false, 0);
David Greenecfe33c42011-01-26 19:13:22 +00001444}
1445
Eli Friedman7ef3d172009-06-06 07:04:42 +00001446SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1447 // We can't handle this case efficiently. Allocate a sufficiently
1448 // aligned object on the stack, store each element into it, then load
1449 // the result as a vector.
1450 // Create the stack frame object.
Owen Andersone50ed302009-08-10 22:56:29 +00001451 EVT VT = Node->getValueType(0);
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001452 EVT EltVT = VT.getVectorElementType();
Eli Friedman7ef3d172009-06-06 07:04:42 +00001453 DebugLoc dl = Node->getDebugLoc();
1454 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Chengff89dcb2009-10-18 18:16:27 +00001455 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattnerecf42c42010-09-21 16:36:31 +00001456 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001457
1458 // Emit a store of each element to the stack slot.
1459 SmallVector<SDValue, 8> Stores;
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001460 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedman7ef3d172009-06-06 07:04:42 +00001461 // Store (in the right endianness) the elements to memory.
1462 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1463 // Ignore undef elements.
1464 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1465
1466 unsigned Offset = TypeByteSize*i;
1467
1468 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1469 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1470
Dan Gohman9949dd62010-02-25 20:30:49 +00001471 // If the destination vector element type is narrower than the source
1472 // element type, only store the bits necessary.
1473 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001474 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001475 Node->getOperand(i), Idx,
1476 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001477 EltVT, false, false, 0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00001478 } else
Jim Grosbach6e992612010-07-02 17:41:59 +00001479 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001480 Node->getOperand(i), Idx,
1481 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001482 false, false, 0));
Eli Friedman7ef3d172009-06-06 07:04:42 +00001483 }
1484
1485 SDValue StoreChain;
1486 if (!Stores.empty()) // Not all undef elements?
Owen Anderson825b72b2009-08-11 20:47:22 +00001487 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedman7ef3d172009-06-06 07:04:42 +00001488 &Stores[0], Stores.size());
1489 else
1490 StoreChain = DAG.getEntryNode();
1491
1492 // Result is a load from the stack slot.
Pete Cooperd752e0f2011-11-08 18:42:53 +00001493 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
1494 false, false, false, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001495}
1496
Eli Friedman4bc8c712009-05-27 12:20:41 +00001497SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
1498 DebugLoc dl = Node->getDebugLoc();
1499 SDValue Tmp1 = Node->getOperand(0);
1500 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands5d54b412010-03-12 11:45:06 +00001501
1502 // Get the sign bit of the RHS. First obtain a value that has the same
1503 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001504 SDValue SignBit;
Duncan Sands5d54b412010-03-12 11:45:06 +00001505 EVT FloatVT = Tmp2.getValueType();
1506 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohman75b10042011-07-15 22:39:09 +00001507 if (TLI.isTypeLegal(IVT)) {
Duncan Sands5d54b412010-03-12 11:45:06 +00001508 // Convert to an integer with the same sign bit.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001509 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001510 } else {
Duncan Sands5d54b412010-03-12 11:45:06 +00001511 // Store the float to memory, then load the sign part out as an integer.
1512 MVT LoadTy = TLI.getPointerTy();
1513 // First create a temporary that is aligned for both the load and store.
1514 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1515 // Then store the float to it.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001516 SDValue Ch =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001517 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00001518 false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001519 if (TLI.isBigEndian()) {
1520 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1521 // Load out a legal integer with the same sign bit as the float.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001522 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001523 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001524 } else { // Little endian
1525 SDValue LoadPtr = StackPtr;
1526 // The float may be wider than the integer we are going to load. Advance
1527 // the pointer so that the loaded integer will contain the sign bit.
1528 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1529 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1530 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(),
1531 LoadPtr, DAG.getIntPtrConstant(ByteOffset));
1532 // Load a legal integer containing the sign bit.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001533 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001534 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001535 // Move the sign bit to the top bit of the loaded integer.
1536 unsigned BitShift = LoadTy.getSizeInBits() -
1537 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1538 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1539 if (BitShift)
1540 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Anderson95771af2011-02-25 21:41:48 +00001541 DAG.getConstant(BitShift,
1542 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands5d54b412010-03-12 11:45:06 +00001543 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00001544 }
Duncan Sands5d54b412010-03-12 11:45:06 +00001545 // Now get the sign bit proper, by seeing whether the value is negative.
1546 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(SignBit.getValueType()),
1547 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1548 ISD::SETLT);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001549 // Get the absolute value of the result.
1550 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1551 // Select between the nabs and abs value based on the sign bit of
1552 // the input.
1553 return DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
1554 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1555 AbsVal);
1556}
1557
Eli Friedman4bc8c712009-05-27 12:20:41 +00001558void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1559 SmallVectorImpl<SDValue> &Results) {
1560 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1561 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1562 " not tell us which reg is the stack pointer!");
1563 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001564 EVT VT = Node->getValueType(0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001565 SDValue Tmp1 = SDValue(Node, 0);
1566 SDValue Tmp2 = SDValue(Node, 1);
1567 SDValue Tmp3 = Node->getOperand(2);
1568 SDValue Chain = Tmp1.getOperand(0);
1569
1570 // Chain the dynamic stack allocation so that it doesn't modify the stack
1571 // pointer when other instructions are using the stack.
1572 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
1573
1574 SDValue Size = Tmp2.getOperand(1);
1575 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1576 Chain = SP.getValue(1);
1577 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001578 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman4bc8c712009-05-27 12:20:41 +00001579 if (Align > StackAlign)
1580 SP = DAG.getNode(ISD::AND, dl, VT, SP,
1581 DAG.getConstant(-(uint64_t)Align, VT));
1582 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
1583 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1584
1585 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1586 DAG.getIntPtrConstant(0, true), SDValue());
1587
1588 Results.push_back(Tmp1);
1589 Results.push_back(Tmp2);
1590}
1591
Evan Cheng7f042682008-10-15 02:05:31 +00001592/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Dan Gohmanf77fc922009-10-17 01:37:38 +00001593/// condition code CC on the current target. This routine expands SETCC with
Evan Cheng7f042682008-10-15 02:05:31 +00001594/// illegal condition code into AND / OR of multiple SETCC values.
Owen Andersone50ed302009-08-10 22:56:29 +00001595void SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng7f042682008-10-15 02:05:31 +00001596 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00001597 SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +00001598 DebugLoc dl) {
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001599 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng7f042682008-10-15 02:05:31 +00001600 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
1601 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001602 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng7f042682008-10-15 02:05:31 +00001603 case TargetLowering::Legal:
1604 // Nothing to do.
1605 break;
1606 case TargetLowering::Expand: {
1607 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
Micah Villmowd6458a02012-10-10 20:50:51 +00001608 ISD::CondCode InvCC = ISD::SETCC_INVALID;
Evan Cheng7f042682008-10-15 02:05:31 +00001609 unsigned Opc = 0;
1610 switch (CCCode) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001611 default: llvm_unreachable("Don't know how to expand this condition!");
Micah Villmowd6458a02012-10-10 20:50:51 +00001612 case ISD::SETO:
1613 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1614 == TargetLowering::Legal
1615 && "If SETO is expanded, SETOEQ must be legal!");
1616 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
1617 case ISD::SETUO:
1618 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1619 == TargetLowering::Legal
1620 && "If SETUO is expanded, SETUNE must be legal!");
1621 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1622 case ISD::SETOEQ:
1623 case ISD::SETOGT:
1624 case ISD::SETOGE:
1625 case ISD::SETOLT:
1626 case ISD::SETOLE:
1627 case ISD::SETONE:
1628 case ISD::SETUEQ:
1629 case ISD::SETUNE:
1630 case ISD::SETUGT:
1631 case ISD::SETUGE:
1632 case ISD::SETULT:
1633 case ISD::SETULE:
1634 // If we are floating point, assign and break, otherwise fall through.
1635 if (!OpVT.isInteger()) {
1636 // We can use the 4th bit to tell if we are the unordered
1637 // or ordered version of the opcode.
1638 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1639 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1640 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1641 break;
1642 }
1643 // Fallthrough if we are unsigned integer.
1644 case ISD::SETLE:
1645 case ISD::SETGT:
1646 case ISD::SETGE:
1647 case ISD::SETLT:
1648 case ISD::SETNE:
1649 case ISD::SETEQ:
1650 InvCC = ISD::getSetCCSwappedOperands(CCCode);
1651 if (TLI.getCondCodeAction(InvCC, OpVT) == TargetLowering::Expand) {
1652 // We only support using the inverted operation and not a
1653 // different manner of supporting expanding these cases.
1654 llvm_unreachable("Don't know how to expand this condition!");
1655 }
1656 LHS = DAG.getSetCC(dl, VT, RHS, LHS, InvCC);
1657 RHS = SDValue();
1658 CC = SDValue();
1659 return;
Evan Cheng7f042682008-10-15 02:05:31 +00001660 }
Micah Villmowd6458a02012-10-10 20:50:51 +00001661
1662 SDValue SetCC1, SetCC2;
1663 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1664 // If we aren't the ordered or unorder operation,
1665 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1666 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1667 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1668 } else {
1669 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1670 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1671 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1672 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001673 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00001674 RHS = SDValue();
1675 CC = SDValue();
1676 break;
1677 }
1678 }
1679}
1680
Chris Lattner1401d152008-01-16 07:45:30 +00001681/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1682/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1683/// a load from the stack slot to DestVT, extending it if needed.
1684/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001685SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Andersone50ed302009-08-10 22:56:29 +00001686 EVT SlotVT,
1687 EVT DestVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00001688 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00001689 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001690 unsigned SrcAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00001691 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson23b9b192009-08-12 00:36:31 +00001692 getTypeForEVT(*DAG.getContext()));
Dan Gohman475871a2008-07-27 21:46:04 +00001693 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001694
Evan Chengff89dcb2009-10-18 18:16:27 +00001695 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1696 int SPFI = StackPtrFI->getIndex();
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001697 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Chengff89dcb2009-10-18 18:16:27 +00001698
Duncan Sands83ec4b62008-06-06 12:08:01 +00001699 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1700 unsigned SlotSize = SlotVT.getSizeInBits();
1701 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001702 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00001703 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelfdc40a02009-02-17 22:15:04 +00001704
Chris Lattner1401d152008-01-16 07:45:30 +00001705 // Emit a store to the stack slot. Use a truncstore if the input value is
1706 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00001707 SDValue Store;
Evan Chengff89dcb2009-10-18 18:16:27 +00001708
Chris Lattner1401d152008-01-16 07:45:30 +00001709 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00001710 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001711 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001712 else {
1713 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00001714 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001715 PtrInfo, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001716 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001717
Chris Lattner35481892005-12-23 00:16:34 +00001718 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00001719 if (SlotSize == DestSize)
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001720 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001721 false, false, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001722
Chris Lattner1401d152008-01-16 07:45:30 +00001723 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastingsa9011292011-02-16 16:23:55 +00001724 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001725 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00001726}
1727
Dan Gohman475871a2008-07-27 21:46:04 +00001728SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00001729 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00001730 // Create a vector sized/aligned stack slot, store the value to element #0,
1731 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00001732 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00001733
Evan Chengff89dcb2009-10-18 18:16:27 +00001734 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1735 int SPFI = StackPtrFI->getIndex();
1736
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001737 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1738 StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001739 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +00001740 Node->getValueType(0).getVectorElementType(),
1741 false, false, 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00001742 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001743 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001744 false, false, false, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001745}
1746
1747
Chris Lattnerce872152006-03-19 06:31:19 +00001748/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00001749/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00001750SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001751 unsigned NumElems = Node->getNumOperands();
Eli Friedman7a5e5552009-06-07 06:52:44 +00001752 SDValue Value1, Value2;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001753 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001754 EVT VT = Node->getValueType(0);
1755 EVT OpVT = Node->getOperand(0).getValueType();
1756 EVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001757
1758 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00001759 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00001760 bool isOnlyLowElement = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001761 bool MoreThanTwoValues = false;
Chris Lattner2eb86532006-03-24 07:29:17 +00001762 bool isConstant = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001763 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001764 SDValue V = Node->getOperand(i);
Eli Friedman7a5e5552009-06-07 06:52:44 +00001765 if (V.getOpcode() == ISD::UNDEF)
1766 continue;
1767 if (i > 0)
Chris Lattnerce872152006-03-19 06:31:19 +00001768 isOnlyLowElement = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001769 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner2eb86532006-03-24 07:29:17 +00001770 isConstant = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001771
1772 if (!Value1.getNode()) {
1773 Value1 = V;
1774 } else if (!Value2.getNode()) {
1775 if (V != Value1)
1776 Value2 = V;
1777 } else if (V != Value1 && V != Value2) {
1778 MoreThanTwoValues = true;
1779 }
Chris Lattnerce872152006-03-19 06:31:19 +00001780 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001781
Eli Friedman7a5e5552009-06-07 06:52:44 +00001782 if (!Value1.getNode())
1783 return DAG.getUNDEF(VT);
1784
1785 if (isOnlyLowElement)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001786 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001787
Chris Lattner2eb86532006-03-24 07:29:17 +00001788 // If all elements are constants, create a load from the constant pool.
1789 if (isConstant) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001790 SmallVector<Constant*, 16> CV;
Chris Lattner2eb86532006-03-24 07:29:17 +00001791 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001792 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00001793 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00001794 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001795 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001796 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen9a645cd2009-11-10 23:16:41 +00001797 if (OpVT==EltVT)
1798 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1799 else {
1800 // If OpVT and EltVT don't match, EltVT is not legal and the
1801 // element values have been promoted/truncated earlier. Undo this;
1802 // we don't want a v16i8 to become a v16i32 for example.
1803 const ConstantInt *CI = V->getConstantIntValue();
1804 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1805 CI->getZExtValue()));
1806 }
Chris Lattner2eb86532006-03-24 07:29:17 +00001807 } else {
1808 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001809 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001810 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner2eb86532006-03-24 07:29:17 +00001811 }
1812 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00001813 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00001814 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00001815 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00001816 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00001817 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001818 false, false, false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00001819 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001820
Eli Friedman7a5e5552009-06-07 06:52:44 +00001821 if (!MoreThanTwoValues) {
1822 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1823 for (unsigned i = 0; i < NumElems; ++i) {
1824 SDValue V = Node->getOperand(i);
1825 if (V.getOpcode() == ISD::UNDEF)
1826 continue;
1827 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1828 }
1829 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00001830 // Get the splatted value into the low element of a vector register.
Eli Friedman7a5e5552009-06-07 06:52:44 +00001831 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1832 SDValue Vec2;
1833 if (Value2.getNode())
1834 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1835 else
1836 Vec2 = DAG.getUNDEF(VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001837
Chris Lattner87100e02006-03-20 01:52:29 +00001838 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Eli Friedman7a5e5552009-06-07 06:52:44 +00001839 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
Evan Cheng033e6812006-03-24 01:17:21 +00001840 }
1841 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001842
Eli Friedman7ef3d172009-06-06 07:04:42 +00001843 // Otherwise, we can't handle this case efficiently.
1844 return ExpandVectorBuildThroughStack(Node);
Chris Lattnerce872152006-03-19 06:31:19 +00001845}
1846
Chris Lattner77e77a62005-01-21 06:05:23 +00001847// ExpandLibCall - Expand a node into a call to a libcall. If the result value
1848// does not fit into a register, return the lo part and set the hi part to the
1849// by-reg argument. If it does fit into a single register, return the result
1850// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00001851SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedman47b41f72009-05-27 02:21:29 +00001852 bool isSigned) {
Chris Lattner77e77a62005-01-21 06:05:23 +00001853 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00001854 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00001855 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00001856 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001857 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelfdc40a02009-02-17 22:15:04 +00001858 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00001859 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00001860 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00001861 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00001862 }
Bill Wendling056292f2008-09-16 21:48:12 +00001863 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00001864 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001865
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001866 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Cheng3d2125c2010-11-30 23:55:39 +00001867
Evan Chengbf010eb2012-04-10 01:51:00 +00001868 // By default, the input chain to this libcall is the entry node of the
1869 // function. If the libcall is going to be emitted as a tail call then
1870 // TLI.isUsedByReturnOnly will change it to the right chain if the return
1871 // node which is being folded has a non-entry input chain.
1872 SDValue InChain = DAG.getEntryNode();
1873
Evan Cheng3d2125c2010-11-30 23:55:39 +00001874 // isTailCall may be true since the callee does not reference caller stack
1875 // frame. Check if it's in the right position.
Evan Chengb52ba492012-04-10 03:15:18 +00001876 SDValue TCChain = InChain;
Tim Northover2c8cf4b2013-01-09 13:18:15 +00001877 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Chengb52ba492012-04-10 03:15:18 +00001878 if (isTailCall)
1879 InChain = TCChain;
1880
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001881 TargetLowering::
1882 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001883 0, TLI.getLibcallCallingConv(LC), isTailCall,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001884 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Bill Wendling46ada192010-03-02 01:55:18 +00001885 Callee, Args, DAG, Node->getDebugLoc());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001886 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
1887
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00001888
Evan Cheng3d2125c2010-11-30 23:55:39 +00001889 if (!CallInfo.second.getNode())
1890 // It's a tailcall, return the chain (which is the DAG root).
1891 return DAG.getRoot();
1892
Eli Friedman74807f22009-05-26 08:55:52 +00001893 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00001894}
1895
Dan Gohmanf316eb72011-05-16 22:09:53 +00001896/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001897/// and returning a result of type RetVT.
1898SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1899 const SDValue *Ops, unsigned NumOps,
1900 bool isSigned, DebugLoc dl) {
1901 TargetLowering::ArgListTy Args;
1902 Args.reserve(NumOps);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001903
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001904 TargetLowering::ArgListEntry Entry;
1905 for (unsigned i = 0; i != NumOps; ++i) {
1906 Entry.Node = Ops[i];
1907 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1908 Entry.isSExt = isSigned;
1909 Entry.isZExt = !isSigned;
1910 Args.push_back(Entry);
1911 }
1912 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1913 TLI.getPointerTy());
Dan Gohmanf316eb72011-05-16 22:09:53 +00001914
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001915 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001916 TargetLowering::
1917 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1918 false, 0, TLI.getLibcallCallingConv(LC),
1919 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001920 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001921 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001922 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001923
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001924 return CallInfo.first;
1925}
1926
Jim Grosbache03262f2010-06-18 21:43:38 +00001927// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1928// ExpandLibCall except that the first operand is the in-chain.
1929std::pair<SDValue, SDValue>
1930SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1931 SDNode *Node,
1932 bool isSigned) {
Jim Grosbache03262f2010-06-18 21:43:38 +00001933 SDValue InChain = Node->getOperand(0);
1934
1935 TargetLowering::ArgListTy Args;
1936 TargetLowering::ArgListEntry Entry;
1937 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1938 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001939 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001940 Entry.Node = Node->getOperand(i);
1941 Entry.Ty = ArgTy;
1942 Entry.isSExt = isSigned;
1943 Entry.isZExt = !isSigned;
1944 Args.push_back(Entry);
1945 }
1946 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1947 TLI.getPointerTy());
1948
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001949 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001950 TargetLowering::
1951 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001952 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001953 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbache03262f2010-06-18 21:43:38 +00001954 Callee, Args, DAG, Node->getDebugLoc());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001955 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbache03262f2010-06-18 21:43:38 +00001956
Jim Grosbache03262f2010-06-18 21:43:38 +00001957 return CallInfo;
1958}
1959
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001960SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
1961 RTLIB::Libcall Call_F32,
1962 RTLIB::Libcall Call_F64,
1963 RTLIB::Libcall Call_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00001964 RTLIB::Libcall Call_F128,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001965 RTLIB::Libcall Call_PPCF128) {
1966 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001967 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001968 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001969 case MVT::f32: LC = Call_F32; break;
1970 case MVT::f64: LC = Call_F64; break;
1971 case MVT::f80: LC = Call_F80; break;
Tim Northover24d315d2013-01-08 17:09:59 +00001972 case MVT::f128: LC = Call_F128; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001973 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001974 }
1975 return ExpandLibCall(LC, Node, false);
1976}
1977
1978SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001979 RTLIB::Libcall Call_I8,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001980 RTLIB::Libcall Call_I16,
1981 RTLIB::Libcall Call_I32,
1982 RTLIB::Libcall Call_I64,
1983 RTLIB::Libcall Call_I128) {
1984 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001985 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001986 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001987 case MVT::i8: LC = Call_I8; break;
1988 case MVT::i16: LC = Call_I16; break;
1989 case MVT::i32: LC = Call_I32; break;
1990 case MVT::i64: LC = Call_I64; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001991 case MVT::i128: LC = Call_I128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001992 }
1993 return ExpandLibCall(LC, Node, isSigned);
1994}
1995
Evan Cheng65279cb2011-04-16 03:08:26 +00001996/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
1997static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
1998 const TargetLowering &TLI) {
Evan Cheng8e23e812011-04-01 00:42:02 +00001999 RTLIB::Libcall LC;
2000 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002001 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng8e23e812011-04-01 00:42:02 +00002002 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2003 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2004 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2005 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2006 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2007 }
2008
Evan Cheng65279cb2011-04-16 03:08:26 +00002009 return TLI.getLibcallName(LC) != 0;
2010}
Evan Cheng8e23e812011-04-01 00:42:02 +00002011
Evan Cheng8ef09682012-06-21 05:56:05 +00002012/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Cheng65279cb2011-04-16 03:08:26 +00002013/// needed.
Evan Cheng8ef09682012-06-21 05:56:05 +00002014static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2015 // The other use might have been replaced with a divrem already.
2016 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Cheng8e23e812011-04-01 00:42:02 +00002017 unsigned OtherOpcode = 0;
Evan Cheng65279cb2011-04-16 03:08:26 +00002018 if (isSigned)
Evan Cheng8e23e812011-04-01 00:42:02 +00002019 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002020 else
Evan Cheng8e23e812011-04-01 00:42:02 +00002021 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002022
Evan Cheng8e23e812011-04-01 00:42:02 +00002023 SDValue Op0 = Node->getOperand(0);
2024 SDValue Op1 = Node->getOperand(1);
2025 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2026 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2027 SDNode *User = *UI;
2028 if (User == Node)
2029 continue;
Evan Cheng8ef09682012-06-21 05:56:05 +00002030 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Cheng8e23e812011-04-01 00:42:02 +00002031 User->getOperand(0) == Op0 &&
Evan Cheng65279cb2011-04-16 03:08:26 +00002032 User->getOperand(1) == Op1)
2033 return true;
Evan Cheng8e23e812011-04-01 00:42:02 +00002034 }
Evan Cheng65279cb2011-04-16 03:08:26 +00002035 return false;
2036}
Evan Cheng8e23e812011-04-01 00:42:02 +00002037
Evan Cheng65279cb2011-04-16 03:08:26 +00002038/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2039/// pairs.
2040void
2041SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2042 SmallVectorImpl<SDValue> &Results) {
2043 unsigned Opcode = Node->getOpcode();
2044 bool isSigned = Opcode == ISD::SDIVREM;
2045
2046 RTLIB::Libcall LC;
2047 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002048 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng65279cb2011-04-16 03:08:26 +00002049 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2050 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2051 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2052 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2053 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Cheng8e23e812011-04-01 00:42:02 +00002054 }
2055
2056 // The input chain to this libcall is the entry node of the function.
2057 // Legalizing the call will automatically add the previous call to the
2058 // dependence.
2059 SDValue InChain = DAG.getEntryNode();
2060
2061 EVT RetVT = Node->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002062 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002063
2064 TargetLowering::ArgListTy Args;
2065 TargetLowering::ArgListEntry Entry;
2066 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2067 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002068 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002069 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2070 Entry.isSExt = isSigned;
2071 Entry.isZExt = !isSigned;
2072 Args.push_back(Entry);
2073 }
2074
2075 // Also pass the return address of the remainder.
2076 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2077 Entry.Node = FIPtr;
Micah Villmowb8bce922012-10-24 17:25:11 +00002078 Entry.Ty = RetTy->getPointerTo();
Evan Cheng8e23e812011-04-01 00:42:02 +00002079 Entry.isSExt = isSigned;
2080 Entry.isZExt = !isSigned;
2081 Args.push_back(Entry);
2082
2083 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2084 TLI.getPointerTy());
2085
Evan Cheng8e23e812011-04-01 00:42:02 +00002086 DebugLoc dl = Node->getDebugLoc();
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002087 TargetLowering::
2088 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng8e23e812011-04-01 00:42:02 +00002089 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002090 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2091 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002092 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Cheng8e23e812011-04-01 00:42:02 +00002093
Evan Cheng8e23e812011-04-01 00:42:02 +00002094 // Remainder is loaded back from the stack frame.
Dan Gohman65fd6562011-11-03 21:49:52 +00002095 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002096 MachinePointerInfo(), false, false, false, 0);
Evan Cheng65279cb2011-04-16 03:08:26 +00002097 Results.push_back(CallInfo.first);
2098 Results.push_back(Rem);
Evan Cheng8e23e812011-04-01 00:42:02 +00002099}
2100
Evan Cheng8688a582013-01-29 02:32:37 +00002101/// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2102static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2103 RTLIB::Libcall LC;
2104 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
2105 default: llvm_unreachable("Unexpected request for libcall!");
2106 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2107 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2108 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2109 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2110 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2111 }
2112 return TLI.getLibcallName(LC) != 0;
2113}
2114
Paul Redmond86cdbc92013-02-15 18:45:18 +00002115/// canCombineSinCosLibcall - Return true if sincos libcall is available and
2116/// can be used to combine sin and cos.
2117static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2118 const TargetMachine &TM) {
2119 if (!isSinCosLibcallAvailable(Node, TLI))
2120 return false;
2121 // GNU sin/cos functions set errno while sincos does not. Therefore
2122 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2123 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2124 if (isGNU && !TM.Options.UnsafeFPMath)
2125 return false;
2126 return true;
2127}
2128
Evan Cheng8688a582013-01-29 02:32:37 +00002129/// useSinCos - Only issue sincos libcall if both sin and cos are
2130/// needed.
2131static bool useSinCos(SDNode *Node) {
2132 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2133 ? ISD::FCOS : ISD::FSIN;
2134
2135 SDValue Op0 = Node->getOperand(0);
2136 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2137 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2138 SDNode *User = *UI;
2139 if (User == Node)
2140 continue;
2141 // The other user might have been turned into sincos already.
2142 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2143 return true;
2144 }
2145 return false;
2146}
2147
2148/// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2149/// pairs.
2150void
2151SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2152 SmallVectorImpl<SDValue> &Results) {
2153 RTLIB::Libcall LC;
2154 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
2155 default: llvm_unreachable("Unexpected request for libcall!");
2156 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2157 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2158 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2159 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2160 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2161 }
2162
2163 // The input chain to this libcall is the entry node of the function.
2164 // Legalizing the call will automatically add the previous call to the
2165 // dependence.
2166 SDValue InChain = DAG.getEntryNode();
2167
2168 EVT RetVT = Node->getValueType(0);
2169 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
2170
2171 TargetLowering::ArgListTy Args;
2172 TargetLowering::ArgListEntry Entry;
2173
2174 // Pass the argument.
2175 Entry.Node = Node->getOperand(0);
2176 Entry.Ty = RetTy;
2177 Entry.isSExt = false;
2178 Entry.isZExt = false;
2179 Args.push_back(Entry);
2180
2181 // Pass the return address of sin.
2182 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2183 Entry.Node = SinPtr;
2184 Entry.Ty = RetTy->getPointerTo();
2185 Entry.isSExt = false;
2186 Entry.isZExt = false;
2187 Args.push_back(Entry);
2188
2189 // Also pass the return address of the cos.
2190 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2191 Entry.Node = CosPtr;
2192 Entry.Ty = RetTy->getPointerTo();
2193 Entry.isSExt = false;
2194 Entry.isZExt = false;
2195 Args.push_back(Entry);
2196
2197 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2198 TLI.getPointerTy());
2199
2200 DebugLoc dl = Node->getDebugLoc();
2201 TargetLowering::
2202 CallLoweringInfo CLI(InChain, Type::getVoidTy(*DAG.getContext()),
2203 false, false, false, false,
2204 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
2205 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2206 Callee, Args, DAG, dl);
2207 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2208
2209 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2210 MachinePointerInfo(), false, false, false, 0));
2211 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2212 MachinePointerInfo(), false, false, false, 0));
2213}
2214
Chris Lattner22cde6a2006-01-28 08:25:58 +00002215/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2216/// INT_TO_FP operation of the specified operand when the target requests that
2217/// we expand it. At this point, we know that the result and operand types are
2218/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00002219SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2220 SDValue Op0,
Owen Andersone50ed302009-08-10 22:56:29 +00002221 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002222 DebugLoc dl) {
Akira Hatanaka1d522382012-08-28 02:12:42 +00002223 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002224 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00002225
Chris Lattner23594d42008-01-16 07:03:22 +00002226 // Get the stack frame index of a 8 byte buffer.
Owen Anderson825b72b2009-08-11 20:47:22 +00002227 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00002228
Chris Lattner22cde6a2006-01-28 08:25:58 +00002229 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00002230 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00002231 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00002232 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00002233 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002234 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00002235 if (TLI.isLittleEndian())
2236 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00002237
Chris Lattner22cde6a2006-01-28 08:25:58 +00002238 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00002239 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002240 if (isSigned) {
2241 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson825b72b2009-08-11 20:47:22 +00002242 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2243 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002244 } else {
2245 Op0Mapped = Op0;
2246 }
2247 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00002248 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00002249 Op0Mapped, Lo, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002250 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002251 // initial hi portion of constructed double
Owen Anderson825b72b2009-08-11 20:47:22 +00002252 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002253 // store the hi of the constructed double - biased exponent
Chris Lattner6229d0a2010-09-21 18:41:36 +00002254 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2255 MachinePointerInfo(),
2256 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002257 // load the constructed double
Chris Lattnerecf42c42010-09-21 16:36:31 +00002258 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002259 MachinePointerInfo(), false, false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002260 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00002261 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002262 BitsToDouble(0x4330000080000000ULL) :
2263 BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00002264 MVT::f64);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002265 // subtract the bias
Owen Anderson825b72b2009-08-11 20:47:22 +00002266 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002267 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00002268 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002269 // handle final rounding
Owen Anderson825b72b2009-08-11 20:47:22 +00002270 if (DestVT == MVT::f64) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002271 // do nothing
2272 Result = Sub;
Owen Anderson825b72b2009-08-11 20:47:22 +00002273 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002274 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00002275 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002276 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002277 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002278 }
2279 return Result;
2280 }
2281 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002282 // Code below here assumes !isSigned without checking again.
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002283
2284 // Implementation of unsigned i64 to f64 following the algorithm in
2285 // __floatundidf in compiler_rt. This implementation has the advantage
2286 // of performing rounding correctly, both in the default rounding mode
2287 // and in all alternate rounding modes.
2288 // TODO: Generalize this for use with other types.
2289 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2290 SDValue TwoP52 =
2291 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2292 SDValue TwoP84PlusTwoP52 =
2293 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2294 SDValue TwoP84 =
2295 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2296
2297 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2298 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2299 DAG.getConstant(32, MVT::i64));
2300 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2301 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002302 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2303 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach6e992612010-07-02 17:41:59 +00002304 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2305 TwoP84PlusTwoP52);
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002306 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2307 }
2308
Owen Anderson3a9e7692010-10-05 17:24:05 +00002309 // Implementation of unsigned i64 to f32.
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002310 // TODO: Generalize this for use with other types.
2311 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Anderson3a9e7692010-10-05 17:24:05 +00002312 // For unsigned conversions, convert them to signed conversions using the
2313 // algorithm from the x86_64 __floatundidf in compiler_rt.
2314 if (!isSigned) {
2315 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002316
Owen Anderson95771af2011-02-25 21:41:48 +00002317 SDValue ShiftConst =
2318 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Anderson3a9e7692010-10-05 17:24:05 +00002319 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2320 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2321 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2322 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002323
Owen Anderson3a9e7692010-10-05 17:24:05 +00002324 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2325 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002326
Owen Anderson3a9e7692010-10-05 17:24:05 +00002327 // TODO: This really should be implemented using a branch rather than a
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002328 // select. We happen to get lucky and machinesink does the right
2329 // thing most of the time. This would be a good candidate for a
Owen Anderson3a9e7692010-10-05 17:24:05 +00002330 //pseudo-op, or, even better, for whole-function isel.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002331 SDValue SignBitTest = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002332 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
2333 return DAG.getNode(ISD::SELECT, dl, MVT::f32, SignBitTest, Slow, Fast);
2334 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002335
Owen Anderson3a9e7692010-10-05 17:24:05 +00002336 // Otherwise, implement the fully general conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002337
Jim Grosbach6e992612010-07-02 17:41:59 +00002338 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002339 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2340 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2341 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach6e992612010-07-02 17:41:59 +00002342 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002343 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
2344 SDValue Ne = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2345 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
2346 SDValue Sel = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ne, Or, Op0);
2347 SDValue Ge = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2348 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002349 ISD::SETUGE);
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002350 SDValue Sel2 = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ge, Sel, Op0);
Owen Anderson95771af2011-02-25 21:41:48 +00002351 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002352
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002353 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2354 DAG.getConstant(32, SHVT));
2355 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2356 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2357 SDValue TwoP32 =
2358 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2359 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2360 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2361 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2362 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2363 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2364 DAG.getIntPtrConstant(0));
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002365 }
2366
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002367 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002368
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002369 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
2370 Op0, DAG.getConstant(0, Op0.getValueType()),
2371 ISD::SETLT);
2372 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
2373 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
2374 SignSet, Four, Zero);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002375
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002376 // If the sign bit of the integer is set, the large number will be treated
2377 // as a negative number. To counteract this, the dynamic code adds an
2378 // offset depending on the data type.
2379 uint64_t FF;
2380 switch (Op0.getValueType().getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002381 default: llvm_unreachable("Unsupported integer type!");
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002382 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2383 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2384 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2385 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2386 }
2387 if (TLI.isLittleEndian()) FF <<= 32;
2388 Constant *FudgeFactor = ConstantInt::get(
2389 Type::getInt64Ty(*DAG.getContext()), FF);
2390
2391 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2392 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
2393 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
2394 Alignment = std::min(Alignment, 4u);
2395 SDValue FudgeInReg;
2396 if (DestVT == MVT::f32)
2397 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00002398 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002399 false, false, false, Alignment);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002400 else {
Dan Gohman65fd6562011-11-03 21:49:52 +00002401 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2402 DAG.getEntryNode(), CPIdx,
2403 MachinePointerInfo::getConstantPool(),
2404 MVT::f32, false, false, Alignment);
2405 HandleSDNode Handle(Load);
2406 LegalizeOp(Load.getNode());
2407 FudgeInReg = Handle.getValue();
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002408 }
2409
2410 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002411}
2412
2413/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2414/// *INT_TO_FP operation of the specified operand when the target requests that
2415/// we promote it. At this point, we know that the result and operand types are
2416/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2417/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00002418SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002419 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002420 bool isSigned,
2421 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002422 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002423 EVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002424
2425 unsigned OpToUse = 0;
2426
2427 // Scan for the appropriate larger type to use.
2428 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002429 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002430 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002431
2432 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002433 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2434 OpToUse = ISD::SINT_TO_FP;
2435 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002436 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002437 if (isSigned) continue;
2438
2439 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002440 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2441 OpToUse = ISD::UINT_TO_FP;
2442 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002443 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002444
2445 // Otherwise, try a larger type.
2446 }
2447
2448 // Okay, we found the operation and type to use. Zero extend our input to the
2449 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00002450 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00002451 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00002452 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002453}
2454
2455/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2456/// FP_TO_*INT operation of the specified operand when the target requests that
2457/// we promote it. At this point, we know that the result and operand types are
2458/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2459/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00002460SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002461 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002462 bool isSigned,
2463 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002464 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002465 EVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002466
2467 unsigned OpToUse = 0;
2468
2469 // Scan for the appropriate larger type to use.
2470 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002471 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002472 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002473
Eli Friedman3be2e512009-05-28 03:06:16 +00002474 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002475 OpToUse = ISD::FP_TO_SINT;
2476 break;
2477 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002478
Eli Friedman3be2e512009-05-28 03:06:16 +00002479 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002480 OpToUse = ISD::FP_TO_UINT;
2481 break;
2482 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002483
2484 // Otherwise, try a larger type.
2485 }
2486
Scott Michelfdc40a02009-02-17 22:15:04 +00002487
Chris Lattner27a6c732007-11-24 07:07:01 +00002488 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00002489 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00002490
Chris Lattner27a6c732007-11-24 07:07:01 +00002491 // Truncate the result of the extended FP_TO_*INT operation to the desired
2492 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00002493 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002494}
2495
2496/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2497///
Dale Johannesen8a782a22009-02-02 22:12:50 +00002498SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002499 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002500 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00002501 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson825b72b2009-08-11 20:47:22 +00002502 switch (VT.getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002503 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002504 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002505 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2506 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2507 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002508 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002509 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2510 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2511 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2512 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2513 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2514 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2515 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2516 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2517 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002518 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002519 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2520 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2521 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2522 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2523 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2524 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2525 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2526 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2527 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2528 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2529 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2530 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2531 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2532 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2533 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2534 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2535 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2536 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2537 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2538 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2539 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002540 }
2541}
2542
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002543/// SplatByte - Distribute ByteVal over NumBits bits.
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002544// FIXME: Move this helper to a common place.
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002545static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
2546 APInt Val = APInt(NumBits, ByteVal);
2547 unsigned Shift = 8;
2548 for (unsigned i = NumBits; i > 8; i >>= 1) {
2549 Val = (Val << Shift) | Val;
2550 Shift <<= 1;
2551 }
2552 return Val;
2553}
2554
Chris Lattner22cde6a2006-01-28 08:25:58 +00002555/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2556///
Scott Michelfdc40a02009-02-17 22:15:04 +00002557SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00002558 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002559 switch (Opc) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002560 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002561 case ISD::CTPOP: {
Owen Andersone50ed302009-08-10 22:56:29 +00002562 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002563 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002564 unsigned Len = VT.getSizeInBits();
2565
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002566 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2567 "CTPOP not implemented for this type.");
2568
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002569 // This is the "best" algorithm from
2570 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2571
2572 SDValue Mask55 = DAG.getConstant(SplatByte(Len, 0x55), VT);
2573 SDValue Mask33 = DAG.getConstant(SplatByte(Len, 0x33), VT);
2574 SDValue Mask0F = DAG.getConstant(SplatByte(Len, 0x0F), VT);
2575 SDValue Mask01 = DAG.getConstant(SplatByte(Len, 0x01), VT);
2576
2577 // v = v - ((v >> 1) & 0x55555555...)
2578 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2579 DAG.getNode(ISD::AND, dl, VT,
2580 DAG.getNode(ISD::SRL, dl, VT, Op,
2581 DAG.getConstant(1, ShVT)),
2582 Mask55));
2583 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2584 Op = DAG.getNode(ISD::ADD, dl, VT,
2585 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2586 DAG.getNode(ISD::AND, dl, VT,
2587 DAG.getNode(ISD::SRL, dl, VT, Op,
2588 DAG.getConstant(2, ShVT)),
2589 Mask33));
2590 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2591 Op = DAG.getNode(ISD::AND, dl, VT,
2592 DAG.getNode(ISD::ADD, dl, VT, Op,
2593 DAG.getNode(ISD::SRL, dl, VT, Op,
2594 DAG.getConstant(4, ShVT))),
2595 Mask0F);
2596 // v = (v * 0x01010101...) >> (Len - 8)
2597 Op = DAG.getNode(ISD::SRL, dl, VT,
2598 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2599 DAG.getConstant(Len - 8, ShVT));
Owen Anderson95771af2011-02-25 21:41:48 +00002600
Chris Lattner22cde6a2006-01-28 08:25:58 +00002601 return Op;
2602 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002603 case ISD::CTLZ_ZERO_UNDEF:
2604 // This trivially expands to CTLZ.
2605 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002606 case ISD::CTLZ: {
2607 // for now, we do this:
2608 // x = x | (x >> 1);
2609 // x = x | (x >> 2);
2610 // ...
2611 // x = x | (x >>16);
2612 // x = x | (x >>32); // for 64-bit input
2613 // return popcount(~x);
2614 //
2615 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002616 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002617 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002618 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002619 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002620 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002621 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00002622 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002623 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00002624 Op = DAG.getNOT(dl, Op, VT);
2625 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002626 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002627 case ISD::CTTZ_ZERO_UNDEF:
2628 // This trivially expands to CTTZ.
2629 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002630 case ISD::CTTZ: {
2631 // for now, we use: { return popcount(~x & (x - 1)); }
2632 // unless the target has ctlz but not ctpop, in which case we use:
2633 // { return 32 - nlz(~x & (x-1)); }
2634 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002635 EVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00002636 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2637 DAG.getNOT(dl, Op, VT),
2638 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00002639 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002640 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002641 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2642 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00002643 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002644 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00002645 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2646 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002647 }
2648 }
2649}
Chris Lattnere34b3962005-01-19 04:19:40 +00002650
Jim Grosbache03262f2010-06-18 21:43:38 +00002651std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2652 unsigned Opc = Node->getOpcode();
2653 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2654 RTLIB::Libcall LC;
2655
2656 switch (Opc) {
2657 default:
2658 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002659 case ISD::ATOMIC_SWAP:
2660 switch (VT.SimpleTy) {
2661 default: llvm_unreachable("Unexpected value type for atomic!");
2662 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2663 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2664 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2665 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
2666 }
2667 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002668 case ISD::ATOMIC_CMP_SWAP:
2669 switch (VT.SimpleTy) {
2670 default: llvm_unreachable("Unexpected value type for atomic!");
2671 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2672 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2673 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2674 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
2675 }
2676 break;
2677 case ISD::ATOMIC_LOAD_ADD:
2678 switch (VT.SimpleTy) {
2679 default: llvm_unreachable("Unexpected value type for atomic!");
2680 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2681 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2682 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2683 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
2684 }
2685 break;
2686 case ISD::ATOMIC_LOAD_SUB:
2687 switch (VT.SimpleTy) {
2688 default: llvm_unreachable("Unexpected value type for atomic!");
2689 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2690 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2691 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2692 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
2693 }
2694 break;
2695 case ISD::ATOMIC_LOAD_AND:
2696 switch (VT.SimpleTy) {
2697 default: llvm_unreachable("Unexpected value type for atomic!");
2698 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2699 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2700 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2701 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
2702 }
2703 break;
2704 case ISD::ATOMIC_LOAD_OR:
2705 switch (VT.SimpleTy) {
2706 default: llvm_unreachable("Unexpected value type for atomic!");
2707 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2708 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2709 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2710 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
2711 }
2712 break;
2713 case ISD::ATOMIC_LOAD_XOR:
2714 switch (VT.SimpleTy) {
2715 default: llvm_unreachable("Unexpected value type for atomic!");
2716 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2717 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2718 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2719 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
2720 }
2721 break;
2722 case ISD::ATOMIC_LOAD_NAND:
2723 switch (VT.SimpleTy) {
2724 default: llvm_unreachable("Unexpected value type for atomic!");
2725 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2726 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2727 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2728 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
2729 }
2730 break;
2731 }
2732
2733 return ExpandChainLibCall(LC, Node, false);
2734}
2735
Dan Gohman65fd6562011-11-03 21:49:52 +00002736void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2737 SmallVector<SDValue, 8> Results;
Eli Friedman8c377c72009-05-27 01:25:56 +00002738 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanbbdd9032009-05-28 20:40:34 +00002739 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Eli Friedman8c377c72009-05-27 01:25:56 +00002740 switch (Node->getOpcode()) {
2741 case ISD::CTPOP:
2742 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002743 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002744 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002745 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002746 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2747 Results.push_back(Tmp1);
2748 break;
2749 case ISD::BSWAP:
Bill Wendling775db972009-12-23 00:28:23 +00002750 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman8c377c72009-05-27 01:25:56 +00002751 break;
2752 case ISD::FRAMEADDR:
2753 case ISD::RETURNADDR:
2754 case ISD::FRAME_TO_ARGS_OFFSET:
2755 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2756 break;
2757 case ISD::FLT_ROUNDS_:
2758 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2759 break;
2760 case ISD::EH_RETURN:
Eli Friedman8c377c72009-05-27 01:25:56 +00002761 case ISD::EH_LABEL:
2762 case ISD::PREFETCH:
Eli Friedman8c377c72009-05-27 01:25:56 +00002763 case ISD::VAEND:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002764 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002765 // If the target didn't expand these, there's nothing to do, so just
2766 // preserve the chain and be done.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002767 Results.push_back(Node->getOperand(0));
2768 break;
2769 case ISD::EH_SJLJ_SETJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002770 // If the target didn't expand this, just return 'zero' and preserve the
2771 // chain.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002772 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman8c377c72009-05-27 01:25:56 +00002773 Results.push_back(Node->getOperand(0));
2774 break;
Eli Friedman14648462011-07-27 22:21:52 +00002775 case ISD::ATOMIC_FENCE:
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002776 case ISD::MEMBARRIER: {
2777 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman14648462011-07-27 22:21:52 +00002778 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002779 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002780 TargetLowering::
2781 CallLoweringInfo CLI(Node->getOperand(0),
2782 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002783 false, false, false, false, 0, CallingConv::C,
2784 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002785 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002786 DAG.getExternalSymbol("__sync_synchronize",
2787 TLI.getPointerTy()),
2788 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002789 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2790
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002791 Results.push_back(CallResult.second);
2792 break;
2793 }
Eli Friedman069e2ed2011-08-26 02:59:24 +00002794 case ISD::ATOMIC_LOAD: {
2795 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedman331120b2011-09-15 21:20:49 +00002796 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman069e2ed2011-08-26 02:59:24 +00002797 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2798 cast<AtomicSDNode>(Node)->getMemoryVT(),
2799 Node->getOperand(0),
2800 Node->getOperand(1), Zero, Zero,
2801 cast<AtomicSDNode>(Node)->getMemOperand(),
2802 cast<AtomicSDNode>(Node)->getOrdering(),
2803 cast<AtomicSDNode>(Node)->getSynchScope());
2804 Results.push_back(Swap.getValue(0));
2805 Results.push_back(Swap.getValue(1));
2806 break;
2807 }
2808 case ISD::ATOMIC_STORE: {
2809 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2810 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2811 cast<AtomicSDNode>(Node)->getMemoryVT(),
2812 Node->getOperand(0),
2813 Node->getOperand(1), Node->getOperand(2),
2814 cast<AtomicSDNode>(Node)->getMemOperand(),
2815 cast<AtomicSDNode>(Node)->getOrdering(),
2816 cast<AtomicSDNode>(Node)->getSynchScope());
2817 Results.push_back(Swap.getValue(1));
2818 break;
2819 }
Jim Grosbachb56ce812010-06-17 17:50:54 +00002820 // By default, atomic intrinsics are marked Legal and lowered. Targets
2821 // which don't support them directly, however, may want libcalls, in which
2822 // case they mark them Expand, and we get here.
Jim Grosbachb56ce812010-06-17 17:50:54 +00002823 case ISD::ATOMIC_SWAP:
2824 case ISD::ATOMIC_LOAD_ADD:
2825 case ISD::ATOMIC_LOAD_SUB:
2826 case ISD::ATOMIC_LOAD_AND:
2827 case ISD::ATOMIC_LOAD_OR:
2828 case ISD::ATOMIC_LOAD_XOR:
2829 case ISD::ATOMIC_LOAD_NAND:
2830 case ISD::ATOMIC_LOAD_MIN:
2831 case ISD::ATOMIC_LOAD_MAX:
2832 case ISD::ATOMIC_LOAD_UMIN:
2833 case ISD::ATOMIC_LOAD_UMAX:
Evan Chenga8457062010-06-18 22:01:37 +00002834 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbache03262f2010-06-18 21:43:38 +00002835 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2836 Results.push_back(Tmp.first);
2837 Results.push_back(Tmp.second);
Jim Grosbach59c38f32010-06-17 17:58:54 +00002838 break;
Evan Chenga8457062010-06-18 22:01:37 +00002839 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00002840 case ISD::DYNAMIC_STACKALLOC:
2841 ExpandDYNAMIC_STACKALLOC(Node, Results);
2842 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00002843 case ISD::MERGE_VALUES:
2844 for (unsigned i = 0; i < Node->getNumValues(); i++)
2845 Results.push_back(Node->getOperand(i));
2846 break;
2847 case ISD::UNDEF: {
Owen Andersone50ed302009-08-10 22:56:29 +00002848 EVT VT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00002849 if (VT.isInteger())
2850 Results.push_back(DAG.getConstant(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002851 else {
2852 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman8c377c72009-05-27 01:25:56 +00002853 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002854 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002855 break;
2856 }
2857 case ISD::TRAP: {
2858 // If this operation is not supported, lower it to 'abort()' call
2859 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002860 TargetLowering::
2861 CallLoweringInfo CLI(Node->getOperand(0),
2862 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002863 false, false, false, false, 0, CallingConv::C,
2864 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002865 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eli Friedman8c377c72009-05-27 01:25:56 +00002866 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00002867 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002868 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2869
Eli Friedman8c377c72009-05-27 01:25:56 +00002870 Results.push_back(CallResult.second);
2871 break;
2872 }
2873 case ISD::FP_ROUND:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002874 case ISD::BITCAST:
Eli Friedman8c377c72009-05-27 01:25:56 +00002875 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2876 Node->getValueType(0), dl);
2877 Results.push_back(Tmp1);
2878 break;
2879 case ISD::FP_EXTEND:
2880 Tmp1 = EmitStackConvert(Node->getOperand(0),
2881 Node->getOperand(0).getValueType(),
2882 Node->getValueType(0), dl);
2883 Results.push_back(Tmp1);
2884 break;
2885 case ISD::SIGN_EXTEND_INREG: {
2886 // NOTE: we could fall back on load/store here too for targets without
2887 // SAR. However, it is doubtful that any exist.
Owen Andersone50ed302009-08-10 22:56:29 +00002888 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00002889 EVT VT = Node->getValueType(0);
Owen Anderson95771af2011-02-25 21:41:48 +00002890 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohmand1996362010-01-09 02:13:55 +00002891 if (VT.isVector())
Dan Gohman87862e72009-12-11 21:31:27 +00002892 ShiftAmountTy = VT;
Dan Gohmand1996362010-01-09 02:13:55 +00002893 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2894 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman87862e72009-12-11 21:31:27 +00002895 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman8c377c72009-05-27 01:25:56 +00002896 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2897 Node->getOperand(0), ShiftCst);
Bill Wendling775db972009-12-23 00:28:23 +00002898 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2899 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002900 break;
2901 }
2902 case ISD::FP_ROUND_INREG: {
2903 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002904 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman8c377c72009-05-27 01:25:56 +00002905
2906 // NOTE: there is a choice here between constantly creating new stack
2907 // slots and always reusing the same one. We currently always create
2908 // new ones, as reuse may inhibit scheduling.
Owen Andersone50ed302009-08-10 22:56:29 +00002909 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00002910 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2911 Node->getValueType(0), dl);
2912 Results.push_back(Tmp1);
2913 break;
2914 }
2915 case ISD::SINT_TO_FP:
2916 case ISD::UINT_TO_FP:
2917 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2918 Node->getOperand(0), Node->getValueType(0), dl);
2919 Results.push_back(Tmp1);
2920 break;
2921 case ISD::FP_TO_UINT: {
2922 SDValue True, False;
Owen Andersone50ed302009-08-10 22:56:29 +00002923 EVT VT = Node->getOperand(0).getValueType();
2924 EVT NVT = Node->getValueType(0);
Tim Northover0a29cb02013-01-22 09:46:31 +00002925 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
2926 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman8c377c72009-05-27 01:25:56 +00002927 APInt x = APInt::getSignBit(NVT.getSizeInBits());
2928 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
2929 Tmp1 = DAG.getConstantFP(apf, VT);
2930 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
2931 Node->getOperand(0),
2932 Tmp1, ISD::SETLT);
2933 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00002934 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
2935 DAG.getNode(ISD::FSUB, dl, VT,
2936 Node->getOperand(0), Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00002937 False = DAG.getNode(ISD::XOR, dl, NVT, False,
2938 DAG.getConstant(x, NVT));
2939 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2, True, False);
2940 Results.push_back(Tmp1);
2941 break;
2942 }
Eli Friedman509150f2009-05-27 07:58:35 +00002943 case ISD::VAARG: {
2944 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00002945 EVT VT = Node->getValueType(0);
Eli Friedman509150f2009-05-27 07:58:35 +00002946 Tmp1 = Node->getOperand(0);
2947 Tmp2 = Node->getOperand(1);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002948 unsigned Align = Node->getConstantOperandVal(3);
2949
Chris Lattnerecf42c42010-09-21 16:36:31 +00002950 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002951 MachinePointerInfo(V),
2952 false, false, false, 0);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002953 SDValue VAList = VAListLoad;
2954
Rafael Espindolacbeeae22010-07-11 04:01:49 +00002955 if (Align > TLI.getMinStackArgumentAlignment()) {
2956 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
2957
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002958 VAList = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2959 DAG.getConstant(Align - 1,
2960 TLI.getPointerTy()));
2961
2962 VAList = DAG.getNode(ISD::AND, dl, TLI.getPointerTy(), VAList,
Chris Lattner07e3a382010-10-10 18:36:26 +00002963 DAG.getConstant(-(int64_t)Align,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002964 TLI.getPointerTy()));
2965 }
2966
Eli Friedman509150f2009-05-27 07:58:35 +00002967 // Increment the pointer, VAList, to the next vaarg
2968 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Micah Villmow3574eca2012-10-08 16:38:25 +00002969 DAG.getConstant(TLI.getDataLayout()->
Evan Chengadf97992010-04-15 01:25:27 +00002970 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Eli Friedman509150f2009-05-27 07:58:35 +00002971 TLI.getPointerTy()));
2972 // Store the incremented VAList to the legalized pointer
Chris Lattner6229d0a2010-09-21 18:41:36 +00002973 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
2974 MachinePointerInfo(V), false, false, 0);
Eli Friedman509150f2009-05-27 07:58:35 +00002975 // Load the actual argument out of the pointer VAList
Chris Lattnerecf42c42010-09-21 16:36:31 +00002976 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002977 false, false, false, 0));
Eli Friedman509150f2009-05-27 07:58:35 +00002978 Results.push_back(Results[0].getValue(1));
2979 break;
2980 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002981 case ISD::VACOPY: {
2982 // This defaults to loading a pointer from the input and storing it to the
2983 // output, returning the chain.
2984 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2985 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
2986 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattnerecf42c42010-09-21 16:36:31 +00002987 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002988 false, false, false, 0);
Chris Lattnerecf42c42010-09-21 16:36:31 +00002989 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
2990 MachinePointerInfo(VD), false, false, 0);
Bill Wendling775db972009-12-23 00:28:23 +00002991 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002992 break;
2993 }
2994 case ISD::EXTRACT_VECTOR_ELT:
2995 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
2996 // This must be an access of the only element. Return it.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002997 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman8c377c72009-05-27 01:25:56 +00002998 Node->getOperand(0));
2999 else
3000 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3001 Results.push_back(Tmp1);
3002 break;
3003 case ISD::EXTRACT_SUBVECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00003004 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman8c377c72009-05-27 01:25:56 +00003005 break;
David Greenecfe33c42011-01-26 19:13:22 +00003006 case ISD::INSERT_SUBVECTOR:
3007 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3008 break;
Eli Friedman509150f2009-05-27 07:58:35 +00003009 case ISD::CONCAT_VECTORS: {
Bill Wendling775db972009-12-23 00:28:23 +00003010 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman509150f2009-05-27 07:58:35 +00003011 break;
3012 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003013 case ISD::SCALAR_TO_VECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00003014 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman8c377c72009-05-27 01:25:56 +00003015 break;
Eli Friedman3f727d62009-05-27 02:16:40 +00003016 case ISD::INSERT_VECTOR_ELT:
Bill Wendling775db972009-12-23 00:28:23 +00003017 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3018 Node->getOperand(1),
3019 Node->getOperand(2), dl));
Eli Friedman3f727d62009-05-27 02:16:40 +00003020 break;
Eli Friedman509150f2009-05-27 07:58:35 +00003021 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003022 SmallVector<int, 32> NewMask;
3023 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003024
Owen Andersone50ed302009-08-10 22:56:29 +00003025 EVT VT = Node->getValueType(0);
3026 EVT EltVT = VT.getVectorElementType();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003027 SDValue Op0 = Node->getOperand(0);
3028 SDValue Op1 = Node->getOperand(1);
3029 if (!TLI.isTypeLegal(EltVT)) {
3030
3031 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3032
3033 // BUILD_VECTOR operands are allowed to be wider than the element type.
3034 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept it
3035 if (NewEltVT.bitsLT(EltVT)) {
3036
3037 // Convert shuffle node.
3038 // If original node was v4i64 and the new EltVT is i32,
3039 // cast operands to v8i32 and re-build the mask.
3040
3041 // Calculate new VT, the size of the new VT should be equal to original.
3042 EVT NewVT = EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3043 VT.getSizeInBits()/NewEltVT.getSizeInBits());
3044 assert(NewVT.bitsEq(VT));
3045
3046 // cast operands to new VT
3047 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3048 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3049
3050 // Convert the shuffle mask
3051 unsigned int factor = NewVT.getVectorNumElements()/VT.getVectorNumElements();
3052
3053 // EltVT gets smaller
3054 assert(factor > 0);
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003055
3056 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3057 if (Mask[i] < 0) {
3058 for (unsigned fi = 0; fi < factor; ++fi)
3059 NewMask.push_back(Mask[i]);
3060 }
3061 else {
3062 for (unsigned fi = 0; fi < factor; ++fi)
3063 NewMask.push_back(Mask[i]*factor+fi);
3064 }
3065 }
3066 Mask = NewMask;
3067 VT = NewVT;
3068 }
3069 EltVT = NewEltVT;
3070 }
Eli Friedman509150f2009-05-27 07:58:35 +00003071 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003072 SmallVector<SDValue, 16> Ops;
Eli Friedman509150f2009-05-27 07:58:35 +00003073 for (unsigned i = 0; i != NumElems; ++i) {
3074 if (Mask[i] < 0) {
3075 Ops.push_back(DAG.getUNDEF(EltVT));
3076 continue;
3077 }
3078 unsigned Idx = Mask[i];
3079 if (Idx < NumElems)
Bill Wendling775db972009-12-23 00:28:23 +00003080 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003081 Op0,
Bill Wendling775db972009-12-23 00:28:23 +00003082 DAG.getIntPtrConstant(Idx)));
Eli Friedman509150f2009-05-27 07:58:35 +00003083 else
Bill Wendling775db972009-12-23 00:28:23 +00003084 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003085 Op1,
Bill Wendling775db972009-12-23 00:28:23 +00003086 DAG.getIntPtrConstant(Idx - NumElems)));
Eli Friedman509150f2009-05-27 07:58:35 +00003087 }
Nadav Rotem6c0366c2012-01-10 14:28:46 +00003088
Eli Friedman509150f2009-05-27 07:58:35 +00003089 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Nadav Rotem6c0366c2012-01-10 14:28:46 +00003090 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3091 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003092 Results.push_back(Tmp1);
3093 break;
3094 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003095 case ISD::EXTRACT_ELEMENT: {
Owen Andersone50ed302009-08-10 22:56:29 +00003096 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman8c377c72009-05-27 01:25:56 +00003097 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3098 // 1 -> Hi
3099 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3100 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003101 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman8c377c72009-05-27 01:25:56 +00003102 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3103 } else {
3104 // 0 -> Lo
3105 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3106 Node->getOperand(0));
3107 }
3108 Results.push_back(Tmp1);
3109 break;
3110 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003111 case ISD::STACKSAVE:
3112 // Expand to CopyFromReg if the target set
3113 // StackPointerRegisterToSaveRestore.
3114 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendling775db972009-12-23 00:28:23 +00003115 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3116 Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003117 Results.push_back(Results[0].getValue(1));
3118 } else {
Bill Wendling775db972009-12-23 00:28:23 +00003119 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003120 Results.push_back(Node->getOperand(0));
3121 }
3122 break;
3123 case ISD::STACKRESTORE:
Bill Wendling775db972009-12-23 00:28:23 +00003124 // Expand to CopyToReg if the target set
3125 // StackPointerRegisterToSaveRestore.
3126 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3127 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3128 Node->getOperand(1)));
3129 } else {
3130 Results.push_back(Node->getOperand(0));
3131 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003132 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003133 case ISD::FCOPYSIGN:
Bill Wendling775db972009-12-23 00:28:23 +00003134 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003135 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003136 case ISD::FNEG:
3137 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3138 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3139 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3140 Node->getOperand(0));
3141 Results.push_back(Tmp1);
3142 break;
3143 case ISD::FABS: {
3144 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Andersone50ed302009-08-10 22:56:29 +00003145 EVT VT = Node->getValueType(0);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003146 Tmp1 = Node->getOperand(0);
3147 Tmp2 = DAG.getConstantFP(0.0, VT);
Bill Wendling775db972009-12-23 00:28:23 +00003148 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003149 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendling775db972009-12-23 00:28:23 +00003150 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3151 Tmp1 = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003152 Results.push_back(Tmp1);
3153 break;
3154 }
3155 case ISD::FSQRT:
Bill Wendling775db972009-12-23 00:28:23 +00003156 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003157 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3158 RTLIB::SQRT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003159 break;
3160 case ISD::FSIN:
Evan Cheng8688a582013-01-29 02:32:37 +00003161 case ISD::FCOS: {
3162 EVT VT = Node->getValueType(0);
3163 bool isSIN = Node->getOpcode() == ISD::FSIN;
3164 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3165 // fcos which share the same operand and both are used.
3166 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmond86cdbc92013-02-15 18:45:18 +00003167 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng8688a582013-01-29 02:32:37 +00003168 && useSinCos(Node)) {
3169 SDVTList VTs = DAG.getVTList(VT, VT);
3170 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3171 if (!isSIN)
3172 Tmp1 = Tmp1.getValue(1);
3173 Results.push_back(Tmp1);
3174 } else if (isSIN) {
3175 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3176 RTLIB::SIN_F80, RTLIB::SIN_F128,
3177 RTLIB::SIN_PPCF128));
3178 } else {
3179 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3180 RTLIB::COS_F80, RTLIB::COS_F128,
3181 RTLIB::COS_PPCF128));
3182 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003183 break;
Evan Cheng8688a582013-01-29 02:32:37 +00003184 }
3185 case ISD::FSINCOS:
3186 // Expand into sincos libcall.
3187 ExpandSinCosLibCall(Node, Results);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003188 break;
3189 case ISD::FLOG:
Bill Wendling775db972009-12-23 00:28:23 +00003190 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003191 RTLIB::LOG_F80, RTLIB::LOG_F128,
3192 RTLIB::LOG_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003193 break;
3194 case ISD::FLOG2:
Bill Wendling775db972009-12-23 00:28:23 +00003195 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003196 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3197 RTLIB::LOG2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003198 break;
3199 case ISD::FLOG10:
Bill Wendling775db972009-12-23 00:28:23 +00003200 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003201 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3202 RTLIB::LOG10_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003203 break;
3204 case ISD::FEXP:
Bill Wendling775db972009-12-23 00:28:23 +00003205 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003206 RTLIB::EXP_F80, RTLIB::EXP_F128,
3207 RTLIB::EXP_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003208 break;
3209 case ISD::FEXP2:
Bill Wendling775db972009-12-23 00:28:23 +00003210 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003211 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3212 RTLIB::EXP2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003213 break;
3214 case ISD::FTRUNC:
Bill Wendling775db972009-12-23 00:28:23 +00003215 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003216 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3217 RTLIB::TRUNC_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003218 break;
3219 case ISD::FFLOOR:
Bill Wendling775db972009-12-23 00:28:23 +00003220 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003221 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3222 RTLIB::FLOOR_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003223 break;
3224 case ISD::FCEIL:
Bill Wendling775db972009-12-23 00:28:23 +00003225 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003226 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3227 RTLIB::CEIL_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003228 break;
3229 case ISD::FRINT:
Bill Wendling775db972009-12-23 00:28:23 +00003230 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003231 RTLIB::RINT_F80, RTLIB::RINT_F128,
3232 RTLIB::RINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003233 break;
3234 case ISD::FNEARBYINT:
Bill Wendling775db972009-12-23 00:28:23 +00003235 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3236 RTLIB::NEARBYINT_F64,
3237 RTLIB::NEARBYINT_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00003238 RTLIB::NEARBYINT_F128,
Bill Wendling775db972009-12-23 00:28:23 +00003239 RTLIB::NEARBYINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003240 break;
3241 case ISD::FPOWI:
Bill Wendling775db972009-12-23 00:28:23 +00003242 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003243 RTLIB::POWI_F80, RTLIB::POWI_F128,
3244 RTLIB::POWI_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003245 break;
3246 case ISD::FPOW:
Bill Wendling775db972009-12-23 00:28:23 +00003247 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003248 RTLIB::POW_F80, RTLIB::POW_F128,
3249 RTLIB::POW_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003250 break;
3251 case ISD::FDIV:
Bill Wendling775db972009-12-23 00:28:23 +00003252 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003253 RTLIB::DIV_F80, RTLIB::DIV_F128,
3254 RTLIB::DIV_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003255 break;
3256 case ISD::FREM:
Bill Wendling775db972009-12-23 00:28:23 +00003257 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003258 RTLIB::REM_F80, RTLIB::REM_F128,
3259 RTLIB::REM_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003260 break;
Cameron Zwarich33390842011-07-08 21:39:21 +00003261 case ISD::FMA:
3262 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003263 RTLIB::FMA_F80, RTLIB::FMA_F128,
3264 RTLIB::FMA_PPCF128));
Cameron Zwarich33390842011-07-08 21:39:21 +00003265 break;
Anton Korobeynikov927411b2010-03-14 18:42:24 +00003266 case ISD::FP16_TO_FP32:
3267 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3268 break;
3269 case ISD::FP32_TO_FP16:
3270 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3271 break;
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003272 case ISD::ConstantFP: {
3273 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendling775db972009-12-23 00:28:23 +00003274 // Check to see if this FP immediate is already legal.
3275 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman65fd6562011-11-03 21:49:52 +00003276 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3277 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003278 break;
3279 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003280 case ISD::EHSELECTION: {
3281 unsigned Reg = TLI.getExceptionSelectorRegister();
3282 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003283 Results.push_back(DAG.getCopyFromReg(Node->getOperand(1), dl, Reg,
3284 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003285 Results.push_back(Results[0].getValue(1));
3286 break;
3287 }
3288 case ISD::EXCEPTIONADDR: {
Lang Hames07961342012-02-14 04:45:49 +00003289 unsigned Reg = TLI.getExceptionPointerRegister();
Eli Friedman26ea8f92009-05-27 07:05:37 +00003290 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003291 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, Reg,
3292 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003293 Results.push_back(Results[0].getValue(1));
3294 break;
3295 }
Owen Andersonafd3d562012-03-06 00:29:31 +00003296 case ISD::FSUB: {
3297 EVT VT = Node->getValueType(0);
3298 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3299 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3300 "Don't know how to expand this FP subtraction!");
3301 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3302 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3303 Results.push_back(Tmp1);
3304 break;
3305 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003306 case ISD::SUB: {
Owen Andersone50ed302009-08-10 22:56:29 +00003307 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003308 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3309 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3310 "Don't know how to expand this subtraction!");
3311 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3312 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Anderson4b6e6752012-05-21 22:39:20 +00003313 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendling775db972009-12-23 00:28:23 +00003314 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003315 break;
3316 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003317 case ISD::UREM:
3318 case ISD::SREM: {
Owen Andersone50ed302009-08-10 22:56:29 +00003319 EVT VT = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003320 bool isSigned = Node->getOpcode() == ISD::SREM;
3321 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3322 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3323 Tmp2 = Node->getOperand(0);
3324 Tmp3 = Node->getOperand(1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003325 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3326 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Chengd36696c2012-10-12 01:15:47 +00003327 // If div is legal, it's better to do the normal expansion
3328 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003329 useDivRem(Node, isSigned, false))) {
Evan Cheng8688a582013-01-29 02:32:37 +00003330 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedman3be2e512009-05-28 03:06:16 +00003331 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3332 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003333 // X % Y -> X-X/Y*Y
3334 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3335 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3336 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003337 } else if (isSigned)
3338 Tmp1 = ExpandIntLibCall(Node, true,
3339 RTLIB::SREM_I8,
3340 RTLIB::SREM_I16, RTLIB::SREM_I32,
3341 RTLIB::SREM_I64, RTLIB::SREM_I128);
3342 else
3343 Tmp1 = ExpandIntLibCall(Node, false,
3344 RTLIB::UREM_I8,
3345 RTLIB::UREM_I16, RTLIB::UREM_I32,
3346 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003347 Results.push_back(Tmp1);
3348 break;
3349 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003350 case ISD::UDIV:
3351 case ISD::SDIV: {
3352 bool isSigned = Node->getOpcode() == ISD::SDIV;
3353 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Andersone50ed302009-08-10 22:56:29 +00003354 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003355 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Cheng65279cb2011-04-16 03:08:26 +00003356 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3357 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003358 useDivRem(Node, isSigned, true)))
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003359 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3360 Node->getOperand(1));
Evan Cheng65279cb2011-04-16 03:08:26 +00003361 else if (isSigned)
3362 Tmp1 = ExpandIntLibCall(Node, true,
3363 RTLIB::SDIV_I8,
3364 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3365 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3366 else
3367 Tmp1 = ExpandIntLibCall(Node, false,
3368 RTLIB::UDIV_I8,
3369 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3370 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003371 Results.push_back(Tmp1);
3372 break;
3373 }
3374 case ISD::MULHU:
3375 case ISD::MULHS: {
3376 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3377 ISD::SMUL_LOHI;
Owen Andersone50ed302009-08-10 22:56:29 +00003378 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003379 SDVTList VTs = DAG.getVTList(VT, VT);
3380 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3381 "If this wasn't legal, it shouldn't have been created!");
3382 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3383 Node->getOperand(1));
3384 Results.push_back(Tmp1.getValue(1));
3385 break;
3386 }
Evan Cheng65279cb2011-04-16 03:08:26 +00003387 case ISD::SDIVREM:
3388 case ISD::UDIVREM:
3389 // Expand into divrem libcall
3390 ExpandDivRemLibCall(Node, Results);
3391 break;
Eli Friedman26ea8f92009-05-27 07:05:37 +00003392 case ISD::MUL: {
Owen Andersone50ed302009-08-10 22:56:29 +00003393 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003394 SDVTList VTs = DAG.getVTList(VT, VT);
3395 // See if multiply or divide can be lowered using two-result operations.
3396 // We just need the low half of the multiply; try both the signed
3397 // and unsigned forms. If the target supports both SMUL_LOHI and
3398 // UMUL_LOHI, form a preference by checking which forms of plain
3399 // MULH it supports.
3400 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3401 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3402 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3403 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3404 unsigned OpToUse = 0;
3405 if (HasSMUL_LOHI && !HasMULHS) {
3406 OpToUse = ISD::SMUL_LOHI;
3407 } else if (HasUMUL_LOHI && !HasMULHU) {
3408 OpToUse = ISD::UMUL_LOHI;
3409 } else if (HasSMUL_LOHI) {
3410 OpToUse = ISD::SMUL_LOHI;
3411 } else if (HasUMUL_LOHI) {
3412 OpToUse = ISD::UMUL_LOHI;
3413 }
3414 if (OpToUse) {
Bill Wendling775db972009-12-23 00:28:23 +00003415 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3416 Node->getOperand(1)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003417 break;
3418 }
Anton Korobeynikov8983da72009-11-07 17:14:39 +00003419 Tmp1 = ExpandIntLibCall(Node, false,
3420 RTLIB::MUL_I8,
3421 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman26ea8f92009-05-27 07:05:37 +00003422 RTLIB::MUL_I64, RTLIB::MUL_I128);
3423 Results.push_back(Tmp1);
3424 break;
3425 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003426 case ISD::SADDO:
3427 case ISD::SSUBO: {
3428 SDValue LHS = Node->getOperand(0);
3429 SDValue RHS = Node->getOperand(1);
3430 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3431 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3432 LHS, RHS);
3433 Results.push_back(Sum);
Bill Wendling122d06d2009-12-23 00:05:09 +00003434 EVT OType = Node->getValueType(1);
Bill Wendling775db972009-12-23 00:28:23 +00003435
Eli Friedman4bc8c712009-05-27 12:20:41 +00003436 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3437
3438 // LHSSign -> LHS >= 0
3439 // RHSSign -> RHS >= 0
3440 // SumSign -> Sum >= 0
3441 //
3442 // Add:
3443 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3444 // Sub:
3445 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3446 //
3447 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3448 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3449 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3450 Node->getOpcode() == ISD::SADDO ?
3451 ISD::SETEQ : ISD::SETNE);
3452
3453 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3454 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3455
3456 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3457 Results.push_back(Cmp);
3458 break;
3459 }
3460 case ISD::UADDO:
3461 case ISD::USUBO: {
3462 SDValue LHS = Node->getOperand(0);
3463 SDValue RHS = Node->getOperand(1);
3464 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3465 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3466 LHS, RHS);
3467 Results.push_back(Sum);
Bill Wendling775db972009-12-23 00:28:23 +00003468 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3469 Node->getOpcode () == ISD::UADDO ?
3470 ISD::SETULT : ISD::SETUGT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003471 break;
3472 }
Eli Friedmandb3c1692009-06-16 06:58:29 +00003473 case ISD::UMULO:
3474 case ISD::SMULO: {
Owen Andersone50ed302009-08-10 22:56:29 +00003475 EVT VT = Node->getValueType(0);
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003476 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmandb3c1692009-06-16 06:58:29 +00003477 SDValue LHS = Node->getOperand(0);
3478 SDValue RHS = Node->getOperand(1);
3479 SDValue BottomHalf;
3480 SDValue TopHalf;
Nuno Lopesec9d8b02009-12-23 17:48:10 +00003481 static const unsigned Ops[2][3] =
Eli Friedmandb3c1692009-06-16 06:58:29 +00003482 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3483 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3484 bool isSigned = Node->getOpcode() == ISD::SMULO;
3485 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3486 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3487 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3488 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3489 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3490 RHS);
3491 TopHalf = BottomHalf.getValue(1);
Eric Christopher38a18262011-01-20 00:29:24 +00003492 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3493 VT.getSizeInBits() * 2))) {
Eli Friedmandb3c1692009-06-16 06:58:29 +00003494 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3495 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3496 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3497 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3498 DAG.getIntPtrConstant(0));
3499 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3500 DAG.getIntPtrConstant(1));
Eric Christopher38a18262011-01-20 00:29:24 +00003501 } else {
3502 // We can fall back to a libcall with an illegal type for the MUL if we
3503 // have a libcall big enough.
3504 // Also, we can fall back to a division in some cases, but that's a big
3505 // performance hit in the general case.
Eric Christopher38a18262011-01-20 00:29:24 +00003506 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3507 if (WideVT == MVT::i16)
3508 LC = RTLIB::MUL_I16;
3509 else if (WideVT == MVT::i32)
3510 LC = RTLIB::MUL_I32;
3511 else if (WideVT == MVT::i64)
3512 LC = RTLIB::MUL_I64;
3513 else if (WideVT == MVT::i128)
3514 LC = RTLIB::MUL_I128;
3515 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanf316eb72011-05-16 22:09:53 +00003516
3517 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003518 // part.
3519 unsigned LoSize = VT.getSizeInBits();
3520 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3521 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3522 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3523 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Anderson95771af2011-02-25 21:41:48 +00003524
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003525 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3526 // pre-lowered to the correct types. This all depends upon WideVT not
3527 // being a legal type for the architecture and thus has to be split to
3528 // two arguments.
3529 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3530 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3531 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3532 DAG.getIntPtrConstant(0));
3533 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3534 DAG.getIntPtrConstant(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00003535 // Ret is a node with an illegal type. Because such things are not
3536 // generally permitted during this phase of legalization, delete the
3537 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3538 DAG.DeleteNode(Ret.getNode());
Eli Friedmandb3c1692009-06-16 06:58:29 +00003539 }
Dan Gohmanf316eb72011-05-16 22:09:53 +00003540
Eli Friedmandb3c1692009-06-16 06:58:29 +00003541 if (isSigned) {
Owen Anderson95771af2011-02-25 21:41:48 +00003542 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3543 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmandb3c1692009-06-16 06:58:29 +00003544 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
3545 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf, Tmp1,
3546 ISD::SETNE);
3547 } else {
3548 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf,
3549 DAG.getConstant(0, VT), ISD::SETNE);
3550 }
3551 Results.push_back(BottomHalf);
3552 Results.push_back(TopHalf);
3553 break;
3554 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003555 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +00003556 EVT PairTy = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003557 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3558 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendling775db972009-12-23 00:28:23 +00003559 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003560 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003561 TLI.getShiftAmountTy(PairTy)));
Bill Wendling775db972009-12-23 00:28:23 +00003562 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003563 break;
3564 }
Eli Friedman509150f2009-05-27 07:58:35 +00003565 case ISD::SELECT:
3566 Tmp1 = Node->getOperand(0);
3567 Tmp2 = Node->getOperand(1);
3568 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003569 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman509150f2009-05-27 07:58:35 +00003570 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3571 Tmp2, Tmp3,
3572 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendling775db972009-12-23 00:28:23 +00003573 } else {
Eli Friedman509150f2009-05-27 07:58:35 +00003574 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3575 DAG.getConstant(0, Tmp1.getValueType()),
3576 Tmp2, Tmp3, ISD::SETNE);
Bill Wendling775db972009-12-23 00:28:23 +00003577 }
Eli Friedman509150f2009-05-27 07:58:35 +00003578 Results.push_back(Tmp1);
3579 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003580 case ISD::BR_JT: {
3581 SDValue Chain = Node->getOperand(0);
3582 SDValue Table = Node->getOperand(1);
3583 SDValue Index = Node->getOperand(2);
3584
Owen Andersone50ed302009-08-10 22:56:29 +00003585 EVT PTy = TLI.getPointerTy();
Chris Lattner071c62f2010-01-25 23:26:13 +00003586
Micah Villmow3574eca2012-10-08 16:38:25 +00003587 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattner071c62f2010-01-25 23:26:13 +00003588 unsigned EntrySize =
3589 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach6e992612010-07-02 17:41:59 +00003590
Chris Lattner071c62f2010-01-25 23:26:13 +00003591 Index = DAG.getNode(ISD::MUL, dl, PTy,
Eli Friedman4bc8c712009-05-27 12:20:41 +00003592 Index, DAG.getConstant(EntrySize, PTy));
3593 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3594
Owen Anderson23b9b192009-08-12 00:36:31 +00003595 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastingsa9011292011-02-16 16:23:55 +00003596 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattner85ca1062010-09-21 07:32:19 +00003597 MachinePointerInfo::getJumpTable(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00003598 false, false, 0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003599 Addr = LD;
Dan Gohman55e59c12010-04-19 19:05:59 +00003600 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman4bc8c712009-05-27 12:20:41 +00003601 // For PIC, the sequence is:
Bill Wendling775db972009-12-23 00:28:23 +00003602 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman4bc8c712009-05-27 12:20:41 +00003603 // RelocBase can be JumpTable, GOT or some sort of global base.
3604 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3605 TLI.getPICJumpTableRelocBase(Table, DAG));
3606 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003607 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003608 Results.push_back(Tmp1);
3609 break;
3610 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003611 case ISD::BRCOND:
3612 // Expand brcond's setcc into its constituent parts and create a BR_CC
3613 // Node.
3614 Tmp1 = Node->getOperand(0);
3615 Tmp2 = Node->getOperand(1);
Bill Wendling775db972009-12-23 00:28:23 +00003616 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003617 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003618 Tmp1, Tmp2.getOperand(2),
3619 Tmp2.getOperand(0), Tmp2.getOperand(1),
3620 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003621 } else {
Stuart Hastings88882242011-05-13 00:51:54 +00003622 // We test only the i1 bit. Skip the AND if UNDEF.
3623 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3624 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3625 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003626 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastings88882242011-05-13 00:51:54 +00003627 DAG.getCondCode(ISD::SETNE), Tmp3,
3628 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003629 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003630 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003631 Results.push_back(Tmp1);
3632 break;
Eli Friedmanad754602009-05-28 03:56:57 +00003633 case ISD::SETCC: {
3634 Tmp1 = Node->getOperand(0);
3635 Tmp2 = Node->getOperand(1);
3636 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003637 LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Eli Friedmanad754602009-05-28 03:56:57 +00003638
3639 // If we expanded the SETCC into an AND/OR, return the new node
3640 if (Tmp2.getNode() == 0) {
3641 Results.push_back(Tmp1);
3642 break;
3643 }
3644
3645 // Otherwise, SETCC for the given comparison type must be completely
3646 // illegal; expand it into a SELECT_CC.
Owen Andersone50ed302009-08-10 22:56:29 +00003647 EVT VT = Node->getValueType(0);
Eli Friedmanad754602009-05-28 03:56:57 +00003648 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
3649 DAG.getConstant(1, VT), DAG.getConstant(0, VT), Tmp3);
3650 Results.push_back(Tmp1);
3651 break;
3652 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003653 case ISD::SELECT_CC: {
3654 Tmp1 = Node->getOperand(0); // LHS
3655 Tmp2 = Node->getOperand(1); // RHS
3656 Tmp3 = Node->getOperand(2); // True
3657 Tmp4 = Node->getOperand(3); // False
3658 SDValue CC = Node->getOperand(4);
3659
3660 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp1.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003661 Tmp1, Tmp2, CC, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003662
3663 assert(!Tmp2.getNode() && "Can't legalize SELECT_CC with legal condition!");
3664 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3665 CC = DAG.getCondCode(ISD::SETNE);
3666 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, Tmp2,
3667 Tmp3, Tmp4, CC);
3668 Results.push_back(Tmp1);
3669 break;
3670 }
3671 case ISD::BR_CC: {
3672 Tmp1 = Node->getOperand(0); // Chain
3673 Tmp2 = Node->getOperand(2); // LHS
3674 Tmp3 = Node->getOperand(3); // RHS
3675 Tmp4 = Node->getOperand(1); // CC
3676
3677 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp2.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003678 Tmp2, Tmp3, Tmp4, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003679
3680 assert(!Tmp3.getNode() && "Can't legalize BR_CC with legal condition!");
3681 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3682 Tmp4 = DAG.getCondCode(ISD::SETNE);
3683 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, Tmp2,
3684 Tmp3, Node->getOperand(4));
3685 Results.push_back(Tmp1);
3686 break;
3687 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003688 case ISD::BUILD_VECTOR:
3689 Results.push_back(ExpandBUILD_VECTOR(Node));
3690 break;
3691 case ISD::SRA:
3692 case ISD::SRL:
3693 case ISD::SHL: {
3694 // Scalarize vector SRA/SRL/SHL.
3695 EVT VT = Node->getValueType(0);
3696 assert(VT.isVector() && "Unable to legalize non-vector shift");
3697 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3698 unsigned NumElem = VT.getVectorNumElements();
3699
3700 SmallVector<SDValue, 8> Scalars;
3701 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3702 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3703 VT.getScalarType(),
3704 Node->getOperand(0), DAG.getIntPtrConstant(Idx));
3705 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3706 VT.getScalarType(),
3707 Node->getOperand(1), DAG.getIntPtrConstant(Idx));
3708 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3709 VT.getScalarType(), Ex, Sh));
3710 }
3711 SDValue Result =
3712 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3713 &Scalars[0], Scalars.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +00003714 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +00003715 break;
3716 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003717 case ISD::GLOBAL_OFFSET_TABLE:
3718 case ISD::GlobalAddress:
3719 case ISD::GlobalTLSAddress:
3720 case ISD::ExternalSymbol:
3721 case ISD::ConstantPool:
3722 case ISD::JumpTable:
3723 case ISD::INTRINSIC_W_CHAIN:
3724 case ISD::INTRINSIC_WO_CHAIN:
3725 case ISD::INTRINSIC_VOID:
3726 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedman3f727d62009-05-27 02:16:40 +00003727 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00003728 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003729
3730 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003731 if (!Results.empty())
3732 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003733}
Dan Gohman65fd6562011-11-03 21:49:52 +00003734
3735void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3736 SmallVector<SDValue, 8> Results;
Patrik Hagglund319bb392012-12-19 11:21:04 +00003737 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00003738 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedmana64eb922009-07-17 05:16:04 +00003739 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendling775db972009-12-23 00:28:23 +00003740 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglund319bb392012-12-19 11:21:04 +00003741 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendling775db972009-12-23 00:28:23 +00003742 }
Patrik Hagglund319bb392012-12-19 11:21:04 +00003743 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Eli Friedman8c377c72009-05-27 01:25:56 +00003744 DebugLoc dl = Node->getDebugLoc();
Eli Friedman509150f2009-05-27 07:58:35 +00003745 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman8c377c72009-05-27 01:25:56 +00003746 switch (Node->getOpcode()) {
3747 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003748 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003749 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003750 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003751 case ISD::CTPOP:
3752 // Zero extend the argument.
3753 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00003754 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
3755 // already the correct result.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003756 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003757 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth63974b22011-12-13 01:56:10 +00003758 // FIXME: This should set a bit in the zero extended value instead.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003759 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Eli Friedman8c377c72009-05-27 01:25:56 +00003760 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3761 ISD::SETEQ);
3762 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
3763 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth63974b22011-12-13 01:56:10 +00003764 } else if (Node->getOpcode() == ISD::CTLZ ||
3765 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003766 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3767 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3768 DAG.getConstant(NVT.getSizeInBits() -
3769 OVT.getSizeInBits(), NVT));
3770 }
Bill Wendling775db972009-12-23 00:28:23 +00003771 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00003772 break;
3773 case ISD::BSWAP: {
3774 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling167bea72009-12-22 22:53:39 +00003775 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00003776 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3777 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Anderson95771af2011-02-25 21:41:48 +00003778 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendling775db972009-12-23 00:28:23 +00003779 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003780 break;
3781 }
3782 case ISD::FP_TO_UINT:
3783 case ISD::FP_TO_SINT:
3784 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3785 Node->getOpcode() == ISD::FP_TO_SINT, dl);
3786 Results.push_back(Tmp1);
3787 break;
3788 case ISD::UINT_TO_FP:
3789 case ISD::SINT_TO_FP:
3790 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3791 Node->getOpcode() == ISD::SINT_TO_FP, dl);
3792 Results.push_back(Tmp1);
3793 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00003794 case ISD::VAARG: {
3795 SDValue Chain = Node->getOperand(0); // Get the chain.
3796 SDValue Ptr = Node->getOperand(1); // Get the pointer.
3797
3798 unsigned TruncOp;
3799 if (OVT.isVector()) {
3800 TruncOp = ISD::BITCAST;
3801 } else {
3802 assert(OVT.isInteger()
3803 && "VAARG promotion is supported only for vectors or integer types");
3804 TruncOp = ISD::TRUNCATE;
3805 }
3806
3807 // Perform the larger operation, then convert back
3808 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
3809 Node->getConstantOperandVal(3));
3810 Chain = Tmp1.getValue(1);
3811
3812 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
3813
3814 // Modified the chain result - switch anything that used the old chain to
3815 // use the new one.
3816 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
3817 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
3818 ReplacedNode(Node);
3819 break;
3820 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003821 case ISD::AND:
3822 case ISD::OR:
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003823 case ISD::XOR: {
3824 unsigned ExtOp, TruncOp;
3825 if (OVT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003826 ExtOp = ISD::BITCAST;
3827 TruncOp = ISD::BITCAST;
Chris Lattner35a38932010-04-07 23:47:51 +00003828 } else {
3829 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003830 ExtOp = ISD::ANY_EXTEND;
3831 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003832 }
3833 // Promote each of the values to the new type.
3834 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3835 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3836 // Perform the larger operation, then convert back
Bill Wendling775db972009-12-23 00:28:23 +00003837 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3838 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003839 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003840 }
3841 case ISD::SELECT: {
Eli Friedman509150f2009-05-27 07:58:35 +00003842 unsigned ExtOp, TruncOp;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003843 if (Node->getValueType(0).isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003844 ExtOp = ISD::BITCAST;
3845 TruncOp = ISD::BITCAST;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003846 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman509150f2009-05-27 07:58:35 +00003847 ExtOp = ISD::ANY_EXTEND;
3848 TruncOp = ISD::TRUNCATE;
3849 } else {
3850 ExtOp = ISD::FP_EXTEND;
3851 TruncOp = ISD::FP_ROUND;
3852 }
3853 Tmp1 = Node->getOperand(0);
3854 // Promote each of the values to the new type.
3855 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3856 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
3857 // Perform the larger operation, then round down.
3858 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
3859 if (TruncOp != ISD::FP_ROUND)
Bill Wendling775db972009-12-23 00:28:23 +00003860 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003861 else
Bill Wendling775db972009-12-23 00:28:23 +00003862 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman509150f2009-05-27 07:58:35 +00003863 DAG.getIntPtrConstant(0));
Bill Wendling775db972009-12-23 00:28:23 +00003864 Results.push_back(Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003865 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003866 }
Eli Friedman509150f2009-05-27 07:58:35 +00003867 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003868 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003869
3870 // Cast the two input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003871 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
3872 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman509150f2009-05-27 07:58:35 +00003873
3874 // Convert the shuffle mask to the right # elements.
Bill Wendling775db972009-12-23 00:28:23 +00003875 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003876 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003877 Results.push_back(Tmp1);
3878 break;
3879 }
Eli Friedmanad754602009-05-28 03:56:57 +00003880 case ISD::SETCC: {
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003881 unsigned ExtOp = ISD::FP_EXTEND;
3882 if (NVT.isInteger()) {
3883 ISD::CondCode CCCode =
3884 cast<CondCodeSDNode>(Node->getOperand(2))->get();
3885 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedmanad754602009-05-28 03:56:57 +00003886 }
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003887 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3888 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedmanad754602009-05-28 03:56:57 +00003889 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3890 Tmp1, Tmp2, Node->getOperand(2)));
3891 break;
3892 }
Pete Coopercfe29982012-03-19 23:38:12 +00003893 case ISD::FDIV:
Pete Cooper9751b812012-04-04 19:36:31 +00003894 case ISD::FREM:
Pete Cooperd578b902012-01-12 21:46:18 +00003895 case ISD::FPOW: {
3896 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3897 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopercfe29982012-03-19 23:38:12 +00003898 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooperd578b902012-01-12 21:46:18 +00003899 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3900 Tmp3, DAG.getIntPtrConstant(0)));
3901 break;
3902 }
3903 case ISD::FLOG2:
3904 case ISD::FEXP2:
3905 case ISD::FLOG:
3906 case ISD::FEXP: {
3907 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3908 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
3909 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3910 Tmp2, DAG.getIntPtrConstant(0)));
3911 break;
3912 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003913 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003914
3915 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003916 if (!Results.empty())
3917 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003918}
3919
Chris Lattner3e928bb2005-01-07 07:47:09 +00003920// SelectionDAG::Legalize - This is the entry point for the file.
3921//
Dan Gohman975716a2011-05-16 22:19:54 +00003922void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00003923 /// run - This is the main entry point to this class.
3924 ///
Dan Gohman975716a2011-05-16 22:19:54 +00003925 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00003926}