blob: 20afb3d594286a9d5c05a0951bc300ba142468ad [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruthd04a8d42012-12-03 16:50:05 +000014#include "llvm/CodeGen/SelectionDAG.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
Stephen Hines36b56882014-04-23 16:57:46 -070016#include "llvm/ADT/SmallSet.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000017#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 Carruth0b8c9a82013-01-02 11:36:10 +000022#include "llvm/IR/CallingConv.h"
23#include "llvm/IR/Constants.h"
24#include "llvm/IR/DataLayout.h"
Stephen Hines36b56882014-04-23 16:57:46 -070025#include "llvm/IR/DebugInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000026#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
Matt Arsenault225ed702013-05-18 00:21:46 +000062 EVT getSetCCResultType(EVT VT) const {
63 return TLI.getSetCCResultType(*DAG.getContext(), VT);
64 }
65
Chris Lattner6831a812006-02-13 09:18:02 +000066 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000067
Chris Lattner3e928bb2005-01-07 07:47:09 +000068public:
Dan Gohman975716a2011-05-16 22:19:54 +000069 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +000070
Chris Lattner3e928bb2005-01-07 07:47:09 +000071 void LegalizeDAG();
72
Chris Lattner456a93a2006-01-28 07:39:30 +000073private:
Dan Gohman65fd6562011-11-03 21:49:52 +000074 /// LegalizeOp - Legalizes the given operation.
75 void LegalizeOp(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +000076
Eli Friedman7ef3d172009-06-06 07:04:42 +000077 SDValue OptimizeFloatStore(StoreSDNode *ST);
78
Nadav Rotemb6e89f02012-07-11 08:52:09 +000079 void LegalizeLoadOps(SDNode *Node);
80 void LegalizeStoreOps(SDNode *Node);
81
Nate Begeman68679912008-04-25 18:07:40 +000082 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
83 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
84 /// is necessary to spill the vector being inserted into to memory, perform
85 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +000086 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Andrew Trickac6d9be2013-05-25 02:42:55 +000087 SDValue Idx, SDLoc dl);
Eli Friedman3f727d62009-05-27 02:16:40 +000088 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
Andrew Trickac6d9be2013-05-25 02:42:55 +000089 SDValue Idx, SDLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +000090
Nate Begeman5a5ca152009-04-29 05:20:52 +000091 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
92 /// performs the same shuffe in terms of order or result bytes, but on a type
93 /// whose vector element type is narrower than the original shuffle type.
94 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Andrew Trickac6d9be2013-05-25 02:42:55 +000095 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Jim Grosbach6e992612010-07-02 17:41:59 +000096 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +000097 ArrayRef<int> Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +000098
Tom Stellard8a9879a2013-09-28 02:50:32 +000099 bool LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Daniel Sanders4e2d2f02013-11-21 15:03:54 +0000100 bool &NeedInvert, SDLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000101
Eli Friedman47b41f72009-05-27 02:21:29 +0000102 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherabbbfbd2011-04-20 01:19:45 +0000103 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000104 unsigned NumOps, bool isSigned, SDLoc dl);
Eric Christopherabbbfbd2011-04-20 01:19:45 +0000105
Jim Grosbache03262f2010-06-18 21:43:38 +0000106 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
107 SDNode *Node, bool isSigned);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000108 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
109 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
Evan Cheng8688a582013-01-29 02:32:37 +0000110 RTLIB::Libcall Call_F128,
111 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000112 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
113 RTLIB::Libcall Call_I8,
114 RTLIB::Libcall Call_I16,
115 RTLIB::Libcall Call_I32,
116 RTLIB::Libcall Call_I64,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000117 RTLIB::Libcall Call_I128);
Evan Cheng65279cb2011-04-16 03:08:26 +0000118 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Evan Cheng8688a582013-01-29 02:32:37 +0000119 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnercad063f2005-07-16 00:19:57 +0000120
Andrew Trickac6d9be2013-05-25 02:42:55 +0000121 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, SDLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000122 SDValue ExpandBUILD_VECTOR(SDNode *Node);
123 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +0000124 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
125 SmallVectorImpl<SDValue> &Results);
126 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Andersone50ed302009-08-10 22:56:29 +0000127 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000128 SDLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000129 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000130 SDLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000131 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000132 SDLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000133
Andrew Trickac6d9be2013-05-25 02:42:55 +0000134 SDValue ExpandBSWAP(SDValue Op, SDLoc dl);
135 SDValue ExpandBitCount(unsigned Opc, SDValue Op, SDLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000136
Eli Friedman3d43b3f2009-05-23 22:37:25 +0000137 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenecfe33c42011-01-26 19:13:22 +0000138 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000139 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman8c377c72009-05-27 01:25:56 +0000140
Dan Gohman65fd6562011-11-03 21:49:52 +0000141 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
142
Jim Grosbache03262f2010-06-18 21:43:38 +0000143 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
144
Dan Gohman65fd6562011-11-03 21:49:52 +0000145 void ExpandNode(SDNode *Node);
146 void PromoteNode(SDNode *Node);
147
Eli Friedman0e3642a2011-11-11 23:58:27 +0000148 void ForgetNode(SDNode *N) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000149 LegalizedNodes.erase(N);
150 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
151 ++LegalizePosition;
152 }
153
Eli Friedman0e3642a2011-11-11 23:58:27 +0000154public:
155 // DAGUpdateListener implementation.
Stephen Hines36b56882014-04-23 16:57:46 -0700156 void NodeDeleted(SDNode *N, SDNode *E) override {
Eli Friedman0e3642a2011-11-11 23:58:27 +0000157 ForgetNode(N);
158 }
Stephen Hines36b56882014-04-23 16:57:46 -0700159 void NodeUpdated(SDNode *N) override {}
Eli Friedman0e3642a2011-11-11 23:58:27 +0000160
161 // Node replacement helpers
162 void ReplacedNode(SDNode *N) {
163 if (N->use_empty()) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000164 DAG.RemoveDeadNode(N);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000165 } else {
166 ForgetNode(N);
167 }
168 }
169 void ReplaceNode(SDNode *Old, SDNode *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000170 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000171 ReplacedNode(Old);
172 }
173 void ReplaceNode(SDValue Old, 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.getNode());
176 }
177 void ReplaceNode(SDNode *Old, const SDValue *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000178 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000179 ReplacedNode(Old);
180 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000181};
182}
183
Nate Begeman5a5ca152009-04-29 05:20:52 +0000184/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
185/// performs the same shuffe in terms of order or result bytes, but on a type
186/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000187/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach6e992612010-07-02 17:41:59 +0000188SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +0000189SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Nate Begeman5a5ca152009-04-29 05:20:52 +0000190 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +0000191 ArrayRef<int> Mask) const {
Nate Begeman5a5ca152009-04-29 05:20:52 +0000192 unsigned NumMaskElts = VT.getVectorNumElements();
193 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000194 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000195
Nate Begeman9008ca62009-04-27 18:41:29 +0000196 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
197
198 if (NumEltsGrowth == 1)
199 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach6e992612010-07-02 17:41:59 +0000200
Nate Begeman9008ca62009-04-27 18:41:29 +0000201 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000202 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000203 int Idx = Mask[i];
204 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach6e992612010-07-02 17:41:59 +0000205 if (Idx < 0)
Nate Begeman9008ca62009-04-27 18:41:29 +0000206 NewMask.push_back(-1);
207 else
208 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000209 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000210 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000211 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000212 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
213 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000214}
215
Dan Gohman975716a2011-05-16 22:19:54 +0000216SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000217 : SelectionDAG::DAGUpdateListener(dag),
218 TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
Dan Gohmanea027022011-07-15 22:19:02 +0000219 DAG(dag) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000220}
221
Chris Lattner3e928bb2005-01-07 07:47:09 +0000222void SelectionDAGLegalize::LegalizeDAG() {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000223 DAG.AssignTopologicalOrder();
Dan Gohman2ba60e52011-10-28 01:29:32 +0000224
Dan Gohman65fd6562011-11-03 21:49:52 +0000225 // Visit all the nodes. We start in topological order, so that we see
226 // nodes with their original operands intact. Legalization can produce
227 // new nodes which may themselves need to be legalized. Iterate until all
228 // nodes have been legalized.
229 for (;;) {
230 bool AnyLegalized = false;
231 for (LegalizePosition = DAG.allnodes_end();
232 LegalizePosition != DAG.allnodes_begin(); ) {
233 --LegalizePosition;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000234
Dan Gohman65fd6562011-11-03 21:49:52 +0000235 SDNode *N = LegalizePosition;
236 if (LegalizedNodes.insert(N)) {
237 AnyLegalized = true;
238 LegalizeOp(N);
239 }
240 }
241 if (!AnyLegalized)
242 break;
243
244 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000245
246 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000247 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000248}
249
Evan Cheng9f877882006-12-13 20:57:08 +0000250/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
251/// a load from the constant pool.
Dan Gohman65fd6562011-11-03 21:49:52 +0000252SDValue
253SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng00495212006-12-12 21:32:44 +0000254 bool Extend = false;
Andrew Trickac6d9be2013-05-25 02:42:55 +0000255 SDLoc dl(CFP);
Evan Cheng00495212006-12-12 21:32:44 +0000256
257 // If a FP immediate is precise when represented as a float and if the
258 // target can do an extending load from float to double, we put it into
259 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000260 // double. This shrinks FP constants and canonicalizes them for targets where
261 // an FP extending load is the same cost as a normal load (such as on the x87
262 // fp stack or PPC FP unit).
Owen Andersone50ed302009-08-10 22:56:29 +0000263 EVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000264 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000265 if (!UseCP) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000267 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000268 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000269 }
270
Owen Andersone50ed302009-08-10 22:56:29 +0000271 EVT OrigVT = VT;
272 EVT SVT = VT;
Owen Anderson825b72b2009-08-11 20:47:22 +0000273 while (SVT != MVT::f32) {
274 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman7720cb32010-06-18 14:01:07 +0000275 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Chengef120572008-03-04 08:05:30 +0000276 // Only do this if the target has a native EXTLOAD instruction from
277 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000278 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000279 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000280 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Andersonbaf3c402009-07-29 18:55:55 +0000281 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Chengef120572008-03-04 08:05:30 +0000282 VT = SVT;
283 Extend = true;
284 }
Evan Cheng00495212006-12-12 21:32:44 +0000285 }
286
Dan Gohman475871a2008-07-27 21:46:04 +0000287 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000288 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman65fd6562011-11-03 21:49:52 +0000289 if (Extend) {
290 SDValue Result =
291 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
292 DAG.getEntryNode(),
293 CPIdx, MachinePointerInfo::getConstantPool(),
294 VT, false, false, Alignment);
295 return Result;
296 }
297 SDValue Result =
298 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000299 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman65fd6562011-11-03 21:49:52 +0000300 Alignment);
301 return Result;
Evan Cheng00495212006-12-12 21:32:44 +0000302}
303
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000304/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman65fd6562011-11-03 21:49:52 +0000305static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
306 const TargetLowering &TLI,
Eli Friedman0e3642a2011-11-11 23:58:27 +0000307 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000308 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
309 "unaligned indexed stores not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000310 SDValue Chain = ST->getChain();
311 SDValue Ptr = ST->getBasePtr();
312 SDValue Val = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +0000313 EVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000314 int Alignment = ST->getAlignment();
Matt Arsenault4f17f882013-10-30 23:30:05 +0000315 unsigned AS = ST->getAddressSpace();
316
Andrew Trickac6d9be2013-05-25 02:42:55 +0000317 SDLoc dl(ST);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000318 if (ST->getMemoryVT().isFloatingPoint() ||
319 ST->getMemoryVT().isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000320 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000321 if (TLI.isTypeLegal(intVT)) {
322 // Expand to a bitconvert of the value to the integer type of the
323 // same size, then a (misaligned) int store.
324 // FIXME: Does not handle truncating floating point stores!
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000325 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman65fd6562011-11-03 21:49:52 +0000326 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
327 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000328 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000329 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000330 }
Dan Gohman1b328962011-05-17 22:22:52 +0000331 // Do a (aligned) store to a stack slot, then copy from the stack slot
332 // to the final destination using (unaligned) integer loads and stores.
333 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000334 MVT RegVT =
Dan Gohman1b328962011-05-17 22:22:52 +0000335 TLI.getRegisterType(*DAG.getContext(),
336 EVT::getIntegerVT(*DAG.getContext(),
337 StoredVT.getSizeInBits()));
338 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
339 unsigned RegBytes = RegVT.getSizeInBits() / 8;
340 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
341
342 // Make sure the stack slot is also aligned for the register type.
343 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
344
345 // Perform the original store, only redirected to the stack slot.
346 SDValue Store = DAG.getTruncStore(Chain, dl,
347 Val, StackPtr, MachinePointerInfo(),
348 StoredVT, false, false, 0);
Matt Arsenault4f17f882013-10-30 23:30:05 +0000349 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy(AS));
Dan Gohman1b328962011-05-17 22:22:52 +0000350 SmallVector<SDValue, 8> Stores;
351 unsigned Offset = 0;
352
353 // Do all but one copies using the full register width.
354 for (unsigned i = 1; i < NumRegs; i++) {
355 // Load one integer register's worth from the stack slot.
356 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
357 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000358 false, false, false, 0);
Dan Gohman1b328962011-05-17 22:22:52 +0000359 // Store it to the final location. Remember the store.
360 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
361 ST->getPointerInfo().getWithOffset(Offset),
362 ST->isVolatile(), ST->isNonTemporal(),
363 MinAlign(ST->getAlignment(), Offset)));
364 // Increment the pointers.
365 Offset += RegBytes;
366 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
367 Increment);
368 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
369 }
370
371 // The last store may be partial. Do a truncating store. On big-endian
372 // machines this requires an extending load from the stack slot to ensure
373 // that the bits are in the right place.
374 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
375 8 * (StoredBytes - Offset));
376
377 // Load from the stack slot.
378 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
379 MachinePointerInfo(),
380 MemVT, false, false, 0);
381
382 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
383 ST->getPointerInfo()
384 .getWithOffset(Offset),
385 MemVT, ST->isVolatile(),
386 ST->isNonTemporal(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000387 MinAlign(ST->getAlignment(), Offset),
388 ST->getTBAAInfo()));
Dan Gohman1b328962011-05-17 22:22:52 +0000389 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman65fd6562011-11-03 21:49:52 +0000390 SDValue Result =
391 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
392 Stores.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +0000393 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000394 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000395 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000396 assert(ST->getMemoryVT().isInteger() &&
397 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000398 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000399 // Get the half-size VT
Ken Dyckbceddbd2009-12-17 20:09:43 +0000400 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000401 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000402 int IncrementSize = NumBits / 8;
403
404 // Divide the stored value in two parts.
Owen Anderson95771af2011-02-25 21:41:48 +0000405 SDValue ShiftAmount = DAG.getConstant(NumBits,
406 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman475871a2008-07-27 21:46:04 +0000407 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000408 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000409
410 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000411 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000412 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000413 ST->getPointerInfo(), NewStoredVT,
David Greene1e559442010-02-15 17:00:31 +0000414 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Matt Arsenault4f17f882013-10-30 23:30:05 +0000415
Dale Johannesenbb5da912009-02-02 20:41:04 +0000416 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Matt Arsenault4f17f882013-10-30 23:30:05 +0000417 DAG.getConstant(IncrementSize, TLI.getPointerTy(AS)));
Duncan Sandsdc846502007-10-28 12:59:45 +0000418 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000419 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000420 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene1e559442010-02-15 17:00:31 +0000421 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000422 Alignment, ST->getTBAAInfo());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000423
Dan Gohman65fd6562011-11-03 21:49:52 +0000424 SDValue Result =
425 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000426 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000427}
428
429/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman65fd6562011-11-03 21:49:52 +0000430static void
431ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
432 const TargetLowering &TLI,
433 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000434 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
435 "unaligned indexed loads not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000436 SDValue Chain = LD->getChain();
437 SDValue Ptr = LD->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +0000438 EVT VT = LD->getValueType(0);
439 EVT LoadedVT = LD->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000440 SDLoc dl(LD);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000441 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000442 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000443 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000444 // Expand to a (misaligned) integer load of the same size,
445 // then bitconvert to floating point or vector.
Richard Sandiford66589dc2013-10-28 11:17:59 +0000446 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr,
447 LD->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000448 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000449 if (LoadedVT != VT)
450 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
451 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000452
Dan Gohman65fd6562011-11-03 21:49:52 +0000453 ValResult = Result;
454 ChainResult = Chain;
455 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000456 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000457
Chris Lattnerecf42c42010-09-21 16:36:31 +0000458 // Copy the value to a (aligned) stack slot using (unaligned) integer
459 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglunddfcf33a2012-12-19 11:48:16 +0000460 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattnerecf42c42010-09-21 16:36:31 +0000461 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
462 unsigned RegBytes = RegVT.getSizeInBits() / 8;
463 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
464
465 // Make sure the stack slot is also aligned for the register type.
466 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
467
468 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
469 SmallVector<SDValue, 8> Stores;
470 SDValue StackPtr = StackBase;
471 unsigned Offset = 0;
472
473 // Do all but one copies using the full register width.
474 for (unsigned i = 1; i < NumRegs; i++) {
475 // Load one integer register's worth from the original location.
476 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
477 LD->getPointerInfo().getWithOffset(Offset),
478 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000479 LD->isInvariant(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000480 MinAlign(LD->getAlignment(), Offset),
481 LD->getTBAAInfo());
Chris Lattnerecf42c42010-09-21 16:36:31 +0000482 // Follow the load with a store to the stack slot. Remember the store.
483 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000484 MachinePointerInfo(), false, false, 0));
Chris Lattnerecf42c42010-09-21 16:36:31 +0000485 // Increment the pointers.
486 Offset += RegBytes;
487 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
488 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
489 Increment);
490 }
491
492 // The last copy may be partial. Do an extending load.
493 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
494 8 * (LoadedBytes - Offset));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000495 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000496 LD->getPointerInfo().getWithOffset(Offset),
497 MemVT, LD->isVolatile(),
498 LD->isNonTemporal(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000499 MinAlign(LD->getAlignment(), Offset),
500 LD->getTBAAInfo());
Chris Lattnerecf42c42010-09-21 16:36:31 +0000501 // Follow the load with a store to the stack slot. Remember the store.
502 // On big-endian machines this requires a truncating store to ensure
503 // that the bits end up in the right place.
504 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
505 MachinePointerInfo(), MemVT,
506 false, false, 0));
507
508 // The order of the stores doesn't matter - say it with a TokenFactor.
509 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
510 Stores.size());
511
512 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastingsa9011292011-02-16 16:23:55 +0000513 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000514 MachinePointerInfo(), LoadedVT, false, false, 0);
515
516 // Callers expect a MERGE_VALUES node.
Dan Gohman65fd6562011-11-03 21:49:52 +0000517 ValResult = Load;
518 ChainResult = TF;
519 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000520 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000521 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000522 "Unaligned load of unsupported type.");
523
Dale Johannesen8155d642008-02-27 22:36:00 +0000524 // Compute the new VT that is half the size of the old one. This is an
525 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000526 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Andersone50ed302009-08-10 22:56:29 +0000527 EVT NewLoadedVT;
Owen Anderson23b9b192009-08-12 00:36:31 +0000528 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000529 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000530
Chris Lattnere400af82007-11-19 21:38:03 +0000531 unsigned Alignment = LD->getAlignment();
532 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000533 ISD::LoadExtType HiExtType = LD->getExtensionType();
534
535 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
536 if (HiExtType == ISD::NON_EXTLOAD)
537 HiExtType = ISD::ZEXTLOAD;
538
539 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000540 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000541 if (TLI.isLittleEndian()) {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000542 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000543 NewLoadedVT, LD->isVolatile(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000544 LD->isNonTemporal(), Alignment, LD->getTBAAInfo());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000545 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +0000546 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000547 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000548 LD->getPointerInfo().getWithOffset(IncrementSize),
549 NewLoadedVT, LD->isVolatile(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000550 LD->isNonTemporal(), MinAlign(Alignment, IncrementSize),
551 LD->getTBAAInfo());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000552 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000553 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000554 NewLoadedVT, LD->isVolatile(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000555 LD->isNonTemporal(), Alignment, LD->getTBAAInfo());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000556 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +0000557 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000558 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000559 LD->getPointerInfo().getWithOffset(IncrementSize),
560 NewLoadedVT, LD->isVolatile(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000561 LD->isNonTemporal(), MinAlign(Alignment, IncrementSize),
562 LD->getTBAAInfo());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000563 }
564
565 // aggregate the two parts
Owen Anderson95771af2011-02-25 21:41:48 +0000566 SDValue ShiftAmount = DAG.getConstant(NumBits,
567 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000568 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
569 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000570
Owen Anderson825b72b2009-08-11 20:47:22 +0000571 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000572 Hi.getValue(1));
573
Dan Gohman65fd6562011-11-03 21:49:52 +0000574 ValResult = Result;
575 ChainResult = TF;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000576}
Evan Cheng912095b2007-01-04 21:56:39 +0000577
Nate Begeman68679912008-04-25 18:07:40 +0000578/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
579/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
580/// is necessary to spill the vector being inserted into to memory, perform
581/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000582SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000583PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
Andrew Trickac6d9be2013-05-25 02:42:55 +0000584 SDLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000585 SDValue Tmp1 = Vec;
586 SDValue Tmp2 = Val;
587 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000588
Nate Begeman68679912008-04-25 18:07:40 +0000589 // If the target doesn't support this, we have to spill the input vector
590 // to a temporary stack slot, update the element, then reload it. This is
591 // badness. We could also load the value into a vector register (either
592 // with a "move to register" or "extload into register" instruction, then
593 // permute it into place, if the idx is a constant and if the idx is
594 // supported by the target.
Owen Andersone50ed302009-08-10 22:56:29 +0000595 EVT VT = Tmp1.getValueType();
596 EVT EltVT = VT.getVectorElementType();
597 EVT IdxVT = Tmp3.getValueType();
598 EVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000599 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000600
Evan Chengff89dcb2009-10-18 18:16:27 +0000601 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
602
Nate Begeman68679912008-04-25 18:07:40 +0000603 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000604 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +0000605 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +0000606 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000607
608 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000609 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000610 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000611 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +0000612 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000613 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
614 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000615 // Store the scalar value.
Chris Lattner85ca1062010-09-21 07:32:19 +0000616 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene1e559442010-02-15 17:00:31 +0000617 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000618 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000619 return DAG.getLoad(VT, dl, Ch, StackPtr,
Stephen Lin155615d2013-07-08 00:37:03 +0000620 MachinePointerInfo::getFixedStack(SPFI), false, false,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000621 false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000622}
623
Mon P Wange9f10152008-12-09 05:46:39 +0000624
Eli Friedman3f727d62009-05-27 02:16:40 +0000625SDValue SelectionDAGLegalize::
Andrew Trickac6d9be2013-05-25 02:42:55 +0000626ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) {
Eli Friedman3f727d62009-05-27 02:16:40 +0000627 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
628 // SCALAR_TO_VECTOR requires that the type of the value being inserted
629 // match the element type of the vector being created, except for
630 // integers in which case the inserted value can be over width.
Owen Andersone50ed302009-08-10 22:56:29 +0000631 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedman3f727d62009-05-27 02:16:40 +0000632 if (Val.getValueType() == EltVT ||
633 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
634 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
635 Vec.getValueType(), Val);
636
637 unsigned NumElts = Vec.getValueType().getVectorNumElements();
638 // We generate a shuffle of InVec and ScVec, so the shuffle mask
639 // should be 0,1,2,3,4,5... with the appropriate element replaced with
640 // elt 0 of the RHS.
641 SmallVector<int, 8> ShufOps;
642 for (unsigned i = 0; i != NumElts; ++i)
643 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
644
645 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
646 &ShufOps[0]);
647 }
648 }
649 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
650}
651
Eli Friedman7ef3d172009-06-06 07:04:42 +0000652SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
653 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
654 // FIXME: We shouldn't do this for TargetConstantFP's.
655 // FIXME: move this to the DAG Combiner! Note that we can't regress due
656 // to phase ordering between legalized code and the dag combiner. This
657 // probably means that we need to integrate dag combiner and legalizer
658 // together.
659 // We generally can't do this one for long doubles.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000660 SDValue Chain = ST->getChain();
661 SDValue Ptr = ST->getBasePtr();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000662 unsigned Alignment = ST->getAlignment();
663 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +0000664 bool isNonTemporal = ST->isNonTemporal();
Richard Sandiford66589dc2013-10-28 11:17:59 +0000665 const MDNode *TBAAInfo = ST->getTBAAInfo();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000666 SDLoc dl(ST);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000667 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000668 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohman75b10042011-07-15 22:39:09 +0000669 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000670 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedman7ef3d172009-06-06 07:04:42 +0000671 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson825b72b2009-08-11 20:47:22 +0000672 MVT::i32);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000673 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000674 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000675 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000676
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000677 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000678 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohman75b10042011-07-15 22:39:09 +0000679 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000680 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +0000681 zextOrTrunc(64), MVT::i64);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000682 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000683 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000684 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000685
Dan Gohman75b10042011-07-15 22:39:09 +0000686 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000687 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
688 // stores. If the target supports neither 32- nor 64-bits, this
689 // xform is certainly not worth it.
690 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad40f8f622010-12-07 08:25:19 +0000691 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000692 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000693 if (TLI.isBigEndian()) std::swap(Lo, Hi);
694
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000695 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Richard Sandiford66589dc2013-10-28 11:17:59 +0000696 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000697 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +0000698 DAG.getConstant(4, Ptr.getValueType()));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000699 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000700 ST->getPointerInfo().getWithOffset(4),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000701 isVolatile, isNonTemporal, MinAlign(Alignment, 4U),
702 TBAAInfo);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000703
Owen Anderson825b72b2009-08-11 20:47:22 +0000704 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000705 }
706 }
707 }
Evan Cheng8e23e812011-04-01 00:42:02 +0000708 return SDValue(0, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000709}
710
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000711void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
712 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000713 SDValue Chain = ST->getChain();
714 SDValue Ptr = ST->getBasePtr();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000715 SDLoc dl(Node);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000716
717 unsigned Alignment = ST->getAlignment();
718 bool isVolatile = ST->isVolatile();
719 bool isNonTemporal = ST->isNonTemporal();
Richard Sandiford66589dc2013-10-28 11:17:59 +0000720 const MDNode *TBAAInfo = ST->getTBAAInfo();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000721
722 if (!ST->isTruncatingStore()) {
723 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
724 ReplaceNode(ST, OptStore);
725 return;
726 }
727
728 {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000729 SDValue Value = ST->getValue();
Patrik Hagglund319bb392012-12-19 11:21:04 +0000730 MVT VT = Value.getSimpleValueType();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000731 switch (TLI.getOperationAction(ISD::STORE, VT)) {
732 default: llvm_unreachable("This action is not supported yet!");
Stephen Hines36b56882014-04-23 16:57:46 -0700733 case TargetLowering::Legal: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000734 // If this is an unaligned store and the target doesn't support it,
735 // expand it.
Stephen Hines36b56882014-04-23 16:57:46 -0700736 unsigned AS = ST->getAddressSpace();
737 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT(), AS)) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000738 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000739 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000740 if (ST->getAlignment() < ABIAlignment)
741 ExpandUnalignedStore(cast<StoreSDNode>(Node),
742 DAG, TLI, this);
743 }
744 break;
Stephen Hines36b56882014-04-23 16:57:46 -0700745 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000746 case TargetLowering::Custom: {
747 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
748 if (Res.getNode())
749 ReplaceNode(SDValue(Node, 0), Res);
750 return;
751 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000752 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000753 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellard8b7f16e2012-12-10 21:41:54 +0000754 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
755 "Can only promote stores to same size type");
756 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000757 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000758 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000759 ST->getPointerInfo(), isVolatile,
Richard Sandiford66589dc2013-10-28 11:17:59 +0000760 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000761 ReplaceNode(SDValue(Node, 0), Result);
762 break;
763 }
764 }
765 return;
766 }
767 } else {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000768 SDValue Value = ST->getValue();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000769
770 EVT StVT = ST->getMemoryVT();
771 unsigned StWidth = StVT.getSizeInBits();
772
773 if (StWidth != StVT.getStoreSizeInBits()) {
774 // Promote to a byte-sized store with upper bits zero if not
775 // storing an integral number of bytes. For example, promote
776 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
777 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
778 StVT.getStoreSizeInBits());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000779 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000780 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000781 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000782 NVT, isVolatile, isNonTemporal, Alignment,
783 TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000784 ReplaceNode(SDValue(Node, 0), Result);
785 } else if (StWidth & (StWidth - 1)) {
786 // If not storing a power-of-2 number of bits, expand as two stores.
787 assert(!StVT.isVector() && "Unsupported truncstore!");
788 unsigned RoundWidth = 1 << Log2_32(StWidth);
789 assert(RoundWidth < StWidth);
790 unsigned ExtraWidth = StWidth - RoundWidth;
791 assert(ExtraWidth < RoundWidth);
792 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
793 "Store size not an integral number of bytes!");
794 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
795 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
796 SDValue Lo, Hi;
797 unsigned IncrementSize;
798
799 if (TLI.isLittleEndian()) {
800 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
801 // Store the bottom RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000802 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000803 RoundVT,
Richard Sandiford66589dc2013-10-28 11:17:59 +0000804 isVolatile, isNonTemporal, Alignment,
805 TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000806
807 // Store the remaining ExtraWidth bits.
808 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000809 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +0000810 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000811 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000812 DAG.getConstant(RoundWidth,
Stephen Hines36b56882014-04-23 16:57:46 -0700813 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000814 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000815 ST->getPointerInfo().getWithOffset(IncrementSize),
816 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford66589dc2013-10-28 11:17:59 +0000817 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000818 } else {
819 // Big endian - avoid unaligned stores.
820 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
821 // Store the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000822 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000823 DAG.getConstant(ExtraWidth,
Stephen Hines36b56882014-04-23 16:57:46 -0700824 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000825 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000826 RoundVT, isVolatile, isNonTemporal, Alignment,
827 TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000828
829 // Store the remaining ExtraWidth bits.
830 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000831 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Stephen Hines36b56882014-04-23 16:57:46 -0700832 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000833 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000834 ST->getPointerInfo().getWithOffset(IncrementSize),
835 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford66589dc2013-10-28 11:17:59 +0000836 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000837 }
838
839 // The order of the stores doesn't matter.
840 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
841 ReplaceNode(SDValue(Node, 0), Result);
842 } else {
Patrik Hagglund88ef5142012-12-19 08:28:51 +0000843 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
844 StVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000845 default: llvm_unreachable("This action is not supported yet!");
Stephen Hines36b56882014-04-23 16:57:46 -0700846 case TargetLowering::Legal: {
847 unsigned AS = ST->getAddressSpace();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000848 // If this is an unaligned store and the target doesn't support it,
849 // expand it.
Stephen Hines36b56882014-04-23 16:57:46 -0700850 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT(), AS)) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000851 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000852 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000853 if (ST->getAlignment() < ABIAlignment)
854 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
855 }
856 break;
Stephen Hines36b56882014-04-23 16:57:46 -0700857 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000858 case TargetLowering::Custom: {
859 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
860 if (Res.getNode())
861 ReplaceNode(SDValue(Node, 0), Res);
862 return;
863 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000864 case TargetLowering::Expand:
865 assert(!StVT.isVector() &&
866 "Vector Stores are handled in LegalizeVectorOps");
867
868 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000869 assert(TLI.isTypeLegal(StVT) &&
870 "Do not know how to expand this store!");
871 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000872 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000873 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000874 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000875 ReplaceNode(SDValue(Node, 0), Result);
876 break;
877 }
878 }
879 }
880}
881
882void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
883 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000884 SDValue Chain = LD->getChain(); // The chain.
885 SDValue Ptr = LD->getBasePtr(); // The base pointer.
886 SDValue Value; // The value returned by the load op.
Andrew Trickac6d9be2013-05-25 02:42:55 +0000887 SDLoc dl(Node);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000888
889 ISD::LoadExtType ExtType = LD->getExtensionType();
890 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000891 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000892 SDValue RVal = SDValue(Node, 0);
893 SDValue RChain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000894
895 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
896 default: llvm_unreachable("This action is not supported yet!");
Stephen Hines36b56882014-04-23 16:57:46 -0700897 case TargetLowering::Legal: {
898 unsigned AS = LD->getAddressSpace();
Evan Chengfe257cc2012-09-18 01:34:40 +0000899 // If this is an unaligned load and the target doesn't support it,
900 // expand it.
Stephen Hines36b56882014-04-23 16:57:46 -0700901 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT(), AS)) {
Evan Chengfe257cc2012-09-18 01:34:40 +0000902 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
903 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +0000904 TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Chengfe257cc2012-09-18 01:34:40 +0000905 if (LD->getAlignment() < ABIAlignment){
906 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
907 }
908 }
909 break;
Stephen Hines36b56882014-04-23 16:57:46 -0700910 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000911 case TargetLowering::Custom: {
Evan Chengfe257cc2012-09-18 01:34:40 +0000912 SDValue Res = TLI.LowerOperation(RVal, DAG);
913 if (Res.getNode()) {
914 RVal = Res;
915 RChain = Res.getValue(1);
916 }
917 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000918 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000919 case TargetLowering::Promote: {
Patrik Hagglund319bb392012-12-19 11:21:04 +0000920 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellardf45d11b2012-12-10 21:41:58 +0000921 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
922 "Can only promote loads to same size type");
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000923
Richard Sandiford66589dc2013-10-28 11:17:59 +0000924 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000925 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
926 RChain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000927 break;
928 }
929 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000930 if (RChain.getNode() != Node) {
931 assert(RVal.getNode() != Node && "Load must be completely replaced");
932 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
933 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000934 ReplacedNode(Node);
935 }
936 return;
937 }
938
939 EVT SrcVT = LD->getMemoryVT();
940 unsigned SrcWidth = SrcVT.getSizeInBits();
941 unsigned Alignment = LD->getAlignment();
942 bool isVolatile = LD->isVolatile();
943 bool isNonTemporal = LD->isNonTemporal();
Richard Sandiford66589dc2013-10-28 11:17:59 +0000944 const MDNode *TBAAInfo = LD->getTBAAInfo();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000945
946 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
947 // Some targets pretend to have an i1 loading operation, and actually
948 // load an i8. This trick is correct for ZEXTLOAD because the top 7
949 // bits are guaranteed to be zero; it helps the optimizers understand
950 // that these bits are zero. It is also useful for EXTLOAD, since it
951 // tells the optimizers that those bits are undefined. It would be
952 // nice to have an effective generic way of getting these benefits...
953 // Until such a way is found, don't insist on promoting i1 here.
954 (SrcVT != MVT::i1 ||
955 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
956 // Promote to a byte-sized load if not loading an integral number of
957 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
958 unsigned NewWidth = SrcVT.getStoreSizeInBits();
959 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
960 SDValue Ch;
961
962 // The extra bits are guaranteed to be zero, since we stored them that
963 // way. A zext load from NVT thus automatically gives zext from SrcVT.
964
965 ISD::LoadExtType NewExtType =
966 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
967
968 SDValue Result =
969 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000970 Chain, Ptr, LD->getPointerInfo(),
Richard Sandiford66589dc2013-10-28 11:17:59 +0000971 NVT, isVolatile, isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000972
973 Ch = Result.getValue(1); // The chain.
974
975 if (ExtType == ISD::SEXTLOAD)
976 // Having the top bits zero doesn't help when sign extending.
977 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
978 Result.getValueType(),
979 Result, DAG.getValueType(SrcVT));
980 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
981 // All the top bits are guaranteed to be zero - inform the optimizers.
982 Result = DAG.getNode(ISD::AssertZext, dl,
983 Result.getValueType(), Result,
984 DAG.getValueType(SrcVT));
985
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000986 Value = Result;
987 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000988 } else if (SrcWidth & (SrcWidth - 1)) {
989 // If not loading a power-of-2 number of bits, expand as two loads.
990 assert(!SrcVT.isVector() && "Unsupported extload!");
991 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
992 assert(RoundWidth < SrcWidth);
993 unsigned ExtraWidth = SrcWidth - RoundWidth;
994 assert(ExtraWidth < RoundWidth);
995 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
996 "Load size not an integral number of bytes!");
997 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
998 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
999 SDValue Lo, Hi, Ch;
1000 unsigned IncrementSize;
1001
1002 if (TLI.isLittleEndian()) {
1003 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1004 // Load the bottom RoundWidth bits.
1005 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001006 Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001007 LD->getPointerInfo(), RoundVT, isVolatile,
Richard Sandiford66589dc2013-10-28 11:17:59 +00001008 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001009
1010 // Load the remaining ExtraWidth bits.
1011 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001012 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +00001013 DAG.getConstant(IncrementSize, Ptr.getValueType()));
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().getWithOffset(IncrementSize),
1016 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford66589dc2013-10-28 11:17:59 +00001017 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001018
1019 // Build a factor node to remember that this load is independent of
1020 // the other one.
1021 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1022 Hi.getValue(1));
1023
1024 // Move the top bits to the right place.
1025 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1026 DAG.getConstant(RoundWidth,
Stephen Hines36b56882014-04-23 16:57:46 -07001027 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001028
1029 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001030 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001031 } else {
1032 // Big endian - avoid unaligned loads.
1033 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1034 // Load the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001035 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001036 LD->getPointerInfo(), RoundVT, isVolatile,
Richard Sandiford66589dc2013-10-28 11:17:59 +00001037 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001038
1039 // Load the remaining ExtraWidth bits.
1040 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001041 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellardedd08f72013-08-26 15:06:10 +00001042 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001043 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001044 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001045 LD->getPointerInfo().getWithOffset(IncrementSize),
1046 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford66589dc2013-10-28 11:17:59 +00001047 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001048
1049 // Build a factor node to remember that this load is independent of
1050 // the other one.
1051 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1052 Hi.getValue(1));
1053
1054 // Move the top bits to the right place.
1055 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1056 DAG.getConstant(ExtraWidth,
Stephen Hines36b56882014-04-23 16:57:46 -07001057 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001058
1059 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001060 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001061 }
1062
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001063 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001064 } else {
1065 bool isCustom = false;
Patrik Hagglund702474d2012-12-14 09:05:13 +00001066 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001067 default: llvm_unreachable("This action is not supported yet!");
1068 case TargetLowering::Custom:
Stephen Hines36b56882014-04-23 16:57:46 -07001069 isCustom = true;
1070 // FALLTHROUGH
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001071 case TargetLowering::Legal: {
Stephen Hines36b56882014-04-23 16:57:46 -07001072 Value = SDValue(Node, 0);
1073 Chain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001074
Stephen Hines36b56882014-04-23 16:57:46 -07001075 if (isCustom) {
1076 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1077 if (Res.getNode()) {
1078 Value = Res;
1079 Chain = Res.getValue(1);
1080 }
1081 } else {
1082 // If this is an unaligned load and the target doesn't support
1083 // it, expand it.
1084 EVT MemVT = LD->getMemoryVT();
1085 unsigned AS = LD->getAddressSpace();
1086 if (!TLI.allowsUnalignedMemoryAccesses(MemVT, AS)) {
1087 Type *Ty =
1088 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1089 unsigned ABIAlignment =
1090 TLI.getDataLayout()->getABITypeAlignment(Ty);
1091 if (LD->getAlignment() < ABIAlignment){
1092 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
1093 DAG, TLI, Value, Chain);
1094 }
1095 }
1096 }
1097 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001098 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001099 case TargetLowering::Expand:
Stephen Hines36b56882014-04-23 16:57:46 -07001100 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) &&
1101 TLI.isTypeLegal(SrcVT)) {
1102 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
1103 LD->getMemOperand());
1104 unsigned ExtendOp;
1105 switch (ExtType) {
1106 case ISD::EXTLOAD:
1107 ExtendOp = (SrcVT.isFloatingPoint() ?
1108 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1109 break;
1110 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1111 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1112 default: llvm_unreachable("Unexpected extend load type!");
1113 }
1114 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1115 Chain = Load.getValue(1);
1116 break;
1117 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001118
Stephen Hines36b56882014-04-23 16:57:46 -07001119 assert(!SrcVT.isVector() &&
1120 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001121
Stephen Hines36b56882014-04-23 16:57:46 -07001122 // FIXME: This does not work for vectors on most targets. Sign-
1123 // and zero-extend operations are currently folded into extending
1124 // loads, whether they are legal or not, and then we end up here
1125 // without any support for legalizing them.
1126 assert(ExtType != ISD::EXTLOAD &&
1127 "EXTLOAD should always be supported!");
1128 // Turn the unsupported load into an EXTLOAD followed by an
1129 // explicit zero/sign extend inreg.
1130 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl,
1131 Node->getValueType(0),
1132 Chain, Ptr, SrcVT,
1133 LD->getMemOperand());
1134 SDValue ValRes;
1135 if (ExtType == ISD::SEXTLOAD)
1136 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1137 Result.getValueType(),
1138 Result, DAG.getValueType(SrcVT));
1139 else
1140 ValRes = DAG.getZeroExtendInReg(Result, dl,
1141 SrcVT.getScalarType());
1142 Value = ValRes;
1143 Chain = Result.getValue(1);
1144 break;
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001145 }
1146 }
1147
1148 // Since loads produce two values, make sure to remember that we legalized
1149 // both of them.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001150 if (Chain.getNode() != Node) {
1151 assert(Value.getNode() != Node && "Load must be completely replaced");
1152 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1153 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001154 ReplacedNode(Node);
1155 }
1156}
1157
Dan Gohman6a109f92011-07-15 21:42:20 +00001158/// LegalizeOp - Return a legal replacement for the given operation, with
1159/// all legal operands.
Dan Gohman65fd6562011-11-03 21:49:52 +00001160void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1161 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1162 return;
Scott Michelfdc40a02009-02-17 22:15:04 +00001163
Eli Friedman1fde9c52009-05-24 02:46:31 +00001164 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001165 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1166 TargetLowering::TypeLegal &&
Eli Friedman1fde9c52009-05-24 02:46:31 +00001167 "Unexpected illegal type!");
1168
1169 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001170 assert((TLI.getTypeAction(*DAG.getContext(),
1171 Node->getOperand(i).getValueType()) ==
1172 TargetLowering::TypeLegal ||
Eli Friedman1fde9c52009-05-24 02:46:31 +00001173 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1174 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001175
Eli Friedman8c377c72009-05-27 01:25:56 +00001176 // Figure out the correct action; the way to query this varies by opcode
Bill Wendling6b9a2932011-01-26 22:21:35 +00001177 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman8c377c72009-05-27 01:25:56 +00001178 bool SimpleFinishLegalizing = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001179 switch (Node->getOpcode()) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001180 case ISD::INTRINSIC_W_CHAIN:
1181 case ISD::INTRINSIC_WO_CHAIN:
1182 case ISD::INTRINSIC_VOID:
Eli Friedman8c377c72009-05-27 01:25:56 +00001183 case ISD::STACKSAVE:
Owen Anderson825b72b2009-08-11 20:47:22 +00001184 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman8c377c72009-05-27 01:25:56 +00001185 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00001186 case ISD::VAARG:
1187 Action = TLI.getOperationAction(Node->getOpcode(),
1188 Node->getValueType(0));
1189 if (Action != TargetLowering::Promote)
1190 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1191 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001192 case ISD::SINT_TO_FP:
1193 case ISD::UINT_TO_FP:
1194 case ISD::EXTRACT_VECTOR_ELT:
1195 Action = TLI.getOperationAction(Node->getOpcode(),
1196 Node->getOperand(0).getValueType());
1197 break;
1198 case ISD::FP_ROUND_INREG:
1199 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00001200 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00001201 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1202 break;
1203 }
Eli Friedman327236c2011-08-24 20:50:09 +00001204 case ISD::ATOMIC_STORE: {
1205 Action = TLI.getOperationAction(Node->getOpcode(),
1206 Node->getOperand(2).getValueType());
1207 break;
1208 }
Eli Friedman3be2e512009-05-28 03:06:16 +00001209 case ISD::SELECT_CC:
1210 case ISD::SETCC:
1211 case ISD::BR_CC: {
1212 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1213 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1214 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001215 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedman3be2e512009-05-28 03:06:16 +00001216 ISD::CondCode CCCode =
1217 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1218 Action = TLI.getCondCodeAction(CCCode, OpVT);
1219 if (Action == TargetLowering::Legal) {
1220 if (Node->getOpcode() == ISD::SELECT_CC)
1221 Action = TLI.getOperationAction(Node->getOpcode(),
1222 Node->getValueType(0));
1223 else
1224 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1225 }
1226 break;
1227 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001228 case ISD::LOAD:
1229 case ISD::STORE:
Eli Friedmanad754602009-05-28 03:56:57 +00001230 // FIXME: Model these properly. LOAD and STORE are complicated, and
1231 // STORE expects the unlegalized operand in some cases.
1232 SimpleFinishLegalizing = false;
1233 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001234 case ISD::CALLSEQ_START:
1235 case ISD::CALLSEQ_END:
Eli Friedmanad754602009-05-28 03:56:57 +00001236 // FIXME: This shouldn't be necessary. These nodes have special properties
1237 // dealing with the recursive nature of legalization. Removing this
1238 // special case should be done as part of making LegalizeDAG non-recursive.
1239 SimpleFinishLegalizing = false;
1240 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001241 case ISD::EXTRACT_ELEMENT:
1242 case ISD::FLT_ROUNDS_:
1243 case ISD::SADDO:
1244 case ISD::SSUBO:
1245 case ISD::UADDO:
1246 case ISD::USUBO:
1247 case ISD::SMULO:
1248 case ISD::UMULO:
1249 case ISD::FPOWI:
1250 case ISD::MERGE_VALUES:
1251 case ISD::EH_RETURN:
1252 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00001253 case ISD::EH_SJLJ_SETJMP:
1254 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001255 // These operations lie about being legal: when they claim to be legal,
1256 // they should actually be expanded.
Eli Friedman8c377c72009-05-27 01:25:56 +00001257 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1258 if (Action == TargetLowering::Legal)
1259 Action = TargetLowering::Expand;
1260 break;
Duncan Sands4a544a72011-09-06 13:37:06 +00001261 case ISD::INIT_TRAMPOLINE:
1262 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman8c377c72009-05-27 01:25:56 +00001263 case ISD::FRAMEADDR:
1264 case ISD::RETURNADDR:
Eli Friedman4bc8c712009-05-27 12:20:41 +00001265 // These operations lie about being legal: when they claim to be legal,
1266 // they should actually be custom-lowered.
1267 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1268 if (Action == TargetLowering::Legal)
1269 Action = TargetLowering::Custom;
Eli Friedman8c377c72009-05-27 01:25:56 +00001270 break;
Shuxin Yang970755e2012-10-19 20:11:16 +00001271 case ISD::DEBUGTRAP:
1272 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1273 if (Action == TargetLowering::Expand) {
1274 // replace ISD::DEBUGTRAP with ISD::TRAP
1275 SDValue NewVal;
Andrew Trickac6d9be2013-05-25 02:42:55 +00001276 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yangcfc6cb02012-10-19 23:00:20 +00001277 Node->getOperand(0));
Shuxin Yang970755e2012-10-19 20:11:16 +00001278 ReplaceNode(Node, NewVal.getNode());
1279 LegalizeOp(NewVal.getNode());
1280 return;
1281 }
1282 break;
1283
Chris Lattner3e928bb2005-01-07 07:47:09 +00001284 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001285 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001286 Action = TargetLowering::Legal;
1287 } else {
1288 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001289 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001290 break;
1291 }
1292
1293 if (SimpleFinishLegalizing) {
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001294 SDNode *NewNode = Node;
Eli Friedman8c377c72009-05-27 01:25:56 +00001295 switch (Node->getOpcode()) {
1296 default: break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001297 case ISD::SHL:
1298 case ISD::SRL:
1299 case ISD::SRA:
1300 case ISD::ROTL:
1301 case ISD::ROTR:
1302 // Legalizing shifts/rotates requires adjusting the shift amount
1303 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001304 if (!Node->getOperand(1).getValueType().isVector()) {
1305 SDValue SAO =
1306 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1307 Node->getOperand(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00001308 HandleSDNode Handle(SAO);
1309 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001310 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1311 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001312 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001313 break;
Dan Gohmandb8dc2b2009-08-18 23:36:17 +00001314 case ISD::SRL_PARTS:
1315 case ISD::SRA_PARTS:
1316 case ISD::SHL_PARTS:
1317 // Legalizing shifts/rotates requires adjusting the shift amount
1318 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001319 if (!Node->getOperand(2).getValueType().isVector()) {
1320 SDValue SAO =
1321 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1322 Node->getOperand(2));
Dan Gohman65fd6562011-11-03 21:49:52 +00001323 HandleSDNode Handle(SAO);
1324 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001325 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1326 Node->getOperand(1),
1327 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001328 }
Dan Gohman2c9489d2009-08-18 23:52:48 +00001329 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001330 }
1331
Dan Gohman65fd6562011-11-03 21:49:52 +00001332 if (NewNode != Node) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001333 DAG.ReplaceAllUsesWith(Node, NewNode);
Dan Gohman65fd6562011-11-03 21:49:52 +00001334 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1335 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman0e3642a2011-11-11 23:58:27 +00001336 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001337 Node = NewNode;
1338 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001339 switch (Action) {
1340 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +00001341 return;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001342 case TargetLowering::Custom: {
Eli Friedman8c377c72009-05-27 01:25:56 +00001343 // FIXME: The handling for custom lowering with multiple results is
1344 // a complete mess.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001345 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1346 if (Res.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001347 SmallVector<SDValue, 8> ResultVals;
Eli Friedman8c377c72009-05-27 01:25:56 +00001348 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1349 if (e == 1)
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001350 ResultVals.push_back(Res);
Eli Friedman8c377c72009-05-27 01:25:56 +00001351 else
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001352 ResultVals.push_back(Res.getValue(i));
Eli Friedman8c377c72009-05-27 01:25:56 +00001353 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001354 if (Res.getNode() != Node || Res.getResNo() != 0) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001355 DAG.ReplaceAllUsesWith(Node, ResultVals.data());
Dan Gohman65fd6562011-11-03 21:49:52 +00001356 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1357 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001358 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001359 }
1360 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001361 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001362 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001363 // FALL THROUGH
1364 case TargetLowering::Expand:
Dan Gohman65fd6562011-11-03 21:49:52 +00001365 ExpandNode(Node);
1366 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001367 case TargetLowering::Promote:
Dan Gohman65fd6562011-11-03 21:49:52 +00001368 PromoteNode(Node);
1369 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001370 }
1371 }
1372
1373 switch (Node->getOpcode()) {
1374 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001375#ifndef NDEBUG
David Greene993aace2010-01-05 01:24:53 +00001376 dbgs() << "NODE: ";
1377 Node->dump( &DAG);
1378 dbgs() << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001379#endif
Craig Topper5e25ee82012-02-05 08:31:47 +00001380 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001381
Dan Gohman65fd6562011-11-03 21:49:52 +00001382 case ISD::CALLSEQ_START:
Dan Gohman6f3ddef2011-10-29 00:41:52 +00001383 case ISD::CALLSEQ_END:
Dan Gohman65fd6562011-11-03 21:49:52 +00001384 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001385 case ISD::LOAD: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001386 return LegalizeLoadOps(Node);
Chris Lattner01ff7212005-04-10 22:54:25 +00001387 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001388 case ISD::STORE: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001389 return LegalizeStoreOps(Node);
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001390 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001391 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001392}
1393
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001394SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1395 SDValue Vec = Op.getOperand(0);
1396 SDValue Idx = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001397 SDLoc dl(Op);
Stephen Hines36b56882014-04-23 16:57:46 -07001398
1399 // Before we generate a new store to a temporary stack slot, see if there is
1400 // already one that we can use. There often is because when we scalarize
1401 // vector operations (using SelectionDAG::UnrollVectorOp for example) a whole
1402 // series of EXTRACT_VECTOR_ELT nodes are generated, one for each element in
1403 // the vector. If all are expanded here, we don't want one store per vector
1404 // element.
1405 SDValue StackPtr, Ch;
1406 for (SDNode::use_iterator UI = Vec.getNode()->use_begin(),
1407 UE = Vec.getNode()->use_end(); UI != UE; ++UI) {
1408 SDNode *User = *UI;
1409 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(User)) {
1410 if (ST->isIndexed() || ST->isTruncatingStore() ||
1411 ST->getValue() != Vec)
1412 continue;
1413
1414 // Make sure that nothing else could have stored into the destination of
1415 // this store.
1416 if (!ST->getChain().reachesChainWithoutSideEffects(DAG.getEntryNode()))
1417 continue;
1418
1419 StackPtr = ST->getBasePtr();
1420 Ch = SDValue(ST, 0);
1421 break;
1422 }
1423 }
1424
1425 if (!Ch.getNode()) {
1426 // Store the value to a temporary stack slot, then LOAD the returned part.
1427 StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1428 Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1429 MachinePointerInfo(), false, false, 0);
1430 }
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001431
1432 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001433 unsigned EltSize =
1434 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001435 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1436 DAG.getConstant(EltSize, Idx.getValueType()));
1437
Matt Arsenault91053d52013-11-17 02:24:21 +00001438 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001439 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1440
Eli Friedmanc680ac92009-07-09 22:01:03 +00001441 if (Op.getValueType().isVector())
Chris Lattnerecf42c42010-09-21 16:36:31 +00001442 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001443 false, false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00001444 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001445 MachinePointerInfo(),
1446 Vec.getValueType().getVectorElementType(),
1447 false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001448}
1449
David Greenecfe33c42011-01-26 19:13:22 +00001450SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1451 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1452
1453 SDValue Vec = Op.getOperand(0);
1454 SDValue Part = Op.getOperand(1);
1455 SDValue Idx = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +00001456 SDLoc dl(Op);
David Greenecfe33c42011-01-26 19:13:22 +00001457
1458 // Store the value to a temporary stack slot, then LOAD the returned part.
1459
1460 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1461 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1462 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1463
1464 // First store the whole vector.
1465 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1466 false, false, 0);
1467
1468 // Then store the inserted part.
1469
1470 // Add the offset to the index.
1471 unsigned EltSize =
1472 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1473
1474 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1475 DAG.getConstant(EltSize, Idx.getValueType()));
Matt Arsenaultca1b7792013-11-17 02:31:26 +00001476 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
David Greenecfe33c42011-01-26 19:13:22 +00001477
1478 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1479 StackPtr);
1480
1481 // Store the subvector.
1482 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1483 MachinePointerInfo(), false, false, 0);
1484
1485 // Finally, load the updated vector.
1486 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001487 false, false, false, 0);
David Greenecfe33c42011-01-26 19:13:22 +00001488}
1489
Eli Friedman7ef3d172009-06-06 07:04:42 +00001490SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1491 // We can't handle this case efficiently. Allocate a sufficiently
1492 // aligned object on the stack, store each element into it, then load
1493 // the result as a vector.
1494 // Create the stack frame object.
Owen Andersone50ed302009-08-10 22:56:29 +00001495 EVT VT = Node->getValueType(0);
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001496 EVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00001497 SDLoc dl(Node);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001498 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Chengff89dcb2009-10-18 18:16:27 +00001499 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattnerecf42c42010-09-21 16:36:31 +00001500 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001501
1502 // Emit a store of each element to the stack slot.
1503 SmallVector<SDValue, 8> Stores;
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001504 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedman7ef3d172009-06-06 07:04:42 +00001505 // Store (in the right endianness) the elements to memory.
1506 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1507 // Ignore undef elements.
1508 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1509
1510 unsigned Offset = TypeByteSize*i;
1511
1512 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1513 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1514
Dan Gohman9949dd62010-02-25 20:30:49 +00001515 // If the destination vector element type is narrower than the source
1516 // element type, only store the bits necessary.
1517 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001518 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001519 Node->getOperand(i), Idx,
1520 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001521 EltVT, false, false, 0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00001522 } else
Jim Grosbach6e992612010-07-02 17:41:59 +00001523 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001524 Node->getOperand(i), Idx,
1525 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001526 false, false, 0));
Eli Friedman7ef3d172009-06-06 07:04:42 +00001527 }
1528
1529 SDValue StoreChain;
1530 if (!Stores.empty()) // Not all undef elements?
Owen Anderson825b72b2009-08-11 20:47:22 +00001531 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedman7ef3d172009-06-06 07:04:42 +00001532 &Stores[0], Stores.size());
1533 else
1534 StoreChain = DAG.getEntryNode();
1535
1536 // Result is a load from the stack slot.
Stephen Lin155615d2013-07-08 00:37:03 +00001537 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001538 false, false, false, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001539}
1540
Eli Friedman4bc8c712009-05-27 12:20:41 +00001541SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001542 SDLoc dl(Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001543 SDValue Tmp1 = Node->getOperand(0);
1544 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands5d54b412010-03-12 11:45:06 +00001545
1546 // Get the sign bit of the RHS. First obtain a value that has the same
1547 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001548 SDValue SignBit;
Duncan Sands5d54b412010-03-12 11:45:06 +00001549 EVT FloatVT = Tmp2.getValueType();
1550 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohman75b10042011-07-15 22:39:09 +00001551 if (TLI.isTypeLegal(IVT)) {
Duncan Sands5d54b412010-03-12 11:45:06 +00001552 // Convert to an integer with the same sign bit.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001553 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001554 } else {
Duncan Sands5d54b412010-03-12 11:45:06 +00001555 // Store the float to memory, then load the sign part out as an integer.
1556 MVT LoadTy = TLI.getPointerTy();
1557 // First create a temporary that is aligned for both the load and store.
1558 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1559 // Then store the float to it.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001560 SDValue Ch =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001561 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00001562 false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001563 if (TLI.isBigEndian()) {
1564 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1565 // Load out a legal integer with the same sign bit as the float.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001566 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001567 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001568 } else { // Little endian
1569 SDValue LoadPtr = StackPtr;
1570 // The float may be wider than the integer we are going to load. Advance
1571 // the pointer so that the loaded integer will contain the sign bit.
1572 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1573 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
Stephen Hines36b56882014-04-23 16:57:46 -07001574 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(), LoadPtr,
1575 DAG.getConstant(ByteOffset, LoadPtr.getValueType()));
Duncan Sands5d54b412010-03-12 11:45:06 +00001576 // Load a legal integer containing the sign bit.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001577 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001578 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001579 // Move the sign bit to the top bit of the loaded integer.
1580 unsigned BitShift = LoadTy.getSizeInBits() -
1581 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1582 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1583 if (BitShift)
1584 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Anderson95771af2011-02-25 21:41:48 +00001585 DAG.getConstant(BitShift,
1586 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands5d54b412010-03-12 11:45:06 +00001587 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00001588 }
Duncan Sands5d54b412010-03-12 11:45:06 +00001589 // Now get the sign bit proper, by seeing whether the value is negative.
Matt Arsenault225ed702013-05-18 00:21:46 +00001590 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
Duncan Sands5d54b412010-03-12 11:45:06 +00001591 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1592 ISD::SETLT);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001593 // Get the absolute value of the result.
1594 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1595 // Select between the nabs and abs value based on the sign bit of
1596 // the input.
Matt Arsenaultb05e4772013-06-14 22:04:37 +00001597 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
Stephen Hines36b56882014-04-23 16:57:46 -07001598 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1599 AbsVal);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001600}
1601
Eli Friedman4bc8c712009-05-27 12:20:41 +00001602void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1603 SmallVectorImpl<SDValue> &Results) {
1604 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1605 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1606 " not tell us which reg is the stack pointer!");
Andrew Trickac6d9be2013-05-25 02:42:55 +00001607 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +00001608 EVT VT = Node->getValueType(0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001609 SDValue Tmp1 = SDValue(Node, 0);
1610 SDValue Tmp2 = SDValue(Node, 1);
1611 SDValue Tmp3 = Node->getOperand(2);
1612 SDValue Chain = Tmp1.getOperand(0);
1613
1614 // Chain the dynamic stack allocation so that it doesn't modify the stack
1615 // pointer when other instructions are using the stack.
Andrew Trick6e0b2a02013-05-29 22:03:55 +00001616 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
1617 SDLoc(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00001618
1619 SDValue Size = Tmp2.getOperand(1);
1620 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1621 Chain = SP.getValue(1);
1622 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001623 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman4bc8c712009-05-27 12:20:41 +00001624 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Elena Demikhovsky55240a52013-10-14 07:26:51 +00001625 if (Align > StackAlign)
1626 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
1627 DAG.getConstant(-(uint64_t)Align, VT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00001628 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1629
1630 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00001631 DAG.getIntPtrConstant(0, true), SDValue(),
1632 SDLoc(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00001633
1634 Results.push_back(Tmp1);
1635 Results.push_back(Tmp2);
1636}
1637
Evan Cheng7f042682008-10-15 02:05:31 +00001638/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Tom Stellard8a9879a2013-09-28 02:50:32 +00001639/// condition code CC on the current target.
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00001640///
Tom Stellard8a9879a2013-09-28 02:50:32 +00001641/// If the SETCC has been legalized using AND / OR, then the legalized node
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00001642/// will be stored in LHS. RHS and CC will be set to SDValue(). NeedInvert
1643/// will be set to false.
1644///
Tom Stellard8a9879a2013-09-28 02:50:32 +00001645/// If the SETCC has been legalized by using getSetCCSwappedOperands(),
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00001646/// then the values of LHS and RHS will be swapped, CC will be set to the
1647/// new condition, and NeedInvert will be set to false.
1648///
1649/// If the SETCC has been legalized using the inverse condcode, then LHS and
1650/// RHS will be unchanged, CC will set to the inverted condcode, and NeedInvert
1651/// will be set to true. The caller must invert the result of the SETCC with
1652/// SelectionDAG::getNOT() or take equivalent action to swap the effect of a
1653/// true/false result.
1654///
Tom Stellard8a9879a2013-09-28 02:50:32 +00001655/// \returns true if the SetCC has been legalized, false if it hasn't.
1656bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng7f042682008-10-15 02:05:31 +00001657 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00001658 SDValue &CC,
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00001659 bool &NeedInvert,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001660 SDLoc dl) {
Patrik Hagglund9c5ab932012-12-19 10:09:26 +00001661 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng7f042682008-10-15 02:05:31 +00001662 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00001663 NeedInvert = false;
Evan Cheng7f042682008-10-15 02:05:31 +00001664 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001665 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng7f042682008-10-15 02:05:31 +00001666 case TargetLowering::Legal:
1667 // Nothing to do.
1668 break;
1669 case TargetLowering::Expand: {
Tom Stellard12d43f92013-09-28 02:50:38 +00001670 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1671 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1672 std::swap(LHS, RHS);
1673 CC = DAG.getCondCode(InvCC);
1674 return true;
1675 }
Evan Cheng7f042682008-10-15 02:05:31 +00001676 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1677 unsigned Opc = 0;
1678 switch (CCCode) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001679 default: llvm_unreachable("Don't know how to expand this condition!");
Stephen Lin155615d2013-07-08 00:37:03 +00001680 case ISD::SETO:
Micah Villmowd6458a02012-10-10 20:50:51 +00001681 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1682 == TargetLowering::Legal
1683 && "If SETO is expanded, SETOEQ must be legal!");
1684 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
Stephen Lin155615d2013-07-08 00:37:03 +00001685 case ISD::SETUO:
Micah Villmowd6458a02012-10-10 20:50:51 +00001686 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1687 == TargetLowering::Legal
1688 && "If SETUO is expanded, SETUNE must be legal!");
1689 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1690 case ISD::SETOEQ:
1691 case ISD::SETOGT:
1692 case ISD::SETOGE:
1693 case ISD::SETOLT:
1694 case ISD::SETOLE:
Stephen Lin155615d2013-07-08 00:37:03 +00001695 case ISD::SETONE:
1696 case ISD::SETUEQ:
1697 case ISD::SETUNE:
1698 case ISD::SETUGT:
1699 case ISD::SETUGE:
1700 case ISD::SETULT:
Micah Villmowd6458a02012-10-10 20:50:51 +00001701 case ISD::SETULE:
1702 // If we are floating point, assign and break, otherwise fall through.
1703 if (!OpVT.isInteger()) {
1704 // We can use the 4th bit to tell if we are the unordered
1705 // or ordered version of the opcode.
1706 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1707 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1708 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1709 break;
1710 }
1711 // Fallthrough if we are unsigned integer.
1712 case ISD::SETLE:
1713 case ISD::SETGT:
1714 case ISD::SETGE:
1715 case ISD::SETLT:
Tom Stellard12d43f92013-09-28 02:50:38 +00001716 // We only support using the inverted operation, which is computed above
1717 // and not a different manner of supporting expanding these cases.
1718 llvm_unreachable("Don't know how to expand this condition!");
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00001719 case ISD::SETNE:
1720 case ISD::SETEQ:
1721 // Try inverting the result of the inverse condition.
1722 InvCC = CCCode == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ;
1723 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1724 CC = DAG.getCondCode(InvCC);
1725 NeedInvert = true;
1726 return true;
1727 }
1728 // If inverting the condition didn't work then we have no means to expand
1729 // the condition.
1730 llvm_unreachable("Don't know how to expand this condition!");
Evan Cheng7f042682008-10-15 02:05:31 +00001731 }
Stephen Lin155615d2013-07-08 00:37:03 +00001732
Micah Villmowd6458a02012-10-10 20:50:51 +00001733 SDValue SetCC1, SetCC2;
1734 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1735 // If we aren't the ordered or unorder operation,
1736 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1737 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1738 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1739 } else {
1740 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1741 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1742 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1743 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001744 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00001745 RHS = SDValue();
1746 CC = SDValue();
Tom Stellard8a9879a2013-09-28 02:50:32 +00001747 return true;
Evan Cheng7f042682008-10-15 02:05:31 +00001748 }
1749 }
Tom Stellard8a9879a2013-09-28 02:50:32 +00001750 return false;
Evan Cheng7f042682008-10-15 02:05:31 +00001751}
1752
Chris Lattner1401d152008-01-16 07:45:30 +00001753/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1754/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1755/// a load from the stack slot to DestVT, extending it if needed.
1756/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001757SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Andersone50ed302009-08-10 22:56:29 +00001758 EVT SlotVT,
1759 EVT DestVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001760 SDLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00001761 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001762 unsigned SrcAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00001763 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson23b9b192009-08-12 00:36:31 +00001764 getTypeForEVT(*DAG.getContext()));
Dan Gohman475871a2008-07-27 21:46:04 +00001765 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001766
Evan Chengff89dcb2009-10-18 18:16:27 +00001767 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1768 int SPFI = StackPtrFI->getIndex();
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001769 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Chengff89dcb2009-10-18 18:16:27 +00001770
Duncan Sands83ec4b62008-06-06 12:08:01 +00001771 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1772 unsigned SlotSize = SlotVT.getSizeInBits();
1773 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001774 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00001775 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelfdc40a02009-02-17 22:15:04 +00001776
Chris Lattner1401d152008-01-16 07:45:30 +00001777 // Emit a store to the stack slot. Use a truncstore if the input value is
1778 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00001779 SDValue Store;
Evan Chengff89dcb2009-10-18 18:16:27 +00001780
Chris Lattner1401d152008-01-16 07:45:30 +00001781 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00001782 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001783 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001784 else {
1785 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00001786 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001787 PtrInfo, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001788 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001789
Chris Lattner35481892005-12-23 00:16:34 +00001790 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00001791 if (SlotSize == DestSize)
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001792 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001793 false, false, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001794
Chris Lattner1401d152008-01-16 07:45:30 +00001795 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastingsa9011292011-02-16 16:23:55 +00001796 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001797 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00001798}
1799
Dan Gohman475871a2008-07-27 21:46:04 +00001800SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00001801 SDLoc dl(Node);
Chris Lattner4352cc92006-04-04 17:23:26 +00001802 // Create a vector sized/aligned stack slot, store the value to element #0,
1803 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00001804 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00001805
Evan Chengff89dcb2009-10-18 18:16:27 +00001806 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1807 int SPFI = StackPtrFI->getIndex();
1808
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001809 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1810 StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001811 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +00001812 Node->getValueType(0).getVectorElementType(),
1813 false, false, 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00001814 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001815 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001816 false, false, false, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001817}
1818
Stephen Hines36b56882014-04-23 16:57:46 -07001819static bool
1820ExpandBVWithShuffles(SDNode *Node, SelectionDAG &DAG,
1821 const TargetLowering &TLI, SDValue &Res) {
1822 unsigned NumElems = Node->getNumOperands();
1823 SDLoc dl(Node);
1824 EVT VT = Node->getValueType(0);
1825
1826 // Try to group the scalars into pairs, shuffle the pairs together, then
1827 // shuffle the pairs of pairs together, etc. until the vector has
1828 // been built. This will work only if all of the necessary shuffle masks
1829 // are legal.
1830
1831 // We do this in two phases; first to check the legality of the shuffles,
1832 // and next, assuming that all shuffles are legal, to create the new nodes.
1833 for (int Phase = 0; Phase < 2; ++Phase) {
1834 SmallVector<std::pair<SDValue, SmallVector<int, 16> >, 16> IntermedVals,
1835 NewIntermedVals;
1836 for (unsigned i = 0; i < NumElems; ++i) {
1837 SDValue V = Node->getOperand(i);
1838 if (V.getOpcode() == ISD::UNDEF)
1839 continue;
1840
1841 SDValue Vec;
1842 if (Phase)
1843 Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, V);
1844 IntermedVals.push_back(std::make_pair(Vec, SmallVector<int, 16>(1, i)));
1845 }
1846
1847 while (IntermedVals.size() > 2) {
1848 NewIntermedVals.clear();
1849 for (unsigned i = 0, e = (IntermedVals.size() & ~1u); i < e; i += 2) {
1850 // This vector and the next vector are shuffled together (simply to
1851 // append the one to the other).
1852 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1853
1854 SmallVector<int, 16> FinalIndices;
1855 FinalIndices.reserve(IntermedVals[i].second.size() +
1856 IntermedVals[i+1].second.size());
1857
1858 int k = 0;
1859 for (unsigned j = 0, f = IntermedVals[i].second.size(); j != f;
1860 ++j, ++k) {
1861 ShuffleVec[k] = j;
1862 FinalIndices.push_back(IntermedVals[i].second[j]);
1863 }
1864 for (unsigned j = 0, f = IntermedVals[i+1].second.size(); j != f;
1865 ++j, ++k) {
1866 ShuffleVec[k] = NumElems + j;
1867 FinalIndices.push_back(IntermedVals[i+1].second[j]);
1868 }
1869
1870 SDValue Shuffle;
1871 if (Phase)
1872 Shuffle = DAG.getVectorShuffle(VT, dl, IntermedVals[i].first,
1873 IntermedVals[i+1].first,
1874 ShuffleVec.data());
1875 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1876 return false;
1877 NewIntermedVals.push_back(std::make_pair(Shuffle, FinalIndices));
1878 }
1879
1880 // If we had an odd number of defined values, then append the last
1881 // element to the array of new vectors.
1882 if ((IntermedVals.size() & 1) != 0)
1883 NewIntermedVals.push_back(IntermedVals.back());
1884
1885 IntermedVals.swap(NewIntermedVals);
1886 }
1887
1888 assert(IntermedVals.size() <= 2 && IntermedVals.size() > 0 &&
1889 "Invalid number of intermediate vectors");
1890 SDValue Vec1 = IntermedVals[0].first;
1891 SDValue Vec2;
1892 if (IntermedVals.size() > 1)
1893 Vec2 = IntermedVals[1].first;
1894 else if (Phase)
1895 Vec2 = DAG.getUNDEF(VT);
1896
1897 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1898 for (unsigned i = 0, e = IntermedVals[0].second.size(); i != e; ++i)
1899 ShuffleVec[IntermedVals[0].second[i]] = i;
1900 for (unsigned i = 0, e = IntermedVals[1].second.size(); i != e; ++i)
1901 ShuffleVec[IntermedVals[1].second[i]] = NumElems + i;
1902
1903 if (Phase)
1904 Res = DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
1905 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1906 return false;
1907 }
1908
1909 return true;
1910}
Chris Lattner4352cc92006-04-04 17:23:26 +00001911
Chris Lattnerce872152006-03-19 06:31:19 +00001912/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00001913/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00001914SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001915 unsigned NumElems = Node->getNumOperands();
Eli Friedman7a5e5552009-06-07 06:52:44 +00001916 SDValue Value1, Value2;
Andrew Trickac6d9be2013-05-25 02:42:55 +00001917 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +00001918 EVT VT = Node->getValueType(0);
1919 EVT OpVT = Node->getOperand(0).getValueType();
1920 EVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001921
1922 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00001923 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00001924 bool isOnlyLowElement = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001925 bool MoreThanTwoValues = false;
Chris Lattner2eb86532006-03-24 07:29:17 +00001926 bool isConstant = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001927 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001928 SDValue V = Node->getOperand(i);
Eli Friedman7a5e5552009-06-07 06:52:44 +00001929 if (V.getOpcode() == ISD::UNDEF)
1930 continue;
1931 if (i > 0)
Chris Lattnerce872152006-03-19 06:31:19 +00001932 isOnlyLowElement = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001933 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner2eb86532006-03-24 07:29:17 +00001934 isConstant = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001935
1936 if (!Value1.getNode()) {
1937 Value1 = V;
1938 } else if (!Value2.getNode()) {
1939 if (V != Value1)
1940 Value2 = V;
1941 } else if (V != Value1 && V != Value2) {
1942 MoreThanTwoValues = true;
1943 }
Chris Lattnerce872152006-03-19 06:31:19 +00001944 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001945
Eli Friedman7a5e5552009-06-07 06:52:44 +00001946 if (!Value1.getNode())
1947 return DAG.getUNDEF(VT);
1948
1949 if (isOnlyLowElement)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001950 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001951
Chris Lattner2eb86532006-03-24 07:29:17 +00001952 // If all elements are constants, create a load from the constant pool.
1953 if (isConstant) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001954 SmallVector<Constant*, 16> CV;
Chris Lattner2eb86532006-03-24 07:29:17 +00001955 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001956 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00001957 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00001958 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001959 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001960 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen9a645cd2009-11-10 23:16:41 +00001961 if (OpVT==EltVT)
1962 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1963 else {
1964 // If OpVT and EltVT don't match, EltVT is not legal and the
1965 // element values have been promoted/truncated earlier. Undo this;
1966 // we don't want a v16i8 to become a v16i32 for example.
1967 const ConstantInt *CI = V->getConstantIntValue();
1968 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1969 CI->getZExtValue()));
1970 }
Chris Lattner2eb86532006-03-24 07:29:17 +00001971 } else {
1972 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001973 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001974 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner2eb86532006-03-24 07:29:17 +00001975 }
1976 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00001977 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00001978 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00001979 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00001980 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00001981 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001982 false, false, false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00001983 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001984
Stephen Hines36b56882014-04-23 16:57:46 -07001985 SmallSet<SDValue, 16> DefinedValues;
1986 for (unsigned i = 0; i < NumElems; ++i) {
1987 if (Node->getOperand(i).getOpcode() == ISD::UNDEF)
1988 continue;
1989 DefinedValues.insert(Node->getOperand(i));
1990 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001991
Stephen Hines36b56882014-04-23 16:57:46 -07001992 if (TLI.shouldExpandBuildVectorWithShuffles(VT, DefinedValues.size())) {
1993 if (!MoreThanTwoValues) {
1994 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1995 for (unsigned i = 0; i < NumElems; ++i) {
1996 SDValue V = Node->getOperand(i);
1997 if (V.getOpcode() == ISD::UNDEF)
1998 continue;
1999 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
2000 }
2001 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
2002 // Get the splatted value into the low element of a vector register.
2003 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
2004 SDValue Vec2;
2005 if (Value2.getNode())
2006 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
2007 else
2008 Vec2 = DAG.getUNDEF(VT);
2009
2010 // Return shuffle(LowValVec, undef, <0,0,0,0>)
2011 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
2012 }
2013 } else {
2014 SDValue Res;
2015 if (ExpandBVWithShuffles(Node, DAG, TLI, Res))
2016 return Res;
Evan Cheng033e6812006-03-24 01:17:21 +00002017 }
2018 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002019
Eli Friedman7ef3d172009-06-06 07:04:42 +00002020 // Otherwise, we can't handle this case efficiently.
2021 return ExpandVectorBuildThroughStack(Node);
Chris Lattnerce872152006-03-19 06:31:19 +00002022}
2023
Chris Lattner77e77a62005-01-21 06:05:23 +00002024// ExpandLibCall - Expand a node into a call to a libcall. If the result value
2025// does not fit into a register, return the lo part and set the hi part to the
2026// by-reg argument. If it does fit into a single register, return the result
2027// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00002028SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedman47b41f72009-05-27 02:21:29 +00002029 bool isSigned) {
Chris Lattner77e77a62005-01-21 06:05:23 +00002030 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00002031 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00002032 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00002033 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002034 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelfdc40a02009-02-17 22:15:04 +00002035 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002036 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00002037 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00002038 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00002039 }
Bill Wendling056292f2008-09-16 21:48:12 +00002040 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00002041 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00002042
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002043 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Cheng3d2125c2010-11-30 23:55:39 +00002044
Evan Chengbf010eb2012-04-10 01:51:00 +00002045 // By default, the input chain to this libcall is the entry node of the
2046 // function. If the libcall is going to be emitted as a tail call then
2047 // TLI.isUsedByReturnOnly will change it to the right chain if the return
2048 // node which is being folded has a non-entry input chain.
2049 SDValue InChain = DAG.getEntryNode();
2050
Evan Cheng3d2125c2010-11-30 23:55:39 +00002051 // isTailCall may be true since the callee does not reference caller stack
2052 // frame. Check if it's in the right position.
Evan Chengb52ba492012-04-10 03:15:18 +00002053 SDValue TCChain = InChain;
Tim Northover2c8cf4b2013-01-09 13:18:15 +00002054 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Chengb52ba492012-04-10 03:15:18 +00002055 if (isTailCall)
2056 InChain = TCChain;
2057
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002058 TargetLowering::
2059 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00002060 0, TLI.getLibcallCallingConv(LC), isTailCall,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002061 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002062 Callee, Args, DAG, SDLoc(Node));
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002063 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2064
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00002065
Evan Cheng3d2125c2010-11-30 23:55:39 +00002066 if (!CallInfo.second.getNode())
2067 // It's a tailcall, return the chain (which is the DAG root).
2068 return DAG.getRoot();
2069
Eli Friedman74807f22009-05-26 08:55:52 +00002070 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00002071}
2072
Dan Gohmanf316eb72011-05-16 22:09:53 +00002073/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherabbbfbd2011-04-20 01:19:45 +00002074/// and returning a result of type RetVT.
2075SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
2076 const SDValue *Ops, unsigned NumOps,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002077 bool isSigned, SDLoc dl) {
Eric Christopherabbbfbd2011-04-20 01:19:45 +00002078 TargetLowering::ArgListTy Args;
2079 Args.reserve(NumOps);
Dan Gohmanf316eb72011-05-16 22:09:53 +00002080
Eric Christopherabbbfbd2011-04-20 01:19:45 +00002081 TargetLowering::ArgListEntry Entry;
2082 for (unsigned i = 0; i != NumOps; ++i) {
2083 Entry.Node = Ops[i];
2084 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
2085 Entry.isSExt = isSigned;
2086 Entry.isZExt = !isSigned;
2087 Args.push_back(Entry);
2088 }
2089 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2090 TLI.getPointerTy());
Dan Gohmanf316eb72011-05-16 22:09:53 +00002091
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002092 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002093 TargetLowering::
2094 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
2095 false, 0, TLI.getLibcallCallingConv(LC),
2096 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002097 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eric Christopherabbbfbd2011-04-20 01:19:45 +00002098 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002099 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanf316eb72011-05-16 22:09:53 +00002100
Eric Christopherabbbfbd2011-04-20 01:19:45 +00002101 return CallInfo.first;
2102}
2103
Jim Grosbache03262f2010-06-18 21:43:38 +00002104// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
2105// ExpandLibCall except that the first operand is the in-chain.
2106std::pair<SDValue, SDValue>
2107SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
2108 SDNode *Node,
2109 bool isSigned) {
Jim Grosbache03262f2010-06-18 21:43:38 +00002110 SDValue InChain = Node->getOperand(0);
2111
2112 TargetLowering::ArgListTy Args;
2113 TargetLowering::ArgListEntry Entry;
2114 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
2115 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002116 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00002117 Entry.Node = Node->getOperand(i);
2118 Entry.Ty = ArgTy;
2119 Entry.isSExt = isSigned;
2120 Entry.isZExt = !isSigned;
2121 Args.push_back(Entry);
2122 }
2123 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2124 TLI.getPointerTy());
2125
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002126 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002127 TargetLowering::
2128 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00002129 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002130 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002131 Callee, Args, DAG, SDLoc(Node));
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002132 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbache03262f2010-06-18 21:43:38 +00002133
Jim Grosbache03262f2010-06-18 21:43:38 +00002134 return CallInfo;
2135}
2136
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002137SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
2138 RTLIB::Libcall Call_F32,
2139 RTLIB::Libcall Call_F64,
2140 RTLIB::Libcall Call_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00002141 RTLIB::Libcall Call_F128,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002142 RTLIB::Libcall Call_PPCF128) {
2143 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002144 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002145 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002146 case MVT::f32: LC = Call_F32; break;
2147 case MVT::f64: LC = Call_F64; break;
2148 case MVT::f80: LC = Call_F80; break;
Tim Northover24d315d2013-01-08 17:09:59 +00002149 case MVT::f128: LC = Call_F128; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002150 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002151 }
2152 return ExpandLibCall(LC, Node, false);
2153}
2154
2155SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikov8983da72009-11-07 17:14:39 +00002156 RTLIB::Libcall Call_I8,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002157 RTLIB::Libcall Call_I16,
2158 RTLIB::Libcall Call_I32,
2159 RTLIB::Libcall Call_I64,
2160 RTLIB::Libcall Call_I128) {
2161 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002162 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002163 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikov8983da72009-11-07 17:14:39 +00002164 case MVT::i8: LC = Call_I8; break;
2165 case MVT::i16: LC = Call_I16; break;
2166 case MVT::i32: LC = Call_I32; break;
2167 case MVT::i64: LC = Call_I64; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002168 case MVT::i128: LC = Call_I128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00002169 }
2170 return ExpandLibCall(LC, Node, isSigned);
2171}
2172
Evan Cheng65279cb2011-04-16 03:08:26 +00002173/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
2174static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2175 const TargetLowering &TLI) {
Evan Cheng8e23e812011-04-01 00:42:02 +00002176 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002177 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002178 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng8e23e812011-04-01 00:42:02 +00002179 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2180 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2181 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2182 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2183 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2184 }
2185
Evan Cheng65279cb2011-04-16 03:08:26 +00002186 return TLI.getLibcallName(LC) != 0;
2187}
Evan Cheng8e23e812011-04-01 00:42:02 +00002188
Evan Cheng8ef09682012-06-21 05:56:05 +00002189/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Cheng65279cb2011-04-16 03:08:26 +00002190/// needed.
Evan Cheng8ef09682012-06-21 05:56:05 +00002191static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2192 // The other use might have been replaced with a divrem already.
2193 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Cheng8e23e812011-04-01 00:42:02 +00002194 unsigned OtherOpcode = 0;
Evan Cheng65279cb2011-04-16 03:08:26 +00002195 if (isSigned)
Evan Cheng8e23e812011-04-01 00:42:02 +00002196 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002197 else
Evan Cheng8e23e812011-04-01 00:42:02 +00002198 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002199
Evan Cheng8e23e812011-04-01 00:42:02 +00002200 SDValue Op0 = Node->getOperand(0);
2201 SDValue Op1 = Node->getOperand(1);
2202 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2203 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2204 SDNode *User = *UI;
2205 if (User == Node)
2206 continue;
Evan Cheng8ef09682012-06-21 05:56:05 +00002207 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Cheng8e23e812011-04-01 00:42:02 +00002208 User->getOperand(0) == Op0 &&
Evan Cheng65279cb2011-04-16 03:08:26 +00002209 User->getOperand(1) == Op1)
2210 return true;
Evan Cheng8e23e812011-04-01 00:42:02 +00002211 }
Evan Cheng65279cb2011-04-16 03:08:26 +00002212 return false;
2213}
Evan Cheng8e23e812011-04-01 00:42:02 +00002214
Evan Cheng65279cb2011-04-16 03:08:26 +00002215/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2216/// pairs.
2217void
2218SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2219 SmallVectorImpl<SDValue> &Results) {
2220 unsigned Opcode = Node->getOpcode();
2221 bool isSigned = Opcode == ISD::SDIVREM;
2222
2223 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002224 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002225 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng65279cb2011-04-16 03:08:26 +00002226 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2227 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2228 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2229 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2230 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Cheng8e23e812011-04-01 00:42:02 +00002231 }
2232
2233 // The input chain to this libcall is the entry node of the function.
2234 // Legalizing the call will automatically add the previous call to the
2235 // dependence.
2236 SDValue InChain = DAG.getEntryNode();
2237
2238 EVT RetVT = Node->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002239 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002240
2241 TargetLowering::ArgListTy Args;
2242 TargetLowering::ArgListEntry Entry;
2243 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2244 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002245 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002246 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2247 Entry.isSExt = isSigned;
2248 Entry.isZExt = !isSigned;
2249 Args.push_back(Entry);
2250 }
2251
2252 // Also pass the return address of the remainder.
2253 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2254 Entry.Node = FIPtr;
Micah Villmowb8bce922012-10-24 17:25:11 +00002255 Entry.Ty = RetTy->getPointerTo();
Evan Cheng8e23e812011-04-01 00:42:02 +00002256 Entry.isSExt = isSigned;
2257 Entry.isZExt = !isSigned;
2258 Args.push_back(Entry);
2259
2260 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2261 TLI.getPointerTy());
2262
Andrew Trickac6d9be2013-05-25 02:42:55 +00002263 SDLoc dl(Node);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002264 TargetLowering::
2265 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng8e23e812011-04-01 00:42:02 +00002266 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002267 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2268 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002269 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Cheng8e23e812011-04-01 00:42:02 +00002270
Evan Cheng8e23e812011-04-01 00:42:02 +00002271 // Remainder is loaded back from the stack frame.
Dan Gohman65fd6562011-11-03 21:49:52 +00002272 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002273 MachinePointerInfo(), false, false, false, 0);
Evan Cheng65279cb2011-04-16 03:08:26 +00002274 Results.push_back(CallInfo.first);
2275 Results.push_back(Rem);
Evan Cheng8e23e812011-04-01 00:42:02 +00002276}
2277
Evan Cheng8688a582013-01-29 02:32:37 +00002278/// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2279static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2280 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002281 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng8688a582013-01-29 02:32:37 +00002282 default: llvm_unreachable("Unexpected request for libcall!");
2283 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2284 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2285 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2286 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2287 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2288 }
2289 return TLI.getLibcallName(LC) != 0;
2290}
2291
Paul Redmond86cdbc92013-02-15 18:45:18 +00002292/// canCombineSinCosLibcall - Return true if sincos libcall is available and
2293/// can be used to combine sin and cos.
2294static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2295 const TargetMachine &TM) {
2296 if (!isSinCosLibcallAvailable(Node, TLI))
2297 return false;
2298 // GNU sin/cos functions set errno while sincos does not. Therefore
2299 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2300 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2301 if (isGNU && !TM.Options.UnsafeFPMath)
2302 return false;
2303 return true;
2304}
2305
Evan Cheng8688a582013-01-29 02:32:37 +00002306/// useSinCos - Only issue sincos libcall if both sin and cos are
2307/// needed.
2308static bool useSinCos(SDNode *Node) {
2309 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2310 ? ISD::FCOS : ISD::FSIN;
Stephen Lin155615d2013-07-08 00:37:03 +00002311
Evan Cheng8688a582013-01-29 02:32:37 +00002312 SDValue Op0 = Node->getOperand(0);
2313 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2314 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2315 SDNode *User = *UI;
2316 if (User == Node)
2317 continue;
2318 // The other user might have been turned into sincos already.
2319 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2320 return true;
2321 }
2322 return false;
2323}
2324
2325/// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2326/// pairs.
2327void
2328SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2329 SmallVectorImpl<SDValue> &Results) {
2330 RTLIB::Libcall LC;
Craig Topper0ff11902013-08-15 02:44:19 +00002331 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng8688a582013-01-29 02:32:37 +00002332 default: llvm_unreachable("Unexpected request for libcall!");
2333 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2334 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2335 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2336 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2337 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2338 }
Stephen Lin155615d2013-07-08 00:37:03 +00002339
Evan Cheng8688a582013-01-29 02:32:37 +00002340 // The input chain to this libcall is the entry node of the function.
2341 // Legalizing the call will automatically add the previous call to the
2342 // dependence.
2343 SDValue InChain = DAG.getEntryNode();
Stephen Lin155615d2013-07-08 00:37:03 +00002344
Evan Cheng8688a582013-01-29 02:32:37 +00002345 EVT RetVT = Node->getValueType(0);
2346 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Stephen Lin155615d2013-07-08 00:37:03 +00002347
Evan Cheng8688a582013-01-29 02:32:37 +00002348 TargetLowering::ArgListTy Args;
2349 TargetLowering::ArgListEntry Entry;
Stephen Lin155615d2013-07-08 00:37:03 +00002350
Evan Cheng8688a582013-01-29 02:32:37 +00002351 // Pass the argument.
2352 Entry.Node = Node->getOperand(0);
2353 Entry.Ty = RetTy;
2354 Entry.isSExt = false;
2355 Entry.isZExt = false;
2356 Args.push_back(Entry);
Stephen Lin155615d2013-07-08 00:37:03 +00002357
Evan Cheng8688a582013-01-29 02:32:37 +00002358 // Pass the return address of sin.
2359 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2360 Entry.Node = SinPtr;
2361 Entry.Ty = RetTy->getPointerTo();
2362 Entry.isSExt = false;
2363 Entry.isZExt = false;
2364 Args.push_back(Entry);
Stephen Lin155615d2013-07-08 00:37:03 +00002365
Evan Cheng8688a582013-01-29 02:32:37 +00002366 // Also pass the return address of the cos.
2367 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2368 Entry.Node = CosPtr;
2369 Entry.Ty = RetTy->getPointerTo();
2370 Entry.isSExt = false;
2371 Entry.isZExt = false;
2372 Args.push_back(Entry);
Stephen Lin155615d2013-07-08 00:37:03 +00002373
Evan Cheng8688a582013-01-29 02:32:37 +00002374 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2375 TLI.getPointerTy());
Stephen Lin155615d2013-07-08 00:37:03 +00002376
Andrew Trickac6d9be2013-05-25 02:42:55 +00002377 SDLoc dl(Node);
Evan Cheng8688a582013-01-29 02:32:37 +00002378 TargetLowering::
2379 CallLoweringInfo CLI(InChain, Type::getVoidTy(*DAG.getContext()),
2380 false, false, false, false,
2381 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
2382 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2383 Callee, Args, DAG, dl);
2384 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2385
2386 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2387 MachinePointerInfo(), false, false, false, 0));
2388 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2389 MachinePointerInfo(), false, false, false, 0));
2390}
2391
Chris Lattner22cde6a2006-01-28 08:25:58 +00002392/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2393/// INT_TO_FP operation of the specified operand when the target requests that
2394/// we expand it. At this point, we know that the result and operand types are
2395/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00002396SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2397 SDValue Op0,
Owen Andersone50ed302009-08-10 22:56:29 +00002398 EVT DestVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002399 SDLoc dl) {
Akira Hatanaka1d522382012-08-28 02:12:42 +00002400 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002401 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00002402
Chris Lattner23594d42008-01-16 07:03:22 +00002403 // Get the stack frame index of a 8 byte buffer.
Owen Anderson825b72b2009-08-11 20:47:22 +00002404 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00002405
Chris Lattner22cde6a2006-01-28 08:25:58 +00002406 // word offset constant for Hi/Lo address computation
Tom Stellardedd08f72013-08-26 15:06:10 +00002407 SDValue WordOff = DAG.getConstant(sizeof(int), StackSlot.getValueType());
Chris Lattner22cde6a2006-01-28 08:25:58 +00002408 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00002409 SDValue Hi = StackSlot;
Tom Stellardedd08f72013-08-26 15:06:10 +00002410 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2411 StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00002412 if (TLI.isLittleEndian())
2413 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00002414
Chris Lattner22cde6a2006-01-28 08:25:58 +00002415 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00002416 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002417 if (isSigned) {
2418 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson825b72b2009-08-11 20:47:22 +00002419 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2420 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002421 } else {
2422 Op0Mapped = Op0;
2423 }
2424 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00002425 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00002426 Op0Mapped, Lo, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002427 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002428 // initial hi portion of constructed double
Owen Anderson825b72b2009-08-11 20:47:22 +00002429 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002430 // store the hi of the constructed double - biased exponent
Chris Lattner6229d0a2010-09-21 18:41:36 +00002431 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2432 MachinePointerInfo(),
2433 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002434 // load the constructed double
Chris Lattnerecf42c42010-09-21 16:36:31 +00002435 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002436 MachinePointerInfo(), false, false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002437 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00002438 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002439 BitsToDouble(0x4330000080000000ULL) :
2440 BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00002441 MVT::f64);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002442 // subtract the bias
Owen Anderson825b72b2009-08-11 20:47:22 +00002443 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002444 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00002445 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002446 // handle final rounding
Owen Anderson825b72b2009-08-11 20:47:22 +00002447 if (DestVT == MVT::f64) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002448 // do nothing
2449 Result = Sub;
Owen Anderson825b72b2009-08-11 20:47:22 +00002450 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002451 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00002452 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002453 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002454 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002455 }
2456 return Result;
2457 }
2458 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002459 // Code below here assumes !isSigned without checking again.
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002460
2461 // Implementation of unsigned i64 to f64 following the algorithm in
2462 // __floatundidf in compiler_rt. This implementation has the advantage
2463 // of performing rounding correctly, both in the default rounding mode
2464 // and in all alternate rounding modes.
2465 // TODO: Generalize this for use with other types.
2466 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2467 SDValue TwoP52 =
2468 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2469 SDValue TwoP84PlusTwoP52 =
2470 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2471 SDValue TwoP84 =
2472 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2473
2474 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2475 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2476 DAG.getConstant(32, MVT::i64));
2477 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2478 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002479 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2480 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach6e992612010-07-02 17:41:59 +00002481 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2482 TwoP84PlusTwoP52);
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002483 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2484 }
2485
Owen Anderson3a9e7692010-10-05 17:24:05 +00002486 // Implementation of unsigned i64 to f32.
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002487 // TODO: Generalize this for use with other types.
2488 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Anderson3a9e7692010-10-05 17:24:05 +00002489 // For unsigned conversions, convert them to signed conversions using the
2490 // algorithm from the x86_64 __floatundidf in compiler_rt.
2491 if (!isSigned) {
2492 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002493
Owen Anderson95771af2011-02-25 21:41:48 +00002494 SDValue ShiftConst =
2495 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Anderson3a9e7692010-10-05 17:24:05 +00002496 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2497 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2498 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2499 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002500
Owen Anderson3a9e7692010-10-05 17:24:05 +00002501 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2502 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002503
Owen Anderson3a9e7692010-10-05 17:24:05 +00002504 // TODO: This really should be implemented using a branch rather than a
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002505 // select. We happen to get lucky and machinesink does the right
2506 // thing most of the time. This would be a good candidate for a
Owen Anderson3a9e7692010-10-05 17:24:05 +00002507 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault225ed702013-05-18 00:21:46 +00002508 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002509 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002510 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Anderson3a9e7692010-10-05 17:24:05 +00002511 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002512
Owen Anderson3a9e7692010-10-05 17:24:05 +00002513 // Otherwise, implement the fully general conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002514
Jim Grosbach6e992612010-07-02 17:41:59 +00002515 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002516 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2517 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2518 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach6e992612010-07-02 17:41:59 +00002519 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002520 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
Matt Arsenault225ed702013-05-18 00:21:46 +00002521 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002522 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002523 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Matt Arsenault225ed702013-05-18 00:21:46 +00002524 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002525 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002526 ISD::SETUGE);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002527 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Owen Anderson95771af2011-02-25 21:41:48 +00002528 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002529
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002530 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2531 DAG.getConstant(32, SHVT));
2532 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2533 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2534 SDValue TwoP32 =
2535 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2536 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2537 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2538 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2539 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2540 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2541 DAG.getIntPtrConstant(0));
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002542 }
2543
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002544 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002545
Matt Arsenault225ed702013-05-18 00:21:46 +00002546 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002547 Op0, DAG.getConstant(0, Op0.getValueType()),
2548 ISD::SETLT);
2549 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00002550 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002551 SignSet, Four, Zero);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002552
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002553 // If the sign bit of the integer is set, the large number will be treated
2554 // as a negative number. To counteract this, the dynamic code adds an
2555 // offset depending on the data type.
2556 uint64_t FF;
Craig Topper0ff11902013-08-15 02:44:19 +00002557 switch (Op0.getSimpleValueType().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002558 default: llvm_unreachable("Unsupported integer type!");
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002559 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2560 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2561 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2562 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2563 }
2564 if (TLI.isLittleEndian()) FF <<= 32;
2565 Constant *FudgeFactor = ConstantInt::get(
2566 Type::getInt64Ty(*DAG.getContext()), FF);
2567
2568 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2569 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Tom Stellardedd08f72013-08-26 15:06:10 +00002570 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002571 Alignment = std::min(Alignment, 4u);
2572 SDValue FudgeInReg;
2573 if (DestVT == MVT::f32)
2574 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00002575 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002576 false, false, false, Alignment);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002577 else {
Dan Gohman65fd6562011-11-03 21:49:52 +00002578 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2579 DAG.getEntryNode(), CPIdx,
2580 MachinePointerInfo::getConstantPool(),
2581 MVT::f32, false, false, Alignment);
2582 HandleSDNode Handle(Load);
2583 LegalizeOp(Load.getNode());
2584 FudgeInReg = Handle.getValue();
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002585 }
2586
2587 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002588}
2589
2590/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2591/// *INT_TO_FP operation of the specified operand when the target requests that
2592/// we promote it. At this point, we know that the result and operand types are
2593/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2594/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00002595SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002596 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002597 bool isSigned,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002598 SDLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002599 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002600 EVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002601
2602 unsigned OpToUse = 0;
2603
2604 // Scan for the appropriate larger type to use.
2605 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002606 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002607 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002608
2609 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002610 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2611 OpToUse = ISD::SINT_TO_FP;
2612 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002613 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002614 if (isSigned) continue;
2615
2616 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002617 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2618 OpToUse = ISD::UINT_TO_FP;
2619 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002620 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002621
2622 // Otherwise, try a larger type.
2623 }
2624
2625 // Okay, we found the operation and type to use. Zero extend our input to the
2626 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00002627 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00002628 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00002629 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002630}
2631
2632/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2633/// FP_TO_*INT operation of the specified operand when the target requests that
2634/// we promote it. At this point, we know that the result and operand types are
2635/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2636/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00002637SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002638 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002639 bool isSigned,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002640 SDLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002641 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002642 EVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002643
2644 unsigned OpToUse = 0;
2645
2646 // Scan for the appropriate larger type to use.
2647 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002648 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002649 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002650
Eli Friedman3be2e512009-05-28 03:06:16 +00002651 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002652 OpToUse = ISD::FP_TO_SINT;
2653 break;
2654 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002655
Eli Friedman3be2e512009-05-28 03:06:16 +00002656 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002657 OpToUse = ISD::FP_TO_UINT;
2658 break;
2659 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002660
2661 // Otherwise, try a larger type.
2662 }
2663
Scott Michelfdc40a02009-02-17 22:15:04 +00002664
Chris Lattner27a6c732007-11-24 07:07:01 +00002665 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00002666 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00002667
Chris Lattner27a6c732007-11-24 07:07:01 +00002668 // Truncate the result of the extended FP_TO_*INT operation to the desired
2669 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00002670 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002671}
2672
2673/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2674///
Andrew Trickac6d9be2013-05-25 02:42:55 +00002675SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002676 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002677 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00002678 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson825b72b2009-08-11 20:47:22 +00002679 switch (VT.getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002680 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002681 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002682 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2683 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2684 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002685 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002686 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2687 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2688 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2689 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2690 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2691 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2692 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2693 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2694 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002695 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002696 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2697 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2698 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2699 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2700 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2701 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2702 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2703 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2704 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2705 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2706 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2707 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2708 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2709 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2710 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2711 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2712 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2713 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2714 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2715 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2716 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002717 }
2718}
2719
2720/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2721///
Scott Michelfdc40a02009-02-17 22:15:04 +00002722SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002723 SDLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002724 switch (Opc) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002725 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002726 case ISD::CTPOP: {
Owen Andersone50ed302009-08-10 22:56:29 +00002727 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002728 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002729 unsigned Len = VT.getSizeInBits();
2730
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002731 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2732 "CTPOP not implemented for this type.");
2733
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002734 // This is the "best" algorithm from
2735 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2736
Benjamin Kramerad4da0f2013-02-20 13:00:06 +00002737 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), VT);
2738 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), VT);
2739 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), VT);
2740 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002741
2742 // v = v - ((v >> 1) & 0x55555555...)
2743 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2744 DAG.getNode(ISD::AND, dl, VT,
2745 DAG.getNode(ISD::SRL, dl, VT, Op,
2746 DAG.getConstant(1, ShVT)),
2747 Mask55));
2748 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2749 Op = DAG.getNode(ISD::ADD, dl, VT,
2750 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2751 DAG.getNode(ISD::AND, dl, VT,
2752 DAG.getNode(ISD::SRL, dl, VT, Op,
2753 DAG.getConstant(2, ShVT)),
2754 Mask33));
2755 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2756 Op = DAG.getNode(ISD::AND, dl, VT,
2757 DAG.getNode(ISD::ADD, dl, VT, Op,
2758 DAG.getNode(ISD::SRL, dl, VT, Op,
2759 DAG.getConstant(4, ShVT))),
2760 Mask0F);
2761 // v = (v * 0x01010101...) >> (Len - 8)
2762 Op = DAG.getNode(ISD::SRL, dl, VT,
2763 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2764 DAG.getConstant(Len - 8, ShVT));
Owen Anderson95771af2011-02-25 21:41:48 +00002765
Chris Lattner22cde6a2006-01-28 08:25:58 +00002766 return Op;
2767 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002768 case ISD::CTLZ_ZERO_UNDEF:
2769 // This trivially expands to CTLZ.
2770 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002771 case ISD::CTLZ: {
2772 // for now, we do this:
2773 // x = x | (x >> 1);
2774 // x = x | (x >> 2);
2775 // ...
2776 // x = x | (x >>16);
2777 // x = x | (x >>32); // for 64-bit input
2778 // return popcount(~x);
2779 //
2780 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002781 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002782 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002783 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002784 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002785 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002786 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00002787 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002788 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00002789 Op = DAG.getNOT(dl, Op, VT);
2790 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002791 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002792 case ISD::CTTZ_ZERO_UNDEF:
2793 // This trivially expands to CTTZ.
2794 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002795 case ISD::CTTZ: {
2796 // for now, we use: { return popcount(~x & (x - 1)); }
2797 // unless the target has ctlz but not ctpop, in which case we use:
2798 // { return 32 - nlz(~x & (x-1)); }
2799 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002800 EVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00002801 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2802 DAG.getNOT(dl, Op, VT),
2803 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00002804 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002805 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002806 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2807 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00002808 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002809 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00002810 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2811 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002812 }
2813 }
2814}
Chris Lattnere34b3962005-01-19 04:19:40 +00002815
Jim Grosbache03262f2010-06-18 21:43:38 +00002816std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2817 unsigned Opc = Node->getOpcode();
2818 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2819 RTLIB::Libcall LC;
2820
2821 switch (Opc) {
2822 default:
2823 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002824 case ISD::ATOMIC_SWAP:
2825 switch (VT.SimpleTy) {
2826 default: llvm_unreachable("Unexpected value type for atomic!");
2827 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2828 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2829 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2830 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002831 case MVT::i128:LC = RTLIB::SYNC_LOCK_TEST_AND_SET_16;break;
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002832 }
2833 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002834 case ISD::ATOMIC_CMP_SWAP:
2835 switch (VT.SimpleTy) {
2836 default: llvm_unreachable("Unexpected value type for atomic!");
2837 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2838 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2839 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2840 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002841 case MVT::i128:LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002842 }
2843 break;
2844 case ISD::ATOMIC_LOAD_ADD:
2845 switch (VT.SimpleTy) {
2846 default: llvm_unreachable("Unexpected value type for atomic!");
2847 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2848 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2849 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2850 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002851 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_ADD_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002852 }
2853 break;
2854 case ISD::ATOMIC_LOAD_SUB:
2855 switch (VT.SimpleTy) {
2856 default: llvm_unreachable("Unexpected value type for atomic!");
2857 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2858 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2859 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2860 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002861 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_SUB_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002862 }
2863 break;
2864 case ISD::ATOMIC_LOAD_AND:
2865 switch (VT.SimpleTy) {
2866 default: llvm_unreachable("Unexpected value type for atomic!");
2867 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2868 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2869 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2870 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002871 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_AND_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002872 }
2873 break;
2874 case ISD::ATOMIC_LOAD_OR:
2875 switch (VT.SimpleTy) {
2876 default: llvm_unreachable("Unexpected value type for atomic!");
2877 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2878 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2879 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2880 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002881 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_OR_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002882 }
2883 break;
2884 case ISD::ATOMIC_LOAD_XOR:
2885 switch (VT.SimpleTy) {
2886 default: llvm_unreachable("Unexpected value type for atomic!");
2887 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2888 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2889 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2890 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002891 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_XOR_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002892 }
2893 break;
2894 case ISD::ATOMIC_LOAD_NAND:
2895 switch (VT.SimpleTy) {
2896 default: llvm_unreachable("Unexpected value type for atomic!");
2897 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2898 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2899 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2900 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
David Majnemer641bea12013-10-18 08:03:43 +00002901 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_NAND_16;break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002902 }
2903 break;
Tim Northover5a42ae82013-10-25 09:30:20 +00002904 case ISD::ATOMIC_LOAD_MAX:
2905 switch (VT.SimpleTy) {
2906 default: llvm_unreachable("Unexpected value type for atomic!");
2907 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MAX_1; break;
2908 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MAX_2; break;
2909 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MAX_4; break;
2910 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MAX_8; break;
2911 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MAX_16;break;
2912 }
2913 break;
2914 case ISD::ATOMIC_LOAD_UMAX:
2915 switch (VT.SimpleTy) {
2916 default: llvm_unreachable("Unexpected value type for atomic!");
2917 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMAX_1; break;
2918 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMAX_2; break;
2919 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMAX_4; break;
2920 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMAX_8; break;
2921 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMAX_16;break;
2922 }
2923 break;
2924 case ISD::ATOMIC_LOAD_MIN:
2925 switch (VT.SimpleTy) {
2926 default: llvm_unreachable("Unexpected value type for atomic!");
2927 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MIN_1; break;
2928 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MIN_2; break;
2929 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MIN_4; break;
2930 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MIN_8; break;
2931 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MIN_16;break;
2932 }
2933 break;
2934 case ISD::ATOMIC_LOAD_UMIN:
2935 switch (VT.SimpleTy) {
2936 default: llvm_unreachable("Unexpected value type for atomic!");
2937 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMIN_1; break;
2938 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMIN_2; break;
2939 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMIN_4; break;
2940 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMIN_8; break;
2941 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMIN_16;break;
2942 }
2943 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002944 }
2945
2946 return ExpandChainLibCall(LC, Node, false);
2947}
2948
Dan Gohman65fd6562011-11-03 21:49:52 +00002949void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2950 SmallVector<SDValue, 8> Results;
Andrew Trickac6d9be2013-05-25 02:42:55 +00002951 SDLoc dl(Node);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00002952 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00002953 bool NeedInvert;
Eli Friedman8c377c72009-05-27 01:25:56 +00002954 switch (Node->getOpcode()) {
2955 case ISD::CTPOP:
2956 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002957 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002958 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002959 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002960 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2961 Results.push_back(Tmp1);
2962 break;
2963 case ISD::BSWAP:
Bill Wendling775db972009-12-23 00:28:23 +00002964 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman8c377c72009-05-27 01:25:56 +00002965 break;
2966 case ISD::FRAMEADDR:
2967 case ISD::RETURNADDR:
2968 case ISD::FRAME_TO_ARGS_OFFSET:
2969 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2970 break;
2971 case ISD::FLT_ROUNDS_:
2972 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2973 break;
2974 case ISD::EH_RETURN:
Eli Friedman8c377c72009-05-27 01:25:56 +00002975 case ISD::EH_LABEL:
2976 case ISD::PREFETCH:
Eli Friedman8c377c72009-05-27 01:25:56 +00002977 case ISD::VAEND:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002978 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002979 // If the target didn't expand these, there's nothing to do, so just
2980 // preserve the chain and be done.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002981 Results.push_back(Node->getOperand(0));
2982 break;
2983 case ISD::EH_SJLJ_SETJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002984 // If the target didn't expand this, just return 'zero' and preserve the
2985 // chain.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002986 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman8c377c72009-05-27 01:25:56 +00002987 Results.push_back(Node->getOperand(0));
2988 break;
Tim Northover6265d5c2013-04-20 12:32:17 +00002989 case ISD::ATOMIC_FENCE: {
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002990 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman14648462011-07-27 22:21:52 +00002991 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002992 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002993 TargetLowering::
2994 CallLoweringInfo CLI(Node->getOperand(0),
2995 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002996 false, false, false, false, 0, CallingConv::C,
2997 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002998 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002999 DAG.getExternalSymbol("__sync_synchronize",
3000 TLI.getPointerTy()),
3001 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003002 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3003
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00003004 Results.push_back(CallResult.second);
3005 break;
3006 }
Eli Friedman069e2ed2011-08-26 02:59:24 +00003007 case ISD::ATOMIC_LOAD: {
3008 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedman331120b2011-09-15 21:20:49 +00003009 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman069e2ed2011-08-26 02:59:24 +00003010 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
3011 cast<AtomicSDNode>(Node)->getMemoryVT(),
3012 Node->getOperand(0),
3013 Node->getOperand(1), Zero, Zero,
3014 cast<AtomicSDNode>(Node)->getMemOperand(),
3015 cast<AtomicSDNode>(Node)->getOrdering(),
Stephen Hines36b56882014-04-23 16:57:46 -07003016 cast<AtomicSDNode>(Node)->getOrdering(),
Eli Friedman069e2ed2011-08-26 02:59:24 +00003017 cast<AtomicSDNode>(Node)->getSynchScope());
3018 Results.push_back(Swap.getValue(0));
3019 Results.push_back(Swap.getValue(1));
3020 break;
3021 }
3022 case ISD::ATOMIC_STORE: {
3023 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
3024 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
3025 cast<AtomicSDNode>(Node)->getMemoryVT(),
3026 Node->getOperand(0),
3027 Node->getOperand(1), Node->getOperand(2),
3028 cast<AtomicSDNode>(Node)->getMemOperand(),
3029 cast<AtomicSDNode>(Node)->getOrdering(),
3030 cast<AtomicSDNode>(Node)->getSynchScope());
3031 Results.push_back(Swap.getValue(1));
3032 break;
3033 }
Jim Grosbachb56ce812010-06-17 17:50:54 +00003034 // By default, atomic intrinsics are marked Legal and lowered. Targets
3035 // which don't support them directly, however, may want libcalls, in which
3036 // case they mark them Expand, and we get here.
Jim Grosbachb56ce812010-06-17 17:50:54 +00003037 case ISD::ATOMIC_SWAP:
3038 case ISD::ATOMIC_LOAD_ADD:
3039 case ISD::ATOMIC_LOAD_SUB:
3040 case ISD::ATOMIC_LOAD_AND:
3041 case ISD::ATOMIC_LOAD_OR:
3042 case ISD::ATOMIC_LOAD_XOR:
3043 case ISD::ATOMIC_LOAD_NAND:
3044 case ISD::ATOMIC_LOAD_MIN:
3045 case ISD::ATOMIC_LOAD_MAX:
3046 case ISD::ATOMIC_LOAD_UMIN:
3047 case ISD::ATOMIC_LOAD_UMAX:
Evan Chenga8457062010-06-18 22:01:37 +00003048 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbache03262f2010-06-18 21:43:38 +00003049 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
3050 Results.push_back(Tmp.first);
3051 Results.push_back(Tmp.second);
Jim Grosbach59c38f32010-06-17 17:58:54 +00003052 break;
Evan Chenga8457062010-06-18 22:01:37 +00003053 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003054 case ISD::DYNAMIC_STACKALLOC:
3055 ExpandDYNAMIC_STACKALLOC(Node, Results);
3056 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00003057 case ISD::MERGE_VALUES:
3058 for (unsigned i = 0; i < Node->getNumValues(); i++)
3059 Results.push_back(Node->getOperand(i));
3060 break;
3061 case ISD::UNDEF: {
Owen Andersone50ed302009-08-10 22:56:29 +00003062 EVT VT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00003063 if (VT.isInteger())
3064 Results.push_back(DAG.getConstant(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00003065 else {
3066 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman8c377c72009-05-27 01:25:56 +00003067 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00003068 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003069 break;
3070 }
3071 case ISD::TRAP: {
3072 // If this operation is not supported, lower it to 'abort()' call
3073 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003074 TargetLowering::
3075 CallLoweringInfo CLI(Node->getOperand(0),
3076 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00003077 false, false, false, false, 0, CallingConv::C,
3078 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00003079 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eli Friedman8c377c72009-05-27 01:25:56 +00003080 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00003081 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00003082 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3083
Eli Friedman8c377c72009-05-27 01:25:56 +00003084 Results.push_back(CallResult.second);
3085 break;
3086 }
3087 case ISD::FP_ROUND:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003088 case ISD::BITCAST:
Eli Friedman8c377c72009-05-27 01:25:56 +00003089 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3090 Node->getValueType(0), dl);
3091 Results.push_back(Tmp1);
3092 break;
3093 case ISD::FP_EXTEND:
3094 Tmp1 = EmitStackConvert(Node->getOperand(0),
3095 Node->getOperand(0).getValueType(),
3096 Node->getValueType(0), dl);
3097 Results.push_back(Tmp1);
3098 break;
3099 case ISD::SIGN_EXTEND_INREG: {
3100 // NOTE: we could fall back on load/store here too for targets without
3101 // SAR. However, it is doubtful that any exist.
Owen Andersone50ed302009-08-10 22:56:29 +00003102 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00003103 EVT VT = Node->getValueType(0);
Owen Anderson95771af2011-02-25 21:41:48 +00003104 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohmand1996362010-01-09 02:13:55 +00003105 if (VT.isVector())
Dan Gohman87862e72009-12-11 21:31:27 +00003106 ShiftAmountTy = VT;
Dan Gohmand1996362010-01-09 02:13:55 +00003107 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
3108 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman87862e72009-12-11 21:31:27 +00003109 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman8c377c72009-05-27 01:25:56 +00003110 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
3111 Node->getOperand(0), ShiftCst);
Bill Wendling775db972009-12-23 00:28:23 +00003112 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
3113 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003114 break;
3115 }
3116 case ISD::FP_ROUND_INREG: {
3117 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner7a2bdde2011-04-15 05:18:47 +00003118 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman8c377c72009-05-27 01:25:56 +00003119
3120 // NOTE: there is a choice here between constantly creating new stack
3121 // slots and always reusing the same one. We currently always create
3122 // new ones, as reuse may inhibit scheduling.
Owen Andersone50ed302009-08-10 22:56:29 +00003123 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00003124 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
3125 Node->getValueType(0), dl);
3126 Results.push_back(Tmp1);
3127 break;
3128 }
3129 case ISD::SINT_TO_FP:
3130 case ISD::UINT_TO_FP:
3131 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
3132 Node->getOperand(0), Node->getValueType(0), dl);
3133 Results.push_back(Tmp1);
3134 break;
3135 case ISD::FP_TO_UINT: {
3136 SDValue True, False;
Owen Andersone50ed302009-08-10 22:56:29 +00003137 EVT VT = Node->getOperand(0).getValueType();
3138 EVT NVT = Node->getValueType(0);
Tim Northover0a29cb02013-01-22 09:46:31 +00003139 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
3140 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman8c377c72009-05-27 01:25:56 +00003141 APInt x = APInt::getSignBit(NVT.getSizeInBits());
3142 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
3143 Tmp1 = DAG.getConstantFP(apf, VT);
Matt Arsenault225ed702013-05-18 00:21:46 +00003144 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman8c377c72009-05-27 01:25:56 +00003145 Node->getOperand(0),
3146 Tmp1, ISD::SETLT);
3147 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00003148 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
3149 DAG.getNode(ISD::FSUB, dl, VT,
3150 Node->getOperand(0), Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00003151 False = DAG.getNode(ISD::XOR, dl, NVT, False,
3152 DAG.getConstant(x, NVT));
Matt Arsenaultb05e4772013-06-14 22:04:37 +00003153 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman8c377c72009-05-27 01:25:56 +00003154 Results.push_back(Tmp1);
3155 break;
3156 }
Eli Friedman509150f2009-05-27 07:58:35 +00003157 case ISD::VAARG: {
3158 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00003159 EVT VT = Node->getValueType(0);
Eli Friedman509150f2009-05-27 07:58:35 +00003160 Tmp1 = Node->getOperand(0);
3161 Tmp2 = Node->getOperand(1);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00003162 unsigned Align = Node->getConstantOperandVal(3);
3163
Chris Lattnerecf42c42010-09-21 16:36:31 +00003164 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Stephen Lin155615d2013-07-08 00:37:03 +00003165 MachinePointerInfo(V),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003166 false, false, false, 0);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00003167 SDValue VAList = VAListLoad;
3168
Rafael Espindolacbeeae22010-07-11 04:01:49 +00003169 if (Align > TLI.getMinStackArgumentAlignment()) {
3170 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
3171
Tom Stellardedd08f72013-08-26 15:06:10 +00003172 VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00003173 DAG.getConstant(Align - 1,
Tom Stellardedd08f72013-08-26 15:06:10 +00003174 VAList.getValueType()));
Rafael Espindola72d13ff2010-06-26 18:22:20 +00003175
Tom Stellardedd08f72013-08-26 15:06:10 +00003176 VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList,
Chris Lattner07e3a382010-10-10 18:36:26 +00003177 DAG.getConstant(-(int64_t)Align,
Tom Stellardedd08f72013-08-26 15:06:10 +00003178 VAList.getValueType()));
Rafael Espindola72d13ff2010-06-26 18:22:20 +00003179 }
3180
Eli Friedman509150f2009-05-27 07:58:35 +00003181 // Increment the pointer, VAList, to the next vaarg
Tom Stellardedd08f72013-08-26 15:06:10 +00003182 Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Micah Villmow3574eca2012-10-08 16:38:25 +00003183 DAG.getConstant(TLI.getDataLayout()->
Evan Chengadf97992010-04-15 01:25:27 +00003184 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Tom Stellardedd08f72013-08-26 15:06:10 +00003185 VAList.getValueType()));
Eli Friedman509150f2009-05-27 07:58:35 +00003186 // Store the incremented VAList to the legalized pointer
Chris Lattner6229d0a2010-09-21 18:41:36 +00003187 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
3188 MachinePointerInfo(V), false, false, 0);
Eli Friedman509150f2009-05-27 07:58:35 +00003189 // Load the actual argument out of the pointer VAList
Chris Lattnerecf42c42010-09-21 16:36:31 +00003190 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003191 false, false, false, 0));
Eli Friedman509150f2009-05-27 07:58:35 +00003192 Results.push_back(Results[0].getValue(1));
3193 break;
3194 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003195 case ISD::VACOPY: {
3196 // This defaults to loading a pointer from the input and storing it to the
3197 // output, returning the chain.
3198 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3199 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3200 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattnerecf42c42010-09-21 16:36:31 +00003201 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooperd752e0f2011-11-08 18:42:53 +00003202 false, false, false, 0);
Chris Lattnerecf42c42010-09-21 16:36:31 +00003203 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
3204 MachinePointerInfo(VD), false, false, 0);
Bill Wendling775db972009-12-23 00:28:23 +00003205 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003206 break;
3207 }
3208 case ISD::EXTRACT_VECTOR_ELT:
3209 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3210 // This must be an access of the only element. Return it.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003211 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman8c377c72009-05-27 01:25:56 +00003212 Node->getOperand(0));
3213 else
3214 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3215 Results.push_back(Tmp1);
3216 break;
3217 case ISD::EXTRACT_SUBVECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00003218 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman8c377c72009-05-27 01:25:56 +00003219 break;
David Greenecfe33c42011-01-26 19:13:22 +00003220 case ISD::INSERT_SUBVECTOR:
3221 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3222 break;
Eli Friedman509150f2009-05-27 07:58:35 +00003223 case ISD::CONCAT_VECTORS: {
Bill Wendling775db972009-12-23 00:28:23 +00003224 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman509150f2009-05-27 07:58:35 +00003225 break;
3226 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003227 case ISD::SCALAR_TO_VECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00003228 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman8c377c72009-05-27 01:25:56 +00003229 break;
Eli Friedman3f727d62009-05-27 02:16:40 +00003230 case ISD::INSERT_VECTOR_ELT:
Bill Wendling775db972009-12-23 00:28:23 +00003231 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3232 Node->getOperand(1),
3233 Node->getOperand(2), dl));
Eli Friedman3f727d62009-05-27 02:16:40 +00003234 break;
Eli Friedman509150f2009-05-27 07:58:35 +00003235 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003236 SmallVector<int, 32> NewMask;
3237 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003238
Owen Andersone50ed302009-08-10 22:56:29 +00003239 EVT VT = Node->getValueType(0);
3240 EVT EltVT = VT.getVectorElementType();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003241 SDValue Op0 = Node->getOperand(0);
3242 SDValue Op1 = Node->getOperand(1);
3243 if (!TLI.isTypeLegal(EltVT)) {
3244
3245 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3246
3247 // BUILD_VECTOR operands are allowed to be wider than the element type.
Stephen Hines36b56882014-04-23 16:57:46 -07003248 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept
3249 // it.
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003250 if (NewEltVT.bitsLT(EltVT)) {
3251
3252 // Convert shuffle node.
3253 // If original node was v4i64 and the new EltVT is i32,
3254 // cast operands to v8i32 and re-build the mask.
3255
3256 // Calculate new VT, the size of the new VT should be equal to original.
Stephen Hines36b56882014-04-23 16:57:46 -07003257 EVT NewVT =
3258 EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3259 VT.getSizeInBits() / NewEltVT.getSizeInBits());
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003260 assert(NewVT.bitsEq(VT));
3261
3262 // cast operands to new VT
3263 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3264 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3265
3266 // Convert the shuffle mask
Stephen Hines36b56882014-04-23 16:57:46 -07003267 unsigned int factor =
3268 NewVT.getVectorNumElements()/VT.getVectorNumElements();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003269
3270 // EltVT gets smaller
3271 assert(factor > 0);
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003272
3273 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3274 if (Mask[i] < 0) {
3275 for (unsigned fi = 0; fi < factor; ++fi)
3276 NewMask.push_back(Mask[i]);
3277 }
3278 else {
3279 for (unsigned fi = 0; fi < factor; ++fi)
3280 NewMask.push_back(Mask[i]*factor+fi);
3281 }
3282 }
3283 Mask = NewMask;
3284 VT = NewVT;
3285 }
3286 EltVT = NewEltVT;
3287 }
Eli Friedman509150f2009-05-27 07:58:35 +00003288 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003289 SmallVector<SDValue, 16> Ops;
Eli Friedman509150f2009-05-27 07:58:35 +00003290 for (unsigned i = 0; i != NumElems; ++i) {
3291 if (Mask[i] < 0) {
3292 Ops.push_back(DAG.getUNDEF(EltVT));
3293 continue;
3294 }
3295 unsigned Idx = Mask[i];
3296 if (Idx < NumElems)
Bill Wendling775db972009-12-23 00:28:23 +00003297 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003298 Op0,
Tom Stellard425b76c2013-08-05 22:22:01 +00003299 DAG.getConstant(Idx, TLI.getVectorIdxTy())));
Eli Friedman509150f2009-05-27 07:58:35 +00003300 else
Bill Wendling775db972009-12-23 00:28:23 +00003301 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00003302 Op1,
Tom Stellard425b76c2013-08-05 22:22:01 +00003303 DAG.getConstant(Idx - NumElems,
3304 TLI.getVectorIdxTy())));
Eli Friedman509150f2009-05-27 07:58:35 +00003305 }
Nadav Rotem6c0366c2012-01-10 14:28:46 +00003306
Eli Friedman509150f2009-05-27 07:58:35 +00003307 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Nadav Rotem6c0366c2012-01-10 14:28:46 +00003308 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3309 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003310 Results.push_back(Tmp1);
3311 break;
3312 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003313 case ISD::EXTRACT_ELEMENT: {
Owen Andersone50ed302009-08-10 22:56:29 +00003314 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman8c377c72009-05-27 01:25:56 +00003315 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3316 // 1 -> Hi
3317 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3318 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003319 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman8c377c72009-05-27 01:25:56 +00003320 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3321 } else {
3322 // 0 -> Lo
3323 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3324 Node->getOperand(0));
3325 }
3326 Results.push_back(Tmp1);
3327 break;
3328 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003329 case ISD::STACKSAVE:
3330 // Expand to CopyFromReg if the target set
3331 // StackPointerRegisterToSaveRestore.
3332 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendling775db972009-12-23 00:28:23 +00003333 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3334 Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003335 Results.push_back(Results[0].getValue(1));
3336 } else {
Bill Wendling775db972009-12-23 00:28:23 +00003337 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00003338 Results.push_back(Node->getOperand(0));
3339 }
3340 break;
3341 case ISD::STACKRESTORE:
Bill Wendling775db972009-12-23 00:28:23 +00003342 // Expand to CopyToReg if the target set
3343 // StackPointerRegisterToSaveRestore.
3344 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3345 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3346 Node->getOperand(1)));
3347 } else {
3348 Results.push_back(Node->getOperand(0));
3349 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003350 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003351 case ISD::FCOPYSIGN:
Bill Wendling775db972009-12-23 00:28:23 +00003352 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003353 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003354 case ISD::FNEG:
3355 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3356 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3357 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3358 Node->getOperand(0));
3359 Results.push_back(Tmp1);
3360 break;
3361 case ISD::FABS: {
3362 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Andersone50ed302009-08-10 22:56:29 +00003363 EVT VT = Node->getValueType(0);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003364 Tmp1 = Node->getOperand(0);
3365 Tmp2 = DAG.getConstantFP(0.0, VT);
Matt Arsenault225ed702013-05-18 00:21:46 +00003366 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003367 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendling775db972009-12-23 00:28:23 +00003368 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00003369 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003370 Results.push_back(Tmp1);
3371 break;
3372 }
3373 case ISD::FSQRT:
Bill Wendling775db972009-12-23 00:28:23 +00003374 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003375 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3376 RTLIB::SQRT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003377 break;
3378 case ISD::FSIN:
Evan Cheng8688a582013-01-29 02:32:37 +00003379 case ISD::FCOS: {
3380 EVT VT = Node->getValueType(0);
3381 bool isSIN = Node->getOpcode() == ISD::FSIN;
3382 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3383 // fcos which share the same operand and both are used.
3384 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmond86cdbc92013-02-15 18:45:18 +00003385 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng8688a582013-01-29 02:32:37 +00003386 && useSinCos(Node)) {
3387 SDVTList VTs = DAG.getVTList(VT, VT);
3388 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3389 if (!isSIN)
3390 Tmp1 = Tmp1.getValue(1);
3391 Results.push_back(Tmp1);
3392 } else if (isSIN) {
3393 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3394 RTLIB::SIN_F80, RTLIB::SIN_F128,
3395 RTLIB::SIN_PPCF128));
3396 } else {
3397 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3398 RTLIB::COS_F80, RTLIB::COS_F128,
3399 RTLIB::COS_PPCF128));
3400 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003401 break;
Evan Cheng8688a582013-01-29 02:32:37 +00003402 }
3403 case ISD::FSINCOS:
3404 // Expand into sincos libcall.
3405 ExpandSinCosLibCall(Node, Results);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003406 break;
3407 case ISD::FLOG:
Bill Wendling775db972009-12-23 00:28:23 +00003408 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003409 RTLIB::LOG_F80, RTLIB::LOG_F128,
3410 RTLIB::LOG_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003411 break;
3412 case ISD::FLOG2:
Bill Wendling775db972009-12-23 00:28:23 +00003413 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003414 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3415 RTLIB::LOG2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003416 break;
3417 case ISD::FLOG10:
Bill Wendling775db972009-12-23 00:28:23 +00003418 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003419 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3420 RTLIB::LOG10_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003421 break;
3422 case ISD::FEXP:
Bill Wendling775db972009-12-23 00:28:23 +00003423 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003424 RTLIB::EXP_F80, RTLIB::EXP_F128,
3425 RTLIB::EXP_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003426 break;
3427 case ISD::FEXP2:
Bill Wendling775db972009-12-23 00:28:23 +00003428 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003429 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3430 RTLIB::EXP2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003431 break;
3432 case ISD::FTRUNC:
Bill Wendling775db972009-12-23 00:28:23 +00003433 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003434 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3435 RTLIB::TRUNC_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003436 break;
3437 case ISD::FFLOOR:
Bill Wendling775db972009-12-23 00:28:23 +00003438 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003439 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3440 RTLIB::FLOOR_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003441 break;
3442 case ISD::FCEIL:
Bill Wendling775db972009-12-23 00:28:23 +00003443 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003444 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3445 RTLIB::CEIL_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003446 break;
3447 case ISD::FRINT:
Bill Wendling775db972009-12-23 00:28:23 +00003448 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003449 RTLIB::RINT_F80, RTLIB::RINT_F128,
3450 RTLIB::RINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003451 break;
3452 case ISD::FNEARBYINT:
Bill Wendling775db972009-12-23 00:28:23 +00003453 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3454 RTLIB::NEARBYINT_F64,
3455 RTLIB::NEARBYINT_F80,
Tim Northover24d315d2013-01-08 17:09:59 +00003456 RTLIB::NEARBYINT_F128,
Bill Wendling775db972009-12-23 00:28:23 +00003457 RTLIB::NEARBYINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003458 break;
Hal Finkel41418d12013-08-07 22:49:12 +00003459 case ISD::FROUND:
3460 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3461 RTLIB::ROUND_F64,
3462 RTLIB::ROUND_F80,
3463 RTLIB::ROUND_F128,
3464 RTLIB::ROUND_PPCF128));
3465 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003466 case ISD::FPOWI:
Bill Wendling775db972009-12-23 00:28:23 +00003467 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003468 RTLIB::POWI_F80, RTLIB::POWI_F128,
3469 RTLIB::POWI_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003470 break;
3471 case ISD::FPOW:
Bill Wendling775db972009-12-23 00:28:23 +00003472 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003473 RTLIB::POW_F80, RTLIB::POW_F128,
3474 RTLIB::POW_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003475 break;
3476 case ISD::FDIV:
Bill Wendling775db972009-12-23 00:28:23 +00003477 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003478 RTLIB::DIV_F80, RTLIB::DIV_F128,
3479 RTLIB::DIV_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003480 break;
3481 case ISD::FREM:
Bill Wendling775db972009-12-23 00:28:23 +00003482 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003483 RTLIB::REM_F80, RTLIB::REM_F128,
3484 RTLIB::REM_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003485 break;
Cameron Zwarich33390842011-07-08 21:39:21 +00003486 case ISD::FMA:
3487 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover24d315d2013-01-08 17:09:59 +00003488 RTLIB::FMA_F80, RTLIB::FMA_F128,
3489 RTLIB::FMA_PPCF128));
Cameron Zwarich33390842011-07-08 21:39:21 +00003490 break;
Anton Korobeynikov927411b2010-03-14 18:42:24 +00003491 case ISD::FP16_TO_FP32:
3492 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3493 break;
3494 case ISD::FP32_TO_FP16:
3495 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3496 break;
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003497 case ISD::ConstantFP: {
3498 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendling775db972009-12-23 00:28:23 +00003499 // Check to see if this FP immediate is already legal.
3500 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman65fd6562011-11-03 21:49:52 +00003501 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3502 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003503 break;
3504 }
Owen Andersonafd3d562012-03-06 00:29:31 +00003505 case ISD::FSUB: {
3506 EVT VT = Node->getValueType(0);
3507 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3508 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3509 "Don't know how to expand this FP subtraction!");
3510 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3511 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3512 Results.push_back(Tmp1);
3513 break;
3514 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003515 case ISD::SUB: {
Owen Andersone50ed302009-08-10 22:56:29 +00003516 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003517 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3518 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3519 "Don't know how to expand this subtraction!");
3520 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3521 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Anderson4b6e6752012-05-21 22:39:20 +00003522 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendling775db972009-12-23 00:28:23 +00003523 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003524 break;
3525 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003526 case ISD::UREM:
3527 case ISD::SREM: {
Owen Andersone50ed302009-08-10 22:56:29 +00003528 EVT VT = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003529 bool isSigned = Node->getOpcode() == ISD::SREM;
3530 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3531 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3532 Tmp2 = Node->getOperand(0);
3533 Tmp3 = Node->getOperand(1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003534 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3535 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Chengd36696c2012-10-12 01:15:47 +00003536 // If div is legal, it's better to do the normal expansion
3537 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003538 useDivRem(Node, isSigned, false))) {
Evan Cheng8688a582013-01-29 02:32:37 +00003539 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedman3be2e512009-05-28 03:06:16 +00003540 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3541 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003542 // X % Y -> X-X/Y*Y
3543 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3544 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3545 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003546 } else if (isSigned)
3547 Tmp1 = ExpandIntLibCall(Node, true,
3548 RTLIB::SREM_I8,
3549 RTLIB::SREM_I16, RTLIB::SREM_I32,
3550 RTLIB::SREM_I64, RTLIB::SREM_I128);
3551 else
3552 Tmp1 = ExpandIntLibCall(Node, false,
3553 RTLIB::UREM_I8,
3554 RTLIB::UREM_I16, RTLIB::UREM_I32,
3555 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003556 Results.push_back(Tmp1);
3557 break;
3558 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003559 case ISD::UDIV:
3560 case ISD::SDIV: {
3561 bool isSigned = Node->getOpcode() == ISD::SDIV;
3562 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Andersone50ed302009-08-10 22:56:29 +00003563 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003564 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Cheng65279cb2011-04-16 03:08:26 +00003565 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3566 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003567 useDivRem(Node, isSigned, true)))
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003568 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3569 Node->getOperand(1));
Evan Cheng65279cb2011-04-16 03:08:26 +00003570 else if (isSigned)
3571 Tmp1 = ExpandIntLibCall(Node, true,
3572 RTLIB::SDIV_I8,
3573 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3574 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3575 else
3576 Tmp1 = ExpandIntLibCall(Node, false,
3577 RTLIB::UDIV_I8,
3578 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3579 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003580 Results.push_back(Tmp1);
3581 break;
3582 }
3583 case ISD::MULHU:
3584 case ISD::MULHS: {
3585 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3586 ISD::SMUL_LOHI;
Owen Andersone50ed302009-08-10 22:56:29 +00003587 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003588 SDVTList VTs = DAG.getVTList(VT, VT);
3589 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3590 "If this wasn't legal, it shouldn't have been created!");
3591 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3592 Node->getOperand(1));
3593 Results.push_back(Tmp1.getValue(1));
3594 break;
3595 }
Evan Cheng65279cb2011-04-16 03:08:26 +00003596 case ISD::SDIVREM:
3597 case ISD::UDIVREM:
3598 // Expand into divrem libcall
3599 ExpandDivRemLibCall(Node, Results);
3600 break;
Eli Friedman26ea8f92009-05-27 07:05:37 +00003601 case ISD::MUL: {
Owen Andersone50ed302009-08-10 22:56:29 +00003602 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003603 SDVTList VTs = DAG.getVTList(VT, VT);
3604 // See if multiply or divide can be lowered using two-result operations.
3605 // We just need the low half of the multiply; try both the signed
3606 // and unsigned forms. If the target supports both SMUL_LOHI and
3607 // UMUL_LOHI, form a preference by checking which forms of plain
3608 // MULH it supports.
3609 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3610 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3611 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3612 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3613 unsigned OpToUse = 0;
3614 if (HasSMUL_LOHI && !HasMULHS) {
3615 OpToUse = ISD::SMUL_LOHI;
3616 } else if (HasUMUL_LOHI && !HasMULHU) {
3617 OpToUse = ISD::UMUL_LOHI;
3618 } else if (HasSMUL_LOHI) {
3619 OpToUse = ISD::SMUL_LOHI;
3620 } else if (HasUMUL_LOHI) {
3621 OpToUse = ISD::UMUL_LOHI;
3622 }
3623 if (OpToUse) {
Bill Wendling775db972009-12-23 00:28:23 +00003624 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3625 Node->getOperand(1)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003626 break;
3627 }
Anton Korobeynikov8983da72009-11-07 17:14:39 +00003628 Tmp1 = ExpandIntLibCall(Node, false,
3629 RTLIB::MUL_I8,
3630 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman26ea8f92009-05-27 07:05:37 +00003631 RTLIB::MUL_I64, RTLIB::MUL_I128);
3632 Results.push_back(Tmp1);
3633 break;
3634 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003635 case ISD::SADDO:
3636 case ISD::SSUBO: {
3637 SDValue LHS = Node->getOperand(0);
3638 SDValue RHS = Node->getOperand(1);
3639 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3640 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3641 LHS, RHS);
3642 Results.push_back(Sum);
Bill Wendling122d06d2009-12-23 00:05:09 +00003643 EVT OType = Node->getValueType(1);
Bill Wendling775db972009-12-23 00:28:23 +00003644
Eli Friedman4bc8c712009-05-27 12:20:41 +00003645 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3646
3647 // LHSSign -> LHS >= 0
3648 // RHSSign -> RHS >= 0
3649 // SumSign -> Sum >= 0
3650 //
3651 // Add:
3652 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3653 // Sub:
3654 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3655 //
3656 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3657 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3658 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3659 Node->getOpcode() == ISD::SADDO ?
3660 ISD::SETEQ : ISD::SETNE);
3661
3662 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3663 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3664
3665 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3666 Results.push_back(Cmp);
3667 break;
3668 }
3669 case ISD::UADDO:
3670 case ISD::USUBO: {
3671 SDValue LHS = Node->getOperand(0);
3672 SDValue RHS = Node->getOperand(1);
3673 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3674 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3675 LHS, RHS);
3676 Results.push_back(Sum);
Bill Wendling775db972009-12-23 00:28:23 +00003677 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3678 Node->getOpcode () == ISD::UADDO ?
3679 ISD::SETULT : ISD::SETUGT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003680 break;
3681 }
Eli Friedmandb3c1692009-06-16 06:58:29 +00003682 case ISD::UMULO:
3683 case ISD::SMULO: {
Owen Andersone50ed302009-08-10 22:56:29 +00003684 EVT VT = Node->getValueType(0);
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003685 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmandb3c1692009-06-16 06:58:29 +00003686 SDValue LHS = Node->getOperand(0);
3687 SDValue RHS = Node->getOperand(1);
3688 SDValue BottomHalf;
3689 SDValue TopHalf;
Nuno Lopesec9d8b02009-12-23 17:48:10 +00003690 static const unsigned Ops[2][3] =
Eli Friedmandb3c1692009-06-16 06:58:29 +00003691 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3692 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3693 bool isSigned = Node->getOpcode() == ISD::SMULO;
3694 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3695 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3696 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3697 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3698 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3699 RHS);
3700 TopHalf = BottomHalf.getValue(1);
Eric Christopher38a18262011-01-20 00:29:24 +00003701 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3702 VT.getSizeInBits() * 2))) {
Eli Friedmandb3c1692009-06-16 06:58:29 +00003703 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3704 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3705 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3706 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3707 DAG.getIntPtrConstant(0));
3708 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3709 DAG.getIntPtrConstant(1));
Eric Christopher38a18262011-01-20 00:29:24 +00003710 } else {
3711 // We can fall back to a libcall with an illegal type for the MUL if we
3712 // have a libcall big enough.
3713 // Also, we can fall back to a division in some cases, but that's a big
3714 // performance hit in the general case.
Eric Christopher38a18262011-01-20 00:29:24 +00003715 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3716 if (WideVT == MVT::i16)
3717 LC = RTLIB::MUL_I16;
3718 else if (WideVT == MVT::i32)
3719 LC = RTLIB::MUL_I32;
3720 else if (WideVT == MVT::i64)
3721 LC = RTLIB::MUL_I64;
3722 else if (WideVT == MVT::i128)
3723 LC = RTLIB::MUL_I128;
3724 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanf316eb72011-05-16 22:09:53 +00003725
3726 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003727 // part.
3728 unsigned LoSize = VT.getSizeInBits();
3729 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3730 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3731 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3732 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Anderson95771af2011-02-25 21:41:48 +00003733
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003734 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3735 // pre-lowered to the correct types. This all depends upon WideVT not
3736 // being a legal type for the architecture and thus has to be split to
3737 // two arguments.
3738 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3739 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3740 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3741 DAG.getIntPtrConstant(0));
3742 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3743 DAG.getIntPtrConstant(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00003744 // Ret is a node with an illegal type. Because such things are not
3745 // generally permitted during this phase of legalization, delete the
3746 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3747 DAG.DeleteNode(Ret.getNode());
Eli Friedmandb3c1692009-06-16 06:58:29 +00003748 }
Dan Gohmanf316eb72011-05-16 22:09:53 +00003749
Eli Friedmandb3c1692009-06-16 06:58:29 +00003750 if (isSigned) {
Owen Anderson95771af2011-02-25 21:41:48 +00003751 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3752 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmandb3c1692009-06-16 06:58:29 +00003753 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault225ed702013-05-18 00:21:46 +00003754 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmandb3c1692009-06-16 06:58:29 +00003755 ISD::SETNE);
3756 } else {
Matt Arsenault225ed702013-05-18 00:21:46 +00003757 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Eli Friedmandb3c1692009-06-16 06:58:29 +00003758 DAG.getConstant(0, VT), ISD::SETNE);
3759 }
3760 Results.push_back(BottomHalf);
3761 Results.push_back(TopHalf);
3762 break;
3763 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003764 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +00003765 EVT PairTy = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003766 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3767 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendling775db972009-12-23 00:28:23 +00003768 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003769 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003770 TLI.getShiftAmountTy(PairTy)));
Bill Wendling775db972009-12-23 00:28:23 +00003771 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003772 break;
3773 }
Eli Friedman509150f2009-05-27 07:58:35 +00003774 case ISD::SELECT:
3775 Tmp1 = Node->getOperand(0);
3776 Tmp2 = Node->getOperand(1);
3777 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003778 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman509150f2009-05-27 07:58:35 +00003779 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3780 Tmp2, Tmp3,
3781 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendling775db972009-12-23 00:28:23 +00003782 } else {
Eli Friedman509150f2009-05-27 07:58:35 +00003783 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3784 DAG.getConstant(0, Tmp1.getValueType()),
3785 Tmp2, Tmp3, ISD::SETNE);
Bill Wendling775db972009-12-23 00:28:23 +00003786 }
Eli Friedman509150f2009-05-27 07:58:35 +00003787 Results.push_back(Tmp1);
3788 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003789 case ISD::BR_JT: {
3790 SDValue Chain = Node->getOperand(0);
3791 SDValue Table = Node->getOperand(1);
3792 SDValue Index = Node->getOperand(2);
3793
Owen Andersone50ed302009-08-10 22:56:29 +00003794 EVT PTy = TLI.getPointerTy();
Chris Lattner071c62f2010-01-25 23:26:13 +00003795
Micah Villmow3574eca2012-10-08 16:38:25 +00003796 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattner071c62f2010-01-25 23:26:13 +00003797 unsigned EntrySize =
3798 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach6e992612010-07-02 17:41:59 +00003799
Tom Stellardedd08f72013-08-26 15:06:10 +00003800 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(),
3801 Index, DAG.getConstant(EntrySize, Index.getValueType()));
3802 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3803 Index, Table);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003804
Owen Anderson23b9b192009-08-12 00:36:31 +00003805 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastingsa9011292011-02-16 16:23:55 +00003806 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattner85ca1062010-09-21 07:32:19 +00003807 MachinePointerInfo::getJumpTable(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00003808 false, false, 0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003809 Addr = LD;
Dan Gohman55e59c12010-04-19 19:05:59 +00003810 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman4bc8c712009-05-27 12:20:41 +00003811 // For PIC, the sequence is:
Bill Wendling775db972009-12-23 00:28:23 +00003812 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman4bc8c712009-05-27 12:20:41 +00003813 // RelocBase can be JumpTable, GOT or some sort of global base.
3814 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3815 TLI.getPICJumpTableRelocBase(Table, DAG));
3816 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003817 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003818 Results.push_back(Tmp1);
3819 break;
3820 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003821 case ISD::BRCOND:
3822 // Expand brcond's setcc into its constituent parts and create a BR_CC
3823 // Node.
3824 Tmp1 = Node->getOperand(0);
3825 Tmp2 = Node->getOperand(1);
Bill Wendling775db972009-12-23 00:28:23 +00003826 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003827 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003828 Tmp1, Tmp2.getOperand(2),
3829 Tmp2.getOperand(0), Tmp2.getOperand(1),
3830 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003831 } else {
Stuart Hastings88882242011-05-13 00:51:54 +00003832 // We test only the i1 bit. Skip the AND if UNDEF.
3833 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3834 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3835 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003836 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastings88882242011-05-13 00:51:54 +00003837 DAG.getCondCode(ISD::SETNE), Tmp3,
3838 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003839 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003840 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003841 Results.push_back(Tmp1);
3842 break;
Eli Friedmanad754602009-05-28 03:56:57 +00003843 case ISD::SETCC: {
3844 Tmp1 = Node->getOperand(0);
3845 Tmp2 = Node->getOperand(1);
3846 Tmp3 = Node->getOperand(2);
Tom Stellard8a9879a2013-09-28 02:50:32 +00003847 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00003848 Tmp3, NeedInvert, dl);
Eli Friedmanad754602009-05-28 03:56:57 +00003849
Tom Stellard8a9879a2013-09-28 02:50:32 +00003850 if (Legalized) {
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00003851 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3852 // condition code, create a new SETCC node.
Tom Stellard8a9879a2013-09-28 02:50:32 +00003853 if (Tmp3.getNode())
3854 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3855 Tmp1, Tmp2, Tmp3);
3856
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00003857 // If we expanded the SETCC by inverting the condition code, then wrap
3858 // the existing SETCC in a NOT to restore the intended condition.
3859 if (NeedInvert)
3860 Tmp1 = DAG.getNOT(dl, Tmp1, Tmp1->getValueType(0));
3861
Eli Friedmanad754602009-05-28 03:56:57 +00003862 Results.push_back(Tmp1);
3863 break;
3864 }
3865
3866 // Otherwise, SETCC for the given comparison type must be completely
3867 // illegal; expand it into a SELECT_CC.
Owen Andersone50ed302009-08-10 22:56:29 +00003868 EVT VT = Node->getValueType(0);
Tom Stellard03abf2f2013-03-08 15:37:02 +00003869 int TrueValue;
Benjamin Kramer7a580992013-03-08 17:03:19 +00003870 switch (TLI.getBooleanContents(VT.isVector())) {
Tom Stellard03abf2f2013-03-08 15:37:02 +00003871 case TargetLowering::ZeroOrOneBooleanContent:
3872 case TargetLowering::UndefinedBooleanContent:
3873 TrueValue = 1;
3874 break;
3875 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3876 TrueValue = -1;
3877 break;
3878 }
Eli Friedmanad754602009-05-28 03:56:57 +00003879 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Tom Stellard03abf2f2013-03-08 15:37:02 +00003880 DAG.getConstant(TrueValue, VT), DAG.getConstant(0, VT),
3881 Tmp3);
Eli Friedmanad754602009-05-28 03:56:57 +00003882 Results.push_back(Tmp1);
3883 break;
3884 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003885 case ISD::SELECT_CC: {
3886 Tmp1 = Node->getOperand(0); // LHS
3887 Tmp2 = Node->getOperand(1); // RHS
3888 Tmp3 = Node->getOperand(2); // True
3889 Tmp4 = Node->getOperand(3); // False
3890 SDValue CC = Node->getOperand(4);
3891
Tom Stellardbbafe422013-09-28 02:50:43 +00003892 bool Legalized = false;
3893 // Try to legalize by inverting the condition. This is for targets that
3894 // might support an ordered version of a condition, but not the unordered
3895 // version (or vice versa).
3896 ISD::CondCode InvCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3897 Tmp1.getValueType().isInteger());
3898 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
3899 // Use the new condition code and swap true and false
3900 Legalized = true;
3901 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
Tom Stellard8a9879a2013-09-28 02:50:32 +00003902 } else {
Tom Stellardbbafe422013-09-28 02:50:43 +00003903 // If The inverse is not legal, then try to swap the arguments using
3904 // the inverse condition code.
3905 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
3906 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
3907 // The swapped inverse condition is legal, so swap true and false,
3908 // lhs and rhs.
3909 Legalized = true;
3910 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
3911 }
3912 }
3913
3914 if (!Legalized) {
3915 Legalized = LegalizeSetCCCondCode(
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00003916 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, NeedInvert,
3917 dl);
Tom Stellardbbafe422013-09-28 02:50:43 +00003918
3919 assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00003920
3921 // If we expanded the SETCC by inverting the condition code, then swap
3922 // the True/False operands to match.
3923 if (NeedInvert)
3924 std::swap(Tmp3, Tmp4);
3925
3926 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3927 // condition code, create a new SELECT_CC node.
Tom Stellardbbafe422013-09-28 02:50:43 +00003928 if (CC.getNode()) {
3929 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
3930 Tmp1, Tmp2, Tmp3, Tmp4, CC);
3931 } else {
3932 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3933 CC = DAG.getCondCode(ISD::SETNE);
Stephen Hines36b56882014-04-23 16:57:46 -07003934 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1,
3935 Tmp2, Tmp3, Tmp4, CC);
Tom Stellardbbafe422013-09-28 02:50:43 +00003936 }
Tom Stellard8a9879a2013-09-28 02:50:32 +00003937 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003938 Results.push_back(Tmp1);
3939 break;
3940 }
3941 case ISD::BR_CC: {
3942 Tmp1 = Node->getOperand(0); // Chain
3943 Tmp2 = Node->getOperand(2); // LHS
3944 Tmp3 = Node->getOperand(3); // RHS
3945 Tmp4 = Node->getOperand(1); // CC
3946
Tom Stellard8a9879a2013-09-28 02:50:32 +00003947 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00003948 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, NeedInvert, dl);
Tom Stellard8034d712013-09-28 03:10:17 +00003949 (void)Legalized;
Tom Stellard8a9879a2013-09-28 02:50:32 +00003950 assert(Legalized && "Can't legalize BR_CC with legal condition!");
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003951
Daniel Sanders4e2d2f02013-11-21 15:03:54 +00003952 // If we expanded the SETCC by inverting the condition code, then wrap
3953 // the existing SETCC in a NOT to restore the intended condition.
3954 if (NeedInvert)
3955 Tmp4 = DAG.getNOT(dl, Tmp4, Tmp4->getValueType(0));
3956
3957 // If we expanded the SETCC by swapping LHS and RHS, create a new BR_CC
Tom Stellard8a9879a2013-09-28 02:50:32 +00003958 // node.
3959 if (Tmp4.getNode()) {
3960 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
3961 Tmp4, Tmp2, Tmp3, Node->getOperand(4));
3962 } else {
3963 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3964 Tmp4 = DAG.getCondCode(ISD::SETNE);
Stephen Hines36b56882014-04-23 16:57:46 -07003965 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4,
3966 Tmp2, Tmp3, Node->getOperand(4));
Tom Stellard8a9879a2013-09-28 02:50:32 +00003967 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003968 Results.push_back(Tmp1);
3969 break;
3970 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003971 case ISD::BUILD_VECTOR:
3972 Results.push_back(ExpandBUILD_VECTOR(Node));
3973 break;
3974 case ISD::SRA:
3975 case ISD::SRL:
3976 case ISD::SHL: {
3977 // Scalarize vector SRA/SRL/SHL.
3978 EVT VT = Node->getValueType(0);
3979 assert(VT.isVector() && "Unable to legalize non-vector shift");
3980 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3981 unsigned NumElem = VT.getVectorNumElements();
3982
3983 SmallVector<SDValue, 8> Scalars;
3984 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3985 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3986 VT.getScalarType(),
Tom Stellard425b76c2013-08-05 22:22:01 +00003987 Node->getOperand(0), DAG.getConstant(Idx,
3988 TLI.getVectorIdxTy()));
Dan Gohman65fd6562011-11-03 21:49:52 +00003989 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3990 VT.getScalarType(),
Tom Stellard425b76c2013-08-05 22:22:01 +00003991 Node->getOperand(1), DAG.getConstant(Idx,
3992 TLI.getVectorIdxTy()));
Dan Gohman65fd6562011-11-03 21:49:52 +00003993 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3994 VT.getScalarType(), Ex, Sh));
3995 }
3996 SDValue Result =
3997 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3998 &Scalars[0], Scalars.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +00003999 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +00004000 break;
4001 }
Eli Friedman3f727d62009-05-27 02:16:40 +00004002 case ISD::GLOBAL_OFFSET_TABLE:
4003 case ISD::GlobalAddress:
4004 case ISD::GlobalTLSAddress:
4005 case ISD::ExternalSymbol:
4006 case ISD::ConstantPool:
4007 case ISD::JumpTable:
4008 case ISD::INTRINSIC_W_CHAIN:
4009 case ISD::INTRINSIC_WO_CHAIN:
4010 case ISD::INTRINSIC_VOID:
4011 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedman3f727d62009-05-27 02:16:40 +00004012 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00004013 }
Dan Gohman65fd6562011-11-03 21:49:52 +00004014
4015 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00004016 if (!Results.empty())
4017 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00004018}
Dan Gohman65fd6562011-11-03 21:49:52 +00004019
4020void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
4021 SmallVector<SDValue, 8> Results;
Patrik Hagglund319bb392012-12-19 11:21:04 +00004022 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00004023 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedmana64eb922009-07-17 05:16:04 +00004024 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendling775db972009-12-23 00:28:23 +00004025 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglund319bb392012-12-19 11:21:04 +00004026 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendling775db972009-12-23 00:28:23 +00004027 }
Patrik Hagglund319bb392012-12-19 11:21:04 +00004028 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004029 SDLoc dl(Node);
Eli Friedman509150f2009-05-27 07:58:35 +00004030 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman8c377c72009-05-27 01:25:56 +00004031 switch (Node->getOpcode()) {
4032 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00004033 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00004034 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00004035 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00004036 case ISD::CTPOP:
4037 // Zero extend the argument.
4038 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00004039 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
4040 // already the correct result.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00004041 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00004042 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth63974b22011-12-13 01:56:10 +00004043 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault225ed702013-05-18 00:21:46 +00004044 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Eli Friedman8c377c72009-05-27 01:25:56 +00004045 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
4046 ISD::SETEQ);
Matt Arsenaultb05e4772013-06-14 22:04:37 +00004047 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
4048 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth63974b22011-12-13 01:56:10 +00004049 } else if (Node->getOpcode() == ISD::CTLZ ||
4050 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman8c377c72009-05-27 01:25:56 +00004051 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4052 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
4053 DAG.getConstant(NVT.getSizeInBits() -
4054 OVT.getSizeInBits(), NVT));
4055 }
Bill Wendling775db972009-12-23 00:28:23 +00004056 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00004057 break;
4058 case ISD::BSWAP: {
4059 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling167bea72009-12-22 22:53:39 +00004060 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00004061 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4062 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Anderson95771af2011-02-25 21:41:48 +00004063 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendling775db972009-12-23 00:28:23 +00004064 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00004065 break;
4066 }
4067 case ISD::FP_TO_UINT:
4068 case ISD::FP_TO_SINT:
4069 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
4070 Node->getOpcode() == ISD::FP_TO_SINT, dl);
4071 Results.push_back(Tmp1);
4072 break;
4073 case ISD::UINT_TO_FP:
4074 case ISD::SINT_TO_FP:
4075 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
4076 Node->getOpcode() == ISD::SINT_TO_FP, dl);
4077 Results.push_back(Tmp1);
4078 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00004079 case ISD::VAARG: {
4080 SDValue Chain = Node->getOperand(0); // Get the chain.
4081 SDValue Ptr = Node->getOperand(1); // Get the pointer.
4082
4083 unsigned TruncOp;
4084 if (OVT.isVector()) {
4085 TruncOp = ISD::BITCAST;
4086 } else {
4087 assert(OVT.isInteger()
4088 && "VAARG promotion is supported only for vectors or integer types");
4089 TruncOp = ISD::TRUNCATE;
4090 }
4091
4092 // Perform the larger operation, then convert back
4093 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
4094 Node->getConstantOperandVal(3));
4095 Chain = Tmp1.getValue(1);
4096
4097 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
4098
4099 // Modified the chain result - switch anything that used the old chain to
4100 // use the new one.
4101 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
4102 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
4103 ReplacedNode(Node);
4104 break;
4105 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00004106 case ISD::AND:
4107 case ISD::OR:
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00004108 case ISD::XOR: {
4109 unsigned ExtOp, TruncOp;
4110 if (OVT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004111 ExtOp = ISD::BITCAST;
4112 TruncOp = ISD::BITCAST;
Chris Lattner35a38932010-04-07 23:47:51 +00004113 } else {
4114 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00004115 ExtOp = ISD::ANY_EXTEND;
4116 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00004117 }
4118 // Promote each of the values to the new type.
4119 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4120 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4121 // Perform the larger operation, then convert back
Bill Wendling775db972009-12-23 00:28:23 +00004122 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
4123 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00004124 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00004125 }
4126 case ISD::SELECT: {
Eli Friedman509150f2009-05-27 07:58:35 +00004127 unsigned ExtOp, TruncOp;
Stephen Hines36b56882014-04-23 16:57:46 -07004128 if (Node->getValueType(0).isVector() ||
4129 Node->getValueType(0).getSizeInBits() == NVT.getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004130 ExtOp = ISD::BITCAST;
4131 TruncOp = ISD::BITCAST;
Eli Friedman4bc8c712009-05-27 12:20:41 +00004132 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman509150f2009-05-27 07:58:35 +00004133 ExtOp = ISD::ANY_EXTEND;
4134 TruncOp = ISD::TRUNCATE;
4135 } else {
4136 ExtOp = ISD::FP_EXTEND;
4137 TruncOp = ISD::FP_ROUND;
4138 }
4139 Tmp1 = Node->getOperand(0);
4140 // Promote each of the values to the new type.
4141 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4142 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4143 // Perform the larger operation, then round down.
Matt Arsenaultb05e4772013-06-14 22:04:37 +00004144 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman509150f2009-05-27 07:58:35 +00004145 if (TruncOp != ISD::FP_ROUND)
Bill Wendling775db972009-12-23 00:28:23 +00004146 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00004147 else
Bill Wendling775db972009-12-23 00:28:23 +00004148 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman509150f2009-05-27 07:58:35 +00004149 DAG.getIntPtrConstant(0));
Bill Wendling775db972009-12-23 00:28:23 +00004150 Results.push_back(Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00004151 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00004152 }
Eli Friedman509150f2009-05-27 07:58:35 +00004153 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004154 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00004155
4156 // Cast the two input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004157 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
4158 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman509150f2009-05-27 07:58:35 +00004159
4160 // Convert the shuffle mask to the right # elements.
Bill Wendling775db972009-12-23 00:28:23 +00004161 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004162 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00004163 Results.push_back(Tmp1);
4164 break;
4165 }
Eli Friedmanad754602009-05-28 03:56:57 +00004166 case ISD::SETCC: {
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00004167 unsigned ExtOp = ISD::FP_EXTEND;
4168 if (NVT.isInteger()) {
4169 ISD::CondCode CCCode =
4170 cast<CondCodeSDNode>(Node->getOperand(2))->get();
4171 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedmanad754602009-05-28 03:56:57 +00004172 }
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00004173 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4174 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedmanad754602009-05-28 03:56:57 +00004175 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
4176 Tmp1, Tmp2, Node->getOperand(2)));
4177 break;
4178 }
Pete Coopercfe29982012-03-19 23:38:12 +00004179 case ISD::FDIV:
Pete Cooper9751b812012-04-04 19:36:31 +00004180 case ISD::FREM:
Pete Cooperd578b902012-01-12 21:46:18 +00004181 case ISD::FPOW: {
4182 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4183 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopercfe29982012-03-19 23:38:12 +00004184 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooperd578b902012-01-12 21:46:18 +00004185 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4186 Tmp3, DAG.getIntPtrConstant(0)));
4187 break;
4188 }
4189 case ISD::FLOG2:
4190 case ISD::FEXP2:
4191 case ISD::FLOG:
4192 case ISD::FEXP: {
4193 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4194 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4195 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4196 Tmp2, DAG.getIntPtrConstant(0)));
4197 break;
4198 }
Eli Friedman8c377c72009-05-27 01:25:56 +00004199 }
Dan Gohman65fd6562011-11-03 21:49:52 +00004200
4201 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00004202 if (!Results.empty())
4203 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00004204}
4205
Chris Lattner3e928bb2005-01-07 07:47:09 +00004206// SelectionDAG::Legalize - This is the entry point for the file.
4207//
Dan Gohman975716a2011-05-16 22:19:54 +00004208void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00004209 /// run - This is the main entry point to this class.
4210 ///
Dan Gohman975716a2011-05-16 22:19:54 +00004211 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00004212}