blob: ba2ba9c71ce50a5afb6fcdd0f0641b13e17dd479 [file] [log] [blame]
Chris Lattnerdc750592005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
Chris Lattnerdc750592005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukman835702a2005-04-21 22:36:52 +00007//
Chris Lattnerdc750592005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruthed0881b2012-12-03 16:50:05 +000014#include "llvm/CodeGen/SelectionDAG.h"
Chandler Carruth411fb402014-07-26 05:49:40 +000015#include "llvm/ADT/SetVector.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/SmallPtrSet.h"
Hal Finkel19775142014-03-31 17:48:10 +000017#include "llvm/ADT/SmallSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "llvm/ADT/SmallVector.h"
Paul Redmondf29ddfe2013-02-15 18:45:18 +000019#include "llvm/ADT/Triple.h"
Evan Chengd4b08732010-11-30 23:55:39 +000020#include "llvm/CodeGen/Analysis.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000021#include "llvm/CodeGen/MachineFunction.h"
Jim Laskey70323a82006-12-14 19:17:33 +000022#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/CallingConv.h"
24#include "llvm/IR/Constants.h"
25#include "llvm/IR/DataLayout.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000026#include "llvm/IR/DebugInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/DerivedTypes.h"
Chandler Carrutha7c44e62013-01-08 05:11:57 +000028#include "llvm/IR/Function.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/LLVMContext.h"
David Greeneae4f2662010-01-05 01:24:53 +000030#include "llvm/Support/Debug.h"
Jim Grosbachd64dfc12010-06-18 21:43:38 +000031#include "llvm/Support/ErrorHandling.h"
Duncan Sands1826ded2007-10-28 12:59:45 +000032#include "llvm/Support/MathExtras.h"
Chris Lattner13626022009-08-23 06:03:38 +000033#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "llvm/Target/TargetFrameLowering.h"
35#include "llvm/Target/TargetLowering.h"
36#include "llvm/Target/TargetMachine.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000037using namespace llvm;
38
Chandler Carruthb1432742014-07-28 17:55:07 +000039#define DEBUG_TYPE "legalizedag"
40
Chris Lattnerdc750592005-01-07 07:47:09 +000041//===----------------------------------------------------------------------===//
42/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
43/// hacks on it until the target machine can handle it. This involves
44/// eliminating value sizes the machine cannot handle (promoting small sizes to
45/// large sizes or splitting up large values into small values) as well as
46/// eliminating operations the machine cannot handle.
47///
48/// This code also does a small amount of optimization and recognition of idioms
49/// as part of its processing. For example, if a target does not support a
50/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
51/// will attempt merge setcc and brc instructions into brcc's.
52///
53namespace {
Dan Gohman198b7ff2011-11-03 21:49:52 +000054class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
Dan Gohmanc3349602010-04-19 19:05:59 +000055 const TargetMachine &TM;
Dan Gohman21cea8a2010-04-17 15:26:15 +000056 const TargetLowering &TLI;
Chris Lattnerdc750592005-01-07 07:47:09 +000057 SelectionDAG &DAG;
58
Chandler Carruth411fb402014-07-26 05:49:40 +000059 /// \brief The iterator being used to walk the DAG. We hold a reference to it
60 /// in order to update it as necessary on node deletion.
61 SelectionDAG::allnodes_iterator &LegalizePosition;
Dan Gohman198b7ff2011-11-03 21:49:52 +000062
Chandler Carruth411fb402014-07-26 05:49:40 +000063 /// \brief The set of nodes which have already been legalized. We hold a
64 /// reference to it in order to update as necessary on node deletion.
65 SmallPtrSetImpl<SDNode *> &LegalizedNodes;
66
67 /// \brief A set of all the nodes updated during legalization.
68 SmallSetVector<SDNode *, 16> *UpdatedNodes;
Dan Gohman198b7ff2011-11-03 21:49:52 +000069
Matt Arsenault758659232013-05-18 00:21:46 +000070 EVT getSetCCResultType(EVT VT) const {
71 return TLI.getSetCCResultType(*DAG.getContext(), VT);
72 }
73
Chris Lattner462505f2006-02-13 09:18:02 +000074 // Libcall insertion helpers.
Scott Michelcf0da6c2009-02-17 22:15:04 +000075
Chris Lattnerdc750592005-01-07 07:47:09 +000076public:
Chandler Carruth411fb402014-07-26 05:49:40 +000077 SelectionDAGLegalize(SelectionDAG &DAG,
78 SelectionDAG::allnodes_iterator &LegalizePosition,
79 SmallPtrSetImpl<SDNode *> &LegalizedNodes,
80 SmallSetVector<SDNode *, 16> *UpdatedNodes = nullptr)
81 : SelectionDAG::DAGUpdateListener(DAG), TM(DAG.getTarget()),
82 TLI(DAG.getTargetLoweringInfo()), DAG(DAG),
83 LegalizePosition(LegalizePosition), LegalizedNodes(LegalizedNodes),
84 UpdatedNodes(UpdatedNodes) {}
Chris Lattnerdc750592005-01-07 07:47:09 +000085
Chandler Carruth411fb402014-07-26 05:49:40 +000086 /// \brief Legalizes the given operation.
Dan Gohman198b7ff2011-11-03 21:49:52 +000087 void LegalizeOp(SDNode *Node);
Scott Michelcf0da6c2009-02-17 22:15:04 +000088
Chandler Carruth411fb402014-07-26 05:49:40 +000089private:
Eli Friedmanaee3f622009-06-06 07:04:42 +000090 SDValue OptimizeFloatStore(StoreSDNode *ST);
91
Nadav Rotemde6fd282012-07-11 08:52:09 +000092 void LegalizeLoadOps(SDNode *Node);
93 void LegalizeStoreOps(SDNode *Node);
94
Nate Begeman6f94f612008-04-25 18:07:40 +000095 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
96 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
97 /// is necessary to spill the vector being inserted into to memory, perform
98 /// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000099 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000100 SDValue Idx, SDLoc dl);
Eli Friedmana8f9a022009-05-27 02:16:40 +0000101 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000102 SDValue Idx, SDLoc dl);
Dan Gohman2a7de412007-10-11 23:57:53 +0000103
Nate Begeman5f829d82009-04-29 05:20:52 +0000104 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
105 /// performs the same shuffe in terms of order or result bytes, but on a type
106 /// whose vector element type is narrower than the original shuffle type.
107 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Andrew Trickef9de2a2013-05-25 02:42:55 +0000108 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000109 SDValue N1, SDValue N2,
Benjamin Kramer339ced42012-01-15 13:16:05 +0000110 ArrayRef<int> Mask) const;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000111
Tom Stellard08690a12013-09-28 02:50:32 +0000112 bool LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +0000113 bool &NeedInvert, SDLoc dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000114
Eli Friedmanb3554152009-05-27 02:21:29 +0000115 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherbcaedb52011-04-20 01:19:45 +0000116 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000117 unsigned NumOps, bool isSigned, SDLoc dl);
Eric Christopherbcaedb52011-04-20 01:19:45 +0000118
Jim Grosbachd64dfc12010-06-18 21:43:38 +0000119 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
120 SDNode *Node, bool isSigned);
Eli Friedmand6f28342009-05-27 03:33:44 +0000121 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
122 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000123 RTLIB::Libcall Call_F128,
124 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikovf93bb392009-11-07 17:14:39 +0000125 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
126 RTLIB::Libcall Call_I8,
127 RTLIB::Libcall Call_I16,
128 RTLIB::Libcall Call_I32,
129 RTLIB::Libcall Call_I64,
Eli Friedmand6f28342009-05-27 03:33:44 +0000130 RTLIB::Libcall Call_I128);
Evan Chengb14ce092011-04-16 03:08:26 +0000131 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000132 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnere3e847b2005-07-16 00:19:57 +0000133
Andrew Trickef9de2a2013-05-25 02:42:55 +0000134 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, SDLoc dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000135 SDValue ExpandBUILD_VECTOR(SDNode *Node);
136 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman2892d822009-05-27 12:20:41 +0000137 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
138 SmallVectorImpl<SDValue> &Results);
139 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000140 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000141 SDLoc dl);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000142 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000143 SDLoc dl);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000144 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000145 SDLoc dl);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000146
Andrew Trickef9de2a2013-05-25 02:42:55 +0000147 SDValue ExpandBSWAP(SDValue Op, SDLoc dl);
148 SDValue ExpandBitCount(unsigned Opc, SDValue Op, SDLoc dl);
Chris Lattnera5bf1032005-05-12 04:49:08 +0000149
Eli Friedman40afdb62009-05-23 22:37:25 +0000150 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenebab5e6e2011-01-26 19:13:22 +0000151 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000152 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman21d349b2009-05-27 01:25:56 +0000153
Dan Gohman198b7ff2011-11-03 21:49:52 +0000154 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
155
Jim Grosbachd64dfc12010-06-18 21:43:38 +0000156 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
157
Dan Gohman198b7ff2011-11-03 21:49:52 +0000158 void ExpandNode(SDNode *Node);
159 void PromoteNode(SDNode *Node);
160
Eli Friedman13477152011-11-11 23:58:27 +0000161 void ForgetNode(SDNode *N) {
Dan Gohman198b7ff2011-11-03 21:49:52 +0000162 LegalizedNodes.erase(N);
163 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
164 ++LegalizePosition;
Chandler Carruth411fb402014-07-26 05:49:40 +0000165 if (UpdatedNodes)
166 UpdatedNodes->remove(N);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000167 }
168
Eli Friedman13477152011-11-11 23:58:27 +0000169public:
170 // DAGUpdateListener implementation.
Craig Topper7b883b32014-03-08 06:31:39 +0000171 void NodeDeleted(SDNode *N, SDNode *E) override {
Eli Friedman13477152011-11-11 23:58:27 +0000172 ForgetNode(N);
173 }
Craig Topper7b883b32014-03-08 06:31:39 +0000174 void NodeUpdated(SDNode *N) override {}
Eli Friedman13477152011-11-11 23:58:27 +0000175
176 // Node replacement helpers
177 void ReplacedNode(SDNode *N) {
178 if (N->use_empty()) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000179 DAG.RemoveDeadNode(N);
Eli Friedman13477152011-11-11 23:58:27 +0000180 } else {
181 ForgetNode(N);
182 }
183 }
184 void ReplaceNode(SDNode *Old, SDNode *New) {
Chandler Carruthb1432742014-07-28 17:55:07 +0000185 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG);
186 dbgs() << " with: "; New->dump(&DAG));
187
Chandler Carruth5a85c7b2014-07-26 05:53:16 +0000188 assert(Old->getNumValues() == New->getNumValues() &&
189 "Replacing one node with another that produces a different number "
190 "of values!");
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000191 DAG.ReplaceAllUsesWith(Old, New);
Chandler Carruth411fb402014-07-26 05:49:40 +0000192 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i)
193 DAG.TransferDbgValues(SDValue(Old, i), SDValue(New, i));
194 if (UpdatedNodes)
195 UpdatedNodes->insert(New);
Eli Friedman13477152011-11-11 23:58:27 +0000196 ReplacedNode(Old);
197 }
198 void ReplaceNode(SDValue Old, SDValue New) {
Chandler Carruthb1432742014-07-28 17:55:07 +0000199 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG);
200 dbgs() << " with: "; New->dump(&DAG));
201
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000202 DAG.ReplaceAllUsesWith(Old, New);
Chandler Carruth411fb402014-07-26 05:49:40 +0000203 DAG.TransferDbgValues(Old, New);
204 if (UpdatedNodes)
205 UpdatedNodes->insert(New.getNode());
Eli Friedman13477152011-11-11 23:58:27 +0000206 ReplacedNode(Old.getNode());
207 }
208 void ReplaceNode(SDNode *Old, const SDValue *New) {
Chandler Carruthb1432742014-07-28 17:55:07 +0000209 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG));
210
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000211 DAG.ReplaceAllUsesWith(Old, New);
Chandler Carruthb1432742014-07-28 17:55:07 +0000212 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i) {
213 DEBUG(dbgs() << (i == 0 ? " with: "
214 : " and: ");
215 New[i]->dump(&DAG));
Chandler Carruth411fb402014-07-26 05:49:40 +0000216 DAG.TransferDbgValues(SDValue(Old, i), New[i]);
Chandler Carruthb1432742014-07-28 17:55:07 +0000217 if (UpdatedNodes)
218 UpdatedNodes->insert(New[i].getNode());
219 }
Eli Friedman13477152011-11-11 23:58:27 +0000220 ReplacedNode(Old);
221 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000222};
223}
224
Nate Begeman5f829d82009-04-29 05:20:52 +0000225/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
226/// performs the same shuffe in terms of order or result bytes, but on a type
227/// whose vector element type is narrower than the original shuffle type.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000228/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000229SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +0000230SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Nate Begeman5f829d82009-04-29 05:20:52 +0000231 SDValue N1, SDValue N2,
Benjamin Kramer339ced42012-01-15 13:16:05 +0000232 ArrayRef<int> Mask) const {
Nate Begeman5f829d82009-04-29 05:20:52 +0000233 unsigned NumMaskElts = VT.getVectorNumElements();
234 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000235 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner6be79822006-04-04 17:23:26 +0000236
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000237 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
238
239 if (NumEltsGrowth == 1)
240 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000241
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000242 SmallVector<int, 8> NewMask;
Nate Begeman5f829d82009-04-29 05:20:52 +0000243 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000244 int Idx = Mask[i];
245 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000246 if (Idx < 0)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000247 NewMask.push_back(-1);
248 else
249 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner6be79822006-04-04 17:23:26 +0000250 }
Chris Lattner6be79822006-04-04 17:23:26 +0000251 }
Nate Begeman5f829d82009-04-29 05:20:52 +0000252 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000253 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
254 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner6be79822006-04-04 17:23:26 +0000255}
256
Evan Cheng22cf8992006-12-13 20:57:08 +0000257/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
258/// a load from the constant pool.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000259SDValue
260SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng47833a12006-12-12 21:32:44 +0000261 bool Extend = false;
Andrew Trickef9de2a2013-05-25 02:42:55 +0000262 SDLoc dl(CFP);
Evan Cheng47833a12006-12-12 21:32:44 +0000263
264 // If a FP immediate is precise when represented as a float and if the
265 // target can do an extending load from float to double, we put it into
266 // the constant pool as a float, even if it's is statically typed as a
Chris Lattner3dc38992008-03-05 06:46:58 +0000267 // double. This shrinks FP constants and canonicalizes them for targets where
268 // an FP extending load is the same cost as a normal load (such as on the x87
269 // fp stack or PPC FP unit).
Owen Anderson53aa7a92009-08-10 22:56:29 +0000270 EVT VT = CFP->getValueType(0);
Dan Gohmanec270fb2008-09-12 18:08:03 +0000271 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng22cf8992006-12-13 20:57:08 +0000272 if (!UseCP) {
Owen Anderson9f944592009-08-11 20:47:22 +0000273 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen54306fe2008-10-09 18:53:47 +0000274 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson9f944592009-08-11 20:47:22 +0000275 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng3766fc602006-12-12 22:19:28 +0000276 }
277
Owen Anderson53aa7a92009-08-10 22:56:29 +0000278 EVT OrigVT = VT;
279 EVT SVT = VT;
Oliver Stannard6eda6ff2014-07-11 13:33:46 +0000280 while (SVT != MVT::f32 && SVT != MVT::f16) {
Owen Anderson9f944592009-08-11 20:47:22 +0000281 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman35b6f9a2010-06-18 14:01:07 +0000282 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Cheng38caf772008-03-04 08:05:30 +0000283 // Only do this if the target has a native EXTLOAD instruction from
284 // smaller type.
Evan Cheng07d53b12008-10-14 21:26:46 +0000285 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattner3dc38992008-03-05 06:46:58 +0000286 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattner229907c2011-07-18 04:54:35 +0000287 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Anderson487375e2009-07-29 18:55:55 +0000288 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Cheng38caf772008-03-04 08:05:30 +0000289 VT = SVT;
290 Extend = true;
291 }
Evan Cheng47833a12006-12-12 21:32:44 +0000292 }
293
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000294 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1fb8aed2009-03-13 07:51:59 +0000295 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman198b7ff2011-11-03 21:49:52 +0000296 if (Extend) {
297 SDValue Result =
298 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
299 DAG.getEntryNode(),
300 CPIdx, MachinePointerInfo::getConstantPool(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000301 VT, false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000302 return Result;
303 }
304 SDValue Result =
305 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000306 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman198b7ff2011-11-03 21:49:52 +0000307 Alignment);
308 return Result;
Evan Cheng47833a12006-12-12 21:32:44 +0000309}
310
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000311/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000312static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
313 const TargetLowering &TLI,
Eli Friedman13477152011-11-11 23:58:27 +0000314 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmand257a462011-11-16 02:43:15 +0000315 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
316 "unaligned indexed stores not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000317 SDValue Chain = ST->getChain();
318 SDValue Ptr = ST->getBasePtr();
319 SDValue Val = ST->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000320 EVT VT = Val.getValueType();
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000321 int Alignment = ST->getAlignment();
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000322 unsigned AS = ST->getAddressSpace();
323
Andrew Trickef9de2a2013-05-25 02:42:55 +0000324 SDLoc dl(ST);
Duncan Sands13237ac2008-06-06 12:08:01 +0000325 if (ST->getMemoryVT().isFloatingPoint() ||
326 ST->getMemoryVT().isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000327 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands8f352fe2008-12-12 21:47:02 +0000328 if (TLI.isTypeLegal(intVT)) {
329 // Expand to a bitconvert of the value to the integer type of the
330 // same size, then a (misaligned) int store.
331 // FIXME: Does not handle truncating floating point stores!
Wesley Peck527da1b2010-11-23 03:31:01 +0000332 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000333 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
334 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman13477152011-11-11 23:58:27 +0000335 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000336 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000337 }
Dan Gohmanabffc992011-05-17 22:22:52 +0000338 // Do a (aligned) store to a stack slot, then copy from the stack slot
339 // to the final destination using (unaligned) integer loads and stores.
340 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000341 MVT RegVT =
Dan Gohmanabffc992011-05-17 22:22:52 +0000342 TLI.getRegisterType(*DAG.getContext(),
343 EVT::getIntegerVT(*DAG.getContext(),
344 StoredVT.getSizeInBits()));
345 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
346 unsigned RegBytes = RegVT.getSizeInBits() / 8;
347 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
348
349 // Make sure the stack slot is also aligned for the register type.
350 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
351
352 // Perform the original store, only redirected to the stack slot.
353 SDValue Store = DAG.getTruncStore(Chain, dl,
354 Val, StackPtr, MachinePointerInfo(),
355 StoredVT, false, false, 0);
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000356 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy(AS));
Dan Gohmanabffc992011-05-17 22:22:52 +0000357 SmallVector<SDValue, 8> Stores;
358 unsigned Offset = 0;
359
360 // Do all but one copies using the full register width.
361 for (unsigned i = 1; i < NumRegs; i++) {
362 // Load one integer register's worth from the stack slot.
363 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
364 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000365 false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000366 // Store it to the final location. Remember the store.
367 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
368 ST->getPointerInfo().getWithOffset(Offset),
369 ST->isVolatile(), ST->isNonTemporal(),
370 MinAlign(ST->getAlignment(), Offset)));
371 // Increment the pointers.
372 Offset += RegBytes;
373 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
374 Increment);
375 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
376 }
377
378 // The last store may be partial. Do a truncating store. On big-endian
379 // machines this requires an extending load from the stack slot to ensure
380 // that the bits are in the right place.
381 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
382 8 * (StoredBytes - Offset));
383
384 // Load from the stack slot.
385 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
386 MachinePointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000387 MemVT, false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000388
389 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
390 ST->getPointerInfo()
391 .getWithOffset(Offset),
392 MemVT, ST->isVolatile(),
393 ST->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000394 MinAlign(ST->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000395 ST->getAAInfo()));
Dan Gohmanabffc992011-05-17 22:22:52 +0000396 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000397 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedman13477152011-11-11 23:58:27 +0000398 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000399 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000400 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000401 assert(ST->getMemoryVT().isInteger() &&
402 !ST->getMemoryVT().isVector() &&
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000403 "Unaligned store of unknown type.");
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000404 // Get the half-size VT
Ken Dyckdf5561d2009-12-17 20:09:43 +0000405 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands13237ac2008-06-06 12:08:01 +0000406 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000407 int IncrementSize = NumBits / 8;
408
409 // Divide the stored value in two parts.
Owen Andersonb2c80da2011-02-25 21:41:48 +0000410 SDValue ShiftAmount = DAG.getConstant(NumBits,
411 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000412 SDValue Lo = Val;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000413 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000414
415 // Store the two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000416 SDValue Store1, Store2;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000417 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000418 ST->getPointerInfo(), NewStoredVT,
David Greene39c6d012010-02-15 17:00:31 +0000419 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000420
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000421 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000422 DAG.getConstant(IncrementSize, TLI.getPointerTy(AS)));
Duncan Sands1826ded2007-10-28 12:59:45 +0000423 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000424 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000425 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene39c6d012010-02-15 17:00:31 +0000426 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000427 Alignment, ST->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000428
Dan Gohman198b7ff2011-11-03 21:49:52 +0000429 SDValue Result =
430 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman13477152011-11-11 23:58:27 +0000431 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000432}
433
434/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000435static void
436ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
437 const TargetLowering &TLI,
438 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmand257a462011-11-16 02:43:15 +0000439 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
440 "unaligned indexed loads not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000441 SDValue Chain = LD->getChain();
442 SDValue Ptr = LD->getBasePtr();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000443 EVT VT = LD->getValueType(0);
444 EVT LoadedVT = LD->getMemoryVT();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000445 SDLoc dl(LD);
Duncan Sands13237ac2008-06-06 12:08:01 +0000446 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000447 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Roteme0f84d32012-08-09 01:56:44 +0000448 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands8f352fe2008-12-12 21:47:02 +0000449 // Expand to a (misaligned) integer load of the same size,
450 // then bitconvert to floating point or vector.
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000451 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr,
452 LD->getMemOperand());
Wesley Peck527da1b2010-11-23 03:31:01 +0000453 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Roteme0f84d32012-08-09 01:56:44 +0000454 if (LoadedVT != VT)
455 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
456 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000457
Dan Gohman198b7ff2011-11-03 21:49:52 +0000458 ValResult = Result;
459 ChainResult = Chain;
460 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000461 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000462
Chris Lattner1ffcf522010-09-21 16:36:31 +0000463 // Copy the value to a (aligned) stack slot using (unaligned) integer
464 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000465 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000466 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
467 unsigned RegBytes = RegVT.getSizeInBits() / 8;
468 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
469
470 // Make sure the stack slot is also aligned for the register type.
471 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
472
473 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
474 SmallVector<SDValue, 8> Stores;
475 SDValue StackPtr = StackBase;
476 unsigned Offset = 0;
477
478 // Do all but one copies using the full register width.
479 for (unsigned i = 1; i < NumRegs; i++) {
480 // Load one integer register's worth from the original location.
481 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
482 LD->getPointerInfo().getWithOffset(Offset),
483 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000484 LD->isInvariant(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000485 MinAlign(LD->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000486 LD->getAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000487 // Follow the load with a store to the stack slot. Remember the store.
488 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner676c61d2010-09-21 18:41:36 +0000489 MachinePointerInfo(), false, false, 0));
Chris Lattner1ffcf522010-09-21 16:36:31 +0000490 // Increment the pointers.
491 Offset += RegBytes;
492 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
493 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
494 Increment);
495 }
496
497 // The last copy may be partial. Do an extending load.
498 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
499 8 * (LoadedBytes - Offset));
Stuart Hastings81c43062011-02-16 16:23:55 +0000500 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000501 LD->getPointerInfo().getWithOffset(Offset),
502 MemVT, LD->isVolatile(),
503 LD->isNonTemporal(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000504 LD->isInvariant(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000505 MinAlign(LD->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000506 LD->getAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000507 // Follow the load with a store to the stack slot. Remember the store.
508 // On big-endian machines this requires a truncating store to ensure
509 // that the bits end up in the right place.
510 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
511 MachinePointerInfo(), MemVT,
512 false, false, 0));
513
514 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000515 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000516
517 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastings81c43062011-02-16 16:23:55 +0000518 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Louis Gerbarg67474e32014-07-31 21:45:05 +0000519 MachinePointerInfo(), LoadedVT, false,false, false,
520 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000521
522 // Callers expect a MERGE_VALUES node.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000523 ValResult = Load;
524 ChainResult = TF;
525 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000526 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000527 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner09c03932007-11-19 21:38:03 +0000528 "Unaligned load of unsupported type.");
529
Dale Johannesenbf76a082008-02-27 22:36:00 +0000530 // Compute the new VT that is half the size of the old one. This is an
531 // integer MVT.
Duncan Sands13237ac2008-06-06 12:08:01 +0000532 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000533 EVT NewLoadedVT;
Owen Anderson117c9e82009-08-12 00:36:31 +0000534 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattner09c03932007-11-19 21:38:03 +0000535 NumBits >>= 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000536
Chris Lattner09c03932007-11-19 21:38:03 +0000537 unsigned Alignment = LD->getAlignment();
538 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000539 ISD::LoadExtType HiExtType = LD->getExtensionType();
540
541 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
542 if (HiExtType == ISD::NON_EXTLOAD)
543 HiExtType = ISD::ZEXTLOAD;
544
545 // Load the value in two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000546 SDValue Lo, Hi;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000547 if (TLI.isLittleEndian()) {
Stuart Hastings81c43062011-02-16 16:23:55 +0000548 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000549 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000550 LD->isNonTemporal(), LD->isInvariant(), Alignment,
551 LD->getAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000552 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000553 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000554 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000555 LD->getPointerInfo().getWithOffset(IncrementSize),
556 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000557 LD->isNonTemporal(),LD->isInvariant(),
558 MinAlign(Alignment, IncrementSize), LD->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000559 } else {
Stuart Hastings81c43062011-02-16 16:23:55 +0000560 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000561 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000562 LD->isNonTemporal(), LD->isInvariant(), Alignment,
563 LD->getAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000564 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000565 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000566 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000567 LD->getPointerInfo().getWithOffset(IncrementSize),
568 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000569 LD->isNonTemporal(), LD->isInvariant(),
570 MinAlign(Alignment, IncrementSize), LD->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000571 }
572
573 // aggregate the two parts
Owen Andersonb2c80da2011-02-25 21:41:48 +0000574 SDValue ShiftAmount = DAG.getConstant(NumBits,
575 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000576 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
577 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000578
Owen Anderson9f944592009-08-11 20:47:22 +0000579 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000580 Hi.getValue(1));
581
Dan Gohman198b7ff2011-11-03 21:49:52 +0000582 ValResult = Result;
583 ChainResult = TF;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000584}
Evan Cheng003feb02007-01-04 21:56:39 +0000585
Nate Begeman6f94f612008-04-25 18:07:40 +0000586/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
587/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
588/// is necessary to spill the vector being inserted into to memory, perform
589/// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000590SDValue SelectionDAGLegalize::
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000591PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000592 SDLoc dl) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000593 SDValue Tmp1 = Vec;
594 SDValue Tmp2 = Val;
595 SDValue Tmp3 = Idx;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000596
Nate Begeman6f94f612008-04-25 18:07:40 +0000597 // If the target doesn't support this, we have to spill the input vector
598 // to a temporary stack slot, update the element, then reload it. This is
599 // badness. We could also load the value into a vector register (either
600 // with a "move to register" or "extload into register" instruction, then
601 // permute it into place, if the idx is a constant and if the idx is
602 // supported by the target.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000603 EVT VT = Tmp1.getValueType();
604 EVT EltVT = VT.getVectorElementType();
605 EVT IdxVT = Tmp3.getValueType();
606 EVT PtrVT = TLI.getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000607 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman6f94f612008-04-25 18:07:40 +0000608
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000609 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
610
Nate Begeman6f94f612008-04-25 18:07:40 +0000611 // Store the vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000612 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +0000613 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +0000614 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000615
616 // Truncate or zero extend offset to target pointer type.
Duncan Sands11dd4242008-06-08 20:54:56 +0000617 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000618 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman6f94f612008-04-25 18:07:40 +0000619 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +0000620 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000621 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
622 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman6f94f612008-04-25 18:07:40 +0000623 // Store the scalar value.
Chris Lattnera35499e2010-09-21 07:32:19 +0000624 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene39c6d012010-02-15 17:00:31 +0000625 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000626 // Load the updated vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000627 return DAG.getLoad(VT, dl, Ch, StackPtr,
Stephen Lincfe7f352013-07-08 00:37:03 +0000628 MachinePointerInfo::getFixedStack(SPFI), false, false,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000629 false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000630}
631
Mon P Wang4dd832d2008-12-09 05:46:39 +0000632
Eli Friedmana8f9a022009-05-27 02:16:40 +0000633SDValue SelectionDAGLegalize::
Andrew Trickef9de2a2013-05-25 02:42:55 +0000634ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) {
Eli Friedmana8f9a022009-05-27 02:16:40 +0000635 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
636 // SCALAR_TO_VECTOR requires that the type of the value being inserted
637 // match the element type of the vector being created, except for
638 // integers in which case the inserted value can be over width.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000639 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedmana8f9a022009-05-27 02:16:40 +0000640 if (Val.getValueType() == EltVT ||
641 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
642 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
643 Vec.getValueType(), Val);
644
645 unsigned NumElts = Vec.getValueType().getVectorNumElements();
646 // We generate a shuffle of InVec and ScVec, so the shuffle mask
647 // should be 0,1,2,3,4,5... with the appropriate element replaced with
648 // elt 0 of the RHS.
649 SmallVector<int, 8> ShufOps;
650 for (unsigned i = 0; i != NumElts; ++i)
651 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
652
653 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
654 &ShufOps[0]);
655 }
656 }
657 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
658}
659
Eli Friedmanaee3f622009-06-06 07:04:42 +0000660SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
661 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
662 // FIXME: We shouldn't do this for TargetConstantFP's.
663 // FIXME: move this to the DAG Combiner! Note that we can't regress due
664 // to phase ordering between legalized code and the dag combiner. This
665 // probably means that we need to integrate dag combiner and legalizer
666 // together.
667 // We generally can't do this one for long doubles.
Nadav Rotem2a148662012-07-11 11:02:16 +0000668 SDValue Chain = ST->getChain();
669 SDValue Ptr = ST->getBasePtr();
Eli Friedmanaee3f622009-06-06 07:04:42 +0000670 unsigned Alignment = ST->getAlignment();
671 bool isVolatile = ST->isVolatile();
David Greene39c6d012010-02-15 17:00:31 +0000672 bool isNonTemporal = ST->isNonTemporal();
Hal Finkelcc39b672014-07-24 12:16:19 +0000673 AAMDNodes AAInfo = ST->getAAInfo();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000674 SDLoc dl(ST);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000675 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson9f944592009-08-11 20:47:22 +0000676 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohmane49e7422011-07-15 22:39:09 +0000677 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000678 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedmanaee3f622009-06-06 07:04:42 +0000679 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson9f944592009-08-11 20:47:22 +0000680 MVT::i32);
Nadav Rotem2a148662012-07-11 11:02:16 +0000681 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000682 isVolatile, isNonTemporal, Alignment, AAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000683 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000684
Chris Lattner6963c1f2010-09-21 17:42:31 +0000685 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000686 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohmane49e7422011-07-15 22:39:09 +0000687 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000688 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson9f944592009-08-11 20:47:22 +0000689 zextOrTrunc(64), MVT::i64);
Nadav Rotem2a148662012-07-11 11:02:16 +0000690 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000691 isVolatile, isNonTemporal, Alignment, AAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000692 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000693
Dan Gohmane49e7422011-07-15 22:39:09 +0000694 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000695 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
696 // stores. If the target supports neither 32- nor 64-bits, this
697 // xform is certainly not worth it.
698 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad583abbc2010-12-07 08:25:19 +0000699 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson9f944592009-08-11 20:47:22 +0000700 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000701 if (TLI.isBigEndian()) std::swap(Lo, Hi);
702
Nadav Rotem2a148662012-07-11 11:02:16 +0000703 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Hal Finkelcc39b672014-07-24 12:16:19 +0000704 isNonTemporal, Alignment, AAInfo);
Nadav Rotem2a148662012-07-11 11:02:16 +0000705 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000706 DAG.getConstant(4, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000707 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000708 ST->getPointerInfo().getWithOffset(4),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000709 isVolatile, isNonTemporal, MinAlign(Alignment, 4U),
Hal Finkelcc39b672014-07-24 12:16:19 +0000710 AAInfo);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000711
Owen Anderson9f944592009-08-11 20:47:22 +0000712 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000713 }
714 }
715 }
Craig Topperc0196b12014-04-14 00:51:57 +0000716 return SDValue(nullptr, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000717}
718
Nadav Rotemde6fd282012-07-11 08:52:09 +0000719void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
720 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000721 SDValue Chain = ST->getChain();
722 SDValue Ptr = ST->getBasePtr();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000723 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000724
725 unsigned Alignment = ST->getAlignment();
726 bool isVolatile = ST->isVolatile();
727 bool isNonTemporal = ST->isNonTemporal();
Hal Finkelcc39b672014-07-24 12:16:19 +0000728 AAMDNodes AAInfo = ST->getAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000729
730 if (!ST->isTruncatingStore()) {
731 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
732 ReplaceNode(ST, OptStore);
733 return;
734 }
735
736 {
Nadav Rotem2a148662012-07-11 11:02:16 +0000737 SDValue Value = ST->getValue();
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000738 MVT VT = Value.getSimpleValueType();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000739 switch (TLI.getOperationAction(ISD::STORE, VT)) {
740 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000741 case TargetLowering::Legal: {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000742 // If this is an unaligned store and the target doesn't support it,
743 // expand it.
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000744 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000745 unsigned Align = ST->getAlignment();
746 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000747 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000748 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000749 if (Align < ABIAlignment)
Nadav Rotemde6fd282012-07-11 08:52:09 +0000750 ExpandUnalignedStore(cast<StoreSDNode>(Node),
751 DAG, TLI, this);
752 }
753 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000754 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000755 case TargetLowering::Custom: {
756 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
757 if (Res.getNode())
758 ReplaceNode(SDValue(Node, 0), Res);
759 return;
760 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000761 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000762 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellardb785bd72012-12-10 21:41:54 +0000763 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
764 "Can only promote stores to same size type");
765 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000766 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000767 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000768 ST->getPointerInfo(), isVolatile,
Hal Finkelcc39b672014-07-24 12:16:19 +0000769 isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000770 ReplaceNode(SDValue(Node, 0), Result);
771 break;
772 }
773 }
774 return;
775 }
776 } else {
Nadav Rotem2a148662012-07-11 11:02:16 +0000777 SDValue Value = ST->getValue();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000778
779 EVT StVT = ST->getMemoryVT();
780 unsigned StWidth = StVT.getSizeInBits();
781
782 if (StWidth != StVT.getStoreSizeInBits()) {
783 // Promote to a byte-sized store with upper bits zero if not
784 // storing an integral number of bytes. For example, promote
785 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
786 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
787 StVT.getStoreSizeInBits());
Nadav Rotem2a148662012-07-11 11:02:16 +0000788 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000789 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000790 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000791 NVT, isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000792 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000793 ReplaceNode(SDValue(Node, 0), Result);
794 } else if (StWidth & (StWidth - 1)) {
795 // If not storing a power-of-2 number of bits, expand as two stores.
796 assert(!StVT.isVector() && "Unsupported truncstore!");
797 unsigned RoundWidth = 1 << Log2_32(StWidth);
798 assert(RoundWidth < StWidth);
799 unsigned ExtraWidth = StWidth - RoundWidth;
800 assert(ExtraWidth < RoundWidth);
801 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
802 "Store size not an integral number of bytes!");
803 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
804 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
805 SDValue Lo, Hi;
806 unsigned IncrementSize;
807
808 if (TLI.isLittleEndian()) {
809 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
810 // Store the bottom RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000811 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemde6fd282012-07-11 08:52:09 +0000812 RoundVT,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000813 isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000814 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000815
816 // Store the remaining ExtraWidth bits.
817 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000818 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000819 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000820 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000821 DAG.getConstant(RoundWidth,
Jack Carter5c0af482013-11-19 23:43:22 +0000822 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000823 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000824 ST->getPointerInfo().getWithOffset(IncrementSize),
825 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000826 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000827 } else {
828 // Big endian - avoid unaligned stores.
829 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
830 // Store the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000831 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000832 DAG.getConstant(ExtraWidth,
Jack Carter5c0af482013-11-19 23:43:22 +0000833 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000834 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000835 RoundVT, isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000836 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000837
838 // Store the remaining ExtraWidth bits.
839 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000840 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Jack Carter5c0af482013-11-19 23:43:22 +0000841 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000842 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000843 ST->getPointerInfo().getWithOffset(IncrementSize),
844 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000845 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000846 }
847
848 // The order of the stores doesn't matter.
849 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
850 ReplaceNode(SDValue(Node, 0), Result);
851 } else {
Patrik Hagglundd7cdcf82012-12-19 08:28:51 +0000852 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
853 StVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000854 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000855 case TargetLowering::Legal: {
856 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000857 unsigned Align = ST->getAlignment();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000858 // If this is an unaligned store and the target doesn't support it,
859 // expand it.
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000860 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000861 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000862 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000863 if (Align < ABIAlignment)
Nadav Rotemde6fd282012-07-11 08:52:09 +0000864 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
865 }
866 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000867 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000868 case TargetLowering::Custom: {
869 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
870 if (Res.getNode())
871 ReplaceNode(SDValue(Node, 0), Res);
872 return;
873 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000874 case TargetLowering::Expand:
875 assert(!StVT.isVector() &&
876 "Vector Stores are handled in LegalizeVectorOps");
877
878 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem2a148662012-07-11 11:02:16 +0000879 assert(TLI.isTypeLegal(StVT) &&
880 "Do not know how to expand this store!");
881 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000882 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000883 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000884 isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000885 ReplaceNode(SDValue(Node, 0), Result);
886 break;
887 }
888 }
889 }
890}
891
892void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
893 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000894 SDValue Chain = LD->getChain(); // The chain.
895 SDValue Ptr = LD->getBasePtr(); // The base pointer.
896 SDValue Value; // The value returned by the load op.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000897 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000898
899 ISD::LoadExtType ExtType = LD->getExtensionType();
900 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000901 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem2a148662012-07-11 11:02:16 +0000902 SDValue RVal = SDValue(Node, 0);
903 SDValue RChain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000904
905 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
906 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000907 case TargetLowering::Legal: {
908 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000909 unsigned Align = LD->getAlignment();
Evan Chengc5735992012-09-18 01:34:40 +0000910 // If this is an unaligned load and the target doesn't support it,
911 // expand it.
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000912 if (!TLI.allowsMisalignedMemoryAccesses(LD->getMemoryVT(), AS, Align)) {
Evan Chengc5735992012-09-18 01:34:40 +0000913 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
914 unsigned ABIAlignment =
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000915 TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000916 if (Align < ABIAlignment){
Evan Chengc5735992012-09-18 01:34:40 +0000917 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
918 }
919 }
920 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000921 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000922 case TargetLowering::Custom: {
Evan Chengc5735992012-09-18 01:34:40 +0000923 SDValue Res = TLI.LowerOperation(RVal, DAG);
924 if (Res.getNode()) {
925 RVal = Res;
926 RChain = Res.getValue(1);
927 }
928 break;
Nadav Rotem2a148662012-07-11 11:02:16 +0000929 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000930 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000931 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellard30e2aa52012-12-10 21:41:58 +0000932 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
933 "Can only promote loads to same size type");
Nadav Rotemde6fd282012-07-11 08:52:09 +0000934
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000935 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
Nadav Rotem2a148662012-07-11 11:02:16 +0000936 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
937 RChain = Res.getValue(1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000938 break;
939 }
940 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000941 if (RChain.getNode() != Node) {
942 assert(RVal.getNode() != Node && "Load must be completely replaced");
943 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
944 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Chandler Carruth411fb402014-07-26 05:49:40 +0000945 if (UpdatedNodes) {
946 UpdatedNodes->insert(RVal.getNode());
947 UpdatedNodes->insert(RChain.getNode());
948 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000949 ReplacedNode(Node);
950 }
951 return;
952 }
953
954 EVT SrcVT = LD->getMemoryVT();
955 unsigned SrcWidth = SrcVT.getSizeInBits();
956 unsigned Alignment = LD->getAlignment();
957 bool isVolatile = LD->isVolatile();
958 bool isNonTemporal = LD->isNonTemporal();
Louis Gerbarg67474e32014-07-31 21:45:05 +0000959 bool isInvariant = LD->isInvariant();
Hal Finkelcc39b672014-07-24 12:16:19 +0000960 AAMDNodes AAInfo = LD->getAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000961
962 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
963 // Some targets pretend to have an i1 loading operation, and actually
964 // load an i8. This trick is correct for ZEXTLOAD because the top 7
965 // bits are guaranteed to be zero; it helps the optimizers understand
966 // that these bits are zero. It is also useful for EXTLOAD, since it
967 // tells the optimizers that those bits are undefined. It would be
968 // nice to have an effective generic way of getting these benefits...
969 // Until such a way is found, don't insist on promoting i1 here.
970 (SrcVT != MVT::i1 ||
971 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
972 // Promote to a byte-sized load if not loading an integral number of
973 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
974 unsigned NewWidth = SrcVT.getStoreSizeInBits();
975 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
976 SDValue Ch;
977
978 // The extra bits are guaranteed to be zero, since we stored them that
979 // way. A zext load from NVT thus automatically gives zext from SrcVT.
980
981 ISD::LoadExtType NewExtType =
982 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
983
984 SDValue Result =
985 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +0000986 Chain, Ptr, LD->getPointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000987 NVT, isVolatile, isNonTemporal, isInvariant, Alignment,
988 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000989
990 Ch = Result.getValue(1); // The chain.
991
992 if (ExtType == ISD::SEXTLOAD)
993 // Having the top bits zero doesn't help when sign extending.
994 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
995 Result.getValueType(),
996 Result, DAG.getValueType(SrcVT));
997 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
998 // All the top bits are guaranteed to be zero - inform the optimizers.
999 Result = DAG.getNode(ISD::AssertZext, dl,
1000 Result.getValueType(), Result,
1001 DAG.getValueType(SrcVT));
1002
Nadav Rotem2a148662012-07-11 11:02:16 +00001003 Value = Result;
1004 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001005 } else if (SrcWidth & (SrcWidth - 1)) {
1006 // If not loading a power-of-2 number of bits, expand as two loads.
1007 assert(!SrcVT.isVector() && "Unsupported extload!");
1008 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
1009 assert(RoundWidth < SrcWidth);
1010 unsigned ExtraWidth = SrcWidth - RoundWidth;
1011 assert(ExtraWidth < RoundWidth);
1012 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
1013 "Load size not an integral number of bytes!");
1014 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
1015 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
1016 SDValue Lo, Hi, Ch;
1017 unsigned IncrementSize;
1018
1019 if (TLI.isLittleEndian()) {
1020 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1021 // Load the bottom RoundWidth bits.
1022 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +00001023 Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001024 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001025 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001026
1027 // Load the remaining ExtraWidth bits.
1028 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001029 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +00001030 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +00001031 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001032 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001033 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001034 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001035
1036 // Build a factor node to remember that this load is independent of
1037 // the other one.
1038 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1039 Hi.getValue(1));
1040
1041 // Move the top bits to the right place.
1042 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1043 DAG.getConstant(RoundWidth,
Jack Carter5c0af482013-11-19 23:43:22 +00001044 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001045
1046 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001047 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001048 } else {
1049 // Big endian - avoid unaligned loads.
1050 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1051 // Load the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +00001052 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001053 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001054 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001055
1056 // Load the remaining ExtraWidth bits.
1057 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001058 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +00001059 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001060 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem2a148662012-07-11 11:02:16 +00001061 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001062 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001063 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001064 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001065
1066 // Build a factor node to remember that this load is independent of
1067 // the other one.
1068 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1069 Hi.getValue(1));
1070
1071 // Move the top bits to the right place.
1072 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1073 DAG.getConstant(ExtraWidth,
Jack Carter5c0af482013-11-19 23:43:22 +00001074 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001075
1076 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001077 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001078 }
1079
Nadav Rotem2a148662012-07-11 11:02:16 +00001080 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001081 } else {
1082 bool isCustom = false;
Patrik Hagglund55d6f472012-12-14 09:05:13 +00001083 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001084 default: llvm_unreachable("This action is not supported yet!");
1085 case TargetLowering::Custom:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001086 isCustom = true;
1087 // FALLTHROUGH
Nadav Rotem2a148662012-07-11 11:02:16 +00001088 case TargetLowering::Legal: {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001089 Value = SDValue(Node, 0);
1090 Chain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001091
Matt Arsenault95b714c2014-03-11 00:01:25 +00001092 if (isCustom) {
1093 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1094 if (Res.getNode()) {
1095 Value = Res;
1096 Chain = Res.getValue(1);
1097 }
1098 } else {
1099 // If this is an unaligned load and the target doesn't support
1100 // it, expand it.
1101 EVT MemVT = LD->getMemoryVT();
1102 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001103 unsigned Align = LD->getAlignment();
1104 if (!TLI.allowsMisalignedMemoryAccesses(MemVT, AS, Align)) {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001105 Type *Ty =
1106 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1107 unsigned ABIAlignment =
1108 TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001109 if (Align < ABIAlignment){
Matt Arsenault95b714c2014-03-11 00:01:25 +00001110 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
1111 DAG, TLI, Value, Chain);
1112 }
1113 }
1114 }
1115 break;
Nadav Rotem2a148662012-07-11 11:02:16 +00001116 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001117 case TargetLowering::Expand:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001118 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) &&
1119 TLI.isTypeLegal(SrcVT)) {
1120 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
1121 LD->getMemOperand());
1122 unsigned ExtendOp;
1123 switch (ExtType) {
1124 case ISD::EXTLOAD:
1125 ExtendOp = (SrcVT.isFloatingPoint() ?
1126 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1127 break;
1128 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1129 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1130 default: llvm_unreachable("Unexpected extend load type!");
1131 }
1132 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1133 Chain = Load.getValue(1);
1134 break;
1135 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001136
Matt Arsenault95b714c2014-03-11 00:01:25 +00001137 assert(!SrcVT.isVector() &&
1138 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemde6fd282012-07-11 08:52:09 +00001139
Matt Arsenault95b714c2014-03-11 00:01:25 +00001140 // FIXME: This does not work for vectors on most targets. Sign-
1141 // and zero-extend operations are currently folded into extending
1142 // loads, whether they are legal or not, and then we end up here
1143 // without any support for legalizing them.
1144 assert(ExtType != ISD::EXTLOAD &&
1145 "EXTLOAD should always be supported!");
1146 // Turn the unsupported load into an EXTLOAD followed by an
1147 // explicit zero/sign extend inreg.
1148 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl,
1149 Node->getValueType(0),
1150 Chain, Ptr, SrcVT,
1151 LD->getMemOperand());
1152 SDValue ValRes;
1153 if (ExtType == ISD::SEXTLOAD)
1154 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1155 Result.getValueType(),
1156 Result, DAG.getValueType(SrcVT));
1157 else
1158 ValRes = DAG.getZeroExtendInReg(Result, dl,
1159 SrcVT.getScalarType());
1160 Value = ValRes;
1161 Chain = Result.getValue(1);
1162 break;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001163 }
1164 }
1165
1166 // Since loads produce two values, make sure to remember that we legalized
1167 // both of them.
Nadav Rotem2a148662012-07-11 11:02:16 +00001168 if (Chain.getNode() != Node) {
1169 assert(Value.getNode() != Node && "Load must be completely replaced");
1170 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1171 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00001172 if (UpdatedNodes) {
1173 UpdatedNodes->insert(Value.getNode());
1174 UpdatedNodes->insert(Chain.getNode());
1175 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001176 ReplacedNode(Node);
1177 }
1178}
1179
Dan Gohmanad946082011-07-15 21:42:20 +00001180/// LegalizeOp - Return a legal replacement for the given operation, with
1181/// all legal operands.
Dan Gohman198b7ff2011-11-03 21:49:52 +00001182void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
Chandler Carruthb1432742014-07-28 17:55:07 +00001183 DEBUG(dbgs() << "\nLegalizing: "; Node->dump(&DAG));
1184
Dan Gohman198b7ff2011-11-03 21:49:52 +00001185 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1186 return;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001187
Eli Friedman5e0d1502009-05-24 02:46:31 +00001188 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001189 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1190 TargetLowering::TypeLegal &&
Eli Friedman5e0d1502009-05-24 02:46:31 +00001191 "Unexpected illegal type!");
1192
1193 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001194 assert((TLI.getTypeAction(*DAG.getContext(),
1195 Node->getOperand(i).getValueType()) ==
1196 TargetLowering::TypeLegal ||
Eli Friedman5e0d1502009-05-24 02:46:31 +00001197 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1198 "Unexpected illegal type!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001199
Eli Friedman21d349b2009-05-27 01:25:56 +00001200 // Figure out the correct action; the way to query this varies by opcode
Bill Wendlingfb4ee9b2011-01-26 22:21:35 +00001201 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman21d349b2009-05-27 01:25:56 +00001202 bool SimpleFinishLegalizing = true;
Chris Lattnerdc750592005-01-07 07:47:09 +00001203 switch (Node->getOpcode()) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001204 case ISD::INTRINSIC_W_CHAIN:
1205 case ISD::INTRINSIC_WO_CHAIN:
1206 case ISD::INTRINSIC_VOID:
Eli Friedman21d349b2009-05-27 01:25:56 +00001207 case ISD::STACKSAVE:
Owen Anderson9f944592009-08-11 20:47:22 +00001208 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman21d349b2009-05-27 01:25:56 +00001209 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00001210 case ISD::VAARG:
1211 Action = TLI.getOperationAction(Node->getOpcode(),
1212 Node->getValueType(0));
1213 if (Action != TargetLowering::Promote)
1214 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1215 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00001216 case ISD::FP_TO_FP16:
Eli Friedman21d349b2009-05-27 01:25:56 +00001217 case ISD::SINT_TO_FP:
1218 case ISD::UINT_TO_FP:
1219 case ISD::EXTRACT_VECTOR_ELT:
1220 Action = TLI.getOperationAction(Node->getOpcode(),
1221 Node->getOperand(0).getValueType());
1222 break;
1223 case ISD::FP_ROUND_INREG:
1224 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001225 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00001226 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1227 break;
1228 }
Eli Friedman342e8df2011-08-24 20:50:09 +00001229 case ISD::ATOMIC_STORE: {
1230 Action = TLI.getOperationAction(Node->getOpcode(),
1231 Node->getOperand(2).getValueType());
1232 break;
1233 }
Eli Friedmane1bc3792009-05-28 03:06:16 +00001234 case ISD::SELECT_CC:
1235 case ISD::SETCC:
1236 case ISD::BR_CC: {
1237 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1238 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1239 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001240 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedmane1bc3792009-05-28 03:06:16 +00001241 ISD::CondCode CCCode =
1242 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1243 Action = TLI.getCondCodeAction(CCCode, OpVT);
1244 if (Action == TargetLowering::Legal) {
1245 if (Node->getOpcode() == ISD::SELECT_CC)
1246 Action = TLI.getOperationAction(Node->getOpcode(),
1247 Node->getValueType(0));
1248 else
1249 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1250 }
1251 break;
1252 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001253 case ISD::LOAD:
1254 case ISD::STORE:
Eli Friedman5df72022009-05-28 03:56:57 +00001255 // FIXME: Model these properly. LOAD and STORE are complicated, and
1256 // STORE expects the unlegalized operand in some cases.
1257 SimpleFinishLegalizing = false;
1258 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001259 case ISD::CALLSEQ_START:
1260 case ISD::CALLSEQ_END:
Eli Friedman5df72022009-05-28 03:56:57 +00001261 // FIXME: This shouldn't be necessary. These nodes have special properties
1262 // dealing with the recursive nature of legalization. Removing this
1263 // special case should be done as part of making LegalizeDAG non-recursive.
1264 SimpleFinishLegalizing = false;
1265 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001266 case ISD::EXTRACT_ELEMENT:
1267 case ISD::FLT_ROUNDS_:
1268 case ISD::SADDO:
1269 case ISD::SSUBO:
1270 case ISD::UADDO:
1271 case ISD::USUBO:
1272 case ISD::SMULO:
1273 case ISD::UMULO:
1274 case ISD::FPOWI:
1275 case ISD::MERGE_VALUES:
1276 case ISD::EH_RETURN:
1277 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00001278 case ISD::EH_SJLJ_SETJMP:
1279 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmand6f28342009-05-27 03:33:44 +00001280 // These operations lie about being legal: when they claim to be legal,
1281 // they should actually be expanded.
Eli Friedman21d349b2009-05-27 01:25:56 +00001282 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1283 if (Action == TargetLowering::Legal)
1284 Action = TargetLowering::Expand;
1285 break;
Duncan Sandsa0984362011-09-06 13:37:06 +00001286 case ISD::INIT_TRAMPOLINE:
1287 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman21d349b2009-05-27 01:25:56 +00001288 case ISD::FRAMEADDR:
1289 case ISD::RETURNADDR:
Eli Friedman2892d822009-05-27 12:20:41 +00001290 // These operations lie about being legal: when they claim to be legal,
1291 // they should actually be custom-lowered.
1292 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1293 if (Action == TargetLowering::Legal)
1294 Action = TargetLowering::Custom;
Eli Friedman21d349b2009-05-27 01:25:56 +00001295 break;
Renato Golinc7aea402014-05-06 16:51:25 +00001296 case ISD::READ_REGISTER:
1297 case ISD::WRITE_REGISTER:
1298 // Named register is legal in the DAG, but blocked by register name
1299 // selection if not implemented by target (to chose the correct register)
1300 // They'll be converted to Copy(To/From)Reg.
1301 Action = TargetLowering::Legal;
1302 break;
Shuxin Yangcdde0592012-10-19 20:11:16 +00001303 case ISD::DEBUGTRAP:
1304 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1305 if (Action == TargetLowering::Expand) {
1306 // replace ISD::DEBUGTRAP with ISD::TRAP
1307 SDValue NewVal;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001308 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yang1479fcd2012-10-19 23:00:20 +00001309 Node->getOperand(0));
Shuxin Yangcdde0592012-10-19 20:11:16 +00001310 ReplaceNode(Node, NewVal.getNode());
1311 LegalizeOp(NewVal.getNode());
1312 return;
1313 }
1314 break;
1315
Chris Lattnerdc750592005-01-07 07:47:09 +00001316 default:
Chris Lattner3eb86932005-05-14 06:34:48 +00001317 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001318 Action = TargetLowering::Legal;
1319 } else {
1320 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattner3eb86932005-05-14 06:34:48 +00001321 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001322 break;
1323 }
1324
1325 if (SimpleFinishLegalizing) {
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001326 SDNode *NewNode = Node;
Eli Friedman21d349b2009-05-27 01:25:56 +00001327 switch (Node->getOpcode()) {
1328 default: break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001329 case ISD::SHL:
1330 case ISD::SRL:
1331 case ISD::SRA:
1332 case ISD::ROTL:
1333 case ISD::ROTR:
1334 // Legalizing shifts/rotates requires adjusting the shift amount
1335 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001336 if (!Node->getOperand(1).getValueType().isVector()) {
1337 SDValue SAO =
1338 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1339 Node->getOperand(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001340 HandleSDNode Handle(SAO);
1341 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001342 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1343 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001344 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001345 break;
Dan Gohman4906f732009-08-18 23:36:17 +00001346 case ISD::SRL_PARTS:
1347 case ISD::SRA_PARTS:
1348 case ISD::SHL_PARTS:
1349 // Legalizing shifts/rotates requires adjusting the shift amount
1350 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001351 if (!Node->getOperand(2).getValueType().isVector()) {
1352 SDValue SAO =
1353 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1354 Node->getOperand(2));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001355 HandleSDNode Handle(SAO);
1356 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001357 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1358 Node->getOperand(1),
1359 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001360 }
Dan Gohman2fa67c92009-08-18 23:52:48 +00001361 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001362 }
1363
Dan Gohman198b7ff2011-11-03 21:49:52 +00001364 if (NewNode != Node) {
Chandler Carruth411fb402014-07-26 05:49:40 +00001365 ReplaceNode(Node, NewNode);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001366 Node = NewNode;
1367 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001368 switch (Action) {
1369 case TargetLowering::Legal:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001370 return;
Nadav Rotem2a148662012-07-11 11:02:16 +00001371 case TargetLowering::Custom: {
Eli Friedman21d349b2009-05-27 01:25:56 +00001372 // FIXME: The handling for custom lowering with multiple results is
1373 // a complete mess.
Nadav Rotem2a148662012-07-11 11:02:16 +00001374 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1375 if (Res.getNode()) {
Chandler Carruth98655fa2014-07-26 05:52:51 +00001376 if (!(Res.getNode() != Node || Res.getResNo() != 0))
1377 return;
1378
1379 if (Node->getNumValues() == 1) {
1380 // We can just directly replace this node with the lowered value.
1381 ReplaceNode(SDValue(Node, 0), Res);
1382 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001383 }
Chandler Carruth98655fa2014-07-26 05:52:51 +00001384
1385 SmallVector<SDValue, 8> ResultVals;
1386 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1387 ResultVals.push_back(Res.getValue(i));
1388 ReplaceNode(Node, ResultVals.data());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001389 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001390 }
Nadav Rotem2a148662012-07-11 11:02:16 +00001391 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001392 // FALL THROUGH
1393 case TargetLowering::Expand:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001394 ExpandNode(Node);
1395 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001396 case TargetLowering::Promote:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001397 PromoteNode(Node);
1398 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001399 }
1400 }
1401
1402 switch (Node->getOpcode()) {
1403 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001404#ifndef NDEBUG
David Greeneae4f2662010-01-05 01:24:53 +00001405 dbgs() << "NODE: ";
1406 Node->dump( &DAG);
1407 dbgs() << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001408#endif
Craig Topperee4dab52012-02-05 08:31:47 +00001409 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendlingf359fed2007-11-13 00:44:25 +00001410
Dan Gohman198b7ff2011-11-03 21:49:52 +00001411 case ISD::CALLSEQ_START:
Dan Gohman9b9c9702011-10-29 00:41:52 +00001412 case ISD::CALLSEQ_END:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001413 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001414 case ISD::LOAD: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001415 return LegalizeLoadOps(Node);
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001416 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001417 case ISD::STORE: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001418 return LegalizeStoreOps(Node);
Evan Cheng31d15fa2005-12-23 07:29:34 +00001419 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001420 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001421}
1422
Eli Friedman40afdb62009-05-23 22:37:25 +00001423SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1424 SDValue Vec = Op.getOperand(0);
1425 SDValue Idx = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001426 SDLoc dl(Op);
Hal Finkel90adf0f2014-03-30 15:10:18 +00001427
1428 // Before we generate a new store to a temporary stack slot, see if there is
1429 // already one that we can use. There often is because when we scalarize
1430 // vector operations (using SelectionDAG::UnrollVectorOp for example) a whole
1431 // series of EXTRACT_VECTOR_ELT nodes are generated, one for each element in
1432 // the vector. If all are expanded here, we don't want one store per vector
1433 // element.
1434 SDValue StackPtr, Ch;
1435 for (SDNode::use_iterator UI = Vec.getNode()->use_begin(),
1436 UE = Vec.getNode()->use_end(); UI != UE; ++UI) {
1437 SDNode *User = *UI;
1438 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(User)) {
1439 if (ST->isIndexed() || ST->isTruncatingStore() ||
1440 ST->getValue() != Vec)
1441 continue;
1442
1443 // Make sure that nothing else could have stored into the destination of
1444 // this store.
1445 if (!ST->getChain().reachesChainWithoutSideEffects(DAG.getEntryNode()))
1446 continue;
1447
1448 StackPtr = ST->getBasePtr();
1449 Ch = SDValue(ST, 0);
1450 break;
1451 }
1452 }
1453
1454 if (!Ch.getNode()) {
1455 // Store the value to a temporary stack slot, then LOAD the returned part.
1456 StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1457 Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1458 MachinePointerInfo(), false, false, 0);
1459 }
Eli Friedman40afdb62009-05-23 22:37:25 +00001460
1461 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +00001462 unsigned EltSize =
1463 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman40afdb62009-05-23 22:37:25 +00001464 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1465 DAG.getConstant(EltSize, Idx.getValueType()));
1466
Matt Arsenault873bb3e2013-11-17 02:24:21 +00001467 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
Eli Friedman40afdb62009-05-23 22:37:25 +00001468 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1469
Eli Friedman2b77eef2009-07-09 22:01:03 +00001470 if (Op.getValueType().isVector())
Chris Lattner1ffcf522010-09-21 16:36:31 +00001471 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001472 false, false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +00001473 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d178ed2010-09-21 17:04:51 +00001474 MachinePointerInfo(),
1475 Vec.getValueType().getVectorElementType(),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001476 false, false, false, 0);
Eli Friedman40afdb62009-05-23 22:37:25 +00001477}
1478
David Greenebab5e6e2011-01-26 19:13:22 +00001479SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1480 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1481
1482 SDValue Vec = Op.getOperand(0);
1483 SDValue Part = Op.getOperand(1);
1484 SDValue Idx = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001485 SDLoc dl(Op);
David Greenebab5e6e2011-01-26 19:13:22 +00001486
1487 // Store the value to a temporary stack slot, then LOAD the returned part.
1488
1489 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1490 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1491 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1492
1493 // First store the whole vector.
1494 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1495 false, false, 0);
1496
1497 // Then store the inserted part.
1498
1499 // Add the offset to the index.
1500 unsigned EltSize =
1501 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1502
1503 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1504 DAG.getConstant(EltSize, Idx.getValueType()));
Matt Arsenault64283bd2013-11-17 02:31:26 +00001505 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
David Greenebab5e6e2011-01-26 19:13:22 +00001506
1507 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1508 StackPtr);
1509
1510 // Store the subvector.
1511 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1512 MachinePointerInfo(), false, false, 0);
1513
1514 // Finally, load the updated vector.
1515 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001516 false, false, false, 0);
David Greenebab5e6e2011-01-26 19:13:22 +00001517}
1518
Eli Friedmanaee3f622009-06-06 07:04:42 +00001519SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1520 // We can't handle this case efficiently. Allocate a sufficiently
1521 // aligned object on the stack, store each element into it, then load
1522 // the result as a vector.
1523 // Create the stack frame object.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001524 EVT VT = Node->getValueType(0);
Dale Johannesenb91eba32009-11-21 00:53:23 +00001525 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001526 SDLoc dl(Node);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001527 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001528 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattner1ffcf522010-09-21 16:36:31 +00001529 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001530
1531 // Emit a store of each element to the stack slot.
1532 SmallVector<SDValue, 8> Stores;
Dan Gohman9b80f862010-02-25 15:20:39 +00001533 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedmanaee3f622009-06-06 07:04:42 +00001534 // Store (in the right endianness) the elements to memory.
1535 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1536 // Ignore undef elements.
1537 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1538
1539 unsigned Offset = TypeByteSize*i;
1540
1541 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1542 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1543
Dan Gohman2a8e3772010-02-25 20:30:49 +00001544 // If the destination vector element type is narrower than the source
1545 // element type, only store the bits necessary.
1546 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesenb91eba32009-11-21 00:53:23 +00001547 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001548 Node->getOperand(i), Idx,
1549 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001550 EltVT, false, false, 0));
Mon P Wang586d9972010-01-24 00:05:03 +00001551 } else
Jim Grosbach9b7755f2010-07-02 17:41:59 +00001552 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001553 Node->getOperand(i), Idx,
1554 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001555 false, false, 0));
Eli Friedmanaee3f622009-06-06 07:04:42 +00001556 }
1557
1558 SDValue StoreChain;
1559 if (!Stores.empty()) // Not all undef elements?
Craig Topper48d114b2014-04-26 18:35:24 +00001560 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001561 else
1562 StoreChain = DAG.getEntryNode();
1563
1564 // Result is a load from the stack slot.
Stephen Lincfe7f352013-07-08 00:37:03 +00001565 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001566 false, false, false, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001567}
1568
Eli Friedman2892d822009-05-27 12:20:41 +00001569SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001570 SDLoc dl(Node);
Eli Friedman2892d822009-05-27 12:20:41 +00001571 SDValue Tmp1 = Node->getOperand(0);
1572 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands4c55f762010-03-12 11:45:06 +00001573
1574 // Get the sign bit of the RHS. First obtain a value that has the same
1575 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman2892d822009-05-27 12:20:41 +00001576 SDValue SignBit;
Duncan Sands4c55f762010-03-12 11:45:06 +00001577 EVT FloatVT = Tmp2.getValueType();
1578 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohmane49e7422011-07-15 22:39:09 +00001579 if (TLI.isTypeLegal(IVT)) {
Duncan Sands4c55f762010-03-12 11:45:06 +00001580 // Convert to an integer with the same sign bit.
Wesley Peck527da1b2010-11-23 03:31:01 +00001581 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman2892d822009-05-27 12:20:41 +00001582 } else {
Duncan Sands4c55f762010-03-12 11:45:06 +00001583 // Store the float to memory, then load the sign part out as an integer.
1584 MVT LoadTy = TLI.getPointerTy();
1585 // First create a temporary that is aligned for both the load and store.
1586 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1587 // Then store the float to it.
Eli Friedman2892d822009-05-27 12:20:41 +00001588 SDValue Ch =
Chris Lattner676c61d2010-09-21 18:41:36 +00001589 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00001590 false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001591 if (TLI.isBigEndian()) {
1592 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1593 // Load out a legal integer with the same sign bit as the float.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001594 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001595 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001596 } else { // Little endian
1597 SDValue LoadPtr = StackPtr;
1598 // The float may be wider than the integer we are going to load. Advance
1599 // the pointer so that the loaded integer will contain the sign bit.
1600 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1601 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
Jack Carter5c0af482013-11-19 23:43:22 +00001602 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(), LoadPtr,
1603 DAG.getConstant(ByteOffset, LoadPtr.getValueType()));
Duncan Sands4c55f762010-03-12 11:45:06 +00001604 // Load a legal integer containing the sign bit.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001605 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001606 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001607 // Move the sign bit to the top bit of the loaded integer.
1608 unsigned BitShift = LoadTy.getSizeInBits() -
1609 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1610 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1611 if (BitShift)
1612 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Andersonb2c80da2011-02-25 21:41:48 +00001613 DAG.getConstant(BitShift,
1614 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands4c55f762010-03-12 11:45:06 +00001615 }
Eli Friedman2892d822009-05-27 12:20:41 +00001616 }
Duncan Sands4c55f762010-03-12 11:45:06 +00001617 // Now get the sign bit proper, by seeing whether the value is negative.
Matt Arsenault758659232013-05-18 00:21:46 +00001618 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
Duncan Sands4c55f762010-03-12 11:45:06 +00001619 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1620 ISD::SETLT);
Eli Friedman2892d822009-05-27 12:20:41 +00001621 // Get the absolute value of the result.
1622 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1623 // Select between the nabs and abs value based on the sign bit of
1624 // the input.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00001625 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
Jack Carter5c0af482013-11-19 23:43:22 +00001626 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1627 AbsVal);
Eli Friedman2892d822009-05-27 12:20:41 +00001628}
1629
Eli Friedman2892d822009-05-27 12:20:41 +00001630void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1631 SmallVectorImpl<SDValue> &Results) {
1632 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1633 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1634 " not tell us which reg is the stack pointer!");
Andrew Trickef9de2a2013-05-25 02:42:55 +00001635 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001636 EVT VT = Node->getValueType(0);
Eli Friedman2892d822009-05-27 12:20:41 +00001637 SDValue Tmp1 = SDValue(Node, 0);
1638 SDValue Tmp2 = SDValue(Node, 1);
1639 SDValue Tmp3 = Node->getOperand(2);
1640 SDValue Chain = Tmp1.getOperand(0);
1641
1642 // Chain the dynamic stack allocation so that it doesn't modify the stack
1643 // pointer when other instructions are using the stack.
Andrew Trickad6d08a2013-05-29 22:03:55 +00001644 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
1645 SDLoc(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00001646
1647 SDValue Size = Tmp2.getOperand(1);
1648 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1649 Chain = SP.getValue(1);
1650 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001651 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman2892d822009-05-27 12:20:41 +00001652 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Elena Demikhovsky82a46eb2013-10-14 07:26:51 +00001653 if (Align > StackAlign)
1654 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
1655 DAG.getConstant(-(uint64_t)Align, VT));
Eli Friedman2892d822009-05-27 12:20:41 +00001656 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1657
1658 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00001659 DAG.getIntPtrConstant(0, true), SDValue(),
1660 SDLoc(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00001661
1662 Results.push_back(Tmp1);
1663 Results.push_back(Tmp2);
1664}
1665
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001666/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Tom Stellard08690a12013-09-28 02:50:32 +00001667/// condition code CC on the current target.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001668///
Tom Stellard08690a12013-09-28 02:50:32 +00001669/// If the SETCC has been legalized using AND / OR, then the legalized node
Daniel Sandersedc071b2013-11-21 13:24:49 +00001670/// will be stored in LHS. RHS and CC will be set to SDValue(). NeedInvert
1671/// will be set to false.
1672///
Tom Stellard08690a12013-09-28 02:50:32 +00001673/// If the SETCC has been legalized by using getSetCCSwappedOperands(),
Daniel Sandersedc071b2013-11-21 13:24:49 +00001674/// then the values of LHS and RHS will be swapped, CC will be set to the
1675/// new condition, and NeedInvert will be set to false.
1676///
1677/// If the SETCC has been legalized using the inverse condcode, then LHS and
1678/// RHS will be unchanged, CC will set to the inverted condcode, and NeedInvert
1679/// will be set to true. The caller must invert the result of the SETCC with
Pete Cooper7fd1d722014-05-12 23:26:58 +00001680/// SelectionDAG::getLogicalNOT() or take equivalent action to swap the effect
1681/// of a true/false result.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001682///
Tom Stellard08690a12013-09-28 02:50:32 +00001683/// \returns true if the SetCC has been legalized, false if it hasn't.
1684bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001685 SDValue &LHS, SDValue &RHS,
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001686 SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +00001687 bool &NeedInvert,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001688 SDLoc dl) {
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001689 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001690 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
Daniel Sandersedc071b2013-11-21 13:24:49 +00001691 NeedInvert = false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001692 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topperee4dab52012-02-05 08:31:47 +00001693 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001694 case TargetLowering::Legal:
1695 // Nothing to do.
1696 break;
1697 case TargetLowering::Expand: {
Tom Stellardcd428182013-09-28 02:50:38 +00001698 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1699 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1700 std::swap(LHS, RHS);
1701 CC = DAG.getCondCode(InvCC);
1702 return true;
1703 }
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001704 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1705 unsigned Opc = 0;
1706 switch (CCCode) {
Craig Topperee4dab52012-02-05 08:31:47 +00001707 default: llvm_unreachable("Don't know how to expand this condition!");
Stephen Lincfe7f352013-07-08 00:37:03 +00001708 case ISD::SETO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001709 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1710 == TargetLowering::Legal
1711 && "If SETO is expanded, SETOEQ must be legal!");
1712 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
Stephen Lincfe7f352013-07-08 00:37:03 +00001713 case ISD::SETUO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001714 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1715 == TargetLowering::Legal
1716 && "If SETUO is expanded, SETUNE must be legal!");
1717 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1718 case ISD::SETOEQ:
1719 case ISD::SETOGT:
1720 case ISD::SETOGE:
1721 case ISD::SETOLT:
1722 case ISD::SETOLE:
Stephen Lincfe7f352013-07-08 00:37:03 +00001723 case ISD::SETONE:
1724 case ISD::SETUEQ:
1725 case ISD::SETUNE:
1726 case ISD::SETUGT:
1727 case ISD::SETUGE:
1728 case ISD::SETULT:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001729 case ISD::SETULE:
1730 // If we are floating point, assign and break, otherwise fall through.
1731 if (!OpVT.isInteger()) {
1732 // We can use the 4th bit to tell if we are the unordered
1733 // or ordered version of the opcode.
1734 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1735 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1736 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1737 break;
1738 }
1739 // Fallthrough if we are unsigned integer.
1740 case ISD::SETLE:
1741 case ISD::SETGT:
1742 case ISD::SETGE:
1743 case ISD::SETLT:
Tom Stellardcd428182013-09-28 02:50:38 +00001744 // We only support using the inverted operation, which is computed above
1745 // and not a different manner of supporting expanding these cases.
1746 llvm_unreachable("Don't know how to expand this condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00001747 case ISD::SETNE:
1748 case ISD::SETEQ:
1749 // Try inverting the result of the inverse condition.
1750 InvCC = CCCode == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ;
1751 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1752 CC = DAG.getCondCode(InvCC);
1753 NeedInvert = true;
1754 return true;
1755 }
1756 // If inverting the condition didn't work then we have no means to expand
1757 // the condition.
1758 llvm_unreachable("Don't know how to expand this condition!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001759 }
Stephen Lincfe7f352013-07-08 00:37:03 +00001760
Micah Villmow0242b9b2012-10-10 20:50:51 +00001761 SDValue SetCC1, SetCC2;
1762 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1763 // If we aren't the ordered or unorder operation,
1764 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1765 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1766 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1767 } else {
1768 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1769 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1770 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1771 }
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001772 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001773 RHS = SDValue();
1774 CC = SDValue();
Tom Stellard08690a12013-09-28 02:50:32 +00001775 return true;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001776 }
1777 }
Tom Stellard08690a12013-09-28 02:50:32 +00001778 return false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001779}
1780
Chris Lattner87bc3e72008-01-16 07:45:30 +00001781/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1782/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1783/// a load from the stack slot to DestVT, extending it if needed.
1784/// The resultant code need not be legal.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001785SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001786 EVT SlotVT,
1787 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001788 SDLoc dl) {
Chris Lattner36e663d2005-12-23 00:16:34 +00001789 // Create the stack frame object.
Bob Wilsonf074ca72009-04-10 18:48:47 +00001790 unsigned SrcAlign =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001791 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson117c9e82009-08-12 00:36:31 +00001792 getTypeForEVT(*DAG.getContext()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001793 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001794
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001795 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1796 int SPFI = StackPtrFI->getIndex();
Chris Lattner6963c1f2010-09-21 17:42:31 +00001797 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001798
Duncan Sands13237ac2008-06-06 12:08:01 +00001799 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1800 unsigned SlotSize = SlotVT.getSizeInBits();
1801 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattner229907c2011-07-18 04:54:35 +00001802 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001803 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001804
Chris Lattner87bc3e72008-01-16 07:45:30 +00001805 // Emit a store to the stack slot. Use a truncstore if the input value is
1806 // later than DestVT.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001807 SDValue Store;
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001808
Chris Lattner87bc3e72008-01-16 07:45:30 +00001809 if (SrcSize > SlotSize)
Dale Johannesena02e45c2009-02-02 22:12:50 +00001810 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001811 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001812 else {
1813 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesena02e45c2009-02-02 22:12:50 +00001814 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001815 PtrInfo, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001816 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001817
Chris Lattner36e663d2005-12-23 00:16:34 +00001818 // Result is a load from the stack slot.
Chris Lattner87bc3e72008-01-16 07:45:30 +00001819 if (SlotSize == DestSize)
Chris Lattner6963c1f2010-09-21 17:42:31 +00001820 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001821 false, false, false, DestAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001822
Chris Lattner87bc3e72008-01-16 07:45:30 +00001823 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastings81c43062011-02-16 16:23:55 +00001824 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001825 PtrInfo, SlotVT, false, false, false, DestAlign);
Chris Lattner36e663d2005-12-23 00:16:34 +00001826}
1827
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001828SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001829 SDLoc dl(Node);
Chris Lattner6be79822006-04-04 17:23:26 +00001830 // Create a vector sized/aligned stack slot, store the value to element #0,
1831 // then load the whole vector back out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001832 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman2d489b52008-02-06 22:27:42 +00001833
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001834 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1835 int SPFI = StackPtrFI->getIndex();
1836
Duncan Sandse4ff21b2009-04-18 20:16:54 +00001837 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1838 StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001839 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +00001840 Node->getValueType(0).getVectorElementType(),
1841 false, false, 0);
Dale Johannesena02e45c2009-02-02 22:12:50 +00001842 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001843 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001844 false, false, false, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00001845}
1846
Hal Finkelb811b6d2014-03-31 19:42:55 +00001847static bool
1848ExpandBVWithShuffles(SDNode *Node, SelectionDAG &DAG,
1849 const TargetLowering &TLI, SDValue &Res) {
1850 unsigned NumElems = Node->getNumOperands();
1851 SDLoc dl(Node);
1852 EVT VT = Node->getValueType(0);
1853
1854 // Try to group the scalars into pairs, shuffle the pairs together, then
1855 // shuffle the pairs of pairs together, etc. until the vector has
1856 // been built. This will work only if all of the necessary shuffle masks
1857 // are legal.
1858
1859 // We do this in two phases; first to check the legality of the shuffles,
1860 // and next, assuming that all shuffles are legal, to create the new nodes.
1861 for (int Phase = 0; Phase < 2; ++Phase) {
1862 SmallVector<std::pair<SDValue, SmallVector<int, 16> >, 16> IntermedVals,
1863 NewIntermedVals;
1864 for (unsigned i = 0; i < NumElems; ++i) {
1865 SDValue V = Node->getOperand(i);
1866 if (V.getOpcode() == ISD::UNDEF)
1867 continue;
1868
1869 SDValue Vec;
1870 if (Phase)
1871 Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, V);
1872 IntermedVals.push_back(std::make_pair(Vec, SmallVector<int, 16>(1, i)));
1873 }
1874
1875 while (IntermedVals.size() > 2) {
1876 NewIntermedVals.clear();
1877 for (unsigned i = 0, e = (IntermedVals.size() & ~1u); i < e; i += 2) {
1878 // This vector and the next vector are shuffled together (simply to
1879 // append the one to the other).
1880 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1881
1882 SmallVector<int, 16> FinalIndices;
1883 FinalIndices.reserve(IntermedVals[i].second.size() +
1884 IntermedVals[i+1].second.size());
1885
1886 int k = 0;
1887 for (unsigned j = 0, f = IntermedVals[i].second.size(); j != f;
1888 ++j, ++k) {
1889 ShuffleVec[k] = j;
1890 FinalIndices.push_back(IntermedVals[i].second[j]);
1891 }
1892 for (unsigned j = 0, f = IntermedVals[i+1].second.size(); j != f;
1893 ++j, ++k) {
1894 ShuffleVec[k] = NumElems + j;
1895 FinalIndices.push_back(IntermedVals[i+1].second[j]);
1896 }
1897
1898 SDValue Shuffle;
1899 if (Phase)
1900 Shuffle = DAG.getVectorShuffle(VT, dl, IntermedVals[i].first,
1901 IntermedVals[i+1].first,
1902 ShuffleVec.data());
1903 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1904 return false;
1905 NewIntermedVals.push_back(std::make_pair(Shuffle, FinalIndices));
1906 }
1907
1908 // If we had an odd number of defined values, then append the last
1909 // element to the array of new vectors.
1910 if ((IntermedVals.size() & 1) != 0)
1911 NewIntermedVals.push_back(IntermedVals.back());
1912
1913 IntermedVals.swap(NewIntermedVals);
1914 }
1915
1916 assert(IntermedVals.size() <= 2 && IntermedVals.size() > 0 &&
1917 "Invalid number of intermediate vectors");
1918 SDValue Vec1 = IntermedVals[0].first;
1919 SDValue Vec2;
1920 if (IntermedVals.size() > 1)
1921 Vec2 = IntermedVals[1].first;
1922 else if (Phase)
1923 Vec2 = DAG.getUNDEF(VT);
1924
1925 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1926 for (unsigned i = 0, e = IntermedVals[0].second.size(); i != e; ++i)
1927 ShuffleVec[IntermedVals[0].second[i]] = i;
1928 for (unsigned i = 0, e = IntermedVals[1].second.size(); i != e; ++i)
1929 ShuffleVec[IntermedVals[1].second[i]] = NumElems + i;
1930
1931 if (Phase)
1932 Res = DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
1933 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1934 return false;
1935 }
1936
1937 return true;
1938}
Chris Lattner6be79822006-04-04 17:23:26 +00001939
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001940/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman06c60b62007-07-16 14:29:03 +00001941/// support the operation, but do support the resultant vector type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001942SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilsonf6c21952009-04-13 20:20:30 +00001943 unsigned NumElems = Node->getNumOperands();
Eli Friedman32345872009-06-07 06:52:44 +00001944 SDValue Value1, Value2;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001945 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001946 EVT VT = Node->getValueType(0);
1947 EVT OpVT = Node->getOperand(0).getValueType();
1948 EVT EltVT = VT.getVectorElementType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001949
1950 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00001951 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001952 bool isOnlyLowElement = true;
Eli Friedman32345872009-06-07 06:52:44 +00001953 bool MoreThanTwoValues = false;
Chris Lattner77e271c2006-03-24 07:29:17 +00001954 bool isConstant = true;
Eli Friedman32345872009-06-07 06:52:44 +00001955 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001956 SDValue V = Node->getOperand(i);
Eli Friedman32345872009-06-07 06:52:44 +00001957 if (V.getOpcode() == ISD::UNDEF)
1958 continue;
1959 if (i > 0)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001960 isOnlyLowElement = false;
Eli Friedman32345872009-06-07 06:52:44 +00001961 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner77e271c2006-03-24 07:29:17 +00001962 isConstant = false;
Eli Friedman32345872009-06-07 06:52:44 +00001963
1964 if (!Value1.getNode()) {
1965 Value1 = V;
1966 } else if (!Value2.getNode()) {
1967 if (V != Value1)
1968 Value2 = V;
1969 } else if (V != Value1 && V != Value2) {
1970 MoreThanTwoValues = true;
1971 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001972 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001973
Eli Friedman32345872009-06-07 06:52:44 +00001974 if (!Value1.getNode())
1975 return DAG.getUNDEF(VT);
1976
1977 if (isOnlyLowElement)
Bob Wilsonf6c21952009-04-13 20:20:30 +00001978 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001979
Chris Lattner77e271c2006-03-24 07:29:17 +00001980 // If all elements are constants, create a load from the constant pool.
1981 if (isConstant) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001982 SmallVector<Constant*, 16> CV;
Chris Lattner77e271c2006-03-24 07:29:17 +00001983 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00001984 if (ConstantFPSDNode *V =
Chris Lattner77e271c2006-03-24 07:29:17 +00001985 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanec270fb2008-09-12 18:08:03 +00001986 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001987 } else if (ConstantSDNode *V =
Bob Wilsonf074ca72009-04-10 18:48:47 +00001988 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen6f7d5b22009-11-10 23:16:41 +00001989 if (OpVT==EltVT)
1990 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1991 else {
1992 // If OpVT and EltVT don't match, EltVT is not legal and the
1993 // element values have been promoted/truncated earlier. Undo this;
1994 // we don't want a v16i8 to become a v16i32 for example.
1995 const ConstantInt *CI = V->getConstantIntValue();
1996 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1997 CI->getZExtValue()));
1998 }
Chris Lattner77e271c2006-03-24 07:29:17 +00001999 } else {
2000 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner229907c2011-07-18 04:54:35 +00002001 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Andersonb292b8c2009-07-30 23:03:37 +00002002 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner77e271c2006-03-24 07:29:17 +00002003 }
2004 }
Owen Anderson4aa32952009-07-28 21:19:26 +00002005 Constant *CP = ConstantVector::get(CV);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002006 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002007 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002008 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00002009 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002010 false, false, false, Alignment);
Chris Lattner77e271c2006-03-24 07:29:17 +00002011 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002012
Hal Finkel19775142014-03-31 17:48:10 +00002013 SmallSet<SDValue, 16> DefinedValues;
2014 for (unsigned i = 0; i < NumElems; ++i) {
2015 if (Node->getOperand(i).getOpcode() == ISD::UNDEF)
2016 continue;
2017 DefinedValues.insert(Node->getOperand(i));
2018 }
2019
Hal Finkelb811b6d2014-03-31 19:42:55 +00002020 if (TLI.shouldExpandBuildVectorWithShuffles(VT, DefinedValues.size())) {
2021 if (!MoreThanTwoValues) {
2022 SmallVector<int, 8> ShuffleVec(NumElems, -1);
2023 for (unsigned i = 0; i < NumElems; ++i) {
2024 SDValue V = Node->getOperand(i);
2025 if (V.getOpcode() == ISD::UNDEF)
2026 continue;
2027 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
2028 }
2029 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
2030 // Get the splatted value into the low element of a vector register.
2031 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
2032 SDValue Vec2;
2033 if (Value2.getNode())
2034 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
2035 else
2036 Vec2 = DAG.getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002037
Hal Finkelb811b6d2014-03-31 19:42:55 +00002038 // Return shuffle(LowValVec, undef, <0,0,0,0>)
2039 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
2040 }
2041 } else {
2042 SDValue Res;
2043 if (ExpandBVWithShuffles(Node, DAG, TLI, Res))
2044 return Res;
Evan Cheng1d2e9952006-03-24 01:17:21 +00002045 }
2046 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002047
Eli Friedmanaee3f622009-06-06 07:04:42 +00002048 // Otherwise, we can't handle this case efficiently.
2049 return ExpandVectorBuildThroughStack(Node);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002050}
2051
Chris Lattneraac464e2005-01-21 06:05:23 +00002052// ExpandLibCall - Expand a node into a call to a libcall. If the result value
2053// does not fit into a register, return the lo part and set the hi part to the
2054// by-reg argument. If it does fit into a single register, return the result
2055// and leave the Hi part unset.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002056SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedmanb3554152009-05-27 02:21:29 +00002057 bool isSigned) {
Chris Lattneraac464e2005-01-21 06:05:23 +00002058 TargetLowering::ArgListTy Args;
Reid Spencere63b6512006-12-31 05:55:36 +00002059 TargetLowering::ArgListEntry Entry;
Chris Lattneraac464e2005-01-21 06:05:23 +00002060 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002061 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002062 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelcf0da6c2009-02-17 22:15:04 +00002063 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00002064 Entry.isSExt = isSigned;
Duncan Sands4c95dbd2008-02-14 17:28:50 +00002065 Entry.isZExt = !isSigned;
Reid Spencere63b6512006-12-31 05:55:36 +00002066 Args.push_back(Entry);
Chris Lattneraac464e2005-01-21 06:05:23 +00002067 }
Bill Wendling24c79f22008-09-16 21:48:12 +00002068 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang58c37942008-10-30 08:01:45 +00002069 TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00002070
Chris Lattner229907c2011-07-18 04:54:35 +00002071 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Chengd4b08732010-11-30 23:55:39 +00002072
Evan Chengf8bad082012-04-10 01:51:00 +00002073 // By default, the input chain to this libcall is the entry node of the
2074 // function. If the libcall is going to be emitted as a tail call then
2075 // TLI.isUsedByReturnOnly will change it to the right chain if the return
2076 // node which is being folded has a non-entry input chain.
2077 SDValue InChain = DAG.getEntryNode();
2078
Evan Chengd4b08732010-11-30 23:55:39 +00002079 // isTailCall may be true since the callee does not reference caller stack
2080 // frame. Check if it's in the right position.
Evan Cheng136861d2012-04-10 03:15:18 +00002081 SDValue TCChain = InChain;
Tim Northoverf1450d82013-01-09 13:18:15 +00002082 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Cheng136861d2012-04-10 03:15:18 +00002083 if (isTailCall)
2084 InChain = TCChain;
2085
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002086 TargetLowering::CallLoweringInfo CLI(DAG);
2087 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002088 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002089 .setTailCall(isTailCall).setSExtResult(isSigned).setZExtResult(!isSigned);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002090
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002091 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Chris Lattnera5bf1032005-05-12 04:49:08 +00002092
Evan Chengd4b08732010-11-30 23:55:39 +00002093 if (!CallInfo.second.getNode())
2094 // It's a tailcall, return the chain (which is the DAG root).
2095 return DAG.getRoot();
2096
Eli Friedman4a951bf2009-05-26 08:55:52 +00002097 return CallInfo.first;
Chris Lattneraac464e2005-01-21 06:05:23 +00002098}
2099
Dan Gohmanae9b1682011-05-16 22:09:53 +00002100/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherbcaedb52011-04-20 01:19:45 +00002101/// and returning a result of type RetVT.
2102SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
2103 const SDValue *Ops, unsigned NumOps,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002104 bool isSigned, SDLoc dl) {
Eric Christopherbcaedb52011-04-20 01:19:45 +00002105 TargetLowering::ArgListTy Args;
2106 Args.reserve(NumOps);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002107
Eric Christopherbcaedb52011-04-20 01:19:45 +00002108 TargetLowering::ArgListEntry Entry;
2109 for (unsigned i = 0; i != NumOps; ++i) {
2110 Entry.Node = Ops[i];
2111 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
2112 Entry.isSExt = isSigned;
2113 Entry.isZExt = !isSigned;
2114 Args.push_back(Entry);
2115 }
2116 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2117 TLI.getPointerTy());
Dan Gohmanae9b1682011-05-16 22:09:53 +00002118
Chris Lattner229907c2011-07-18 04:54:35 +00002119 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002120
2121 TargetLowering::CallLoweringInfo CLI(DAG);
2122 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002123 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002124 .setSExtResult(isSigned).setZExtResult(!isSigned);
2125
Justin Holewinskiaa583972012-05-25 16:35:28 +00002126 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002127
Eric Christopherbcaedb52011-04-20 01:19:45 +00002128 return CallInfo.first;
2129}
2130
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002131// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
2132// ExpandLibCall except that the first operand is the in-chain.
2133std::pair<SDValue, SDValue>
2134SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
2135 SDNode *Node,
2136 bool isSigned) {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002137 SDValue InChain = Node->getOperand(0);
2138
2139 TargetLowering::ArgListTy Args;
2140 TargetLowering::ArgListEntry Entry;
2141 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
2142 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002143 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002144 Entry.Node = Node->getOperand(i);
2145 Entry.Ty = ArgTy;
2146 Entry.isSExt = isSigned;
2147 Entry.isZExt = !isSigned;
2148 Args.push_back(Entry);
2149 }
2150 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2151 TLI.getPointerTy());
2152
Chris Lattner229907c2011-07-18 04:54:35 +00002153 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002154
2155 TargetLowering::CallLoweringInfo CLI(DAG);
2156 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002157 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002158 .setSExtResult(isSigned).setZExtResult(!isSigned);
2159
Justin Holewinskiaa583972012-05-25 16:35:28 +00002160 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002161
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002162 return CallInfo;
2163}
2164
Eli Friedmand6f28342009-05-27 03:33:44 +00002165SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
2166 RTLIB::Libcall Call_F32,
2167 RTLIB::Libcall Call_F64,
2168 RTLIB::Libcall Call_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00002169 RTLIB::Libcall Call_F128,
Eli Friedmand6f28342009-05-27 03:33:44 +00002170 RTLIB::Libcall Call_PPCF128) {
2171 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002172 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002173 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson9f944592009-08-11 20:47:22 +00002174 case MVT::f32: LC = Call_F32; break;
2175 case MVT::f64: LC = Call_F64; break;
2176 case MVT::f80: LC = Call_F80; break;
Tim Northover4bf47bc2013-01-08 17:09:59 +00002177 case MVT::f128: LC = Call_F128; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002178 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002179 }
2180 return ExpandLibCall(LC, Node, false);
2181}
2182
2183SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002184 RTLIB::Libcall Call_I8,
Eli Friedmand6f28342009-05-27 03:33:44 +00002185 RTLIB::Libcall Call_I16,
2186 RTLIB::Libcall Call_I32,
2187 RTLIB::Libcall Call_I64,
2188 RTLIB::Libcall Call_I128) {
2189 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002190 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002191 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002192 case MVT::i8: LC = Call_I8; break;
2193 case MVT::i16: LC = Call_I16; break;
2194 case MVT::i32: LC = Call_I32; break;
2195 case MVT::i64: LC = Call_I64; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002196 case MVT::i128: LC = Call_I128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002197 }
2198 return ExpandLibCall(LC, Node, isSigned);
2199}
2200
Evan Chengb14ce092011-04-16 03:08:26 +00002201/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
2202static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2203 const TargetLowering &TLI) {
Evan Chengbd766792011-04-01 00:42:02 +00002204 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002205 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002206 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengbd766792011-04-01 00:42:02 +00002207 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2208 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2209 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2210 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2211 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2212 }
2213
Craig Topperc0196b12014-04-14 00:51:57 +00002214 return TLI.getLibcallName(LC) != nullptr;
Evan Chengb14ce092011-04-16 03:08:26 +00002215}
Evan Chengbd766792011-04-01 00:42:02 +00002216
Evan Cheng8c2ad812012-06-21 05:56:05 +00002217/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Chengb14ce092011-04-16 03:08:26 +00002218/// needed.
Evan Cheng8c2ad812012-06-21 05:56:05 +00002219static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2220 // The other use might have been replaced with a divrem already.
2221 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Chengbd766792011-04-01 00:42:02 +00002222 unsigned OtherOpcode = 0;
Evan Chengb14ce092011-04-16 03:08:26 +00002223 if (isSigned)
Evan Chengbd766792011-04-01 00:42:02 +00002224 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002225 else
Evan Chengbd766792011-04-01 00:42:02 +00002226 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002227
Evan Chengbd766792011-04-01 00:42:02 +00002228 SDValue Op0 = Node->getOperand(0);
2229 SDValue Op1 = Node->getOperand(1);
2230 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2231 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2232 SDNode *User = *UI;
2233 if (User == Node)
2234 continue;
Evan Cheng8c2ad812012-06-21 05:56:05 +00002235 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Chengbd766792011-04-01 00:42:02 +00002236 User->getOperand(0) == Op0 &&
Evan Chengb14ce092011-04-16 03:08:26 +00002237 User->getOperand(1) == Op1)
2238 return true;
Evan Chengbd766792011-04-01 00:42:02 +00002239 }
Evan Chengb14ce092011-04-16 03:08:26 +00002240 return false;
2241}
Evan Chengbd766792011-04-01 00:42:02 +00002242
Evan Chengb14ce092011-04-16 03:08:26 +00002243/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2244/// pairs.
2245void
2246SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2247 SmallVectorImpl<SDValue> &Results) {
2248 unsigned Opcode = Node->getOpcode();
2249 bool isSigned = Opcode == ISD::SDIVREM;
2250
2251 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002252 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002253 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengb14ce092011-04-16 03:08:26 +00002254 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2255 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2256 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2257 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2258 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Chengbd766792011-04-01 00:42:02 +00002259 }
2260
2261 // The input chain to this libcall is the entry node of the function.
2262 // Legalizing the call will automatically add the previous call to the
2263 // dependence.
2264 SDValue InChain = DAG.getEntryNode();
2265
2266 EVT RetVT = Node->getValueType(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002267 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002268
2269 TargetLowering::ArgListTy Args;
2270 TargetLowering::ArgListEntry Entry;
2271 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2272 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002273 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002274 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2275 Entry.isSExt = isSigned;
2276 Entry.isZExt = !isSigned;
2277 Args.push_back(Entry);
2278 }
2279
2280 // Also pass the return address of the remainder.
2281 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2282 Entry.Node = FIPtr;
Micah Villmow51e72462012-10-24 17:25:11 +00002283 Entry.Ty = RetTy->getPointerTo();
Evan Chengbd766792011-04-01 00:42:02 +00002284 Entry.isSExt = isSigned;
2285 Entry.isZExt = !isSigned;
2286 Args.push_back(Entry);
2287
2288 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2289 TLI.getPointerTy());
2290
Andrew Trickef9de2a2013-05-25 02:42:55 +00002291 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002292 TargetLowering::CallLoweringInfo CLI(DAG);
2293 CLI.setDebugLoc(dl).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002294 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002295 .setSExtResult(isSigned).setZExtResult(!isSigned);
2296
Justin Holewinskiaa583972012-05-25 16:35:28 +00002297 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Chengbd766792011-04-01 00:42:02 +00002298
Evan Chengbd766792011-04-01 00:42:02 +00002299 // Remainder is loaded back from the stack frame.
Dan Gohman198b7ff2011-11-03 21:49:52 +00002300 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002301 MachinePointerInfo(), false, false, false, 0);
Evan Chengb14ce092011-04-16 03:08:26 +00002302 Results.push_back(CallInfo.first);
2303 Results.push_back(Rem);
Evan Chengbd766792011-04-01 00:42:02 +00002304}
2305
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002306/// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2307static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2308 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002309 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002310 default: llvm_unreachable("Unexpected request for libcall!");
2311 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2312 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2313 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2314 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2315 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2316 }
Craig Topperc0196b12014-04-14 00:51:57 +00002317 return TLI.getLibcallName(LC) != nullptr;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002318}
2319
Paul Redmondf29ddfe2013-02-15 18:45:18 +00002320/// canCombineSinCosLibcall - Return true if sincos libcall is available and
2321/// can be used to combine sin and cos.
2322static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2323 const TargetMachine &TM) {
2324 if (!isSinCosLibcallAvailable(Node, TLI))
2325 return false;
2326 // GNU sin/cos functions set errno while sincos does not. Therefore
2327 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2328 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2329 if (isGNU && !TM.Options.UnsafeFPMath)
2330 return false;
2331 return true;
2332}
2333
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002334/// useSinCos - Only issue sincos libcall if both sin and cos are
2335/// needed.
2336static bool useSinCos(SDNode *Node) {
2337 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2338 ? ISD::FCOS : ISD::FSIN;
Stephen Lincfe7f352013-07-08 00:37:03 +00002339
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002340 SDValue Op0 = Node->getOperand(0);
2341 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2342 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2343 SDNode *User = *UI;
2344 if (User == Node)
2345 continue;
2346 // The other user might have been turned into sincos already.
2347 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2348 return true;
2349 }
2350 return false;
2351}
2352
2353/// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2354/// pairs.
2355void
2356SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2357 SmallVectorImpl<SDValue> &Results) {
2358 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002359 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002360 default: llvm_unreachable("Unexpected request for libcall!");
2361 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2362 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2363 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2364 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2365 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2366 }
Stephen Lincfe7f352013-07-08 00:37:03 +00002367
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002368 // The input chain to this libcall is the entry node of the function.
2369 // Legalizing the call will automatically add the previous call to the
2370 // dependence.
2371 SDValue InChain = DAG.getEntryNode();
Stephen Lincfe7f352013-07-08 00:37:03 +00002372
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002373 EVT RetVT = Node->getValueType(0);
2374 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Stephen Lincfe7f352013-07-08 00:37:03 +00002375
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002376 TargetLowering::ArgListTy Args;
2377 TargetLowering::ArgListEntry Entry;
Stephen Lincfe7f352013-07-08 00:37:03 +00002378
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002379 // Pass the argument.
2380 Entry.Node = Node->getOperand(0);
2381 Entry.Ty = RetTy;
2382 Entry.isSExt = false;
2383 Entry.isZExt = false;
2384 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002385
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002386 // Pass the return address of sin.
2387 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2388 Entry.Node = SinPtr;
2389 Entry.Ty = RetTy->getPointerTo();
2390 Entry.isSExt = false;
2391 Entry.isZExt = false;
2392 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002393
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002394 // Also pass the return address of the cos.
2395 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2396 Entry.Node = CosPtr;
2397 Entry.Ty = RetTy->getPointerTo();
2398 Entry.isSExt = false;
2399 Entry.isZExt = false;
2400 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002401
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002402 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2403 TLI.getPointerTy());
Stephen Lincfe7f352013-07-08 00:37:03 +00002404
Andrew Trickef9de2a2013-05-25 02:42:55 +00002405 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002406 TargetLowering::CallLoweringInfo CLI(DAG);
2407 CLI.setDebugLoc(dl).setChain(InChain)
2408 .setCallee(TLI.getLibcallCallingConv(LC),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002409 Type::getVoidTy(*DAG.getContext()), Callee, std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002410
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002411 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2412
2413 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2414 MachinePointerInfo(), false, false, false, 0));
2415 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2416 MachinePointerInfo(), false, false, false, 0));
2417}
2418
Chris Lattner689bdcc2006-01-28 08:25:58 +00002419/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2420/// INT_TO_FP operation of the specified operand when the target requests that
2421/// we expand it. At this point, we know that the result and operand types are
2422/// legal for the target.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002423SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2424 SDValue Op0,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002425 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002426 SDLoc dl) {
Akira Hatanakaadb14f52012-08-28 02:12:42 +00002427 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002428 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelcf0da6c2009-02-17 22:15:04 +00002429
Chris Lattnera2c7ff32008-01-16 07:03:22 +00002430 // Get the stack frame index of a 8 byte buffer.
Owen Anderson9f944592009-08-11 20:47:22 +00002431 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002432
Chris Lattner689bdcc2006-01-28 08:25:58 +00002433 // word offset constant for Hi/Lo address computation
Tom Stellard838e2342013-08-26 15:06:10 +00002434 SDValue WordOff = DAG.getConstant(sizeof(int), StackSlot.getValueType());
Chris Lattner689bdcc2006-01-28 08:25:58 +00002435 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002436 SDValue Hi = StackSlot;
Tom Stellard838e2342013-08-26 15:06:10 +00002437 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2438 StackSlot, WordOff);
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00002439 if (TLI.isLittleEndian())
2440 std::swap(Hi, Lo);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002441
Chris Lattner689bdcc2006-01-28 08:25:58 +00002442 // if signed map to unsigned space
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002443 SDValue Op0Mapped;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002444 if (isSigned) {
2445 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson9f944592009-08-11 20:47:22 +00002446 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2447 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002448 } else {
2449 Op0Mapped = Op0;
2450 }
2451 // store the lo of the constructed double - based on integer input
Dale Johannesen8525d832009-02-02 19:03:57 +00002452 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00002453 Op0Mapped, Lo, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00002454 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002455 // initial hi portion of constructed double
Owen Anderson9f944592009-08-11 20:47:22 +00002456 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002457 // store the hi of the constructed double - biased exponent
Chris Lattner676c61d2010-09-21 18:41:36 +00002458 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2459 MachinePointerInfo(),
2460 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002461 // load the constructed double
Chris Lattner1ffcf522010-09-21 16:36:31 +00002462 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002463 MachinePointerInfo(), false, false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002464 // FP constant to bias correct the final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002465 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonf074ca72009-04-10 18:48:47 +00002466 BitsToDouble(0x4330000080000000ULL) :
2467 BitsToDouble(0x4330000000000000ULL),
Owen Anderson9f944592009-08-11 20:47:22 +00002468 MVT::f64);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002469 // subtract the bias
Owen Anderson9f944592009-08-11 20:47:22 +00002470 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002471 // final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002472 SDValue Result;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002473 // handle final rounding
Owen Anderson9f944592009-08-11 20:47:22 +00002474 if (DestVT == MVT::f64) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002475 // do nothing
2476 Result = Sub;
Owen Anderson9f944592009-08-11 20:47:22 +00002477 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002478 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner72733e52008-01-17 07:00:52 +00002479 DAG.getIntPtrConstant(0));
Owen Anderson9f944592009-08-11 20:47:22 +00002480 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002481 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002482 }
2483 return Result;
2484 }
2485 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002486 // Code below here assumes !isSigned without checking again.
Dan Gohman14e450f2010-03-06 00:00:55 +00002487
2488 // Implementation of unsigned i64 to f64 following the algorithm in
2489 // __floatundidf in compiler_rt. This implementation has the advantage
2490 // of performing rounding correctly, both in the default rounding mode
2491 // and in all alternate rounding modes.
2492 // TODO: Generalize this for use with other types.
2493 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2494 SDValue TwoP52 =
2495 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2496 SDValue TwoP84PlusTwoP52 =
2497 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2498 SDValue TwoP84 =
2499 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2500
2501 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2502 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2503 DAG.getConstant(32, MVT::i64));
2504 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2505 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peck527da1b2010-11-23 03:31:01 +00002506 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2507 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002508 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2509 TwoP84PlusTwoP52);
Dan Gohman14e450f2010-03-06 00:00:55 +00002510 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2511 }
2512
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002513 // Implementation of unsigned i64 to f32.
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002514 // TODO: Generalize this for use with other types.
2515 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002516 // For unsigned conversions, convert them to signed conversions using the
2517 // algorithm from the x86_64 __floatundidf in compiler_rt.
2518 if (!isSigned) {
2519 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peck527da1b2010-11-23 03:31:01 +00002520
Owen Andersonb2c80da2011-02-25 21:41:48 +00002521 SDValue ShiftConst =
2522 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002523 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2524 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2525 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2526 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peck527da1b2010-11-23 03:31:01 +00002527
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002528 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2529 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peck527da1b2010-11-23 03:31:01 +00002530
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002531 // TODO: This really should be implemented using a branch rather than a
Wesley Peck527da1b2010-11-23 03:31:01 +00002532 // select. We happen to get lucky and machinesink does the right
2533 // thing most of the time. This would be a good candidate for a
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002534 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault758659232013-05-18 00:21:46 +00002535 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002536 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002537 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002538 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002539
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002540 // Otherwise, implement the fully general conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002541
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002542 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002543 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2544 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2545 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002546 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002547 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
Matt Arsenault758659232013-05-18 00:21:46 +00002548 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002549 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002550 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Matt Arsenault758659232013-05-18 00:21:46 +00002551 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002552 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002553 ISD::SETUGE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002554 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00002555 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peck527da1b2010-11-23 03:31:01 +00002556
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002557 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2558 DAG.getConstant(32, SHVT));
2559 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2560 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2561 SDValue TwoP32 =
2562 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2563 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2564 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2565 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2566 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2567 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2568 DAG.getIntPtrConstant(0));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002569 }
2570
Dan Gohman998c7c22010-03-05 02:40:23 +00002571 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002572
Matt Arsenault758659232013-05-18 00:21:46 +00002573 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Dan Gohman998c7c22010-03-05 02:40:23 +00002574 Op0, DAG.getConstant(0, Op0.getValueType()),
2575 ISD::SETLT);
2576 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002577 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohman998c7c22010-03-05 02:40:23 +00002578 SignSet, Four, Zero);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002579
Dan Gohman998c7c22010-03-05 02:40:23 +00002580 // If the sign bit of the integer is set, the large number will be treated
2581 // as a negative number. To counteract this, the dynamic code adds an
2582 // offset depending on the data type.
2583 uint64_t FF;
Craig Topperd9c27832013-08-15 02:44:19 +00002584 switch (Op0.getSimpleValueType().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002585 default: llvm_unreachable("Unsupported integer type!");
Dan Gohman998c7c22010-03-05 02:40:23 +00002586 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2587 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2588 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2589 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2590 }
2591 if (TLI.isLittleEndian()) FF <<= 32;
2592 Constant *FudgeFactor = ConstantInt::get(
2593 Type::getInt64Ty(*DAG.getContext()), FF);
2594
2595 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2596 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Tom Stellard838e2342013-08-26 15:06:10 +00002597 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
Dan Gohman998c7c22010-03-05 02:40:23 +00002598 Alignment = std::min(Alignment, 4u);
2599 SDValue FudgeInReg;
2600 if (DestVT == MVT::f32)
2601 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00002602 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002603 false, false, false, Alignment);
Dan Gohman998c7c22010-03-05 02:40:23 +00002604 else {
Dan Gohman198b7ff2011-11-03 21:49:52 +00002605 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2606 DAG.getEntryNode(), CPIdx,
2607 MachinePointerInfo::getConstantPool(),
Louis Gerbarg67474e32014-07-31 21:45:05 +00002608 MVT::f32, false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +00002609 HandleSDNode Handle(Load);
2610 LegalizeOp(Load.getNode());
2611 FudgeInReg = Handle.getValue();
Dan Gohman998c7c22010-03-05 02:40:23 +00002612 }
2613
2614 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002615}
2616
2617/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2618/// *INT_TO_FP operation of the specified operand when the target requests that
2619/// we promote it. At this point, we know that the result and operand types are
2620/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2621/// operation that takes a larger input.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002622SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002623 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002624 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002625 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002626 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002627 EVT NewInTy = LegalOp.getValueType();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002628
2629 unsigned OpToUse = 0;
2630
2631 // Scan for the appropriate larger type to use.
2632 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002633 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002634 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002635
2636 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002637 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2638 OpToUse = ISD::SINT_TO_FP;
2639 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002640 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002641 if (isSigned) continue;
2642
2643 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002644 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2645 OpToUse = ISD::UINT_TO_FP;
2646 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002647 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002648
2649 // Otherwise, try a larger type.
2650 }
2651
2652 // Okay, we found the operation and type to use. Zero extend our input to the
2653 // desired type then run the operation on it.
Dale Johannesen8525d832009-02-02 19:03:57 +00002654 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner689bdcc2006-01-28 08:25:58 +00002655 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen8525d832009-02-02 19:03:57 +00002656 dl, NewInTy, LegalOp));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002657}
2658
2659/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2660/// FP_TO_*INT operation of the specified operand when the target requests that
2661/// we promote it. At this point, we know that the result and operand types are
2662/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2663/// operation that returns a larger result.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002664SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002665 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002666 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002667 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002668 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002669 EVT NewOutTy = DestVT;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002670
2671 unsigned OpToUse = 0;
2672
2673 // Scan for the appropriate larger type to use.
2674 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002675 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002676 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002677
Tim Northover65277a22014-06-15 09:27:20 +00002678 // A larger signed type can hold all unsigned values of the requested type,
2679 // so using FP_TO_SINT is valid
Eli Friedmane1bc3792009-05-28 03:06:16 +00002680 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002681 OpToUse = ISD::FP_TO_SINT;
2682 break;
2683 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002684
Tim Northover65277a22014-06-15 09:27:20 +00002685 // However, if the value may be < 0.0, we *must* use some FP_TO_SINT.
2686 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002687 OpToUse = ISD::FP_TO_UINT;
2688 break;
2689 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002690
2691 // Otherwise, try a larger type.
2692 }
2693
Scott Michelcf0da6c2009-02-17 22:15:04 +00002694
Chris Lattnerf81d5882007-11-24 07:07:01 +00002695 // Okay, we found the operation and type to use.
Dale Johannesen8525d832009-02-02 19:03:57 +00002696 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands93e180342008-07-04 11:47:58 +00002697
Chris Lattnerf81d5882007-11-24 07:07:01 +00002698 // Truncate the result of the extended FP_TO_*INT operation to the desired
2699 // size.
Dale Johannesen8525d832009-02-02 19:03:57 +00002700 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002701}
2702
2703/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2704///
Andrew Trickef9de2a2013-05-25 02:42:55 +00002705SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002706 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002707 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002708 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson9f944592009-08-11 20:47:22 +00002709 switch (VT.getSimpleVT().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002710 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson9f944592009-08-11 20:47:22 +00002711 case MVT::i16:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002712 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2713 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2714 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002715 case MVT::i32:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002716 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2717 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2718 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2719 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2720 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2721 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2722 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2723 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2724 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002725 case MVT::i64:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002726 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2727 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2728 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2729 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2730 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2731 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2732 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2733 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2734 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2735 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2736 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2737 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2738 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2739 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2740 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2741 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2742 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2743 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2744 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2745 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2746 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002747 }
2748}
2749
2750/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2751///
Scott Michelcf0da6c2009-02-17 22:15:04 +00002752SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002753 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002754 switch (Opc) {
Craig Topperee4dab52012-02-05 08:31:47 +00002755 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002756 case ISD::CTPOP: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002757 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002758 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002759 unsigned Len = VT.getSizeInBits();
2760
Benjamin Kramerbec03ea2011-01-15 21:19:37 +00002761 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2762 "CTPOP not implemented for this type.");
2763
Benjamin Kramerfff25172011-01-15 20:30:30 +00002764 // This is the "best" algorithm from
2765 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2766
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00002767 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), VT);
2768 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), VT);
2769 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), VT);
2770 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002771
2772 // v = v - ((v >> 1) & 0x55555555...)
2773 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2774 DAG.getNode(ISD::AND, dl, VT,
2775 DAG.getNode(ISD::SRL, dl, VT, Op,
2776 DAG.getConstant(1, ShVT)),
2777 Mask55));
2778 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2779 Op = DAG.getNode(ISD::ADD, dl, VT,
2780 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2781 DAG.getNode(ISD::AND, dl, VT,
2782 DAG.getNode(ISD::SRL, dl, VT, Op,
2783 DAG.getConstant(2, ShVT)),
2784 Mask33));
2785 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2786 Op = DAG.getNode(ISD::AND, dl, VT,
2787 DAG.getNode(ISD::ADD, dl, VT, Op,
2788 DAG.getNode(ISD::SRL, dl, VT, Op,
2789 DAG.getConstant(4, ShVT))),
2790 Mask0F);
2791 // v = (v * 0x01010101...) >> (Len - 8)
2792 Op = DAG.getNode(ISD::SRL, dl, VT,
2793 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2794 DAG.getConstant(Len - 8, ShVT));
Owen Andersonb2c80da2011-02-25 21:41:48 +00002795
Chris Lattner689bdcc2006-01-28 08:25:58 +00002796 return Op;
2797 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002798 case ISD::CTLZ_ZERO_UNDEF:
2799 // This trivially expands to CTLZ.
2800 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002801 case ISD::CTLZ: {
2802 // for now, we do this:
2803 // x = x | (x >> 1);
2804 // x = x | (x >> 2);
2805 // ...
2806 // x = x | (x >>16);
2807 // x = x | (x >>32); // for 64-bit input
2808 // return popcount(~x);
2809 //
2810 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Anderson53aa7a92009-08-10 22:56:29 +00002811 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002812 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands13237ac2008-06-06 12:08:01 +00002813 unsigned len = VT.getSizeInBits();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002814 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002815 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002816 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesendc93bbc2009-02-06 21:55:48 +00002817 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002818 }
Dale Johannesena02e45c2009-02-02 22:12:50 +00002819 Op = DAG.getNOT(dl, Op, VT);
2820 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002821 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002822 case ISD::CTTZ_ZERO_UNDEF:
2823 // This trivially expands to CTTZ.
2824 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002825 case ISD::CTTZ: {
2826 // for now, we use: { return popcount(~x & (x - 1)); }
2827 // unless the target has ctlz but not ctpop, in which case we use:
2828 // { return 32 - nlz(~x & (x-1)); }
2829 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Anderson53aa7a92009-08-10 22:56:29 +00002830 EVT VT = Op.getValueType();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002831 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2832 DAG.getNOT(dl, Op, VT),
2833 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling8fb81f12009-01-30 23:03:19 +00002834 DAG.getConstant(1, VT)));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002835 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman4aa18462009-01-28 17:46:25 +00002836 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2837 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesena02e45c2009-02-02 22:12:50 +00002838 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands13237ac2008-06-06 12:08:01 +00002839 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesena02e45c2009-02-02 22:12:50 +00002840 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2841 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002842 }
2843 }
2844}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002845
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002846std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2847 unsigned Opc = Node->getOpcode();
2848 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2849 RTLIB::Libcall LC;
2850
2851 switch (Opc) {
2852 default:
2853 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbacha57c2882010-06-18 23:03:10 +00002854 case ISD::ATOMIC_SWAP:
2855 switch (VT.SimpleTy) {
2856 default: llvm_unreachable("Unexpected value type for atomic!");
2857 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2858 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2859 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2860 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002861 case MVT::i128:LC = RTLIB::SYNC_LOCK_TEST_AND_SET_16;break;
Jim Grosbacha57c2882010-06-18 23:03:10 +00002862 }
2863 break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002864 case ISD::ATOMIC_CMP_SWAP:
2865 switch (VT.SimpleTy) {
2866 default: llvm_unreachable("Unexpected value type for atomic!");
2867 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2868 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2869 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2870 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002871 case MVT::i128:LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002872 }
2873 break;
2874 case ISD::ATOMIC_LOAD_ADD:
2875 switch (VT.SimpleTy) {
2876 default: llvm_unreachable("Unexpected value type for atomic!");
2877 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2878 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2879 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2880 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002881 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_ADD_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002882 }
2883 break;
2884 case ISD::ATOMIC_LOAD_SUB:
2885 switch (VT.SimpleTy) {
2886 default: llvm_unreachable("Unexpected value type for atomic!");
2887 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2888 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2889 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2890 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002891 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_SUB_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002892 }
2893 break;
2894 case ISD::ATOMIC_LOAD_AND:
2895 switch (VT.SimpleTy) {
2896 default: llvm_unreachable("Unexpected value type for atomic!");
2897 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2898 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2899 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2900 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002901 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_AND_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002902 }
2903 break;
2904 case ISD::ATOMIC_LOAD_OR:
2905 switch (VT.SimpleTy) {
2906 default: llvm_unreachable("Unexpected value type for atomic!");
2907 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2908 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2909 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2910 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002911 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_OR_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002912 }
2913 break;
2914 case ISD::ATOMIC_LOAD_XOR:
2915 switch (VT.SimpleTy) {
2916 default: llvm_unreachable("Unexpected value type for atomic!");
2917 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2918 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2919 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2920 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002921 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_XOR_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002922 }
2923 break;
2924 case ISD::ATOMIC_LOAD_NAND:
2925 switch (VT.SimpleTy) {
2926 default: llvm_unreachable("Unexpected value type for atomic!");
2927 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2928 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2929 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2930 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002931 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_NAND_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002932 }
2933 break;
Tim Northovera564d322013-10-25 09:30:20 +00002934 case ISD::ATOMIC_LOAD_MAX:
2935 switch (VT.SimpleTy) {
2936 default: llvm_unreachable("Unexpected value type for atomic!");
2937 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MAX_1; break;
2938 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MAX_2; break;
2939 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MAX_4; break;
2940 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MAX_8; break;
2941 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MAX_16;break;
2942 }
2943 break;
2944 case ISD::ATOMIC_LOAD_UMAX:
2945 switch (VT.SimpleTy) {
2946 default: llvm_unreachable("Unexpected value type for atomic!");
2947 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMAX_1; break;
2948 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMAX_2; break;
2949 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMAX_4; break;
2950 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMAX_8; break;
2951 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMAX_16;break;
2952 }
2953 break;
2954 case ISD::ATOMIC_LOAD_MIN:
2955 switch (VT.SimpleTy) {
2956 default: llvm_unreachable("Unexpected value type for atomic!");
2957 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MIN_1; break;
2958 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MIN_2; break;
2959 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MIN_4; break;
2960 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MIN_8; break;
2961 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MIN_16;break;
2962 }
2963 break;
2964 case ISD::ATOMIC_LOAD_UMIN:
2965 switch (VT.SimpleTy) {
2966 default: llvm_unreachable("Unexpected value type for atomic!");
2967 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMIN_1; break;
2968 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMIN_2; break;
2969 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMIN_4; break;
2970 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMIN_8; break;
2971 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMIN_16;break;
2972 }
2973 break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002974 }
2975
2976 return ExpandChainLibCall(LC, Node, false);
2977}
2978
Dan Gohman198b7ff2011-11-03 21:49:52 +00002979void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2980 SmallVector<SDValue, 8> Results;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002981 SDLoc dl(Node);
Eli Friedmane1dc1932009-05-28 20:40:34 +00002982 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Daniel Sandersedc071b2013-11-21 13:24:49 +00002983 bool NeedInvert;
Eli Friedman21d349b2009-05-27 01:25:56 +00002984 switch (Node->getOpcode()) {
2985 case ISD::CTPOP:
2986 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002987 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002988 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002989 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002990 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2991 Results.push_back(Tmp1);
2992 break;
2993 case ISD::BSWAP:
Bill Wendlingef408db2009-12-23 00:28:23 +00002994 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman21d349b2009-05-27 01:25:56 +00002995 break;
2996 case ISD::FRAMEADDR:
2997 case ISD::RETURNADDR:
2998 case ISD::FRAME_TO_ARGS_OFFSET:
2999 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
3000 break;
3001 case ISD::FLT_ROUNDS_:
3002 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
3003 break;
3004 case ISD::EH_RETURN:
Eli Friedman21d349b2009-05-27 01:25:56 +00003005 case ISD::EH_LABEL:
3006 case ISD::PREFETCH:
Eli Friedman21d349b2009-05-27 01:25:56 +00003007 case ISD::VAEND:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00003008 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00003009 // If the target didn't expand these, there's nothing to do, so just
3010 // preserve the chain and be done.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00003011 Results.push_back(Node->getOperand(0));
3012 break;
3013 case ISD::EH_SJLJ_SETJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00003014 // If the target didn't expand this, just return 'zero' and preserve the
3015 // chain.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00003016 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman21d349b2009-05-27 01:25:56 +00003017 Results.push_back(Node->getOperand(0));
3018 break;
Tim Northovera2b53392013-04-20 12:32:17 +00003019 case ISD::ATOMIC_FENCE: {
Jim Grosbachba451e82010-06-17 02:00:53 +00003020 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman26a48482011-07-27 22:21:52 +00003021 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachba451e82010-06-17 02:00:53 +00003022 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003023
3024 TargetLowering::CallLoweringInfo CLI(DAG);
3025 CLI.setDebugLoc(dl).setChain(Node->getOperand(0))
3026 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00003027 DAG.getExternalSymbol("__sync_synchronize",
3028 TLI.getPointerTy()), std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003029
Justin Holewinskiaa583972012-05-25 16:35:28 +00003030 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3031
Jim Grosbachba451e82010-06-17 02:00:53 +00003032 Results.push_back(CallResult.second);
3033 break;
3034 }
Eli Friedman452aae62011-08-26 02:59:24 +00003035 case ISD::ATOMIC_LOAD: {
3036 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedmanee8f14a72011-09-15 21:20:49 +00003037 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Tim Northover420a2162014-06-13 14:24:07 +00003038 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3039 SDValue Swap = DAG.getAtomicCmpSwap(
3040 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
3041 Node->getOperand(0), Node->getOperand(1), Zero, Zero,
3042 cast<AtomicSDNode>(Node)->getMemOperand(),
3043 cast<AtomicSDNode>(Node)->getOrdering(),
3044 cast<AtomicSDNode>(Node)->getOrdering(),
3045 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman452aae62011-08-26 02:59:24 +00003046 Results.push_back(Swap.getValue(0));
3047 Results.push_back(Swap.getValue(1));
3048 break;
3049 }
3050 case ISD::ATOMIC_STORE: {
3051 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
3052 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
3053 cast<AtomicSDNode>(Node)->getMemoryVT(),
3054 Node->getOperand(0),
3055 Node->getOperand(1), Node->getOperand(2),
3056 cast<AtomicSDNode>(Node)->getMemOperand(),
3057 cast<AtomicSDNode>(Node)->getOrdering(),
3058 cast<AtomicSDNode>(Node)->getSynchScope());
3059 Results.push_back(Swap.getValue(1));
3060 break;
3061 }
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00003062 // By default, atomic intrinsics are marked Legal and lowered. Targets
3063 // which don't support them directly, however, may want libcalls, in which
3064 // case they mark them Expand, and we get here.
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00003065 case ISD::ATOMIC_SWAP:
3066 case ISD::ATOMIC_LOAD_ADD:
3067 case ISD::ATOMIC_LOAD_SUB:
3068 case ISD::ATOMIC_LOAD_AND:
3069 case ISD::ATOMIC_LOAD_OR:
3070 case ISD::ATOMIC_LOAD_XOR:
3071 case ISD::ATOMIC_LOAD_NAND:
3072 case ISD::ATOMIC_LOAD_MIN:
3073 case ISD::ATOMIC_LOAD_MAX:
3074 case ISD::ATOMIC_LOAD_UMIN:
3075 case ISD::ATOMIC_LOAD_UMAX:
Evan Chengf5d62532010-06-18 22:01:37 +00003076 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00003077 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
3078 Results.push_back(Tmp.first);
3079 Results.push_back(Tmp.second);
Jim Grosbach0ed5b462010-06-17 17:58:54 +00003080 break;
Evan Chengf5d62532010-06-18 22:01:37 +00003081 }
Tim Northover420a2162014-06-13 14:24:07 +00003082 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
3083 // Expanding an ATOMIC_CMP_SWAP_WITH_SUCCESS produces an ATOMIC_CMP_SWAP and
3084 // splits out the success value as a comparison. Expanding the resulting
3085 // ATOMIC_CMP_SWAP will produce a libcall.
3086 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3087 SDValue Res = DAG.getAtomicCmpSwap(
3088 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
3089 Node->getOperand(0), Node->getOperand(1), Node->getOperand(2),
3090 Node->getOperand(3), cast<MemSDNode>(Node)->getMemOperand(),
3091 cast<AtomicSDNode>(Node)->getSuccessOrdering(),
3092 cast<AtomicSDNode>(Node)->getFailureOrdering(),
3093 cast<AtomicSDNode>(Node)->getSynchScope());
3094
3095 SDValue Success = DAG.getSetCC(SDLoc(Node), Node->getValueType(1),
3096 Res, Node->getOperand(2), ISD::SETEQ);
3097
3098 Results.push_back(Res.getValue(0));
3099 Results.push_back(Success);
3100 Results.push_back(Res.getValue(1));
3101 break;
3102 }
Eli Friedman2892d822009-05-27 12:20:41 +00003103 case ISD::DYNAMIC_STACKALLOC:
3104 ExpandDYNAMIC_STACKALLOC(Node, Results);
3105 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003106 case ISD::MERGE_VALUES:
3107 for (unsigned i = 0; i < Node->getNumValues(); i++)
3108 Results.push_back(Node->getOperand(i));
3109 break;
3110 case ISD::UNDEF: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003111 EVT VT = Node->getValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00003112 if (VT.isInteger())
3113 Results.push_back(DAG.getConstant(0, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003114 else {
3115 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman21d349b2009-05-27 01:25:56 +00003116 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003117 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003118 break;
3119 }
3120 case ISD::TRAP: {
3121 // If this operation is not supported, lower it to 'abort()' call
3122 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003123 TargetLowering::CallLoweringInfo CLI(DAG);
3124 CLI.setDebugLoc(dl).setChain(Node->getOperand(0))
3125 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00003126 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3127 std::move(Args), 0);
Justin Holewinskiaa583972012-05-25 16:35:28 +00003128 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3129
Eli Friedman21d349b2009-05-27 01:25:56 +00003130 Results.push_back(CallResult.second);
3131 break;
3132 }
3133 case ISD::FP_ROUND:
Wesley Peck527da1b2010-11-23 03:31:01 +00003134 case ISD::BITCAST:
Eli Friedman21d349b2009-05-27 01:25:56 +00003135 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3136 Node->getValueType(0), dl);
3137 Results.push_back(Tmp1);
3138 break;
3139 case ISD::FP_EXTEND:
3140 Tmp1 = EmitStackConvert(Node->getOperand(0),
3141 Node->getOperand(0).getValueType(),
3142 Node->getValueType(0), dl);
3143 Results.push_back(Tmp1);
3144 break;
3145 case ISD::SIGN_EXTEND_INREG: {
3146 // NOTE: we could fall back on load/store here too for targets without
3147 // SAR. However, it is doubtful that any exist.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003148 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman1d459e42009-12-11 21:31:27 +00003149 EVT VT = Node->getValueType(0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00003150 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003151 if (VT.isVector())
Dan Gohman1d459e42009-12-11 21:31:27 +00003152 ShiftAmountTy = VT;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003153 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
3154 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman1d459e42009-12-11 21:31:27 +00003155 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman21d349b2009-05-27 01:25:56 +00003156 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
3157 Node->getOperand(0), ShiftCst);
Bill Wendlingef408db2009-12-23 00:28:23 +00003158 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
3159 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003160 break;
3161 }
3162 case ISD::FP_ROUND_INREG: {
3163 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003164 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman21d349b2009-05-27 01:25:56 +00003165
3166 // NOTE: there is a choice here between constantly creating new stack
3167 // slots and always reusing the same one. We currently always create
3168 // new ones, as reuse may inhibit scheduling.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003169 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00003170 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
3171 Node->getValueType(0), dl);
3172 Results.push_back(Tmp1);
3173 break;
3174 }
3175 case ISD::SINT_TO_FP:
3176 case ISD::UINT_TO_FP:
3177 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
3178 Node->getOperand(0), Node->getValueType(0), dl);
3179 Results.push_back(Tmp1);
3180 break;
Jan Veselyeca89d22014-07-10 22:40:18 +00003181 case ISD::FP_TO_SINT:
3182 if (TLI.expandFP_TO_SINT(Node, Tmp1, DAG))
3183 Results.push_back(Tmp1);
Tom Stellardaad46592014-06-17 16:53:07 +00003184 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003185 case ISD::FP_TO_UINT: {
3186 SDValue True, False;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003187 EVT VT = Node->getOperand(0).getValueType();
3188 EVT NVT = Node->getValueType(0);
Tim Northover29178a32013-01-22 09:46:31 +00003189 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
3190 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman21d349b2009-05-27 01:25:56 +00003191 APInt x = APInt::getSignBit(NVT.getSizeInBits());
3192 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
3193 Tmp1 = DAG.getConstantFP(apf, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003194 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman21d349b2009-05-27 01:25:56 +00003195 Node->getOperand(0),
3196 Tmp1, ISD::SETLT);
3197 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003198 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
3199 DAG.getNode(ISD::FSUB, dl, VT,
3200 Node->getOperand(0), Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00003201 False = DAG.getNode(ISD::XOR, dl, NVT, False,
3202 DAG.getConstant(x, NVT));
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003203 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman21d349b2009-05-27 01:25:56 +00003204 Results.push_back(Tmp1);
3205 break;
3206 }
Eli Friedman3b251702009-05-27 07:58:35 +00003207 case ISD::VAARG: {
3208 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003209 EVT VT = Node->getValueType(0);
Eli Friedman3b251702009-05-27 07:58:35 +00003210 Tmp1 = Node->getOperand(0);
3211 Tmp2 = Node->getOperand(1);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003212 unsigned Align = Node->getConstantOperandVal(3);
3213
Chris Lattner1ffcf522010-09-21 16:36:31 +00003214 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Stephen Lincfe7f352013-07-08 00:37:03 +00003215 MachinePointerInfo(V),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003216 false, false, false, 0);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003217 SDValue VAList = VAListLoad;
3218
Rafael Espindolaa76eccf2010-07-11 04:01:49 +00003219 if (Align > TLI.getMinStackArgumentAlignment()) {
3220 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
3221
Tom Stellard838e2342013-08-26 15:06:10 +00003222 VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Rafael Espindola2041abd2010-06-26 18:22:20 +00003223 DAG.getConstant(Align - 1,
Tom Stellard838e2342013-08-26 15:06:10 +00003224 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003225
Tom Stellard838e2342013-08-26 15:06:10 +00003226 VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList,
Chris Lattnereb313a42010-10-10 18:36:26 +00003227 DAG.getConstant(-(int64_t)Align,
Tom Stellard838e2342013-08-26 15:06:10 +00003228 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003229 }
3230
Eli Friedman3b251702009-05-27 07:58:35 +00003231 // Increment the pointer, VAList, to the next vaarg
Tom Stellard838e2342013-08-26 15:06:10 +00003232 Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003233 DAG.getConstant(TLI.getDataLayout()->
Evan Cheng87b4f7c2010-04-15 01:25:27 +00003234 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Tom Stellard838e2342013-08-26 15:06:10 +00003235 VAList.getValueType()));
Eli Friedman3b251702009-05-27 07:58:35 +00003236 // Store the incremented VAList to the legalized pointer
Chris Lattner676c61d2010-09-21 18:41:36 +00003237 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
3238 MachinePointerInfo(V), false, false, 0);
Eli Friedman3b251702009-05-27 07:58:35 +00003239 // Load the actual argument out of the pointer VAList
Chris Lattner1ffcf522010-09-21 16:36:31 +00003240 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003241 false, false, false, 0));
Eli Friedman3b251702009-05-27 07:58:35 +00003242 Results.push_back(Results[0].getValue(1));
3243 break;
3244 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003245 case ISD::VACOPY: {
3246 // This defaults to loading a pointer from the input and storing it to the
3247 // output, returning the chain.
3248 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3249 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3250 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattner1ffcf522010-09-21 16:36:31 +00003251 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003252 false, false, false, 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +00003253 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
3254 MachinePointerInfo(VD), false, false, 0);
Bill Wendlingef408db2009-12-23 00:28:23 +00003255 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003256 break;
3257 }
3258 case ISD::EXTRACT_VECTOR_ELT:
3259 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3260 // This must be an access of the only element. Return it.
Wesley Peck527da1b2010-11-23 03:31:01 +00003261 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman21d349b2009-05-27 01:25:56 +00003262 Node->getOperand(0));
3263 else
3264 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3265 Results.push_back(Tmp1);
3266 break;
3267 case ISD::EXTRACT_SUBVECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003268 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00003269 break;
David Greenebab5e6e2011-01-26 19:13:22 +00003270 case ISD::INSERT_SUBVECTOR:
3271 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3272 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003273 case ISD::CONCAT_VECTORS: {
Bill Wendlingef408db2009-12-23 00:28:23 +00003274 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman3b251702009-05-27 07:58:35 +00003275 break;
3276 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003277 case ISD::SCALAR_TO_VECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003278 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman21d349b2009-05-27 01:25:56 +00003279 break;
Eli Friedmana8f9a022009-05-27 02:16:40 +00003280 case ISD::INSERT_VECTOR_ELT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003281 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3282 Node->getOperand(1),
3283 Node->getOperand(2), dl));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003284 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003285 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00003286 SmallVector<int, 32> NewMask;
3287 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00003288
Owen Anderson53aa7a92009-08-10 22:56:29 +00003289 EVT VT = Node->getValueType(0);
3290 EVT EltVT = VT.getVectorElementType();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003291 SDValue Op0 = Node->getOperand(0);
3292 SDValue Op1 = Node->getOperand(1);
3293 if (!TLI.isTypeLegal(EltVT)) {
3294
3295 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3296
3297 // BUILD_VECTOR operands are allowed to be wider than the element type.
Jack Carter5c0af482013-11-19 23:43:22 +00003298 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept
3299 // it.
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003300 if (NewEltVT.bitsLT(EltVT)) {
3301
3302 // Convert shuffle node.
3303 // If original node was v4i64 and the new EltVT is i32,
3304 // cast operands to v8i32 and re-build the mask.
3305
3306 // Calculate new VT, the size of the new VT should be equal to original.
Jack Carter5c0af482013-11-19 23:43:22 +00003307 EVT NewVT =
3308 EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3309 VT.getSizeInBits() / NewEltVT.getSizeInBits());
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003310 assert(NewVT.bitsEq(VT));
3311
3312 // cast operands to new VT
3313 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3314 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3315
3316 // Convert the shuffle mask
Jack Carter5c0af482013-11-19 23:43:22 +00003317 unsigned int factor =
3318 NewVT.getVectorNumElements()/VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003319
3320 // EltVT gets smaller
3321 assert(factor > 0);
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003322
3323 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3324 if (Mask[i] < 0) {
3325 for (unsigned fi = 0; fi < factor; ++fi)
3326 NewMask.push_back(Mask[i]);
3327 }
3328 else {
3329 for (unsigned fi = 0; fi < factor; ++fi)
3330 NewMask.push_back(Mask[i]*factor+fi);
3331 }
3332 }
3333 Mask = NewMask;
3334 VT = NewVT;
3335 }
3336 EltVT = NewEltVT;
3337 }
Eli Friedman3b251702009-05-27 07:58:35 +00003338 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003339 SmallVector<SDValue, 16> Ops;
Eli Friedman3b251702009-05-27 07:58:35 +00003340 for (unsigned i = 0; i != NumElems; ++i) {
3341 if (Mask[i] < 0) {
3342 Ops.push_back(DAG.getUNDEF(EltVT));
3343 continue;
3344 }
3345 unsigned Idx = Mask[i];
3346 if (Idx < NumElems)
Bill Wendlingef408db2009-12-23 00:28:23 +00003347 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003348 Op0,
Tom Stellardd42c5942013-08-05 22:22:01 +00003349 DAG.getConstant(Idx, TLI.getVectorIdxTy())));
Eli Friedman3b251702009-05-27 07:58:35 +00003350 else
Bill Wendlingef408db2009-12-23 00:28:23 +00003351 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003352 Op1,
Tom Stellardd42c5942013-08-05 22:22:01 +00003353 DAG.getConstant(Idx - NumElems,
3354 TLI.getVectorIdxTy())));
Eli Friedman3b251702009-05-27 07:58:35 +00003355 }
Nadav Rotem61bdf792012-01-10 14:28:46 +00003356
Craig Topper48d114b2014-04-26 18:35:24 +00003357 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
Nadav Rotem61bdf792012-01-10 14:28:46 +00003358 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3359 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00003360 Results.push_back(Tmp1);
3361 break;
3362 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003363 case ISD::EXTRACT_ELEMENT: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003364 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman21d349b2009-05-27 01:25:56 +00003365 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3366 // 1 -> Hi
3367 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3368 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003369 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman21d349b2009-05-27 01:25:56 +00003370 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3371 } else {
3372 // 0 -> Lo
3373 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3374 Node->getOperand(0));
3375 }
3376 Results.push_back(Tmp1);
3377 break;
3378 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003379 case ISD::STACKSAVE:
3380 // Expand to CopyFromReg if the target set
3381 // StackPointerRegisterToSaveRestore.
3382 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003383 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3384 Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003385 Results.push_back(Results[0].getValue(1));
3386 } else {
Bill Wendlingef408db2009-12-23 00:28:23 +00003387 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003388 Results.push_back(Node->getOperand(0));
3389 }
3390 break;
3391 case ISD::STACKRESTORE:
Bill Wendlingef408db2009-12-23 00:28:23 +00003392 // Expand to CopyToReg if the target set
3393 // StackPointerRegisterToSaveRestore.
3394 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3395 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3396 Node->getOperand(1)));
3397 } else {
3398 Results.push_back(Node->getOperand(0));
3399 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003400 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003401 case ISD::FCOPYSIGN:
Bill Wendlingef408db2009-12-23 00:28:23 +00003402 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00003403 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003404 case ISD::FNEG:
3405 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3406 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3407 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3408 Node->getOperand(0));
3409 Results.push_back(Tmp1);
3410 break;
3411 case ISD::FABS: {
3412 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Anderson53aa7a92009-08-10 22:56:29 +00003413 EVT VT = Node->getValueType(0);
Eli Friedmand6f28342009-05-27 03:33:44 +00003414 Tmp1 = Node->getOperand(0);
3415 Tmp2 = DAG.getConstantFP(0.0, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003416 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
Eli Friedmand6f28342009-05-27 03:33:44 +00003417 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendlingef408db2009-12-23 00:28:23 +00003418 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003419 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmand6f28342009-05-27 03:33:44 +00003420 Results.push_back(Tmp1);
3421 break;
3422 }
3423 case ISD::FSQRT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003424 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003425 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3426 RTLIB::SQRT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003427 break;
3428 case ISD::FSIN:
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003429 case ISD::FCOS: {
3430 EVT VT = Node->getValueType(0);
3431 bool isSIN = Node->getOpcode() == ISD::FSIN;
3432 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3433 // fcos which share the same operand and both are used.
3434 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmondf29ddfe2013-02-15 18:45:18 +00003435 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003436 && useSinCos(Node)) {
3437 SDVTList VTs = DAG.getVTList(VT, VT);
3438 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3439 if (!isSIN)
3440 Tmp1 = Tmp1.getValue(1);
3441 Results.push_back(Tmp1);
3442 } else if (isSIN) {
3443 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3444 RTLIB::SIN_F80, RTLIB::SIN_F128,
3445 RTLIB::SIN_PPCF128));
3446 } else {
3447 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3448 RTLIB::COS_F80, RTLIB::COS_F128,
3449 RTLIB::COS_PPCF128));
3450 }
Eli Friedmand6f28342009-05-27 03:33:44 +00003451 break;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003452 }
3453 case ISD::FSINCOS:
3454 // Expand into sincos libcall.
3455 ExpandSinCosLibCall(Node, Results);
Eli Friedmand6f28342009-05-27 03:33:44 +00003456 break;
3457 case ISD::FLOG:
Bill Wendlingef408db2009-12-23 00:28:23 +00003458 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003459 RTLIB::LOG_F80, RTLIB::LOG_F128,
3460 RTLIB::LOG_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003461 break;
3462 case ISD::FLOG2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003463 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003464 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3465 RTLIB::LOG2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003466 break;
3467 case ISD::FLOG10:
Bill Wendlingef408db2009-12-23 00:28:23 +00003468 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003469 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3470 RTLIB::LOG10_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003471 break;
3472 case ISD::FEXP:
Bill Wendlingef408db2009-12-23 00:28:23 +00003473 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003474 RTLIB::EXP_F80, RTLIB::EXP_F128,
3475 RTLIB::EXP_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003476 break;
3477 case ISD::FEXP2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003478 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003479 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3480 RTLIB::EXP2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003481 break;
3482 case ISD::FTRUNC:
Bill Wendlingef408db2009-12-23 00:28:23 +00003483 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003484 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3485 RTLIB::TRUNC_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003486 break;
3487 case ISD::FFLOOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003488 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003489 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3490 RTLIB::FLOOR_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003491 break;
3492 case ISD::FCEIL:
Bill Wendlingef408db2009-12-23 00:28:23 +00003493 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003494 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3495 RTLIB::CEIL_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003496 break;
3497 case ISD::FRINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003498 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003499 RTLIB::RINT_F80, RTLIB::RINT_F128,
3500 RTLIB::RINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003501 break;
3502 case ISD::FNEARBYINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003503 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3504 RTLIB::NEARBYINT_F64,
3505 RTLIB::NEARBYINT_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003506 RTLIB::NEARBYINT_F128,
Bill Wendlingef408db2009-12-23 00:28:23 +00003507 RTLIB::NEARBYINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003508 break;
Hal Finkel171817e2013-08-07 22:49:12 +00003509 case ISD::FROUND:
3510 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3511 RTLIB::ROUND_F64,
3512 RTLIB::ROUND_F80,
3513 RTLIB::ROUND_F128,
3514 RTLIB::ROUND_PPCF128));
3515 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003516 case ISD::FPOWI:
Bill Wendlingef408db2009-12-23 00:28:23 +00003517 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003518 RTLIB::POWI_F80, RTLIB::POWI_F128,
3519 RTLIB::POWI_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003520 break;
3521 case ISD::FPOW:
Bill Wendlingef408db2009-12-23 00:28:23 +00003522 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003523 RTLIB::POW_F80, RTLIB::POW_F128,
3524 RTLIB::POW_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003525 break;
3526 case ISD::FDIV:
Bill Wendlingef408db2009-12-23 00:28:23 +00003527 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003528 RTLIB::DIV_F80, RTLIB::DIV_F128,
3529 RTLIB::DIV_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003530 break;
3531 case ISD::FREM:
Bill Wendlingef408db2009-12-23 00:28:23 +00003532 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003533 RTLIB::REM_F80, RTLIB::REM_F128,
3534 RTLIB::REM_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003535 break;
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003536 case ISD::FMA:
3537 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003538 RTLIB::FMA_F80, RTLIB::FMA_F128,
3539 RTLIB::FMA_PPCF128));
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003540 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00003541 case ISD::FP16_TO_FP: {
3542 if (Node->getValueType(0) == MVT::f32) {
3543 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3544 break;
3545 }
3546
3547 // We can extend to types bigger than f32 in two steps without changing the
3548 // result. Since "f16 -> f32" is much more commonly available, give CodeGen
3549 // the option of emitting that before resorting to a libcall.
3550 SDValue Res =
3551 DAG.getNode(ISD::FP16_TO_FP, dl, MVT::f32, Node->getOperand(0));
3552 Results.push_back(
3553 DAG.getNode(ISD::FP_EXTEND, dl, Node->getValueType(0), Res));
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003554 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00003555 }
Tim Northover84ce0a62014-07-17 11:12:12 +00003556 case ISD::FP_TO_FP16: {
3557 RTLIB::Libcall LC =
3558 RTLIB::getFPROUND(Node->getOperand(0).getValueType(), MVT::f16);
3559 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unable to expand fp_to_fp16");
3560 Results.push_back(ExpandLibCall(LC, Node, false));
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003561 break;
Tim Northover84ce0a62014-07-17 11:12:12 +00003562 }
Eli Friedman0e494312009-05-27 07:32:27 +00003563 case ISD::ConstantFP: {
3564 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendlingef408db2009-12-23 00:28:23 +00003565 // Check to see if this FP immediate is already legal.
3566 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman198b7ff2011-11-03 21:49:52 +00003567 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3568 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedman0e494312009-05-27 07:32:27 +00003569 break;
3570 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003571 case ISD::FSUB: {
3572 EVT VT = Node->getValueType(0);
3573 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3574 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3575 "Don't know how to expand this FP subtraction!");
3576 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3577 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3578 Results.push_back(Tmp1);
3579 break;
3580 }
Eli Friedman56883962009-05-27 07:05:37 +00003581 case ISD::SUB: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003582 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003583 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3584 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3585 "Don't know how to expand this subtraction!");
3586 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3587 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Andersonf2118ea2012-05-21 22:39:20 +00003588 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendlingef408db2009-12-23 00:28:23 +00003589 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman56883962009-05-27 07:05:37 +00003590 break;
3591 }
Eli Friedman0e494312009-05-27 07:32:27 +00003592 case ISD::UREM:
3593 case ISD::SREM: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003594 EVT VT = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003595 bool isSigned = Node->getOpcode() == ISD::SREM;
3596 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3597 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3598 Tmp2 = Node->getOperand(0);
3599 Tmp3 = Node->getOperand(1);
Evan Chengb14ce092011-04-16 03:08:26 +00003600 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3601 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng21c4adc2012-10-12 01:15:47 +00003602 // If div is legal, it's better to do the normal expansion
3603 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003604 useDivRem(Node, isSigned, false))) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003605 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmane1bc3792009-05-28 03:06:16 +00003606 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3607 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedman0e494312009-05-27 07:32:27 +00003608 // X % Y -> X-X/Y*Y
3609 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3610 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3611 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Chengb14ce092011-04-16 03:08:26 +00003612 } else if (isSigned)
3613 Tmp1 = ExpandIntLibCall(Node, true,
3614 RTLIB::SREM_I8,
3615 RTLIB::SREM_I16, RTLIB::SREM_I32,
3616 RTLIB::SREM_I64, RTLIB::SREM_I128);
3617 else
3618 Tmp1 = ExpandIntLibCall(Node, false,
3619 RTLIB::UREM_I8,
3620 RTLIB::UREM_I16, RTLIB::UREM_I32,
3621 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003622 Results.push_back(Tmp1);
3623 break;
3624 }
Eli Friedman0e494312009-05-27 07:32:27 +00003625 case ISD::UDIV:
3626 case ISD::SDIV: {
3627 bool isSigned = Node->getOpcode() == ISD::SDIV;
3628 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003629 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003630 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Chengb14ce092011-04-16 03:08:26 +00003631 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3632 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003633 useDivRem(Node, isSigned, true)))
Eli Friedman0e494312009-05-27 07:32:27 +00003634 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3635 Node->getOperand(1));
Evan Chengb14ce092011-04-16 03:08:26 +00003636 else if (isSigned)
3637 Tmp1 = ExpandIntLibCall(Node, true,
3638 RTLIB::SDIV_I8,
3639 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3640 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3641 else
3642 Tmp1 = ExpandIntLibCall(Node, false,
3643 RTLIB::UDIV_I8,
3644 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3645 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003646 Results.push_back(Tmp1);
3647 break;
3648 }
3649 case ISD::MULHU:
3650 case ISD::MULHS: {
3651 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3652 ISD::SMUL_LOHI;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003653 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003654 SDVTList VTs = DAG.getVTList(VT, VT);
3655 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3656 "If this wasn't legal, it shouldn't have been created!");
3657 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3658 Node->getOperand(1));
3659 Results.push_back(Tmp1.getValue(1));
3660 break;
3661 }
Evan Chengb14ce092011-04-16 03:08:26 +00003662 case ISD::SDIVREM:
3663 case ISD::UDIVREM:
3664 // Expand into divrem libcall
3665 ExpandDivRemLibCall(Node, Results);
3666 break;
Eli Friedman56883962009-05-27 07:05:37 +00003667 case ISD::MUL: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003668 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003669 SDVTList VTs = DAG.getVTList(VT, VT);
3670 // See if multiply or divide can be lowered using two-result operations.
3671 // We just need the low half of the multiply; try both the signed
3672 // and unsigned forms. If the target supports both SMUL_LOHI and
3673 // UMUL_LOHI, form a preference by checking which forms of plain
3674 // MULH it supports.
3675 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3676 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3677 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3678 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3679 unsigned OpToUse = 0;
3680 if (HasSMUL_LOHI && !HasMULHS) {
3681 OpToUse = ISD::SMUL_LOHI;
3682 } else if (HasUMUL_LOHI && !HasMULHU) {
3683 OpToUse = ISD::UMUL_LOHI;
3684 } else if (HasSMUL_LOHI) {
3685 OpToUse = ISD::SMUL_LOHI;
3686 } else if (HasUMUL_LOHI) {
3687 OpToUse = ISD::UMUL_LOHI;
3688 }
3689 if (OpToUse) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003690 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3691 Node->getOperand(1)));
Eli Friedman56883962009-05-27 07:05:37 +00003692 break;
3693 }
Tom Stellarda1a5d9a2014-04-11 16:12:01 +00003694
3695 SDValue Lo, Hi;
3696 EVT HalfType = VT.getHalfSizedIntegerVT(*DAG.getContext());
3697 if (TLI.isOperationLegalOrCustom(ISD::ZERO_EXTEND, VT) &&
3698 TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND, VT) &&
3699 TLI.isOperationLegalOrCustom(ISD::SHL, VT) &&
3700 TLI.isOperationLegalOrCustom(ISD::OR, VT) &&
3701 TLI.expandMUL(Node, Lo, Hi, HalfType, DAG)) {
3702 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Lo);
3703 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, VT, Hi);
3704 SDValue Shift = DAG.getConstant(HalfType.getSizeInBits(),
3705 TLI.getShiftAmountTy(HalfType));
3706 Hi = DAG.getNode(ISD::SHL, dl, VT, Hi, Shift);
3707 Results.push_back(DAG.getNode(ISD::OR, dl, VT, Lo, Hi));
3708 break;
3709 }
3710
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00003711 Tmp1 = ExpandIntLibCall(Node, false,
3712 RTLIB::MUL_I8,
3713 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman56883962009-05-27 07:05:37 +00003714 RTLIB::MUL_I64, RTLIB::MUL_I128);
3715 Results.push_back(Tmp1);
3716 break;
3717 }
Eli Friedman2892d822009-05-27 12:20:41 +00003718 case ISD::SADDO:
3719 case ISD::SSUBO: {
3720 SDValue LHS = Node->getOperand(0);
3721 SDValue RHS = Node->getOperand(1);
3722 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3723 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3724 LHS, RHS);
3725 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003726 EVT ResultType = Node->getValueType(1);
3727 EVT OType = getSetCCResultType(Node->getValueType(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003728
Eli Friedman2892d822009-05-27 12:20:41 +00003729 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3730
3731 // LHSSign -> LHS >= 0
3732 // RHSSign -> RHS >= 0
3733 // SumSign -> Sum >= 0
3734 //
3735 // Add:
3736 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3737 // Sub:
3738 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3739 //
3740 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3741 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3742 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3743 Node->getOpcode() == ISD::SADDO ?
3744 ISD::SETEQ : ISD::SETNE);
3745
3746 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3747 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3748
3749 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003750 Results.push_back(DAG.getBoolExtOrTrunc(Cmp, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003751 break;
3752 }
3753 case ISD::UADDO:
3754 case ISD::USUBO: {
3755 SDValue LHS = Node->getOperand(0);
3756 SDValue RHS = Node->getOperand(1);
3757 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3758 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3759 LHS, RHS);
3760 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003761
3762 EVT ResultType = Node->getValueType(1);
3763 EVT SetCCType = getSetCCResultType(Node->getValueType(0));
3764 ISD::CondCode CC
3765 = Node->getOpcode() == ISD::UADDO ? ISD::SETULT : ISD::SETUGT;
3766 SDValue SetCC = DAG.getSetCC(dl, SetCCType, Sum, LHS, CC);
3767
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003768 Results.push_back(DAG.getBoolExtOrTrunc(SetCC, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003769 break;
3770 }
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003771 case ISD::UMULO:
3772 case ISD::SMULO: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003773 EVT VT = Node->getValueType(0);
Eric Christopherbcaedb52011-04-20 01:19:45 +00003774 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003775 SDValue LHS = Node->getOperand(0);
3776 SDValue RHS = Node->getOperand(1);
3777 SDValue BottomHalf;
3778 SDValue TopHalf;
Nuno Lopes129819d2009-12-23 17:48:10 +00003779 static const unsigned Ops[2][3] =
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003780 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3781 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3782 bool isSigned = Node->getOpcode() == ISD::SMULO;
3783 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3784 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3785 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3786 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3787 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3788 RHS);
3789 TopHalf = BottomHalf.getValue(1);
Eric Christopher83dd2fa2014-04-28 22:24:57 +00003790 } else if (TLI.isTypeLegal(WideVT)) {
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003791 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3792 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3793 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3794 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3795 DAG.getIntPtrConstant(0));
3796 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3797 DAG.getIntPtrConstant(1));
Eric Christopherbb14f652011-01-20 00:29:24 +00003798 } else {
3799 // We can fall back to a libcall with an illegal type for the MUL if we
3800 // have a libcall big enough.
3801 // Also, we can fall back to a division in some cases, but that's a big
3802 // performance hit in the general case.
Eric Christopherbb14f652011-01-20 00:29:24 +00003803 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3804 if (WideVT == MVT::i16)
3805 LC = RTLIB::MUL_I16;
3806 else if (WideVT == MVT::i32)
3807 LC = RTLIB::MUL_I32;
3808 else if (WideVT == MVT::i64)
3809 LC = RTLIB::MUL_I64;
3810 else if (WideVT == MVT::i128)
3811 LC = RTLIB::MUL_I128;
3812 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanae9b1682011-05-16 22:09:53 +00003813
3814 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherbcaedb52011-04-20 01:19:45 +00003815 // part.
3816 unsigned LoSize = VT.getSizeInBits();
3817 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3818 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3819 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3820 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Andersonb2c80da2011-02-25 21:41:48 +00003821
Eric Christopherbcaedb52011-04-20 01:19:45 +00003822 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3823 // pre-lowered to the correct types. This all depends upon WideVT not
3824 // being a legal type for the architecture and thus has to be split to
3825 // two arguments.
3826 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3827 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3828 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3829 DAG.getIntPtrConstant(0));
3830 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3831 DAG.getIntPtrConstant(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00003832 // Ret is a node with an illegal type. Because such things are not
3833 // generally permitted during this phase of legalization, delete the
3834 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3835 DAG.DeleteNode(Ret.getNode());
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003836 }
Dan Gohmanae9b1682011-05-16 22:09:53 +00003837
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003838 if (isSigned) {
Owen Andersonb2c80da2011-02-25 21:41:48 +00003839 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3840 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003841 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault758659232013-05-18 00:21:46 +00003842 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003843 ISD::SETNE);
3844 } else {
Matt Arsenault758659232013-05-18 00:21:46 +00003845 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003846 DAG.getConstant(0, VT), ISD::SETNE);
3847 }
3848 Results.push_back(BottomHalf);
3849 Results.push_back(TopHalf);
3850 break;
3851 }
Eli Friedman0e494312009-05-27 07:32:27 +00003852 case ISD::BUILD_PAIR: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003853 EVT PairTy = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003854 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3855 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendlingef408db2009-12-23 00:28:23 +00003856 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedman0e494312009-05-27 07:32:27 +00003857 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003858 TLI.getShiftAmountTy(PairTy)));
Bill Wendlingef408db2009-12-23 00:28:23 +00003859 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedman0e494312009-05-27 07:32:27 +00003860 break;
3861 }
Eli Friedman3b251702009-05-27 07:58:35 +00003862 case ISD::SELECT:
3863 Tmp1 = Node->getOperand(0);
3864 Tmp2 = Node->getOperand(1);
3865 Tmp3 = Node->getOperand(2);
Bill Wendlingef408db2009-12-23 00:28:23 +00003866 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman3b251702009-05-27 07:58:35 +00003867 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3868 Tmp2, Tmp3,
3869 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendlingef408db2009-12-23 00:28:23 +00003870 } else {
Eli Friedman3b251702009-05-27 07:58:35 +00003871 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3872 DAG.getConstant(0, Tmp1.getValueType()),
3873 Tmp2, Tmp3, ISD::SETNE);
Bill Wendlingef408db2009-12-23 00:28:23 +00003874 }
Eli Friedman3b251702009-05-27 07:58:35 +00003875 Results.push_back(Tmp1);
3876 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003877 case ISD::BR_JT: {
3878 SDValue Chain = Node->getOperand(0);
3879 SDValue Table = Node->getOperand(1);
3880 SDValue Index = Node->getOperand(2);
3881
Owen Anderson53aa7a92009-08-10 22:56:29 +00003882 EVT PTy = TLI.getPointerTy();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003883
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003884 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003885 unsigned EntrySize =
3886 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00003887
Tom Stellard838e2342013-08-26 15:06:10 +00003888 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(),
3889 Index, DAG.getConstant(EntrySize, Index.getValueType()));
3890 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3891 Index, Table);
Eli Friedman2892d822009-05-27 12:20:41 +00003892
Owen Anderson117c9e82009-08-12 00:36:31 +00003893 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastings81c43062011-02-16 16:23:55 +00003894 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattnera35499e2010-09-21 07:32:19 +00003895 MachinePointerInfo::getJumpTable(), MemVT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00003896 false, false, false, 0);
Eli Friedman2892d822009-05-27 12:20:41 +00003897 Addr = LD;
Dan Gohmanc3349602010-04-19 19:05:59 +00003898 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman2892d822009-05-27 12:20:41 +00003899 // For PIC, the sequence is:
Bill Wendlingef408db2009-12-23 00:28:23 +00003900 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman2892d822009-05-27 12:20:41 +00003901 // RelocBase can be JumpTable, GOT or some sort of global base.
3902 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3903 TLI.getPICJumpTableRelocBase(Table, DAG));
3904 }
Owen Anderson9f944592009-08-11 20:47:22 +00003905 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman2892d822009-05-27 12:20:41 +00003906 Results.push_back(Tmp1);
3907 break;
3908 }
Eli Friedman0e494312009-05-27 07:32:27 +00003909 case ISD::BRCOND:
3910 // Expand brcond's setcc into its constituent parts and create a BR_CC
3911 // Node.
3912 Tmp1 = Node->getOperand(0);
3913 Tmp2 = Node->getOperand(1);
Bill Wendlingef408db2009-12-23 00:28:23 +00003914 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson9f944592009-08-11 20:47:22 +00003915 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedman0e494312009-05-27 07:32:27 +00003916 Tmp1, Tmp2.getOperand(2),
3917 Tmp2.getOperand(0), Tmp2.getOperand(1),
3918 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003919 } else {
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003920 // We test only the i1 bit. Skip the AND if UNDEF.
3921 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3922 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3923 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson9f944592009-08-11 20:47:22 +00003924 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003925 DAG.getCondCode(ISD::SETNE), Tmp3,
3926 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedman0e494312009-05-27 07:32:27 +00003927 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003928 }
Eli Friedman0e494312009-05-27 07:32:27 +00003929 Results.push_back(Tmp1);
3930 break;
Eli Friedman5df72022009-05-28 03:56:57 +00003931 case ISD::SETCC: {
3932 Tmp1 = Node->getOperand(0);
3933 Tmp2 = Node->getOperand(1);
3934 Tmp3 = Node->getOperand(2);
Tom Stellard08690a12013-09-28 02:50:32 +00003935 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
Daniel Sandersedc071b2013-11-21 13:24:49 +00003936 Tmp3, NeedInvert, dl);
Eli Friedman5df72022009-05-28 03:56:57 +00003937
Tom Stellard08690a12013-09-28 02:50:32 +00003938 if (Legalized) {
Daniel Sandersedc071b2013-11-21 13:24:49 +00003939 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3940 // condition code, create a new SETCC node.
Tom Stellard08690a12013-09-28 02:50:32 +00003941 if (Tmp3.getNode())
3942 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3943 Tmp1, Tmp2, Tmp3);
3944
Daniel Sandersedc071b2013-11-21 13:24:49 +00003945 // If we expanded the SETCC by inverting the condition code, then wrap
3946 // the existing SETCC in a NOT to restore the intended condition.
3947 if (NeedInvert)
Pete Cooper7fd1d722014-05-12 23:26:58 +00003948 Tmp1 = DAG.getLogicalNOT(dl, Tmp1, Tmp1->getValueType(0));
Daniel Sandersedc071b2013-11-21 13:24:49 +00003949
Eli Friedman5df72022009-05-28 03:56:57 +00003950 Results.push_back(Tmp1);
3951 break;
3952 }
3953
3954 // Otherwise, SETCC for the given comparison type must be completely
3955 // illegal; expand it into a SELECT_CC.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003956 EVT VT = Node->getValueType(0);
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003957 int TrueValue;
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003958 switch (TLI.getBooleanContents(Tmp1->getValueType(0))) {
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003959 case TargetLowering::ZeroOrOneBooleanContent:
3960 case TargetLowering::UndefinedBooleanContent:
3961 TrueValue = 1;
3962 break;
3963 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3964 TrueValue = -1;
3965 break;
3966 }
Eli Friedman5df72022009-05-28 03:56:57 +00003967 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003968 DAG.getConstant(TrueValue, VT), DAG.getConstant(0, VT),
3969 Tmp3);
Eli Friedman5df72022009-05-28 03:56:57 +00003970 Results.push_back(Tmp1);
3971 break;
3972 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00003973 case ISD::SELECT_CC: {
3974 Tmp1 = Node->getOperand(0); // LHS
3975 Tmp2 = Node->getOperand(1); // RHS
3976 Tmp3 = Node->getOperand(2); // True
3977 Tmp4 = Node->getOperand(3); // False
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003978 EVT VT = Node->getValueType(0);
Eli Friedmane1dc1932009-05-28 20:40:34 +00003979 SDValue CC = Node->getOperand(4);
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003980 ISD::CondCode CCOp = cast<CondCodeSDNode>(CC)->get();
Eli Friedmane1dc1932009-05-28 20:40:34 +00003981
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003982 if (TLI.isCondCodeLegal(CCOp, Tmp1.getSimpleValueType())) {
3983 // If the condition code is legal, then we need to expand this
3984 // node using SETCC and SELECT.
3985 EVT CmpVT = Tmp1.getValueType();
3986 assert(!TLI.isOperationExpand(ISD::SELECT, VT) &&
3987 "Cannot expand ISD::SELECT_CC when ISD::SELECT also needs to be "
3988 "expanded.");
3989 EVT CCVT = TLI.getSetCCResultType(*DAG.getContext(), CmpVT);
3990 SDValue Cond = DAG.getNode(ISD::SETCC, dl, CCVT, Tmp1, Tmp2, CC);
3991 Results.push_back(DAG.getSelect(dl, VT, Cond, Tmp3, Tmp4));
3992 break;
3993 }
3994
3995 // SELECT_CC is legal, so the condition code must not be.
Tom Stellard5694d302013-09-28 02:50:43 +00003996 bool Legalized = false;
3997 // Try to legalize by inverting the condition. This is for targets that
3998 // might support an ordered version of a condition, but not the unordered
3999 // version (or vice versa).
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00004000 ISD::CondCode InvCC = ISD::getSetCCInverse(CCOp,
Tom Stellard5694d302013-09-28 02:50:43 +00004001 Tmp1.getValueType().isInteger());
4002 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
4003 // Use the new condition code and swap true and false
4004 Legalized = true;
4005 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
Tom Stellard08690a12013-09-28 02:50:32 +00004006 } else {
Tom Stellard5694d302013-09-28 02:50:43 +00004007 // If The inverse is not legal, then try to swap the arguments using
4008 // the inverse condition code.
4009 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
4010 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
4011 // The swapped inverse condition is legal, so swap true and false,
4012 // lhs and rhs.
4013 Legalized = true;
4014 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
4015 }
4016 }
4017
4018 if (!Legalized) {
4019 Legalized = LegalizeSetCCCondCode(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004020 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, NeedInvert,
4021 dl);
Tom Stellard5694d302013-09-28 02:50:43 +00004022
4023 assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00004024
4025 // If we expanded the SETCC by inverting the condition code, then swap
4026 // the True/False operands to match.
4027 if (NeedInvert)
4028 std::swap(Tmp3, Tmp4);
4029
4030 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
4031 // condition code, create a new SELECT_CC node.
Tom Stellard5694d302013-09-28 02:50:43 +00004032 if (CC.getNode()) {
4033 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
4034 Tmp1, Tmp2, Tmp3, Tmp4, CC);
4035 } else {
4036 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4037 CC = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004038 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1,
4039 Tmp2, Tmp3, Tmp4, CC);
Tom Stellard5694d302013-09-28 02:50:43 +00004040 }
Tom Stellard08690a12013-09-28 02:50:32 +00004041 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004042 Results.push_back(Tmp1);
4043 break;
4044 }
4045 case ISD::BR_CC: {
4046 Tmp1 = Node->getOperand(0); // Chain
4047 Tmp2 = Node->getOperand(2); // LHS
4048 Tmp3 = Node->getOperand(3); // RHS
4049 Tmp4 = Node->getOperand(1); // CC
4050
Tom Stellard08690a12013-09-28 02:50:32 +00004051 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004052 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, NeedInvert, dl);
Tom Stellard45015d92013-09-28 03:10:17 +00004053 (void)Legalized;
Tom Stellard08690a12013-09-28 02:50:32 +00004054 assert(Legalized && "Can't legalize BR_CC with legal condition!");
Eli Friedmane1dc1932009-05-28 20:40:34 +00004055
Daniel Sandersedc071b2013-11-21 13:24:49 +00004056 // If we expanded the SETCC by inverting the condition code, then wrap
4057 // the existing SETCC in a NOT to restore the intended condition.
4058 if (NeedInvert)
4059 Tmp4 = DAG.getNOT(dl, Tmp4, Tmp4->getValueType(0));
4060
4061 // If we expanded the SETCC by swapping LHS and RHS, create a new BR_CC
Tom Stellard08690a12013-09-28 02:50:32 +00004062 // node.
4063 if (Tmp4.getNode()) {
4064 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
4065 Tmp4, Tmp2, Tmp3, Node->getOperand(4));
4066 } else {
4067 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
4068 Tmp4 = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004069 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4,
4070 Tmp2, Tmp3, Node->getOperand(4));
Tom Stellard08690a12013-09-28 02:50:32 +00004071 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004072 Results.push_back(Tmp1);
4073 break;
4074 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004075 case ISD::BUILD_VECTOR:
4076 Results.push_back(ExpandBUILD_VECTOR(Node));
4077 break;
4078 case ISD::SRA:
4079 case ISD::SRL:
4080 case ISD::SHL: {
4081 // Scalarize vector SRA/SRL/SHL.
4082 EVT VT = Node->getValueType(0);
4083 assert(VT.isVector() && "Unable to legalize non-vector shift");
4084 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
4085 unsigned NumElem = VT.getVectorNumElements();
4086
4087 SmallVector<SDValue, 8> Scalars;
4088 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
4089 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
4090 VT.getScalarType(),
Tom Stellardd42c5942013-08-05 22:22:01 +00004091 Node->getOperand(0), DAG.getConstant(Idx,
4092 TLI.getVectorIdxTy()));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004093 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
4094 VT.getScalarType(),
Tom Stellardd42c5942013-08-05 22:22:01 +00004095 Node->getOperand(1), DAG.getConstant(Idx,
4096 TLI.getVectorIdxTy()));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004097 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
4098 VT.getScalarType(), Ex, Sh));
4099 }
4100 SDValue Result =
Craig Topper48d114b2014-04-26 18:35:24 +00004101 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0), Scalars);
Eli Friedman13477152011-11-11 23:58:27 +00004102 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +00004103 break;
4104 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00004105 case ISD::GLOBAL_OFFSET_TABLE:
4106 case ISD::GlobalAddress:
4107 case ISD::GlobalTLSAddress:
4108 case ISD::ExternalSymbol:
4109 case ISD::ConstantPool:
4110 case ISD::JumpTable:
4111 case ISD::INTRINSIC_W_CHAIN:
4112 case ISD::INTRINSIC_WO_CHAIN:
4113 case ISD::INTRINSIC_VOID:
4114 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedmana8f9a022009-05-27 02:16:40 +00004115 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00004116 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004117
4118 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004119 if (!Results.empty())
4120 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004121}
Dan Gohman198b7ff2011-11-03 21:49:52 +00004122
4123void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
4124 SmallVector<SDValue, 8> Results;
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004125 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00004126 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedman97f3f962009-07-17 05:16:04 +00004127 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendlingef408db2009-12-23 00:28:23 +00004128 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004129 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendlingef408db2009-12-23 00:28:23 +00004130 }
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004131 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004132 SDLoc dl(Node);
Eli Friedman3b251702009-05-27 07:58:35 +00004133 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman21d349b2009-05-27 01:25:56 +00004134 switch (Node->getOpcode()) {
4135 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004136 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004137 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004138 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004139 case ISD::CTPOP:
4140 // Zero extend the argument.
4141 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004142 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
4143 // already the correct result.
Jakob Stoklund Olesen6b9f63c2009-07-12 17:43:20 +00004144 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004145 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004146 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault758659232013-05-18 00:21:46 +00004147 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Eli Friedman21d349b2009-05-27 01:25:56 +00004148 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
4149 ISD::SETEQ);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004150 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
4151 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004152 } else if (Node->getOpcode() == ISD::CTLZ ||
4153 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman21d349b2009-05-27 01:25:56 +00004154 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4155 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
4156 DAG.getConstant(NVT.getSizeInBits() -
4157 OVT.getSizeInBits(), NVT));
4158 }
Bill Wendlingef408db2009-12-23 00:28:23 +00004159 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00004160 break;
4161 case ISD::BSWAP: {
4162 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling70794592009-12-22 22:53:39 +00004163 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004164 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4165 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Andersonb2c80da2011-02-25 21:41:48 +00004166 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendlingef408db2009-12-23 00:28:23 +00004167 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004168 break;
4169 }
4170 case ISD::FP_TO_UINT:
4171 case ISD::FP_TO_SINT:
4172 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
4173 Node->getOpcode() == ISD::FP_TO_SINT, dl);
4174 Results.push_back(Tmp1);
4175 break;
4176 case ISD::UINT_TO_FP:
4177 case ISD::SINT_TO_FP:
4178 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
4179 Node->getOpcode() == ISD::SINT_TO_FP, dl);
4180 Results.push_back(Tmp1);
4181 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00004182 case ISD::VAARG: {
4183 SDValue Chain = Node->getOperand(0); // Get the chain.
4184 SDValue Ptr = Node->getOperand(1); // Get the pointer.
4185
4186 unsigned TruncOp;
4187 if (OVT.isVector()) {
4188 TruncOp = ISD::BITCAST;
4189 } else {
4190 assert(OVT.isInteger()
4191 && "VAARG promotion is supported only for vectors or integer types");
4192 TruncOp = ISD::TRUNCATE;
4193 }
4194
4195 // Perform the larger operation, then convert back
4196 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
4197 Node->getConstantOperandVal(3));
4198 Chain = Tmp1.getValue(1);
4199
4200 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
4201
4202 // Modified the chain result - switch anything that used the old chain to
4203 // use the new one.
4204 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
4205 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00004206 if (UpdatedNodes) {
4207 UpdatedNodes->insert(Tmp2.getNode());
4208 UpdatedNodes->insert(Chain.getNode());
4209 }
Hal Finkel71c2ba32012-03-24 03:53:52 +00004210 ReplacedNode(Node);
4211 break;
4212 }
Eli Friedmand6f28342009-05-27 03:33:44 +00004213 case ISD::AND:
4214 case ISD::OR:
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004215 case ISD::XOR: {
4216 unsigned ExtOp, TruncOp;
4217 if (OVT.isVector()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004218 ExtOp = ISD::BITCAST;
4219 TruncOp = ISD::BITCAST;
Chris Lattnercd927182010-04-07 23:47:51 +00004220 } else {
4221 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004222 ExtOp = ISD::ANY_EXTEND;
4223 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004224 }
4225 // Promote each of the values to the new type.
4226 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4227 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4228 // Perform the larger operation, then convert back
Bill Wendlingef408db2009-12-23 00:28:23 +00004229 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
4230 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmand6f28342009-05-27 03:33:44 +00004231 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004232 }
4233 case ISD::SELECT: {
Eli Friedman3b251702009-05-27 07:58:35 +00004234 unsigned ExtOp, TruncOp;
Tom Stellardc9a67a22014-03-24 16:07:28 +00004235 if (Node->getValueType(0).isVector() ||
4236 Node->getValueType(0).getSizeInBits() == NVT.getSizeInBits()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004237 ExtOp = ISD::BITCAST;
4238 TruncOp = ISD::BITCAST;
Eli Friedman2892d822009-05-27 12:20:41 +00004239 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman3b251702009-05-27 07:58:35 +00004240 ExtOp = ISD::ANY_EXTEND;
4241 TruncOp = ISD::TRUNCATE;
4242 } else {
4243 ExtOp = ISD::FP_EXTEND;
4244 TruncOp = ISD::FP_ROUND;
4245 }
4246 Tmp1 = Node->getOperand(0);
4247 // Promote each of the values to the new type.
4248 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4249 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4250 // Perform the larger operation, then round down.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004251 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman3b251702009-05-27 07:58:35 +00004252 if (TruncOp != ISD::FP_ROUND)
Bill Wendlingef408db2009-12-23 00:28:23 +00004253 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004254 else
Bill Wendlingef408db2009-12-23 00:28:23 +00004255 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman3b251702009-05-27 07:58:35 +00004256 DAG.getIntPtrConstant(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004257 Results.push_back(Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004258 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004259 }
Eli Friedman3b251702009-05-27 07:58:35 +00004260 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00004261 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00004262
4263 // Cast the two input vectors.
Wesley Peck527da1b2010-11-23 03:31:01 +00004264 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
4265 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman3b251702009-05-27 07:58:35 +00004266
4267 // Convert the shuffle mask to the right # elements.
Bill Wendlingef408db2009-12-23 00:28:23 +00004268 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peck527da1b2010-11-23 03:31:01 +00004269 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004270 Results.push_back(Tmp1);
4271 break;
4272 }
Eli Friedman5df72022009-05-28 03:56:57 +00004273 case ISD::SETCC: {
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004274 unsigned ExtOp = ISD::FP_EXTEND;
4275 if (NVT.isInteger()) {
4276 ISD::CondCode CCCode =
4277 cast<CondCodeSDNode>(Node->getOperand(2))->get();
4278 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedman5df72022009-05-28 03:56:57 +00004279 }
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004280 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4281 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedman5df72022009-05-28 03:56:57 +00004282 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
4283 Tmp1, Tmp2, Node->getOperand(2)));
4284 break;
4285 }
Pete Coopere69be6d2012-03-19 23:38:12 +00004286 case ISD::FDIV:
Pete Cooper8a3dc0e2012-04-04 19:36:31 +00004287 case ISD::FREM:
Pete Cooper99415fe2012-01-12 21:46:18 +00004288 case ISD::FPOW: {
4289 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4290 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopere69be6d2012-03-19 23:38:12 +00004291 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooper99415fe2012-01-12 21:46:18 +00004292 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4293 Tmp3, DAG.getIntPtrConstant(0)));
4294 break;
4295 }
4296 case ISD::FLOG2:
4297 case ISD::FEXP2:
4298 case ISD::FLOG:
4299 case ISD::FEXP: {
4300 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4301 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4302 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4303 Tmp2, DAG.getIntPtrConstant(0)));
4304 break;
4305 }
Eli Friedman21d349b2009-05-27 01:25:56 +00004306 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004307
4308 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004309 if (!Results.empty())
4310 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004311}
4312
Chris Lattnerdc750592005-01-07 07:47:09 +00004313// SelectionDAG::Legalize - This is the entry point for the file.
4314//
Dan Gohmand282f462011-05-16 22:19:54 +00004315void SelectionDAG::Legalize() {
Chandler Carruth411fb402014-07-26 05:49:40 +00004316 AssignTopologicalOrder();
4317
4318 allnodes_iterator LegalizePosition;
4319 SmallPtrSet<SDNode *, 16> LegalizedNodes;
4320 SelectionDAGLegalize Legalizer(*this, LegalizePosition, LegalizedNodes);
4321
4322 // Visit all the nodes. We start in topological order, so that we see
4323 // nodes with their original operands intact. Legalization can produce
4324 // new nodes which may themselves need to be legalized. Iterate until all
4325 // nodes have been legalized.
4326 for (;;) {
4327 bool AnyLegalized = false;
4328 for (LegalizePosition = allnodes_end();
4329 LegalizePosition != allnodes_begin(); ) {
4330 --LegalizePosition;
4331
4332 SDNode *N = LegalizePosition;
4333 if (LegalizedNodes.insert(N)) {
4334 AnyLegalized = true;
4335 Legalizer.LegalizeOp(N);
4336 }
4337 }
4338 if (!AnyLegalized)
4339 break;
4340
4341 }
4342
4343 // Remove dead nodes now.
4344 RemoveDeadNodes();
4345}
4346
4347bool SelectionDAG::LegalizeOp(SDNode *N,
4348 SmallSetVector<SDNode *, 16> &UpdatedNodes) {
4349 allnodes_iterator LegalizePosition(N);
4350 SmallPtrSet<SDNode *, 16> LegalizedNodes;
4351 SelectionDAGLegalize Legalizer(*this, LegalizePosition, LegalizedNodes,
4352 &UpdatedNodes);
4353
4354 // Directly insert the node in question, and legalize it. This will recurse
4355 // as needed through operands.
4356 LegalizedNodes.insert(N);
4357 Legalizer.LegalizeOp(N);
4358
4359 return LegalizedNodes.count(N);
Chris Lattnerdc750592005-01-07 07:47:09 +00004360}