blob: a772f9c69a5dc77a2fd06f3a1613a4336f8b2223 [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"
Eric Christopherd9134482014-08-04 21:25:23 +000037#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000038using namespace llvm;
39
Chandler Carruthb1432742014-07-28 17:55:07 +000040#define DEBUG_TYPE "legalizedag"
41
Chris Lattnerdc750592005-01-07 07:47:09 +000042//===----------------------------------------------------------------------===//
43/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
44/// hacks on it until the target machine can handle it. This involves
45/// eliminating value sizes the machine cannot handle (promoting small sizes to
46/// large sizes or splitting up large values into small values) as well as
47/// eliminating operations the machine cannot handle.
48///
49/// This code also does a small amount of optimization and recognition of idioms
50/// as part of its processing. For example, if a target does not support a
51/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
52/// will attempt merge setcc and brc instructions into brcc's.
53///
54namespace {
Chandler Carruth1f52b3d2014-08-01 19:49:59 +000055class SelectionDAGLegalize {
Dan Gohmanc3349602010-04-19 19:05:59 +000056 const TargetMachine &TM;
Dan Gohman21cea8a2010-04-17 15:26:15 +000057 const TargetLowering &TLI;
Chris Lattnerdc750592005-01-07 07:47:09 +000058 SelectionDAG &DAG;
59
Chandler Carruth411fb402014-07-26 05:49:40 +000060 /// \brief The set of nodes which have already been legalized. We hold a
61 /// reference to it in order to update as necessary on node deletion.
62 SmallPtrSetImpl<SDNode *> &LegalizedNodes;
63
64 /// \brief A set of all the nodes updated during legalization.
65 SmallSetVector<SDNode *, 16> *UpdatedNodes;
Dan Gohman198b7ff2011-11-03 21:49:52 +000066
Matt Arsenault758659232013-05-18 00:21:46 +000067 EVT getSetCCResultType(EVT VT) const {
68 return TLI.getSetCCResultType(*DAG.getContext(), VT);
69 }
70
Chris Lattner462505f2006-02-13 09:18:02 +000071 // Libcall insertion helpers.
Scott Michelcf0da6c2009-02-17 22:15:04 +000072
Chris Lattnerdc750592005-01-07 07:47:09 +000073public:
Chandler Carruth411fb402014-07-26 05:49:40 +000074 SelectionDAGLegalize(SelectionDAG &DAG,
Chandler Carruth411fb402014-07-26 05:49:40 +000075 SmallPtrSetImpl<SDNode *> &LegalizedNodes,
76 SmallSetVector<SDNode *, 16> *UpdatedNodes = nullptr)
Chandler Carruth1f52b3d2014-08-01 19:49:59 +000077 : TM(DAG.getTarget()), TLI(DAG.getTargetLoweringInfo()), DAG(DAG),
78 LegalizedNodes(LegalizedNodes), UpdatedNodes(UpdatedNodes) {}
Chris Lattnerdc750592005-01-07 07:47:09 +000079
Chandler Carruth411fb402014-07-26 05:49:40 +000080 /// \brief Legalizes the given operation.
Dan Gohman198b7ff2011-11-03 21:49:52 +000081 void LegalizeOp(SDNode *Node);
Scott Michelcf0da6c2009-02-17 22:15:04 +000082
Chandler Carruth411fb402014-07-26 05:49:40 +000083private:
Eli Friedmanaee3f622009-06-06 07:04:42 +000084 SDValue OptimizeFloatStore(StoreSDNode *ST);
85
Nadav Rotemde6fd282012-07-11 08:52:09 +000086 void LegalizeLoadOps(SDNode *Node);
87 void LegalizeStoreOps(SDNode *Node);
88
Nate Begeman6f94f612008-04-25 18:07:40 +000089 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
90 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
91 /// is necessary to spill the vector being inserted into to memory, perform
92 /// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000093 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Andrew Trickef9de2a2013-05-25 02:42:55 +000094 SDValue Idx, SDLoc dl);
Eli Friedmana8f9a022009-05-27 02:16:40 +000095 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
Andrew Trickef9de2a2013-05-25 02:42:55 +000096 SDValue Idx, SDLoc dl);
Dan Gohman2a7de412007-10-11 23:57:53 +000097
Nate Begeman5f829d82009-04-29 05:20:52 +000098 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
99 /// performs the same shuffe in terms of order or result bytes, but on a type
100 /// whose vector element type is narrower than the original shuffle type.
101 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Andrew Trickef9de2a2013-05-25 02:42:55 +0000102 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000103 SDValue N1, SDValue N2,
Benjamin Kramer339ced42012-01-15 13:16:05 +0000104 ArrayRef<int> Mask) const;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000105
Tom Stellard08690a12013-09-28 02:50:32 +0000106 bool LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +0000107 bool &NeedInvert, SDLoc dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000108
Eli Friedmanb3554152009-05-27 02:21:29 +0000109 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherbcaedb52011-04-20 01:19:45 +0000110 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000111 unsigned NumOps, bool isSigned, SDLoc dl);
Eric Christopherbcaedb52011-04-20 01:19:45 +0000112
Jim Grosbachd64dfc12010-06-18 21:43:38 +0000113 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
114 SDNode *Node, bool isSigned);
Eli Friedmand6f28342009-05-27 03:33:44 +0000115 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
116 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000117 RTLIB::Libcall Call_F128,
118 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikovf93bb392009-11-07 17:14:39 +0000119 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
120 RTLIB::Libcall Call_I8,
121 RTLIB::Libcall Call_I16,
122 RTLIB::Libcall Call_I32,
123 RTLIB::Libcall Call_I64,
Eli Friedmand6f28342009-05-27 03:33:44 +0000124 RTLIB::Libcall Call_I128);
Evan Chengb14ce092011-04-16 03:08:26 +0000125 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000126 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnere3e847b2005-07-16 00:19:57 +0000127
Andrew Trickef9de2a2013-05-25 02:42:55 +0000128 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, SDLoc dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000129 SDValue ExpandBUILD_VECTOR(SDNode *Node);
130 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman2892d822009-05-27 12:20:41 +0000131 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
132 SmallVectorImpl<SDValue> &Results);
133 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000134 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000135 SDLoc dl);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000136 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000137 SDLoc dl);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000138 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000139 SDLoc dl);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000140
Andrew Trickef9de2a2013-05-25 02:42:55 +0000141 SDValue ExpandBSWAP(SDValue Op, SDLoc dl);
142 SDValue ExpandBitCount(unsigned Opc, SDValue Op, SDLoc dl);
Chris Lattnera5bf1032005-05-12 04:49:08 +0000143
Eli Friedman40afdb62009-05-23 22:37:25 +0000144 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenebab5e6e2011-01-26 19:13:22 +0000145 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000146 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman21d349b2009-05-27 01:25:56 +0000147
Dan Gohman198b7ff2011-11-03 21:49:52 +0000148 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
149
Jim Grosbachd64dfc12010-06-18 21:43:38 +0000150 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
151
Dan Gohman198b7ff2011-11-03 21:49:52 +0000152 void ExpandNode(SDNode *Node);
153 void PromoteNode(SDNode *Node);
154
Eli Friedman13477152011-11-11 23:58:27 +0000155public:
Eli Friedman13477152011-11-11 23:58:27 +0000156 // Node replacement helpers
157 void ReplacedNode(SDNode *N) {
Chandler Carruth1f52b3d2014-08-01 19:49:59 +0000158 LegalizedNodes.erase(N);
Chandler Carruth74ec9e12014-08-27 11:22:16 +0000159 if (UpdatedNodes)
160 UpdatedNodes->insert(N);
Eli Friedman13477152011-11-11 23:58:27 +0000161 }
162 void ReplaceNode(SDNode *Old, SDNode *New) {
Chandler Carruthb1432742014-07-28 17:55:07 +0000163 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG);
164 dbgs() << " with: "; New->dump(&DAG));
165
Chandler Carruth5a85c7b2014-07-26 05:53:16 +0000166 assert(Old->getNumValues() == New->getNumValues() &&
167 "Replacing one node with another that produces a different number "
168 "of values!");
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000169 DAG.ReplaceAllUsesWith(Old, New);
Chandler Carruth411fb402014-07-26 05:49:40 +0000170 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i)
171 DAG.TransferDbgValues(SDValue(Old, i), SDValue(New, i));
172 if (UpdatedNodes)
173 UpdatedNodes->insert(New);
Eli Friedman13477152011-11-11 23:58:27 +0000174 ReplacedNode(Old);
175 }
176 void ReplaceNode(SDValue Old, SDValue New) {
Chandler Carruthb1432742014-07-28 17:55:07 +0000177 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG);
178 dbgs() << " with: "; New->dump(&DAG));
179
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000180 DAG.ReplaceAllUsesWith(Old, New);
Chandler Carruth411fb402014-07-26 05:49:40 +0000181 DAG.TransferDbgValues(Old, New);
182 if (UpdatedNodes)
183 UpdatedNodes->insert(New.getNode());
Eli Friedman13477152011-11-11 23:58:27 +0000184 ReplacedNode(Old.getNode());
185 }
186 void ReplaceNode(SDNode *Old, const SDValue *New) {
Chandler Carruthb1432742014-07-28 17:55:07 +0000187 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG));
188
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000189 DAG.ReplaceAllUsesWith(Old, New);
Chandler Carruthb1432742014-07-28 17:55:07 +0000190 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i) {
191 DEBUG(dbgs() << (i == 0 ? " with: "
192 : " and: ");
193 New[i]->dump(&DAG));
Chandler Carruth411fb402014-07-26 05:49:40 +0000194 DAG.TransferDbgValues(SDValue(Old, i), New[i]);
Chandler Carruthb1432742014-07-28 17:55:07 +0000195 if (UpdatedNodes)
196 UpdatedNodes->insert(New[i].getNode());
197 }
Eli Friedman13477152011-11-11 23:58:27 +0000198 ReplacedNode(Old);
199 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000200};
201}
202
Nate Begeman5f829d82009-04-29 05:20:52 +0000203/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
204/// performs the same shuffe in terms of order or result bytes, but on a type
205/// whose vector element type is narrower than the original shuffle type.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000206/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000207SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +0000208SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Nate Begeman5f829d82009-04-29 05:20:52 +0000209 SDValue N1, SDValue N2,
Benjamin Kramer339ced42012-01-15 13:16:05 +0000210 ArrayRef<int> Mask) const {
Nate Begeman5f829d82009-04-29 05:20:52 +0000211 unsigned NumMaskElts = VT.getVectorNumElements();
212 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000213 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner6be79822006-04-04 17:23:26 +0000214
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000215 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
216
217 if (NumEltsGrowth == 1)
218 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000219
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000220 SmallVector<int, 8> NewMask;
Nate Begeman5f829d82009-04-29 05:20:52 +0000221 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000222 int Idx = Mask[i];
223 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000224 if (Idx < 0)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000225 NewMask.push_back(-1);
226 else
227 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner6be79822006-04-04 17:23:26 +0000228 }
Chris Lattner6be79822006-04-04 17:23:26 +0000229 }
Nate Begeman5f829d82009-04-29 05:20:52 +0000230 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000231 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
232 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner6be79822006-04-04 17:23:26 +0000233}
234
Evan Cheng22cf8992006-12-13 20:57:08 +0000235/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
236/// a load from the constant pool.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000237SDValue
238SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng47833a12006-12-12 21:32:44 +0000239 bool Extend = false;
Andrew Trickef9de2a2013-05-25 02:42:55 +0000240 SDLoc dl(CFP);
Evan Cheng47833a12006-12-12 21:32:44 +0000241
242 // If a FP immediate is precise when represented as a float and if the
243 // target can do an extending load from float to double, we put it into
244 // the constant pool as a float, even if it's is statically typed as a
Chris Lattner3dc38992008-03-05 06:46:58 +0000245 // double. This shrinks FP constants and canonicalizes them for targets where
246 // an FP extending load is the same cost as a normal load (such as on the x87
247 // fp stack or PPC FP unit).
Owen Anderson53aa7a92009-08-10 22:56:29 +0000248 EVT VT = CFP->getValueType(0);
Dan Gohmanec270fb2008-09-12 18:08:03 +0000249 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng22cf8992006-12-13 20:57:08 +0000250 if (!UseCP) {
Owen Anderson9f944592009-08-11 20:47:22 +0000251 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen54306fe2008-10-09 18:53:47 +0000252 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson9f944592009-08-11 20:47:22 +0000253 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng3766fc602006-12-12 22:19:28 +0000254 }
255
Owen Anderson53aa7a92009-08-10 22:56:29 +0000256 EVT OrigVT = VT;
257 EVT SVT = VT;
Oliver Stannard6eda6ff2014-07-11 13:33:46 +0000258 while (SVT != MVT::f32 && SVT != MVT::f16) {
Owen Anderson9f944592009-08-11 20:47:22 +0000259 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman35b6f9a2010-06-18 14:01:07 +0000260 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Cheng38caf772008-03-04 08:05:30 +0000261 // Only do this if the target has a native EXTLOAD instruction from
262 // smaller type.
Evan Cheng07d53b12008-10-14 21:26:46 +0000263 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattner3dc38992008-03-05 06:46:58 +0000264 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattner229907c2011-07-18 04:54:35 +0000265 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Anderson487375e2009-07-29 18:55:55 +0000266 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Cheng38caf772008-03-04 08:05:30 +0000267 VT = SVT;
268 Extend = true;
269 }
Evan Cheng47833a12006-12-12 21:32:44 +0000270 }
271
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000272 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1fb8aed2009-03-13 07:51:59 +0000273 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman198b7ff2011-11-03 21:49:52 +0000274 if (Extend) {
275 SDValue Result =
276 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
277 DAG.getEntryNode(),
278 CPIdx, MachinePointerInfo::getConstantPool(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000279 VT, false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000280 return Result;
281 }
282 SDValue Result =
283 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000284 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman198b7ff2011-11-03 21:49:52 +0000285 Alignment);
286 return Result;
Evan Cheng47833a12006-12-12 21:32:44 +0000287}
288
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000289/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000290static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
291 const TargetLowering &TLI,
Eli Friedman13477152011-11-11 23:58:27 +0000292 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmand257a462011-11-16 02:43:15 +0000293 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
294 "unaligned indexed stores not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000295 SDValue Chain = ST->getChain();
296 SDValue Ptr = ST->getBasePtr();
297 SDValue Val = ST->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000298 EVT VT = Val.getValueType();
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000299 int Alignment = ST->getAlignment();
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000300 unsigned AS = ST->getAddressSpace();
301
Andrew Trickef9de2a2013-05-25 02:42:55 +0000302 SDLoc dl(ST);
Duncan Sands13237ac2008-06-06 12:08:01 +0000303 if (ST->getMemoryVT().isFloatingPoint() ||
304 ST->getMemoryVT().isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000305 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands8f352fe2008-12-12 21:47:02 +0000306 if (TLI.isTypeLegal(intVT)) {
307 // Expand to a bitconvert of the value to the integer type of the
308 // same size, then a (misaligned) int store.
309 // FIXME: Does not handle truncating floating point stores!
Wesley Peck527da1b2010-11-23 03:31:01 +0000310 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000311 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
312 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman13477152011-11-11 23:58:27 +0000313 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000314 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000315 }
Dan Gohmanabffc992011-05-17 22:22:52 +0000316 // Do a (aligned) store to a stack slot, then copy from the stack slot
317 // to the final destination using (unaligned) integer loads and stores.
318 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000319 MVT RegVT =
Dan Gohmanabffc992011-05-17 22:22:52 +0000320 TLI.getRegisterType(*DAG.getContext(),
321 EVT::getIntegerVT(*DAG.getContext(),
322 StoredVT.getSizeInBits()));
323 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
324 unsigned RegBytes = RegVT.getSizeInBits() / 8;
325 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
326
327 // Make sure the stack slot is also aligned for the register type.
328 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
329
330 // Perform the original store, only redirected to the stack slot.
331 SDValue Store = DAG.getTruncStore(Chain, dl,
332 Val, StackPtr, MachinePointerInfo(),
333 StoredVT, false, false, 0);
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000334 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy(AS));
Dan Gohmanabffc992011-05-17 22:22:52 +0000335 SmallVector<SDValue, 8> Stores;
336 unsigned Offset = 0;
337
338 // Do all but one copies using the full register width.
339 for (unsigned i = 1; i < NumRegs; i++) {
340 // Load one integer register's worth from the stack slot.
341 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
342 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000343 false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000344 // Store it to the final location. Remember the store.
345 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
346 ST->getPointerInfo().getWithOffset(Offset),
347 ST->isVolatile(), ST->isNonTemporal(),
348 MinAlign(ST->getAlignment(), Offset)));
349 // Increment the pointers.
350 Offset += RegBytes;
351 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
352 Increment);
353 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
354 }
355
356 // The last store may be partial. Do a truncating store. On big-endian
357 // machines this requires an extending load from the stack slot to ensure
358 // that the bits are in the right place.
359 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
360 8 * (StoredBytes - Offset));
361
362 // Load from the stack slot.
363 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
364 MachinePointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000365 MemVT, false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000366
367 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
368 ST->getPointerInfo()
369 .getWithOffset(Offset),
370 MemVT, ST->isVolatile(),
371 ST->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000372 MinAlign(ST->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000373 ST->getAAInfo()));
Dan Gohmanabffc992011-05-17 22:22:52 +0000374 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000375 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedman13477152011-11-11 23:58:27 +0000376 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000377 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000378 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000379 assert(ST->getMemoryVT().isInteger() &&
380 !ST->getMemoryVT().isVector() &&
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000381 "Unaligned store of unknown type.");
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000382 // Get the half-size VT
Ken Dyckdf5561d2009-12-17 20:09:43 +0000383 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands13237ac2008-06-06 12:08:01 +0000384 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000385 int IncrementSize = NumBits / 8;
386
387 // Divide the stored value in two parts.
Owen Andersonb2c80da2011-02-25 21:41:48 +0000388 SDValue ShiftAmount = DAG.getConstant(NumBits,
389 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000390 SDValue Lo = Val;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000391 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000392
393 // Store the two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000394 SDValue Store1, Store2;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000395 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000396 ST->getPointerInfo(), NewStoredVT,
David Greene39c6d012010-02-15 17:00:31 +0000397 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000398
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000399 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000400 DAG.getConstant(IncrementSize, TLI.getPointerTy(AS)));
Duncan Sands1826ded2007-10-28 12:59:45 +0000401 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000402 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000403 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene39c6d012010-02-15 17:00:31 +0000404 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000405 Alignment, ST->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000406
Dan Gohman198b7ff2011-11-03 21:49:52 +0000407 SDValue Result =
408 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman13477152011-11-11 23:58:27 +0000409 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000410}
411
412/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000413static void
414ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
415 const TargetLowering &TLI,
416 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmand257a462011-11-16 02:43:15 +0000417 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
418 "unaligned indexed loads not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000419 SDValue Chain = LD->getChain();
420 SDValue Ptr = LD->getBasePtr();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000421 EVT VT = LD->getValueType(0);
422 EVT LoadedVT = LD->getMemoryVT();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000423 SDLoc dl(LD);
Duncan Sands13237ac2008-06-06 12:08:01 +0000424 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000425 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Roteme0f84d32012-08-09 01:56:44 +0000426 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands8f352fe2008-12-12 21:47:02 +0000427 // Expand to a (misaligned) integer load of the same size,
428 // then bitconvert to floating point or vector.
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000429 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr,
430 LD->getMemOperand());
Wesley Peck527da1b2010-11-23 03:31:01 +0000431 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Roteme0f84d32012-08-09 01:56:44 +0000432 if (LoadedVT != VT)
433 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
434 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000435
Dan Gohman198b7ff2011-11-03 21:49:52 +0000436 ValResult = Result;
437 ChainResult = Chain;
438 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000439 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000440
Chris Lattner1ffcf522010-09-21 16:36:31 +0000441 // Copy the value to a (aligned) stack slot using (unaligned) integer
442 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000443 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000444 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
445 unsigned RegBytes = RegVT.getSizeInBits() / 8;
446 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
447
448 // Make sure the stack slot is also aligned for the register type.
449 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
450
451 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
452 SmallVector<SDValue, 8> Stores;
453 SDValue StackPtr = StackBase;
454 unsigned Offset = 0;
455
456 // Do all but one copies using the full register width.
457 for (unsigned i = 1; i < NumRegs; i++) {
458 // Load one integer register's worth from the original location.
459 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
460 LD->getPointerInfo().getWithOffset(Offset),
461 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000462 LD->isInvariant(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000463 MinAlign(LD->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000464 LD->getAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000465 // Follow the load with a store to the stack slot. Remember the store.
466 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner676c61d2010-09-21 18:41:36 +0000467 MachinePointerInfo(), false, false, 0));
Chris Lattner1ffcf522010-09-21 16:36:31 +0000468 // Increment the pointers.
469 Offset += RegBytes;
470 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
471 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
472 Increment);
473 }
474
475 // The last copy may be partial. Do an extending load.
476 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
477 8 * (LoadedBytes - Offset));
Stuart Hastings81c43062011-02-16 16:23:55 +0000478 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000479 LD->getPointerInfo().getWithOffset(Offset),
480 MemVT, LD->isVolatile(),
481 LD->isNonTemporal(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000482 LD->isInvariant(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000483 MinAlign(LD->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000484 LD->getAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000485 // Follow the load with a store to the stack slot. Remember the store.
486 // On big-endian machines this requires a truncating store to ensure
487 // that the bits end up in the right place.
488 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
489 MachinePointerInfo(), MemVT,
490 false, false, 0));
491
492 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000493 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000494
495 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastings81c43062011-02-16 16:23:55 +0000496 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Louis Gerbarg67474e32014-07-31 21:45:05 +0000497 MachinePointerInfo(), LoadedVT, false,false, false,
498 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000499
500 // Callers expect a MERGE_VALUES node.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000501 ValResult = Load;
502 ChainResult = TF;
503 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000504 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000505 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner09c03932007-11-19 21:38:03 +0000506 "Unaligned load of unsupported type.");
507
Dale Johannesenbf76a082008-02-27 22:36:00 +0000508 // Compute the new VT that is half the size of the old one. This is an
509 // integer MVT.
Duncan Sands13237ac2008-06-06 12:08:01 +0000510 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000511 EVT NewLoadedVT;
Owen Anderson117c9e82009-08-12 00:36:31 +0000512 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattner09c03932007-11-19 21:38:03 +0000513 NumBits >>= 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000514
Chris Lattner09c03932007-11-19 21:38:03 +0000515 unsigned Alignment = LD->getAlignment();
516 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000517 ISD::LoadExtType HiExtType = LD->getExtensionType();
518
519 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
520 if (HiExtType == ISD::NON_EXTLOAD)
521 HiExtType = ISD::ZEXTLOAD;
522
523 // Load the value in two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000524 SDValue Lo, Hi;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000525 if (TLI.isLittleEndian()) {
Stuart Hastings81c43062011-02-16 16:23:55 +0000526 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000527 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000528 LD->isNonTemporal(), LD->isInvariant(), Alignment,
529 LD->getAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000530 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000531 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000532 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000533 LD->getPointerInfo().getWithOffset(IncrementSize),
534 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000535 LD->isNonTemporal(),LD->isInvariant(),
536 MinAlign(Alignment, IncrementSize), LD->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000537 } else {
Stuart Hastings81c43062011-02-16 16:23:55 +0000538 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000539 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000540 LD->isNonTemporal(), LD->isInvariant(), Alignment,
541 LD->getAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000542 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000543 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000544 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000545 LD->getPointerInfo().getWithOffset(IncrementSize),
546 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000547 LD->isNonTemporal(), LD->isInvariant(),
548 MinAlign(Alignment, IncrementSize), LD->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000549 }
550
551 // aggregate the two parts
Owen Andersonb2c80da2011-02-25 21:41:48 +0000552 SDValue ShiftAmount = DAG.getConstant(NumBits,
553 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000554 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
555 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000556
Owen Anderson9f944592009-08-11 20:47:22 +0000557 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000558 Hi.getValue(1));
559
Dan Gohman198b7ff2011-11-03 21:49:52 +0000560 ValResult = Result;
561 ChainResult = TF;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000562}
Evan Cheng003feb02007-01-04 21:56:39 +0000563
Nate Begeman6f94f612008-04-25 18:07:40 +0000564/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
565/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
566/// is necessary to spill the vector being inserted into to memory, perform
567/// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000568SDValue SelectionDAGLegalize::
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000569PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000570 SDLoc dl) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000571 SDValue Tmp1 = Vec;
572 SDValue Tmp2 = Val;
573 SDValue Tmp3 = Idx;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000574
Nate Begeman6f94f612008-04-25 18:07:40 +0000575 // If the target doesn't support this, we have to spill the input vector
576 // to a temporary stack slot, update the element, then reload it. This is
577 // badness. We could also load the value into a vector register (either
578 // with a "move to register" or "extload into register" instruction, then
579 // permute it into place, if the idx is a constant and if the idx is
580 // supported by the target.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000581 EVT VT = Tmp1.getValueType();
582 EVT EltVT = VT.getVectorElementType();
583 EVT IdxVT = Tmp3.getValueType();
584 EVT PtrVT = TLI.getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000585 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman6f94f612008-04-25 18:07:40 +0000586
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000587 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
588
Nate Begeman6f94f612008-04-25 18:07:40 +0000589 // Store the vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000590 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +0000591 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +0000592 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000593
594 // Truncate or zero extend offset to target pointer type.
Duncan Sands11dd4242008-06-08 20:54:56 +0000595 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000596 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman6f94f612008-04-25 18:07:40 +0000597 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +0000598 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000599 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
600 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman6f94f612008-04-25 18:07:40 +0000601 // Store the scalar value.
Chris Lattnera35499e2010-09-21 07:32:19 +0000602 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene39c6d012010-02-15 17:00:31 +0000603 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000604 // Load the updated vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000605 return DAG.getLoad(VT, dl, Ch, StackPtr,
Stephen Lincfe7f352013-07-08 00:37:03 +0000606 MachinePointerInfo::getFixedStack(SPFI), false, false,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000607 false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000608}
609
Mon P Wang4dd832d2008-12-09 05:46:39 +0000610
Eli Friedmana8f9a022009-05-27 02:16:40 +0000611SDValue SelectionDAGLegalize::
Andrew Trickef9de2a2013-05-25 02:42:55 +0000612ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) {
Eli Friedmana8f9a022009-05-27 02:16:40 +0000613 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
614 // SCALAR_TO_VECTOR requires that the type of the value being inserted
615 // match the element type of the vector being created, except for
616 // integers in which case the inserted value can be over width.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000617 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedmana8f9a022009-05-27 02:16:40 +0000618 if (Val.getValueType() == EltVT ||
619 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
620 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
621 Vec.getValueType(), Val);
622
623 unsigned NumElts = Vec.getValueType().getVectorNumElements();
624 // We generate a shuffle of InVec and ScVec, so the shuffle mask
625 // should be 0,1,2,3,4,5... with the appropriate element replaced with
626 // elt 0 of the RHS.
627 SmallVector<int, 8> ShufOps;
628 for (unsigned i = 0; i != NumElts; ++i)
629 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
630
631 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
632 &ShufOps[0]);
633 }
634 }
635 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
636}
637
Eli Friedmanaee3f622009-06-06 07:04:42 +0000638SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
639 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
640 // FIXME: We shouldn't do this for TargetConstantFP's.
641 // FIXME: move this to the DAG Combiner! Note that we can't regress due
642 // to phase ordering between legalized code and the dag combiner. This
643 // probably means that we need to integrate dag combiner and legalizer
644 // together.
645 // We generally can't do this one for long doubles.
Nadav Rotem2a148662012-07-11 11:02:16 +0000646 SDValue Chain = ST->getChain();
647 SDValue Ptr = ST->getBasePtr();
Eli Friedmanaee3f622009-06-06 07:04:42 +0000648 unsigned Alignment = ST->getAlignment();
649 bool isVolatile = ST->isVolatile();
David Greene39c6d012010-02-15 17:00:31 +0000650 bool isNonTemporal = ST->isNonTemporal();
Hal Finkelcc39b672014-07-24 12:16:19 +0000651 AAMDNodes AAInfo = ST->getAAInfo();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000652 SDLoc dl(ST);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000653 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson9f944592009-08-11 20:47:22 +0000654 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohmane49e7422011-07-15 22:39:09 +0000655 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000656 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedmanaee3f622009-06-06 07:04:42 +0000657 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson9f944592009-08-11 20:47:22 +0000658 MVT::i32);
Nadav Rotem2a148662012-07-11 11:02:16 +0000659 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000660 isVolatile, isNonTemporal, Alignment, AAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000661 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000662
Chris Lattner6963c1f2010-09-21 17:42:31 +0000663 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000664 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohmane49e7422011-07-15 22:39:09 +0000665 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000666 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson9f944592009-08-11 20:47:22 +0000667 zextOrTrunc(64), MVT::i64);
Nadav Rotem2a148662012-07-11 11:02:16 +0000668 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000669 isVolatile, isNonTemporal, Alignment, AAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000670 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000671
Dan Gohmane49e7422011-07-15 22:39:09 +0000672 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000673 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
674 // stores. If the target supports neither 32- nor 64-bits, this
675 // xform is certainly not worth it.
676 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad583abbc2010-12-07 08:25:19 +0000677 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson9f944592009-08-11 20:47:22 +0000678 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000679 if (TLI.isBigEndian()) std::swap(Lo, Hi);
680
Nadav Rotem2a148662012-07-11 11:02:16 +0000681 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Hal Finkelcc39b672014-07-24 12:16:19 +0000682 isNonTemporal, Alignment, AAInfo);
Nadav Rotem2a148662012-07-11 11:02:16 +0000683 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000684 DAG.getConstant(4, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000685 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000686 ST->getPointerInfo().getWithOffset(4),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000687 isVolatile, isNonTemporal, MinAlign(Alignment, 4U),
Hal Finkelcc39b672014-07-24 12:16:19 +0000688 AAInfo);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000689
Owen Anderson9f944592009-08-11 20:47:22 +0000690 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000691 }
692 }
693 }
Craig Topperc0196b12014-04-14 00:51:57 +0000694 return SDValue(nullptr, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000695}
696
Nadav Rotemde6fd282012-07-11 08:52:09 +0000697void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
698 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000699 SDValue Chain = ST->getChain();
700 SDValue Ptr = ST->getBasePtr();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000701 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000702
703 unsigned Alignment = ST->getAlignment();
704 bool isVolatile = ST->isVolatile();
705 bool isNonTemporal = ST->isNonTemporal();
Hal Finkelcc39b672014-07-24 12:16:19 +0000706 AAMDNodes AAInfo = ST->getAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000707
708 if (!ST->isTruncatingStore()) {
709 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
710 ReplaceNode(ST, OptStore);
711 return;
712 }
713
714 {
Nadav Rotem2a148662012-07-11 11:02:16 +0000715 SDValue Value = ST->getValue();
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000716 MVT VT = Value.getSimpleValueType();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000717 switch (TLI.getOperationAction(ISD::STORE, VT)) {
718 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000719 case TargetLowering::Legal: {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000720 // If this is an unaligned store and the target doesn't support it,
721 // expand it.
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000722 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000723 unsigned Align = ST->getAlignment();
724 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000725 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000726 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000727 if (Align < ABIAlignment)
Nadav Rotemde6fd282012-07-11 08:52:09 +0000728 ExpandUnalignedStore(cast<StoreSDNode>(Node),
729 DAG, TLI, this);
730 }
731 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000732 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000733 case TargetLowering::Custom: {
734 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
735 if (Res.getNode())
736 ReplaceNode(SDValue(Node, 0), Res);
737 return;
738 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000739 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000740 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellardb785bd72012-12-10 21:41:54 +0000741 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
742 "Can only promote stores to same size type");
743 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000744 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000745 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000746 ST->getPointerInfo(), isVolatile,
Hal Finkelcc39b672014-07-24 12:16:19 +0000747 isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000748 ReplaceNode(SDValue(Node, 0), Result);
749 break;
750 }
751 }
752 return;
753 }
754 } else {
Nadav Rotem2a148662012-07-11 11:02:16 +0000755 SDValue Value = ST->getValue();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000756
757 EVT StVT = ST->getMemoryVT();
758 unsigned StWidth = StVT.getSizeInBits();
759
760 if (StWidth != StVT.getStoreSizeInBits()) {
761 // Promote to a byte-sized store with upper bits zero if not
762 // storing an integral number of bytes. For example, promote
763 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
764 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
765 StVT.getStoreSizeInBits());
Nadav Rotem2a148662012-07-11 11:02:16 +0000766 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000767 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000768 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000769 NVT, isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000770 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000771 ReplaceNode(SDValue(Node, 0), Result);
772 } else if (StWidth & (StWidth - 1)) {
773 // If not storing a power-of-2 number of bits, expand as two stores.
774 assert(!StVT.isVector() && "Unsupported truncstore!");
775 unsigned RoundWidth = 1 << Log2_32(StWidth);
776 assert(RoundWidth < StWidth);
777 unsigned ExtraWidth = StWidth - RoundWidth;
778 assert(ExtraWidth < RoundWidth);
779 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
780 "Store size not an integral number of bytes!");
781 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
782 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
783 SDValue Lo, Hi;
784 unsigned IncrementSize;
785
786 if (TLI.isLittleEndian()) {
787 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
788 // Store the bottom RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000789 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemde6fd282012-07-11 08:52:09 +0000790 RoundVT,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000791 isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000792 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000793
794 // Store the remaining ExtraWidth bits.
795 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000796 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000797 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000798 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000799 DAG.getConstant(RoundWidth,
Jack Carter5c0af482013-11-19 23:43:22 +0000800 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000801 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000802 ST->getPointerInfo().getWithOffset(IncrementSize),
803 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000804 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000805 } else {
806 // Big endian - avoid unaligned stores.
807 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
808 // Store the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000809 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000810 DAG.getConstant(ExtraWidth,
Jack Carter5c0af482013-11-19 23:43:22 +0000811 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000812 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000813 RoundVT, 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,
Jack Carter5c0af482013-11-19 23:43:22 +0000819 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000820 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000821 ST->getPointerInfo().getWithOffset(IncrementSize),
822 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000823 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000824 }
825
826 // The order of the stores doesn't matter.
827 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
828 ReplaceNode(SDValue(Node, 0), Result);
829 } else {
Patrik Hagglundd7cdcf82012-12-19 08:28:51 +0000830 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
831 StVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000832 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000833 case TargetLowering::Legal: {
834 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000835 unsigned Align = ST->getAlignment();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000836 // If this is an unaligned store and the target doesn't support it,
837 // expand it.
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000838 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000839 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000840 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000841 if (Align < ABIAlignment)
Nadav Rotemde6fd282012-07-11 08:52:09 +0000842 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
843 }
844 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000845 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000846 case TargetLowering::Custom: {
847 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
848 if (Res.getNode())
849 ReplaceNode(SDValue(Node, 0), Res);
850 return;
851 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000852 case TargetLowering::Expand:
853 assert(!StVT.isVector() &&
854 "Vector Stores are handled in LegalizeVectorOps");
855
856 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem2a148662012-07-11 11:02:16 +0000857 assert(TLI.isTypeLegal(StVT) &&
858 "Do not know how to expand this store!");
859 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000860 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000861 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000862 isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000863 ReplaceNode(SDValue(Node, 0), Result);
864 break;
865 }
866 }
867 }
868}
869
870void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
871 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000872 SDValue Chain = LD->getChain(); // The chain.
873 SDValue Ptr = LD->getBasePtr(); // The base pointer.
874 SDValue Value; // The value returned by the load op.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000875 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000876
877 ISD::LoadExtType ExtType = LD->getExtensionType();
878 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000879 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem2a148662012-07-11 11:02:16 +0000880 SDValue RVal = SDValue(Node, 0);
881 SDValue RChain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000882
883 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
884 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000885 case TargetLowering::Legal: {
886 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000887 unsigned Align = LD->getAlignment();
Evan Chengc5735992012-09-18 01:34:40 +0000888 // If this is an unaligned load and the target doesn't support it,
889 // expand it.
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000890 if (!TLI.allowsMisalignedMemoryAccesses(LD->getMemoryVT(), AS, Align)) {
Evan Chengc5735992012-09-18 01:34:40 +0000891 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
892 unsigned ABIAlignment =
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000893 TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000894 if (Align < ABIAlignment){
Evan Chengc5735992012-09-18 01:34:40 +0000895 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
896 }
897 }
898 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000899 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000900 case TargetLowering::Custom: {
Evan Chengc5735992012-09-18 01:34:40 +0000901 SDValue Res = TLI.LowerOperation(RVal, DAG);
902 if (Res.getNode()) {
903 RVal = Res;
904 RChain = Res.getValue(1);
905 }
906 break;
Nadav Rotem2a148662012-07-11 11:02:16 +0000907 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000908 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000909 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellard30e2aa52012-12-10 21:41:58 +0000910 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
911 "Can only promote loads to same size type");
Nadav Rotemde6fd282012-07-11 08:52:09 +0000912
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000913 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
Nadav Rotem2a148662012-07-11 11:02:16 +0000914 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
915 RChain = Res.getValue(1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000916 break;
917 }
918 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000919 if (RChain.getNode() != Node) {
920 assert(RVal.getNode() != Node && "Load must be completely replaced");
921 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
922 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Chandler Carruth411fb402014-07-26 05:49:40 +0000923 if (UpdatedNodes) {
924 UpdatedNodes->insert(RVal.getNode());
925 UpdatedNodes->insert(RChain.getNode());
926 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000927 ReplacedNode(Node);
928 }
929 return;
930 }
931
932 EVT SrcVT = LD->getMemoryVT();
933 unsigned SrcWidth = SrcVT.getSizeInBits();
934 unsigned Alignment = LD->getAlignment();
935 bool isVolatile = LD->isVolatile();
936 bool isNonTemporal = LD->isNonTemporal();
Louis Gerbarg67474e32014-07-31 21:45:05 +0000937 bool isInvariant = LD->isInvariant();
Hal Finkelcc39b672014-07-24 12:16:19 +0000938 AAMDNodes AAInfo = LD->getAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000939
940 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
941 // Some targets pretend to have an i1 loading operation, and actually
942 // load an i8. This trick is correct for ZEXTLOAD because the top 7
943 // bits are guaranteed to be zero; it helps the optimizers understand
944 // that these bits are zero. It is also useful for EXTLOAD, since it
945 // tells the optimizers that those bits are undefined. It would be
946 // nice to have an effective generic way of getting these benefits...
947 // Until such a way is found, don't insist on promoting i1 here.
948 (SrcVT != MVT::i1 ||
949 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
950 // Promote to a byte-sized load if not loading an integral number of
951 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
952 unsigned NewWidth = SrcVT.getStoreSizeInBits();
953 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
954 SDValue Ch;
955
956 // The extra bits are guaranteed to be zero, since we stored them that
957 // way. A zext load from NVT thus automatically gives zext from SrcVT.
958
959 ISD::LoadExtType NewExtType =
960 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
961
962 SDValue Result =
963 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +0000964 Chain, Ptr, LD->getPointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000965 NVT, isVolatile, isNonTemporal, isInvariant, Alignment,
966 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000967
968 Ch = Result.getValue(1); // The chain.
969
970 if (ExtType == ISD::SEXTLOAD)
971 // Having the top bits zero doesn't help when sign extending.
972 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
973 Result.getValueType(),
974 Result, DAG.getValueType(SrcVT));
975 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
976 // All the top bits are guaranteed to be zero - inform the optimizers.
977 Result = DAG.getNode(ISD::AssertZext, dl,
978 Result.getValueType(), Result,
979 DAG.getValueType(SrcVT));
980
Nadav Rotem2a148662012-07-11 11:02:16 +0000981 Value = Result;
982 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +0000983 } else if (SrcWidth & (SrcWidth - 1)) {
984 // If not loading a power-of-2 number of bits, expand as two loads.
985 assert(!SrcVT.isVector() && "Unsupported extload!");
986 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
987 assert(RoundWidth < SrcWidth);
988 unsigned ExtraWidth = SrcWidth - RoundWidth;
989 assert(ExtraWidth < RoundWidth);
990 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
991 "Load size not an integral number of bytes!");
992 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
993 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
994 SDValue Lo, Hi, Ch;
995 unsigned IncrementSize;
996
997 if (TLI.isLittleEndian()) {
998 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
999 // Load the bottom RoundWidth bits.
1000 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +00001001 Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001002 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001003 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001004
1005 // Load the remaining ExtraWidth bits.
1006 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001007 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +00001008 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +00001009 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001010 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001011 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001012 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001013
1014 // Build a factor node to remember that this load is independent of
1015 // the other one.
1016 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1017 Hi.getValue(1));
1018
1019 // Move the top bits to the right place.
1020 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1021 DAG.getConstant(RoundWidth,
Jack Carter5c0af482013-11-19 23:43:22 +00001022 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001023
1024 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001025 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001026 } else {
1027 // Big endian - avoid unaligned loads.
1028 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1029 // Load the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +00001030 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001031 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001032 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001033
1034 // Load the remaining ExtraWidth bits.
1035 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001036 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +00001037 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001038 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem2a148662012-07-11 11:02:16 +00001039 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001040 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001041 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001042 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001043
1044 // Build a factor node to remember that this load is independent of
1045 // the other one.
1046 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1047 Hi.getValue(1));
1048
1049 // Move the top bits to the right place.
1050 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1051 DAG.getConstant(ExtraWidth,
Jack Carter5c0af482013-11-19 23:43:22 +00001052 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001053
1054 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001055 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001056 }
1057
Nadav Rotem2a148662012-07-11 11:02:16 +00001058 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001059 } else {
1060 bool isCustom = false;
Patrik Hagglund55d6f472012-12-14 09:05:13 +00001061 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001062 default: llvm_unreachable("This action is not supported yet!");
1063 case TargetLowering::Custom:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001064 isCustom = true;
1065 // FALLTHROUGH
Nadav Rotem2a148662012-07-11 11:02:16 +00001066 case TargetLowering::Legal: {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001067 Value = SDValue(Node, 0);
1068 Chain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001069
Matt Arsenault95b714c2014-03-11 00:01:25 +00001070 if (isCustom) {
1071 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1072 if (Res.getNode()) {
1073 Value = Res;
1074 Chain = Res.getValue(1);
1075 }
1076 } else {
1077 // If this is an unaligned load and the target doesn't support
1078 // it, expand it.
1079 EVT MemVT = LD->getMemoryVT();
1080 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001081 unsigned Align = LD->getAlignment();
1082 if (!TLI.allowsMisalignedMemoryAccesses(MemVT, AS, Align)) {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001083 Type *Ty =
1084 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1085 unsigned ABIAlignment =
1086 TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001087 if (Align < ABIAlignment){
Matt Arsenault95b714c2014-03-11 00:01:25 +00001088 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
1089 DAG, TLI, Value, Chain);
1090 }
1091 }
1092 }
1093 break;
Nadav Rotem2a148662012-07-11 11:02:16 +00001094 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001095 case TargetLowering::Expand:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001096 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) &&
1097 TLI.isTypeLegal(SrcVT)) {
1098 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
1099 LD->getMemOperand());
1100 unsigned ExtendOp;
1101 switch (ExtType) {
1102 case ISD::EXTLOAD:
1103 ExtendOp = (SrcVT.isFloatingPoint() ?
1104 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1105 break;
1106 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1107 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1108 default: llvm_unreachable("Unexpected extend load type!");
1109 }
1110 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1111 Chain = Load.getValue(1);
1112 break;
1113 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001114
Matt Arsenault95b714c2014-03-11 00:01:25 +00001115 assert(!SrcVT.isVector() &&
1116 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemde6fd282012-07-11 08:52:09 +00001117
Matt Arsenault95b714c2014-03-11 00:01:25 +00001118 // FIXME: This does not work for vectors on most targets. Sign-
1119 // and zero-extend operations are currently folded into extending
1120 // loads, whether they are legal or not, and then we end up here
1121 // without any support for legalizing them.
1122 assert(ExtType != ISD::EXTLOAD &&
1123 "EXTLOAD should always be supported!");
1124 // Turn the unsupported load into an EXTLOAD followed by an
1125 // explicit zero/sign extend inreg.
1126 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl,
1127 Node->getValueType(0),
1128 Chain, Ptr, SrcVT,
1129 LD->getMemOperand());
1130 SDValue ValRes;
1131 if (ExtType == ISD::SEXTLOAD)
1132 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1133 Result.getValueType(),
1134 Result, DAG.getValueType(SrcVT));
1135 else
1136 ValRes = DAG.getZeroExtendInReg(Result, dl,
1137 SrcVT.getScalarType());
1138 Value = ValRes;
1139 Chain = Result.getValue(1);
1140 break;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001141 }
1142 }
1143
1144 // Since loads produce two values, make sure to remember that we legalized
1145 // both of them.
Nadav Rotem2a148662012-07-11 11:02:16 +00001146 if (Chain.getNode() != Node) {
1147 assert(Value.getNode() != Node && "Load must be completely replaced");
1148 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1149 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00001150 if (UpdatedNodes) {
1151 UpdatedNodes->insert(Value.getNode());
1152 UpdatedNodes->insert(Chain.getNode());
1153 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001154 ReplacedNode(Node);
1155 }
1156}
1157
Dan Gohmanad946082011-07-15 21:42:20 +00001158/// LegalizeOp - Return a legal replacement for the given operation, with
1159/// all legal operands.
Dan Gohman198b7ff2011-11-03 21:49:52 +00001160void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
Chandler Carruthb1432742014-07-28 17:55:07 +00001161 DEBUG(dbgs() << "\nLegalizing: "; Node->dump(&DAG));
1162
Dan Gohman198b7ff2011-11-03 21:49:52 +00001163 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1164 return;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001165
Eli Friedman5e0d1502009-05-24 02:46:31 +00001166 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001167 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1168 TargetLowering::TypeLegal &&
Eli Friedman5e0d1502009-05-24 02:46:31 +00001169 "Unexpected illegal type!");
1170
1171 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001172 assert((TLI.getTypeAction(*DAG.getContext(),
1173 Node->getOperand(i).getValueType()) ==
1174 TargetLowering::TypeLegal ||
Eli Friedman5e0d1502009-05-24 02:46:31 +00001175 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1176 "Unexpected illegal type!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001177
Eli Friedman21d349b2009-05-27 01:25:56 +00001178 // Figure out the correct action; the way to query this varies by opcode
Bill Wendlingfb4ee9b2011-01-26 22:21:35 +00001179 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman21d349b2009-05-27 01:25:56 +00001180 bool SimpleFinishLegalizing = true;
Chris Lattnerdc750592005-01-07 07:47:09 +00001181 switch (Node->getOpcode()) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001182 case ISD::INTRINSIC_W_CHAIN:
1183 case ISD::INTRINSIC_WO_CHAIN:
1184 case ISD::INTRINSIC_VOID:
Eli Friedman21d349b2009-05-27 01:25:56 +00001185 case ISD::STACKSAVE:
Owen Anderson9f944592009-08-11 20:47:22 +00001186 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman21d349b2009-05-27 01:25:56 +00001187 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00001188 case ISD::VAARG:
1189 Action = TLI.getOperationAction(Node->getOpcode(),
1190 Node->getValueType(0));
1191 if (Action != TargetLowering::Promote)
1192 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1193 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00001194 case ISD::FP_TO_FP16:
Eli Friedman21d349b2009-05-27 01:25:56 +00001195 case ISD::SINT_TO_FP:
1196 case ISD::UINT_TO_FP:
1197 case ISD::EXTRACT_VECTOR_ELT:
1198 Action = TLI.getOperationAction(Node->getOpcode(),
1199 Node->getOperand(0).getValueType());
1200 break;
1201 case ISD::FP_ROUND_INREG:
1202 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001203 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00001204 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1205 break;
1206 }
Eli Friedman342e8df2011-08-24 20:50:09 +00001207 case ISD::ATOMIC_STORE: {
1208 Action = TLI.getOperationAction(Node->getOpcode(),
1209 Node->getOperand(2).getValueType());
1210 break;
1211 }
Eli Friedmane1bc3792009-05-28 03:06:16 +00001212 case ISD::SELECT_CC:
1213 case ISD::SETCC:
1214 case ISD::BR_CC: {
1215 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1216 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1217 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001218 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedmane1bc3792009-05-28 03:06:16 +00001219 ISD::CondCode CCCode =
1220 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1221 Action = TLI.getCondCodeAction(CCCode, OpVT);
1222 if (Action == TargetLowering::Legal) {
1223 if (Node->getOpcode() == ISD::SELECT_CC)
1224 Action = TLI.getOperationAction(Node->getOpcode(),
1225 Node->getValueType(0));
1226 else
1227 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1228 }
1229 break;
1230 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001231 case ISD::LOAD:
1232 case ISD::STORE:
Eli Friedman5df72022009-05-28 03:56:57 +00001233 // FIXME: Model these properly. LOAD and STORE are complicated, and
1234 // STORE expects the unlegalized operand in some cases.
1235 SimpleFinishLegalizing = false;
1236 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001237 case ISD::CALLSEQ_START:
1238 case ISD::CALLSEQ_END:
Eli Friedman5df72022009-05-28 03:56:57 +00001239 // FIXME: This shouldn't be necessary. These nodes have special properties
1240 // dealing with the recursive nature of legalization. Removing this
1241 // special case should be done as part of making LegalizeDAG non-recursive.
1242 SimpleFinishLegalizing = false;
1243 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001244 case ISD::EXTRACT_ELEMENT:
1245 case ISD::FLT_ROUNDS_:
1246 case ISD::SADDO:
1247 case ISD::SSUBO:
1248 case ISD::UADDO:
1249 case ISD::USUBO:
1250 case ISD::SMULO:
1251 case ISD::UMULO:
1252 case ISD::FPOWI:
1253 case ISD::MERGE_VALUES:
1254 case ISD::EH_RETURN:
1255 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00001256 case ISD::EH_SJLJ_SETJMP:
1257 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmand6f28342009-05-27 03:33:44 +00001258 // These operations lie about being legal: when they claim to be legal,
1259 // they should actually be expanded.
Eli Friedman21d349b2009-05-27 01:25:56 +00001260 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1261 if (Action == TargetLowering::Legal)
1262 Action = TargetLowering::Expand;
1263 break;
Duncan Sandsa0984362011-09-06 13:37:06 +00001264 case ISD::INIT_TRAMPOLINE:
1265 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman21d349b2009-05-27 01:25:56 +00001266 case ISD::FRAMEADDR:
1267 case ISD::RETURNADDR:
Eli Friedman2892d822009-05-27 12:20:41 +00001268 // These operations lie about being legal: when they claim to be legal,
1269 // they should actually be custom-lowered.
1270 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1271 if (Action == TargetLowering::Legal)
1272 Action = TargetLowering::Custom;
Eli Friedman21d349b2009-05-27 01:25:56 +00001273 break;
Renato Golinc7aea402014-05-06 16:51:25 +00001274 case ISD::READ_REGISTER:
1275 case ISD::WRITE_REGISTER:
1276 // Named register is legal in the DAG, but blocked by register name
1277 // selection if not implemented by target (to chose the correct register)
1278 // They'll be converted to Copy(To/From)Reg.
1279 Action = TargetLowering::Legal;
1280 break;
Shuxin Yangcdde0592012-10-19 20:11:16 +00001281 case ISD::DEBUGTRAP:
1282 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1283 if (Action == TargetLowering::Expand) {
1284 // replace ISD::DEBUGTRAP with ISD::TRAP
1285 SDValue NewVal;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001286 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yang1479fcd2012-10-19 23:00:20 +00001287 Node->getOperand(0));
Shuxin Yangcdde0592012-10-19 20:11:16 +00001288 ReplaceNode(Node, NewVal.getNode());
1289 LegalizeOp(NewVal.getNode());
1290 return;
1291 }
1292 break;
1293
Chris Lattnerdc750592005-01-07 07:47:09 +00001294 default:
Chris Lattner3eb86932005-05-14 06:34:48 +00001295 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001296 Action = TargetLowering::Legal;
1297 } else {
1298 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattner3eb86932005-05-14 06:34:48 +00001299 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001300 break;
1301 }
1302
1303 if (SimpleFinishLegalizing) {
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001304 SDNode *NewNode = Node;
Eli Friedman21d349b2009-05-27 01:25:56 +00001305 switch (Node->getOpcode()) {
1306 default: break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001307 case ISD::SHL:
1308 case ISD::SRL:
1309 case ISD::SRA:
1310 case ISD::ROTL:
1311 case ISD::ROTR:
1312 // Legalizing shifts/rotates requires adjusting the shift amount
1313 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001314 if (!Node->getOperand(1).getValueType().isVector()) {
1315 SDValue SAO =
1316 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1317 Node->getOperand(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001318 HandleSDNode Handle(SAO);
1319 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001320 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1321 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001322 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001323 break;
Dan Gohman4906f732009-08-18 23:36:17 +00001324 case ISD::SRL_PARTS:
1325 case ISD::SRA_PARTS:
1326 case ISD::SHL_PARTS:
1327 // Legalizing shifts/rotates requires adjusting the shift amount
1328 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001329 if (!Node->getOperand(2).getValueType().isVector()) {
1330 SDValue SAO =
1331 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1332 Node->getOperand(2));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001333 HandleSDNode Handle(SAO);
1334 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001335 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1336 Node->getOperand(1),
1337 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001338 }
Dan Gohman2fa67c92009-08-18 23:52:48 +00001339 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001340 }
1341
Dan Gohman198b7ff2011-11-03 21:49:52 +00001342 if (NewNode != Node) {
Chandler Carruth411fb402014-07-26 05:49:40 +00001343 ReplaceNode(Node, NewNode);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001344 Node = NewNode;
1345 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001346 switch (Action) {
1347 case TargetLowering::Legal:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001348 return;
Nadav Rotem2a148662012-07-11 11:02:16 +00001349 case TargetLowering::Custom: {
Eli Friedman21d349b2009-05-27 01:25:56 +00001350 // FIXME: The handling for custom lowering with multiple results is
1351 // a complete mess.
Nadav Rotem2a148662012-07-11 11:02:16 +00001352 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1353 if (Res.getNode()) {
Chandler Carruth98655fa2014-07-26 05:52:51 +00001354 if (!(Res.getNode() != Node || Res.getResNo() != 0))
1355 return;
1356
1357 if (Node->getNumValues() == 1) {
1358 // We can just directly replace this node with the lowered value.
1359 ReplaceNode(SDValue(Node, 0), Res);
1360 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001361 }
Chandler Carruth98655fa2014-07-26 05:52:51 +00001362
1363 SmallVector<SDValue, 8> ResultVals;
1364 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1365 ResultVals.push_back(Res.getValue(i));
1366 ReplaceNode(Node, ResultVals.data());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001367 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001368 }
Nadav Rotem2a148662012-07-11 11:02:16 +00001369 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001370 // FALL THROUGH
1371 case TargetLowering::Expand:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001372 ExpandNode(Node);
1373 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001374 case TargetLowering::Promote:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001375 PromoteNode(Node);
1376 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001377 }
1378 }
1379
1380 switch (Node->getOpcode()) {
1381 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001382#ifndef NDEBUG
David Greeneae4f2662010-01-05 01:24:53 +00001383 dbgs() << "NODE: ";
1384 Node->dump( &DAG);
1385 dbgs() << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001386#endif
Craig Topperee4dab52012-02-05 08:31:47 +00001387 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendlingf359fed2007-11-13 00:44:25 +00001388
Dan Gohman198b7ff2011-11-03 21:49:52 +00001389 case ISD::CALLSEQ_START:
Dan Gohman9b9c9702011-10-29 00:41:52 +00001390 case ISD::CALLSEQ_END:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001391 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001392 case ISD::LOAD: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001393 return LegalizeLoadOps(Node);
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001394 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001395 case ISD::STORE: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001396 return LegalizeStoreOps(Node);
Evan Cheng31d15fa2005-12-23 07:29:34 +00001397 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001398 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001399}
1400
Eli Friedman40afdb62009-05-23 22:37:25 +00001401SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1402 SDValue Vec = Op.getOperand(0);
1403 SDValue Idx = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001404 SDLoc dl(Op);
Hal Finkel90adf0f2014-03-30 15:10:18 +00001405
1406 // Before we generate a new store to a temporary stack slot, see if there is
1407 // already one that we can use. There often is because when we scalarize
1408 // vector operations (using SelectionDAG::UnrollVectorOp for example) a whole
1409 // series of EXTRACT_VECTOR_ELT nodes are generated, one for each element in
1410 // the vector. If all are expanded here, we don't want one store per vector
1411 // element.
1412 SDValue StackPtr, Ch;
1413 for (SDNode::use_iterator UI = Vec.getNode()->use_begin(),
1414 UE = Vec.getNode()->use_end(); UI != UE; ++UI) {
1415 SDNode *User = *UI;
1416 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(User)) {
1417 if (ST->isIndexed() || ST->isTruncatingStore() ||
1418 ST->getValue() != Vec)
1419 continue;
1420
1421 // Make sure that nothing else could have stored into the destination of
1422 // this store.
1423 if (!ST->getChain().reachesChainWithoutSideEffects(DAG.getEntryNode()))
1424 continue;
1425
1426 StackPtr = ST->getBasePtr();
1427 Ch = SDValue(ST, 0);
1428 break;
1429 }
1430 }
1431
1432 if (!Ch.getNode()) {
1433 // Store the value to a temporary stack slot, then LOAD the returned part.
1434 StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1435 Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1436 MachinePointerInfo(), false, false, 0);
1437 }
Eli Friedman40afdb62009-05-23 22:37:25 +00001438
1439 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +00001440 unsigned EltSize =
1441 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman40afdb62009-05-23 22:37:25 +00001442 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1443 DAG.getConstant(EltSize, Idx.getValueType()));
1444
Matt Arsenault873bb3e2013-11-17 02:24:21 +00001445 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
Eli Friedman40afdb62009-05-23 22:37:25 +00001446 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1447
Eli Friedman2b77eef2009-07-09 22:01:03 +00001448 if (Op.getValueType().isVector())
Chris Lattner1ffcf522010-09-21 16:36:31 +00001449 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001450 false, false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +00001451 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d178ed2010-09-21 17:04:51 +00001452 MachinePointerInfo(),
1453 Vec.getValueType().getVectorElementType(),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001454 false, false, false, 0);
Eli Friedman40afdb62009-05-23 22:37:25 +00001455}
1456
David Greenebab5e6e2011-01-26 19:13:22 +00001457SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1458 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1459
1460 SDValue Vec = Op.getOperand(0);
1461 SDValue Part = Op.getOperand(1);
1462 SDValue Idx = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001463 SDLoc dl(Op);
David Greenebab5e6e2011-01-26 19:13:22 +00001464
1465 // Store the value to a temporary stack slot, then LOAD the returned part.
1466
1467 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1468 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1469 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1470
1471 // First store the whole vector.
1472 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1473 false, false, 0);
1474
1475 // Then store the inserted part.
1476
1477 // Add the offset to the index.
1478 unsigned EltSize =
1479 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1480
1481 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1482 DAG.getConstant(EltSize, Idx.getValueType()));
Matt Arsenault64283bd2013-11-17 02:31:26 +00001483 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
David Greenebab5e6e2011-01-26 19:13:22 +00001484
1485 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1486 StackPtr);
1487
1488 // Store the subvector.
Owen Andersonb5a25992014-11-18 20:50:19 +00001489 Ch = DAG.getStore(Ch, dl, Part, SubStackPtr,
David Greenebab5e6e2011-01-26 19:13:22 +00001490 MachinePointerInfo(), false, false, 0);
1491
1492 // Finally, load the updated vector.
1493 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001494 false, false, false, 0);
David Greenebab5e6e2011-01-26 19:13:22 +00001495}
1496
Eli Friedmanaee3f622009-06-06 07:04:42 +00001497SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1498 // We can't handle this case efficiently. Allocate a sufficiently
1499 // aligned object on the stack, store each element into it, then load
1500 // the result as a vector.
1501 // Create the stack frame object.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001502 EVT VT = Node->getValueType(0);
Dale Johannesenb91eba32009-11-21 00:53:23 +00001503 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001504 SDLoc dl(Node);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001505 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001506 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattner1ffcf522010-09-21 16:36:31 +00001507 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001508
1509 // Emit a store of each element to the stack slot.
1510 SmallVector<SDValue, 8> Stores;
Dan Gohman9b80f862010-02-25 15:20:39 +00001511 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedmanaee3f622009-06-06 07:04:42 +00001512 // Store (in the right endianness) the elements to memory.
1513 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1514 // Ignore undef elements.
1515 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1516
1517 unsigned Offset = TypeByteSize*i;
1518
1519 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1520 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1521
Dan Gohman2a8e3772010-02-25 20:30:49 +00001522 // If the destination vector element type is narrower than the source
1523 // element type, only store the bits necessary.
1524 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesenb91eba32009-11-21 00:53:23 +00001525 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001526 Node->getOperand(i), Idx,
1527 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001528 EltVT, false, false, 0));
Mon P Wang586d9972010-01-24 00:05:03 +00001529 } else
Jim Grosbach9b7755f2010-07-02 17:41:59 +00001530 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001531 Node->getOperand(i), Idx,
1532 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001533 false, false, 0));
Eli Friedmanaee3f622009-06-06 07:04:42 +00001534 }
1535
1536 SDValue StoreChain;
1537 if (!Stores.empty()) // Not all undef elements?
Craig Topper48d114b2014-04-26 18:35:24 +00001538 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001539 else
1540 StoreChain = DAG.getEntryNode();
1541
1542 // Result is a load from the stack slot.
Stephen Lincfe7f352013-07-08 00:37:03 +00001543 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001544 false, false, false, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001545}
1546
Eli Friedman2892d822009-05-27 12:20:41 +00001547SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001548 SDLoc dl(Node);
Eli Friedman2892d822009-05-27 12:20:41 +00001549 SDValue Tmp1 = Node->getOperand(0);
1550 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands4c55f762010-03-12 11:45:06 +00001551
1552 // Get the sign bit of the RHS. First obtain a value that has the same
1553 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman2892d822009-05-27 12:20:41 +00001554 SDValue SignBit;
Duncan Sands4c55f762010-03-12 11:45:06 +00001555 EVT FloatVT = Tmp2.getValueType();
1556 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohmane49e7422011-07-15 22:39:09 +00001557 if (TLI.isTypeLegal(IVT)) {
Duncan Sands4c55f762010-03-12 11:45:06 +00001558 // Convert to an integer with the same sign bit.
Wesley Peck527da1b2010-11-23 03:31:01 +00001559 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman2892d822009-05-27 12:20:41 +00001560 } else {
Duncan Sands4c55f762010-03-12 11:45:06 +00001561 // Store the float to memory, then load the sign part out as an integer.
1562 MVT LoadTy = TLI.getPointerTy();
1563 // First create a temporary that is aligned for both the load and store.
1564 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1565 // Then store the float to it.
Eli Friedman2892d822009-05-27 12:20:41 +00001566 SDValue Ch =
Chris Lattner676c61d2010-09-21 18:41:36 +00001567 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00001568 false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001569 if (TLI.isBigEndian()) {
1570 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1571 // Load out a legal integer with the same sign bit as the float.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001572 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001573 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001574 } else { // Little endian
1575 SDValue LoadPtr = StackPtr;
1576 // The float may be wider than the integer we are going to load. Advance
1577 // the pointer so that the loaded integer will contain the sign bit.
1578 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1579 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
Jack Carter5c0af482013-11-19 23:43:22 +00001580 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(), LoadPtr,
1581 DAG.getConstant(ByteOffset, LoadPtr.getValueType()));
Duncan Sands4c55f762010-03-12 11:45:06 +00001582 // Load a legal integer containing the sign bit.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001583 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001584 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001585 // Move the sign bit to the top bit of the loaded integer.
1586 unsigned BitShift = LoadTy.getSizeInBits() -
1587 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1588 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1589 if (BitShift)
1590 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Andersonb2c80da2011-02-25 21:41:48 +00001591 DAG.getConstant(BitShift,
1592 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands4c55f762010-03-12 11:45:06 +00001593 }
Eli Friedman2892d822009-05-27 12:20:41 +00001594 }
Duncan Sands4c55f762010-03-12 11:45:06 +00001595 // Now get the sign bit proper, by seeing whether the value is negative.
Matt Arsenault758659232013-05-18 00:21:46 +00001596 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
Duncan Sands4c55f762010-03-12 11:45:06 +00001597 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1598 ISD::SETLT);
Eli Friedman2892d822009-05-27 12:20:41 +00001599 // Get the absolute value of the result.
1600 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1601 // Select between the nabs and abs value based on the sign bit of
1602 // the input.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00001603 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
Jack Carter5c0af482013-11-19 23:43:22 +00001604 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1605 AbsVal);
Eli Friedman2892d822009-05-27 12:20:41 +00001606}
1607
Eli Friedman2892d822009-05-27 12:20:41 +00001608void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1609 SmallVectorImpl<SDValue> &Results) {
1610 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1611 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1612 " not tell us which reg is the stack pointer!");
Andrew Trickef9de2a2013-05-25 02:42:55 +00001613 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001614 EVT VT = Node->getValueType(0);
Eli Friedman2892d822009-05-27 12:20:41 +00001615 SDValue Tmp1 = SDValue(Node, 0);
1616 SDValue Tmp2 = SDValue(Node, 1);
1617 SDValue Tmp3 = Node->getOperand(2);
1618 SDValue Chain = Tmp1.getOperand(0);
1619
1620 // Chain the dynamic stack allocation so that it doesn't modify the stack
1621 // pointer when other instructions are using the stack.
Andrew Trickad6d08a2013-05-29 22:03:55 +00001622 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
1623 SDLoc(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00001624
1625 SDValue Size = Tmp2.getOperand(1);
1626 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1627 Chain = SP.getValue(1);
1628 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Eric Christopherd9134482014-08-04 21:25:23 +00001629 unsigned StackAlign =
Eric Christopher85de8f92014-10-09 01:35:27 +00001630 DAG.getSubtarget().getFrameLowering()->getStackAlignment();
Eli Friedman2892d822009-05-27 12:20:41 +00001631 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Elena Demikhovsky82a46eb2013-10-14 07:26:51 +00001632 if (Align > StackAlign)
1633 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
1634 DAG.getConstant(-(uint64_t)Align, VT));
Eli Friedman2892d822009-05-27 12:20:41 +00001635 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1636
1637 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00001638 DAG.getIntPtrConstant(0, true), SDValue(),
1639 SDLoc(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00001640
1641 Results.push_back(Tmp1);
1642 Results.push_back(Tmp2);
1643}
1644
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001645/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Tom Stellard08690a12013-09-28 02:50:32 +00001646/// condition code CC on the current target.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001647///
Tom Stellard08690a12013-09-28 02:50:32 +00001648/// If the SETCC has been legalized using AND / OR, then the legalized node
Daniel Sandersedc071b2013-11-21 13:24:49 +00001649/// will be stored in LHS. RHS and CC will be set to SDValue(). NeedInvert
1650/// will be set to false.
1651///
Tom Stellard08690a12013-09-28 02:50:32 +00001652/// If the SETCC has been legalized by using getSetCCSwappedOperands(),
Daniel Sandersedc071b2013-11-21 13:24:49 +00001653/// then the values of LHS and RHS will be swapped, CC will be set to the
1654/// new condition, and NeedInvert will be set to false.
1655///
1656/// If the SETCC has been legalized using the inverse condcode, then LHS and
1657/// RHS will be unchanged, CC will set to the inverted condcode, and NeedInvert
1658/// will be set to true. The caller must invert the result of the SETCC with
Pete Cooper7fd1d722014-05-12 23:26:58 +00001659/// SelectionDAG::getLogicalNOT() or take equivalent action to swap the effect
1660/// of a true/false result.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001661///
Tom Stellard08690a12013-09-28 02:50:32 +00001662/// \returns true if the SetCC has been legalized, false if it hasn't.
1663bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001664 SDValue &LHS, SDValue &RHS,
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001665 SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +00001666 bool &NeedInvert,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001667 SDLoc dl) {
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001668 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001669 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
Daniel Sandersedc071b2013-11-21 13:24:49 +00001670 NeedInvert = false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001671 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topperee4dab52012-02-05 08:31:47 +00001672 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001673 case TargetLowering::Legal:
1674 // Nothing to do.
1675 break;
1676 case TargetLowering::Expand: {
Tom Stellardcd428182013-09-28 02:50:38 +00001677 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1678 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1679 std::swap(LHS, RHS);
1680 CC = DAG.getCondCode(InvCC);
1681 return true;
1682 }
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001683 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1684 unsigned Opc = 0;
1685 switch (CCCode) {
Craig Topperee4dab52012-02-05 08:31:47 +00001686 default: llvm_unreachable("Don't know how to expand this condition!");
Stephen Lincfe7f352013-07-08 00:37:03 +00001687 case ISD::SETO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001688 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1689 == TargetLowering::Legal
1690 && "If SETO is expanded, SETOEQ must be legal!");
1691 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
Stephen Lincfe7f352013-07-08 00:37:03 +00001692 case ISD::SETUO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001693 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1694 == TargetLowering::Legal
1695 && "If SETUO is expanded, SETUNE must be legal!");
1696 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1697 case ISD::SETOEQ:
1698 case ISD::SETOGT:
1699 case ISD::SETOGE:
1700 case ISD::SETOLT:
1701 case ISD::SETOLE:
Stephen Lincfe7f352013-07-08 00:37:03 +00001702 case ISD::SETONE:
1703 case ISD::SETUEQ:
1704 case ISD::SETUNE:
1705 case ISD::SETUGT:
1706 case ISD::SETUGE:
1707 case ISD::SETULT:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001708 case ISD::SETULE:
1709 // If we are floating point, assign and break, otherwise fall through.
1710 if (!OpVT.isInteger()) {
1711 // We can use the 4th bit to tell if we are the unordered
1712 // or ordered version of the opcode.
1713 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1714 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1715 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1716 break;
1717 }
1718 // Fallthrough if we are unsigned integer.
1719 case ISD::SETLE:
1720 case ISD::SETGT:
1721 case ISD::SETGE:
1722 case ISD::SETLT:
Tom Stellardcd428182013-09-28 02:50:38 +00001723 // We only support using the inverted operation, which is computed above
1724 // and not a different manner of supporting expanding these cases.
1725 llvm_unreachable("Don't know how to expand this condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00001726 case ISD::SETNE:
1727 case ISD::SETEQ:
1728 // Try inverting the result of the inverse condition.
1729 InvCC = CCCode == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ;
1730 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1731 CC = DAG.getCondCode(InvCC);
1732 NeedInvert = true;
1733 return true;
1734 }
1735 // If inverting the condition didn't work then we have no means to expand
1736 // the condition.
1737 llvm_unreachable("Don't know how to expand this condition!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001738 }
Stephen Lincfe7f352013-07-08 00:37:03 +00001739
Micah Villmow0242b9b2012-10-10 20:50:51 +00001740 SDValue SetCC1, SetCC2;
1741 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1742 // If we aren't the ordered or unorder operation,
1743 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1744 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1745 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1746 } else {
1747 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1748 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1749 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1750 }
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001751 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001752 RHS = SDValue();
1753 CC = SDValue();
Tom Stellard08690a12013-09-28 02:50:32 +00001754 return true;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001755 }
1756 }
Tom Stellard08690a12013-09-28 02:50:32 +00001757 return false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001758}
1759
Chris Lattner87bc3e72008-01-16 07:45:30 +00001760/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1761/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1762/// a load from the stack slot to DestVT, extending it if needed.
1763/// The resultant code need not be legal.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001764SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001765 EVT SlotVT,
1766 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001767 SDLoc dl) {
Chris Lattner36e663d2005-12-23 00:16:34 +00001768 // Create the stack frame object.
Bob Wilsonf074ca72009-04-10 18:48:47 +00001769 unsigned SrcAlign =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001770 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson117c9e82009-08-12 00:36:31 +00001771 getTypeForEVT(*DAG.getContext()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001772 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001773
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001774 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1775 int SPFI = StackPtrFI->getIndex();
Chris Lattner6963c1f2010-09-21 17:42:31 +00001776 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001777
Duncan Sands13237ac2008-06-06 12:08:01 +00001778 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1779 unsigned SlotSize = SlotVT.getSizeInBits();
1780 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattner229907c2011-07-18 04:54:35 +00001781 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001782 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001783
Chris Lattner87bc3e72008-01-16 07:45:30 +00001784 // Emit a store to the stack slot. Use a truncstore if the input value is
1785 // later than DestVT.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001786 SDValue Store;
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001787
Chris Lattner87bc3e72008-01-16 07:45:30 +00001788 if (SrcSize > SlotSize)
Dale Johannesena02e45c2009-02-02 22:12:50 +00001789 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001790 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001791 else {
1792 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesena02e45c2009-02-02 22:12:50 +00001793 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001794 PtrInfo, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001795 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001796
Chris Lattner36e663d2005-12-23 00:16:34 +00001797 // Result is a load from the stack slot.
Chris Lattner87bc3e72008-01-16 07:45:30 +00001798 if (SlotSize == DestSize)
Chris Lattner6963c1f2010-09-21 17:42:31 +00001799 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001800 false, false, false, DestAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001801
Chris Lattner87bc3e72008-01-16 07:45:30 +00001802 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastings81c43062011-02-16 16:23:55 +00001803 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001804 PtrInfo, SlotVT, false, false, false, DestAlign);
Chris Lattner36e663d2005-12-23 00:16:34 +00001805}
1806
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001807SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001808 SDLoc dl(Node);
Chris Lattner6be79822006-04-04 17:23:26 +00001809 // Create a vector sized/aligned stack slot, store the value to element #0,
1810 // then load the whole vector back out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001811 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman2d489b52008-02-06 22:27:42 +00001812
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001813 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1814 int SPFI = StackPtrFI->getIndex();
1815
Duncan Sandse4ff21b2009-04-18 20:16:54 +00001816 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1817 StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001818 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +00001819 Node->getValueType(0).getVectorElementType(),
1820 false, false, 0);
Dale Johannesena02e45c2009-02-02 22:12:50 +00001821 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001822 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001823 false, false, false, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00001824}
1825
Hal Finkelb811b6d2014-03-31 19:42:55 +00001826static bool
1827ExpandBVWithShuffles(SDNode *Node, SelectionDAG &DAG,
1828 const TargetLowering &TLI, SDValue &Res) {
1829 unsigned NumElems = Node->getNumOperands();
1830 SDLoc dl(Node);
1831 EVT VT = Node->getValueType(0);
1832
1833 // Try to group the scalars into pairs, shuffle the pairs together, then
1834 // shuffle the pairs of pairs together, etc. until the vector has
1835 // been built. This will work only if all of the necessary shuffle masks
1836 // are legal.
1837
1838 // We do this in two phases; first to check the legality of the shuffles,
1839 // and next, assuming that all shuffles are legal, to create the new nodes.
1840 for (int Phase = 0; Phase < 2; ++Phase) {
1841 SmallVector<std::pair<SDValue, SmallVector<int, 16> >, 16> IntermedVals,
1842 NewIntermedVals;
1843 for (unsigned i = 0; i < NumElems; ++i) {
1844 SDValue V = Node->getOperand(i);
1845 if (V.getOpcode() == ISD::UNDEF)
1846 continue;
1847
1848 SDValue Vec;
1849 if (Phase)
1850 Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, V);
1851 IntermedVals.push_back(std::make_pair(Vec, SmallVector<int, 16>(1, i)));
1852 }
1853
1854 while (IntermedVals.size() > 2) {
1855 NewIntermedVals.clear();
1856 for (unsigned i = 0, e = (IntermedVals.size() & ~1u); i < e; i += 2) {
1857 // This vector and the next vector are shuffled together (simply to
1858 // append the one to the other).
1859 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1860
1861 SmallVector<int, 16> FinalIndices;
1862 FinalIndices.reserve(IntermedVals[i].second.size() +
1863 IntermedVals[i+1].second.size());
1864
1865 int k = 0;
1866 for (unsigned j = 0, f = IntermedVals[i].second.size(); j != f;
1867 ++j, ++k) {
1868 ShuffleVec[k] = j;
1869 FinalIndices.push_back(IntermedVals[i].second[j]);
1870 }
1871 for (unsigned j = 0, f = IntermedVals[i+1].second.size(); j != f;
1872 ++j, ++k) {
1873 ShuffleVec[k] = NumElems + j;
1874 FinalIndices.push_back(IntermedVals[i+1].second[j]);
1875 }
1876
1877 SDValue Shuffle;
1878 if (Phase)
1879 Shuffle = DAG.getVectorShuffle(VT, dl, IntermedVals[i].first,
1880 IntermedVals[i+1].first,
1881 ShuffleVec.data());
1882 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1883 return false;
Benjamin Kramerc6cc58e2014-10-04 16:55:56 +00001884 NewIntermedVals.push_back(
1885 std::make_pair(Shuffle, std::move(FinalIndices)));
Hal Finkelb811b6d2014-03-31 19:42:55 +00001886 }
1887
1888 // If we had an odd number of defined values, then append the last
1889 // element to the array of new vectors.
1890 if ((IntermedVals.size() & 1) != 0)
1891 NewIntermedVals.push_back(IntermedVals.back());
1892
1893 IntermedVals.swap(NewIntermedVals);
1894 }
1895
1896 assert(IntermedVals.size() <= 2 && IntermedVals.size() > 0 &&
1897 "Invalid number of intermediate vectors");
1898 SDValue Vec1 = IntermedVals[0].first;
1899 SDValue Vec2;
1900 if (IntermedVals.size() > 1)
1901 Vec2 = IntermedVals[1].first;
1902 else if (Phase)
1903 Vec2 = DAG.getUNDEF(VT);
1904
1905 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1906 for (unsigned i = 0, e = IntermedVals[0].second.size(); i != e; ++i)
1907 ShuffleVec[IntermedVals[0].second[i]] = i;
1908 for (unsigned i = 0, e = IntermedVals[1].second.size(); i != e; ++i)
1909 ShuffleVec[IntermedVals[1].second[i]] = NumElems + i;
1910
1911 if (Phase)
1912 Res = DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
1913 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1914 return false;
1915 }
1916
1917 return true;
1918}
Chris Lattner6be79822006-04-04 17:23:26 +00001919
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001920/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman06c60b62007-07-16 14:29:03 +00001921/// support the operation, but do support the resultant vector type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001922SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilsonf6c21952009-04-13 20:20:30 +00001923 unsigned NumElems = Node->getNumOperands();
Eli Friedman32345872009-06-07 06:52:44 +00001924 SDValue Value1, Value2;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001925 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001926 EVT VT = Node->getValueType(0);
1927 EVT OpVT = Node->getOperand(0).getValueType();
1928 EVT EltVT = VT.getVectorElementType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001929
1930 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00001931 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001932 bool isOnlyLowElement = true;
Eli Friedman32345872009-06-07 06:52:44 +00001933 bool MoreThanTwoValues = false;
Chris Lattner77e271c2006-03-24 07:29:17 +00001934 bool isConstant = true;
Eli Friedman32345872009-06-07 06:52:44 +00001935 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001936 SDValue V = Node->getOperand(i);
Eli Friedman32345872009-06-07 06:52:44 +00001937 if (V.getOpcode() == ISD::UNDEF)
1938 continue;
1939 if (i > 0)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001940 isOnlyLowElement = false;
Eli Friedman32345872009-06-07 06:52:44 +00001941 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner77e271c2006-03-24 07:29:17 +00001942 isConstant = false;
Eli Friedman32345872009-06-07 06:52:44 +00001943
1944 if (!Value1.getNode()) {
1945 Value1 = V;
1946 } else if (!Value2.getNode()) {
1947 if (V != Value1)
1948 Value2 = V;
1949 } else if (V != Value1 && V != Value2) {
1950 MoreThanTwoValues = true;
1951 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001952 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001953
Eli Friedman32345872009-06-07 06:52:44 +00001954 if (!Value1.getNode())
1955 return DAG.getUNDEF(VT);
1956
1957 if (isOnlyLowElement)
Bob Wilsonf6c21952009-04-13 20:20:30 +00001958 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001959
Chris Lattner77e271c2006-03-24 07:29:17 +00001960 // If all elements are constants, create a load from the constant pool.
1961 if (isConstant) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001962 SmallVector<Constant*, 16> CV;
Chris Lattner77e271c2006-03-24 07:29:17 +00001963 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00001964 if (ConstantFPSDNode *V =
Chris Lattner77e271c2006-03-24 07:29:17 +00001965 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanec270fb2008-09-12 18:08:03 +00001966 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001967 } else if (ConstantSDNode *V =
Bob Wilsonf074ca72009-04-10 18:48:47 +00001968 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen6f7d5b22009-11-10 23:16:41 +00001969 if (OpVT==EltVT)
1970 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1971 else {
1972 // If OpVT and EltVT don't match, EltVT is not legal and the
1973 // element values have been promoted/truncated earlier. Undo this;
1974 // we don't want a v16i8 to become a v16i32 for example.
1975 const ConstantInt *CI = V->getConstantIntValue();
1976 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1977 CI->getZExtValue()));
1978 }
Chris Lattner77e271c2006-03-24 07:29:17 +00001979 } else {
1980 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner229907c2011-07-18 04:54:35 +00001981 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Andersonb292b8c2009-07-30 23:03:37 +00001982 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner77e271c2006-03-24 07:29:17 +00001983 }
1984 }
Owen Anderson4aa32952009-07-28 21:19:26 +00001985 Constant *CP = ConstantVector::get(CV);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001986 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1fb8aed2009-03-13 07:51:59 +00001987 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesena02e45c2009-02-02 22:12:50 +00001988 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00001989 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001990 false, false, false, Alignment);
Chris Lattner77e271c2006-03-24 07:29:17 +00001991 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001992
Hal Finkel19775142014-03-31 17:48:10 +00001993 SmallSet<SDValue, 16> DefinedValues;
1994 for (unsigned i = 0; i < NumElems; ++i) {
1995 if (Node->getOperand(i).getOpcode() == ISD::UNDEF)
1996 continue;
1997 DefinedValues.insert(Node->getOperand(i));
1998 }
1999
Hal Finkelb811b6d2014-03-31 19:42:55 +00002000 if (TLI.shouldExpandBuildVectorWithShuffles(VT, DefinedValues.size())) {
2001 if (!MoreThanTwoValues) {
2002 SmallVector<int, 8> ShuffleVec(NumElems, -1);
2003 for (unsigned i = 0; i < NumElems; ++i) {
2004 SDValue V = Node->getOperand(i);
2005 if (V.getOpcode() == ISD::UNDEF)
2006 continue;
2007 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
2008 }
2009 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
2010 // Get the splatted value into the low element of a vector register.
2011 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
2012 SDValue Vec2;
2013 if (Value2.getNode())
2014 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
2015 else
2016 Vec2 = DAG.getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002017
Hal Finkelb811b6d2014-03-31 19:42:55 +00002018 // Return shuffle(LowValVec, undef, <0,0,0,0>)
2019 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
2020 }
2021 } else {
2022 SDValue Res;
2023 if (ExpandBVWithShuffles(Node, DAG, TLI, Res))
2024 return Res;
Evan Cheng1d2e9952006-03-24 01:17:21 +00002025 }
2026 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002027
Eli Friedmanaee3f622009-06-06 07:04:42 +00002028 // Otherwise, we can't handle this case efficiently.
2029 return ExpandVectorBuildThroughStack(Node);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002030}
2031
Chris Lattneraac464e2005-01-21 06:05:23 +00002032// ExpandLibCall - Expand a node into a call to a libcall. If the result value
2033// does not fit into a register, return the lo part and set the hi part to the
2034// by-reg argument. If it does fit into a single register, return the result
2035// and leave the Hi part unset.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002036SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedmanb3554152009-05-27 02:21:29 +00002037 bool isSigned) {
Chris Lattneraac464e2005-01-21 06:05:23 +00002038 TargetLowering::ArgListTy Args;
Reid Spencere63b6512006-12-31 05:55:36 +00002039 TargetLowering::ArgListEntry Entry;
Chris Lattneraac464e2005-01-21 06:05:23 +00002040 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002041 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002042 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelcf0da6c2009-02-17 22:15:04 +00002043 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00002044 Entry.isSExt = isSigned;
Duncan Sands4c95dbd2008-02-14 17:28:50 +00002045 Entry.isZExt = !isSigned;
Reid Spencere63b6512006-12-31 05:55:36 +00002046 Args.push_back(Entry);
Chris Lattneraac464e2005-01-21 06:05:23 +00002047 }
Bill Wendling24c79f22008-09-16 21:48:12 +00002048 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang58c37942008-10-30 08:01:45 +00002049 TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00002050
Chris Lattner229907c2011-07-18 04:54:35 +00002051 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Chengd4b08732010-11-30 23:55:39 +00002052
Evan Chengf8bad082012-04-10 01:51:00 +00002053 // By default, the input chain to this libcall is the entry node of the
2054 // function. If the libcall is going to be emitted as a tail call then
2055 // TLI.isUsedByReturnOnly will change it to the right chain if the return
2056 // node which is being folded has a non-entry input chain.
2057 SDValue InChain = DAG.getEntryNode();
2058
Evan Chengd4b08732010-11-30 23:55:39 +00002059 // isTailCall may be true since the callee does not reference caller stack
2060 // frame. Check if it's in the right position.
Evan Cheng136861d2012-04-10 03:15:18 +00002061 SDValue TCChain = InChain;
Tim Northoverf1450d82013-01-09 13:18:15 +00002062 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Cheng136861d2012-04-10 03:15:18 +00002063 if (isTailCall)
2064 InChain = TCChain;
2065
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002066 TargetLowering::CallLoweringInfo CLI(DAG);
2067 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002068 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002069 .setTailCall(isTailCall).setSExtResult(isSigned).setZExtResult(!isSigned);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002070
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002071 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Chris Lattnera5bf1032005-05-12 04:49:08 +00002072
Evan Chengd4b08732010-11-30 23:55:39 +00002073 if (!CallInfo.second.getNode())
2074 // It's a tailcall, return the chain (which is the DAG root).
2075 return DAG.getRoot();
2076
Eli Friedman4a951bf2009-05-26 08:55:52 +00002077 return CallInfo.first;
Chris Lattneraac464e2005-01-21 06:05:23 +00002078}
2079
Dan Gohmanae9b1682011-05-16 22:09:53 +00002080/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherbcaedb52011-04-20 01:19:45 +00002081/// and returning a result of type RetVT.
2082SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
2083 const SDValue *Ops, unsigned NumOps,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002084 bool isSigned, SDLoc dl) {
Eric Christopherbcaedb52011-04-20 01:19:45 +00002085 TargetLowering::ArgListTy Args;
2086 Args.reserve(NumOps);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002087
Eric Christopherbcaedb52011-04-20 01:19:45 +00002088 TargetLowering::ArgListEntry Entry;
2089 for (unsigned i = 0; i != NumOps; ++i) {
2090 Entry.Node = Ops[i];
2091 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
2092 Entry.isSExt = isSigned;
2093 Entry.isZExt = !isSigned;
2094 Args.push_back(Entry);
2095 }
2096 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2097 TLI.getPointerTy());
Dan Gohmanae9b1682011-05-16 22:09:53 +00002098
Chris Lattner229907c2011-07-18 04:54:35 +00002099 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002100
2101 TargetLowering::CallLoweringInfo CLI(DAG);
2102 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002103 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002104 .setSExtResult(isSigned).setZExtResult(!isSigned);
2105
Justin Holewinskiaa583972012-05-25 16:35:28 +00002106 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002107
Eric Christopherbcaedb52011-04-20 01:19:45 +00002108 return CallInfo.first;
2109}
2110
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002111// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
2112// ExpandLibCall except that the first operand is the in-chain.
2113std::pair<SDValue, SDValue>
2114SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
2115 SDNode *Node,
2116 bool isSigned) {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002117 SDValue InChain = Node->getOperand(0);
2118
2119 TargetLowering::ArgListTy Args;
2120 TargetLowering::ArgListEntry Entry;
2121 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
2122 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002123 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002124 Entry.Node = Node->getOperand(i);
2125 Entry.Ty = ArgTy;
2126 Entry.isSExt = isSigned;
2127 Entry.isZExt = !isSigned;
2128 Args.push_back(Entry);
2129 }
2130 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2131 TLI.getPointerTy());
2132
Chris Lattner229907c2011-07-18 04:54:35 +00002133 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002134
2135 TargetLowering::CallLoweringInfo CLI(DAG);
2136 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002137 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002138 .setSExtResult(isSigned).setZExtResult(!isSigned);
2139
Justin Holewinskiaa583972012-05-25 16:35:28 +00002140 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002141
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002142 return CallInfo;
2143}
2144
Eli Friedmand6f28342009-05-27 03:33:44 +00002145SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
2146 RTLIB::Libcall Call_F32,
2147 RTLIB::Libcall Call_F64,
2148 RTLIB::Libcall Call_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00002149 RTLIB::Libcall Call_F128,
Eli Friedmand6f28342009-05-27 03:33:44 +00002150 RTLIB::Libcall Call_PPCF128) {
2151 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002152 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002153 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson9f944592009-08-11 20:47:22 +00002154 case MVT::f32: LC = Call_F32; break;
2155 case MVT::f64: LC = Call_F64; break;
2156 case MVT::f80: LC = Call_F80; break;
Tim Northover4bf47bc2013-01-08 17:09:59 +00002157 case MVT::f128: LC = Call_F128; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002158 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002159 }
2160 return ExpandLibCall(LC, Node, false);
2161}
2162
2163SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002164 RTLIB::Libcall Call_I8,
Eli Friedmand6f28342009-05-27 03:33:44 +00002165 RTLIB::Libcall Call_I16,
2166 RTLIB::Libcall Call_I32,
2167 RTLIB::Libcall Call_I64,
2168 RTLIB::Libcall Call_I128) {
2169 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002170 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002171 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002172 case MVT::i8: LC = Call_I8; break;
2173 case MVT::i16: LC = Call_I16; break;
2174 case MVT::i32: LC = Call_I32; break;
2175 case MVT::i64: LC = Call_I64; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002176 case MVT::i128: LC = Call_I128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002177 }
2178 return ExpandLibCall(LC, Node, isSigned);
2179}
2180
Evan Chengb14ce092011-04-16 03:08:26 +00002181/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
2182static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2183 const TargetLowering &TLI) {
Evan Chengbd766792011-04-01 00:42:02 +00002184 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002185 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002186 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengbd766792011-04-01 00:42:02 +00002187 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2188 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2189 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2190 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2191 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2192 }
2193
Craig Topperc0196b12014-04-14 00:51:57 +00002194 return TLI.getLibcallName(LC) != nullptr;
Evan Chengb14ce092011-04-16 03:08:26 +00002195}
Evan Chengbd766792011-04-01 00:42:02 +00002196
Evan Cheng8c2ad812012-06-21 05:56:05 +00002197/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Chengb14ce092011-04-16 03:08:26 +00002198/// needed.
Evan Cheng8c2ad812012-06-21 05:56:05 +00002199static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2200 // The other use might have been replaced with a divrem already.
2201 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Chengbd766792011-04-01 00:42:02 +00002202 unsigned OtherOpcode = 0;
Evan Chengb14ce092011-04-16 03:08:26 +00002203 if (isSigned)
Evan Chengbd766792011-04-01 00:42:02 +00002204 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002205 else
Evan Chengbd766792011-04-01 00:42:02 +00002206 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002207
Evan Chengbd766792011-04-01 00:42:02 +00002208 SDValue Op0 = Node->getOperand(0);
2209 SDValue Op1 = Node->getOperand(1);
2210 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2211 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2212 SDNode *User = *UI;
2213 if (User == Node)
2214 continue;
Evan Cheng8c2ad812012-06-21 05:56:05 +00002215 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Chengbd766792011-04-01 00:42:02 +00002216 User->getOperand(0) == Op0 &&
Evan Chengb14ce092011-04-16 03:08:26 +00002217 User->getOperand(1) == Op1)
2218 return true;
Evan Chengbd766792011-04-01 00:42:02 +00002219 }
Evan Chengb14ce092011-04-16 03:08:26 +00002220 return false;
2221}
Evan Chengbd766792011-04-01 00:42:02 +00002222
Evan Chengb14ce092011-04-16 03:08:26 +00002223/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2224/// pairs.
2225void
2226SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2227 SmallVectorImpl<SDValue> &Results) {
2228 unsigned Opcode = Node->getOpcode();
2229 bool isSigned = Opcode == ISD::SDIVREM;
2230
2231 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002232 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002233 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengb14ce092011-04-16 03:08:26 +00002234 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2235 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2236 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2237 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2238 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Chengbd766792011-04-01 00:42:02 +00002239 }
2240
2241 // The input chain to this libcall is the entry node of the function.
2242 // Legalizing the call will automatically add the previous call to the
2243 // dependence.
2244 SDValue InChain = DAG.getEntryNode();
2245
2246 EVT RetVT = Node->getValueType(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002247 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002248
2249 TargetLowering::ArgListTy Args;
2250 TargetLowering::ArgListEntry Entry;
2251 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2252 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002253 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002254 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2255 Entry.isSExt = isSigned;
2256 Entry.isZExt = !isSigned;
2257 Args.push_back(Entry);
2258 }
2259
2260 // Also pass the return address of the remainder.
2261 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2262 Entry.Node = FIPtr;
Micah Villmow51e72462012-10-24 17:25:11 +00002263 Entry.Ty = RetTy->getPointerTo();
Evan Chengbd766792011-04-01 00:42:02 +00002264 Entry.isSExt = isSigned;
2265 Entry.isZExt = !isSigned;
2266 Args.push_back(Entry);
2267
2268 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2269 TLI.getPointerTy());
2270
Andrew Trickef9de2a2013-05-25 02:42:55 +00002271 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002272 TargetLowering::CallLoweringInfo CLI(DAG);
2273 CLI.setDebugLoc(dl).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002274 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002275 .setSExtResult(isSigned).setZExtResult(!isSigned);
2276
Justin Holewinskiaa583972012-05-25 16:35:28 +00002277 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Chengbd766792011-04-01 00:42:02 +00002278
Evan Chengbd766792011-04-01 00:42:02 +00002279 // Remainder is loaded back from the stack frame.
Dan Gohman198b7ff2011-11-03 21:49:52 +00002280 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002281 MachinePointerInfo(), false, false, false, 0);
Evan Chengb14ce092011-04-16 03:08:26 +00002282 Results.push_back(CallInfo.first);
2283 Results.push_back(Rem);
Evan Chengbd766792011-04-01 00:42:02 +00002284}
2285
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002286/// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2287static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2288 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002289 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002290 default: llvm_unreachable("Unexpected request for libcall!");
2291 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2292 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2293 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2294 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2295 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2296 }
Craig Topperc0196b12014-04-14 00:51:57 +00002297 return TLI.getLibcallName(LC) != nullptr;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002298}
2299
Paul Redmondf29ddfe2013-02-15 18:45:18 +00002300/// canCombineSinCosLibcall - Return true if sincos libcall is available and
2301/// can be used to combine sin and cos.
2302static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2303 const TargetMachine &TM) {
2304 if (!isSinCosLibcallAvailable(Node, TLI))
2305 return false;
2306 // GNU sin/cos functions set errno while sincos does not. Therefore
2307 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2308 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2309 if (isGNU && !TM.Options.UnsafeFPMath)
2310 return false;
2311 return true;
2312}
2313
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002314/// useSinCos - Only issue sincos libcall if both sin and cos are
2315/// needed.
2316static bool useSinCos(SDNode *Node) {
2317 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2318 ? ISD::FCOS : ISD::FSIN;
Stephen Lincfe7f352013-07-08 00:37:03 +00002319
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002320 SDValue Op0 = Node->getOperand(0);
2321 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2322 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2323 SDNode *User = *UI;
2324 if (User == Node)
2325 continue;
2326 // The other user might have been turned into sincos already.
2327 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2328 return true;
2329 }
2330 return false;
2331}
2332
2333/// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2334/// pairs.
2335void
2336SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2337 SmallVectorImpl<SDValue> &Results) {
2338 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002339 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002340 default: llvm_unreachable("Unexpected request for libcall!");
2341 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2342 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2343 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2344 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2345 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2346 }
Stephen Lincfe7f352013-07-08 00:37:03 +00002347
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002348 // The input chain to this libcall is the entry node of the function.
2349 // Legalizing the call will automatically add the previous call to the
2350 // dependence.
2351 SDValue InChain = DAG.getEntryNode();
Stephen Lincfe7f352013-07-08 00:37:03 +00002352
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002353 EVT RetVT = Node->getValueType(0);
2354 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Stephen Lincfe7f352013-07-08 00:37:03 +00002355
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002356 TargetLowering::ArgListTy Args;
2357 TargetLowering::ArgListEntry Entry;
Stephen Lincfe7f352013-07-08 00:37:03 +00002358
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002359 // Pass the argument.
2360 Entry.Node = Node->getOperand(0);
2361 Entry.Ty = RetTy;
2362 Entry.isSExt = false;
2363 Entry.isZExt = false;
2364 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002365
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002366 // Pass the return address of sin.
2367 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2368 Entry.Node = SinPtr;
2369 Entry.Ty = RetTy->getPointerTo();
2370 Entry.isSExt = false;
2371 Entry.isZExt = false;
2372 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002373
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002374 // Also pass the return address of the cos.
2375 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2376 Entry.Node = CosPtr;
2377 Entry.Ty = RetTy->getPointerTo();
2378 Entry.isSExt = false;
2379 Entry.isZExt = false;
2380 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002381
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002382 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2383 TLI.getPointerTy());
Stephen Lincfe7f352013-07-08 00:37:03 +00002384
Andrew Trickef9de2a2013-05-25 02:42:55 +00002385 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002386 TargetLowering::CallLoweringInfo CLI(DAG);
2387 CLI.setDebugLoc(dl).setChain(InChain)
2388 .setCallee(TLI.getLibcallCallingConv(LC),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002389 Type::getVoidTy(*DAG.getContext()), Callee, std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002390
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002391 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2392
2393 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2394 MachinePointerInfo(), false, false, false, 0));
2395 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2396 MachinePointerInfo(), false, false, false, 0));
2397}
2398
Chris Lattner689bdcc2006-01-28 08:25:58 +00002399/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2400/// INT_TO_FP operation of the specified operand when the target requests that
2401/// we expand it. At this point, we know that the result and operand types are
2402/// legal for the target.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002403SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2404 SDValue Op0,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002405 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002406 SDLoc dl) {
Akira Hatanakaadb14f52012-08-28 02:12:42 +00002407 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002408 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelcf0da6c2009-02-17 22:15:04 +00002409
Chris Lattnera2c7ff32008-01-16 07:03:22 +00002410 // Get the stack frame index of a 8 byte buffer.
Owen Anderson9f944592009-08-11 20:47:22 +00002411 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002412
Chris Lattner689bdcc2006-01-28 08:25:58 +00002413 // word offset constant for Hi/Lo address computation
Tom Stellard838e2342013-08-26 15:06:10 +00002414 SDValue WordOff = DAG.getConstant(sizeof(int), StackSlot.getValueType());
Chris Lattner689bdcc2006-01-28 08:25:58 +00002415 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002416 SDValue Hi = StackSlot;
Tom Stellard838e2342013-08-26 15:06:10 +00002417 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2418 StackSlot, WordOff);
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00002419 if (TLI.isLittleEndian())
2420 std::swap(Hi, Lo);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002421
Chris Lattner689bdcc2006-01-28 08:25:58 +00002422 // if signed map to unsigned space
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002423 SDValue Op0Mapped;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002424 if (isSigned) {
2425 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson9f944592009-08-11 20:47:22 +00002426 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2427 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002428 } else {
2429 Op0Mapped = Op0;
2430 }
2431 // store the lo of the constructed double - based on integer input
Dale Johannesen8525d832009-02-02 19:03:57 +00002432 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00002433 Op0Mapped, Lo, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00002434 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002435 // initial hi portion of constructed double
Owen Anderson9f944592009-08-11 20:47:22 +00002436 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002437 // store the hi of the constructed double - biased exponent
Chris Lattner676c61d2010-09-21 18:41:36 +00002438 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2439 MachinePointerInfo(),
2440 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002441 // load the constructed double
Chris Lattner1ffcf522010-09-21 16:36:31 +00002442 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002443 MachinePointerInfo(), false, false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002444 // FP constant to bias correct the final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002445 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonf074ca72009-04-10 18:48:47 +00002446 BitsToDouble(0x4330000080000000ULL) :
2447 BitsToDouble(0x4330000000000000ULL),
Owen Anderson9f944592009-08-11 20:47:22 +00002448 MVT::f64);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002449 // subtract the bias
Owen Anderson9f944592009-08-11 20:47:22 +00002450 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002451 // final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002452 SDValue Result;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002453 // handle final rounding
Owen Anderson9f944592009-08-11 20:47:22 +00002454 if (DestVT == MVT::f64) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002455 // do nothing
2456 Result = Sub;
Owen Anderson9f944592009-08-11 20:47:22 +00002457 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002458 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner72733e52008-01-17 07:00:52 +00002459 DAG.getIntPtrConstant(0));
Owen Anderson9f944592009-08-11 20:47:22 +00002460 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002461 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002462 }
2463 return Result;
2464 }
2465 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002466 // Code below here assumes !isSigned without checking again.
Dan Gohman14e450f2010-03-06 00:00:55 +00002467
2468 // Implementation of unsigned i64 to f64 following the algorithm in
2469 // __floatundidf in compiler_rt. This implementation has the advantage
2470 // of performing rounding correctly, both in the default rounding mode
2471 // and in all alternate rounding modes.
2472 // TODO: Generalize this for use with other types.
2473 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2474 SDValue TwoP52 =
2475 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2476 SDValue TwoP84PlusTwoP52 =
2477 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2478 SDValue TwoP84 =
2479 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2480
2481 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2482 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2483 DAG.getConstant(32, MVT::i64));
2484 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2485 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peck527da1b2010-11-23 03:31:01 +00002486 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2487 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002488 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2489 TwoP84PlusTwoP52);
Dan Gohman14e450f2010-03-06 00:00:55 +00002490 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2491 }
2492
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002493 // Implementation of unsigned i64 to f32.
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002494 // TODO: Generalize this for use with other types.
2495 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002496 // For unsigned conversions, convert them to signed conversions using the
2497 // algorithm from the x86_64 __floatundidf in compiler_rt.
2498 if (!isSigned) {
2499 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peck527da1b2010-11-23 03:31:01 +00002500
Owen Andersonb2c80da2011-02-25 21:41:48 +00002501 SDValue ShiftConst =
2502 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002503 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2504 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2505 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2506 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peck527da1b2010-11-23 03:31:01 +00002507
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002508 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2509 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peck527da1b2010-11-23 03:31:01 +00002510
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002511 // TODO: This really should be implemented using a branch rather than a
Wesley Peck527da1b2010-11-23 03:31:01 +00002512 // select. We happen to get lucky and machinesink does the right
2513 // thing most of the time. This would be a good candidate for a
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002514 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault758659232013-05-18 00:21:46 +00002515 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002516 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002517 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002518 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002519
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002520 // Otherwise, implement the fully general conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002521
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002522 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002523 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2524 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2525 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002526 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002527 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
Matt Arsenault758659232013-05-18 00:21:46 +00002528 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002529 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002530 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Matt Arsenault758659232013-05-18 00:21:46 +00002531 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002532 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002533 ISD::SETUGE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002534 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00002535 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peck527da1b2010-11-23 03:31:01 +00002536
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002537 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2538 DAG.getConstant(32, SHVT));
2539 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2540 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2541 SDValue TwoP32 =
2542 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2543 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2544 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2545 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2546 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2547 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2548 DAG.getIntPtrConstant(0));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002549 }
2550
Dan Gohman998c7c22010-03-05 02:40:23 +00002551 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002552
Matt Arsenault758659232013-05-18 00:21:46 +00002553 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Dan Gohman998c7c22010-03-05 02:40:23 +00002554 Op0, DAG.getConstant(0, Op0.getValueType()),
2555 ISD::SETLT);
2556 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002557 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohman998c7c22010-03-05 02:40:23 +00002558 SignSet, Four, Zero);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002559
Dan Gohman998c7c22010-03-05 02:40:23 +00002560 // If the sign bit of the integer is set, the large number will be treated
2561 // as a negative number. To counteract this, the dynamic code adds an
2562 // offset depending on the data type.
2563 uint64_t FF;
Craig Topperd9c27832013-08-15 02:44:19 +00002564 switch (Op0.getSimpleValueType().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002565 default: llvm_unreachable("Unsupported integer type!");
Dan Gohman998c7c22010-03-05 02:40:23 +00002566 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2567 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2568 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2569 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2570 }
2571 if (TLI.isLittleEndian()) FF <<= 32;
2572 Constant *FudgeFactor = ConstantInt::get(
2573 Type::getInt64Ty(*DAG.getContext()), FF);
2574
2575 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2576 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Tom Stellard838e2342013-08-26 15:06:10 +00002577 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
Dan Gohman998c7c22010-03-05 02:40:23 +00002578 Alignment = std::min(Alignment, 4u);
2579 SDValue FudgeInReg;
2580 if (DestVT == MVT::f32)
2581 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00002582 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002583 false, false, false, Alignment);
Dan Gohman998c7c22010-03-05 02:40:23 +00002584 else {
Dan Gohman198b7ff2011-11-03 21:49:52 +00002585 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2586 DAG.getEntryNode(), CPIdx,
2587 MachinePointerInfo::getConstantPool(),
Louis Gerbarg67474e32014-07-31 21:45:05 +00002588 MVT::f32, false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +00002589 HandleSDNode Handle(Load);
2590 LegalizeOp(Load.getNode());
2591 FudgeInReg = Handle.getValue();
Dan Gohman998c7c22010-03-05 02:40:23 +00002592 }
2593
2594 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002595}
2596
2597/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2598/// *INT_TO_FP operation of the specified operand when the target requests that
2599/// we promote it. At this point, we know that the result and operand types are
2600/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2601/// operation that takes a larger input.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002602SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002603 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002604 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002605 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002606 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002607 EVT NewInTy = LegalOp.getValueType();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002608
2609 unsigned OpToUse = 0;
2610
2611 // Scan for the appropriate larger type to use.
2612 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002613 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002614 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002615
2616 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002617 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2618 OpToUse = ISD::SINT_TO_FP;
2619 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002620 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002621 if (isSigned) continue;
2622
2623 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002624 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2625 OpToUse = ISD::UINT_TO_FP;
2626 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002627 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002628
2629 // Otherwise, try a larger type.
2630 }
2631
2632 // Okay, we found the operation and type to use. Zero extend our input to the
2633 // desired type then run the operation on it.
Dale Johannesen8525d832009-02-02 19:03:57 +00002634 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner689bdcc2006-01-28 08:25:58 +00002635 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen8525d832009-02-02 19:03:57 +00002636 dl, NewInTy, LegalOp));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002637}
2638
2639/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2640/// FP_TO_*INT operation of the specified operand when the target requests that
2641/// we promote it. At this point, we know that the result and operand types are
2642/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2643/// operation that returns a larger result.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002644SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002645 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002646 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002647 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002648 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002649 EVT NewOutTy = DestVT;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002650
2651 unsigned OpToUse = 0;
2652
2653 // Scan for the appropriate larger type to use.
2654 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002655 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002656 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002657
Tim Northover65277a22014-06-15 09:27:20 +00002658 // A larger signed type can hold all unsigned values of the requested type,
2659 // so using FP_TO_SINT is valid
Eli Friedmane1bc3792009-05-28 03:06:16 +00002660 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002661 OpToUse = ISD::FP_TO_SINT;
2662 break;
2663 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002664
Tim Northover65277a22014-06-15 09:27:20 +00002665 // However, if the value may be < 0.0, we *must* use some FP_TO_SINT.
2666 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002667 OpToUse = ISD::FP_TO_UINT;
2668 break;
2669 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002670
2671 // Otherwise, try a larger type.
2672 }
2673
Scott Michelcf0da6c2009-02-17 22:15:04 +00002674
Chris Lattnerf81d5882007-11-24 07:07:01 +00002675 // Okay, we found the operation and type to use.
Dale Johannesen8525d832009-02-02 19:03:57 +00002676 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands93e180342008-07-04 11:47:58 +00002677
Chris Lattnerf81d5882007-11-24 07:07:01 +00002678 // Truncate the result of the extended FP_TO_*INT operation to the desired
2679 // size.
Dale Johannesen8525d832009-02-02 19:03:57 +00002680 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002681}
2682
2683/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2684///
Andrew Trickef9de2a2013-05-25 02:42:55 +00002685SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002686 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002687 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002688 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson9f944592009-08-11 20:47:22 +00002689 switch (VT.getSimpleVT().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002690 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson9f944592009-08-11 20:47:22 +00002691 case MVT::i16:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002692 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2693 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2694 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002695 case MVT::i32:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002696 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2697 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2698 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2699 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2700 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2701 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2702 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2703 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2704 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002705 case MVT::i64:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002706 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2707 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2708 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2709 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2710 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2711 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2712 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2713 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2714 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2715 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2716 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2717 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2718 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2719 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2720 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2721 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2722 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2723 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2724 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2725 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2726 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002727 }
2728}
2729
2730/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2731///
Scott Michelcf0da6c2009-02-17 22:15:04 +00002732SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002733 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002734 switch (Opc) {
Craig Topperee4dab52012-02-05 08:31:47 +00002735 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002736 case ISD::CTPOP: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002737 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002738 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002739 unsigned Len = VT.getSizeInBits();
2740
Benjamin Kramerbec03ea2011-01-15 21:19:37 +00002741 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2742 "CTPOP not implemented for this type.");
2743
Benjamin Kramerfff25172011-01-15 20:30:30 +00002744 // This is the "best" algorithm from
2745 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2746
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00002747 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), VT);
2748 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), VT);
2749 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), VT);
2750 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002751
2752 // v = v - ((v >> 1) & 0x55555555...)
2753 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2754 DAG.getNode(ISD::AND, dl, VT,
2755 DAG.getNode(ISD::SRL, dl, VT, Op,
2756 DAG.getConstant(1, ShVT)),
2757 Mask55));
2758 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2759 Op = DAG.getNode(ISD::ADD, dl, VT,
2760 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2761 DAG.getNode(ISD::AND, dl, VT,
2762 DAG.getNode(ISD::SRL, dl, VT, Op,
2763 DAG.getConstant(2, ShVT)),
2764 Mask33));
2765 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2766 Op = DAG.getNode(ISD::AND, dl, VT,
2767 DAG.getNode(ISD::ADD, dl, VT, Op,
2768 DAG.getNode(ISD::SRL, dl, VT, Op,
2769 DAG.getConstant(4, ShVT))),
2770 Mask0F);
2771 // v = (v * 0x01010101...) >> (Len - 8)
2772 Op = DAG.getNode(ISD::SRL, dl, VT,
2773 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2774 DAG.getConstant(Len - 8, ShVT));
Owen Andersonb2c80da2011-02-25 21:41:48 +00002775
Chris Lattner689bdcc2006-01-28 08:25:58 +00002776 return Op;
2777 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002778 case ISD::CTLZ_ZERO_UNDEF:
2779 // This trivially expands to CTLZ.
2780 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002781 case ISD::CTLZ: {
2782 // for now, we do this:
2783 // x = x | (x >> 1);
2784 // x = x | (x >> 2);
2785 // ...
2786 // x = x | (x >>16);
2787 // x = x | (x >>32); // for 64-bit input
2788 // return popcount(~x);
2789 //
Sanjay Patelbb292212014-09-15 19:47:44 +00002790 // Ref: "Hacker's Delight" by Henry Warren
Owen Anderson53aa7a92009-08-10 22:56:29 +00002791 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002792 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands13237ac2008-06-06 12:08:01 +00002793 unsigned len = VT.getSizeInBits();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002794 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002795 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002796 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesendc93bbc2009-02-06 21:55:48 +00002797 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002798 }
Dale Johannesena02e45c2009-02-02 22:12:50 +00002799 Op = DAG.getNOT(dl, Op, VT);
2800 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002801 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002802 case ISD::CTTZ_ZERO_UNDEF:
2803 // This trivially expands to CTTZ.
2804 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002805 case ISD::CTTZ: {
2806 // for now, we use: { return popcount(~x & (x - 1)); }
2807 // unless the target has ctlz but not ctpop, in which case we use:
2808 // { return 32 - nlz(~x & (x-1)); }
Sanjay Patelbb292212014-09-15 19:47:44 +00002809 // Ref: "Hacker's Delight" by Henry Warren
Owen Anderson53aa7a92009-08-10 22:56:29 +00002810 EVT VT = Op.getValueType();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002811 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2812 DAG.getNOT(dl, Op, VT),
2813 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling8fb81f12009-01-30 23:03:19 +00002814 DAG.getConstant(1, VT)));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002815 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman4aa18462009-01-28 17:46:25 +00002816 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2817 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesena02e45c2009-02-02 22:12:50 +00002818 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands13237ac2008-06-06 12:08:01 +00002819 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesena02e45c2009-02-02 22:12:50 +00002820 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2821 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002822 }
2823 }
2824}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002825
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002826std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2827 unsigned Opc = Node->getOpcode();
2828 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2829 RTLIB::Libcall LC;
2830
2831 switch (Opc) {
2832 default:
2833 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbacha57c2882010-06-18 23:03:10 +00002834 case ISD::ATOMIC_SWAP:
2835 switch (VT.SimpleTy) {
2836 default: llvm_unreachable("Unexpected value type for atomic!");
2837 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2838 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2839 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2840 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002841 case MVT::i128:LC = RTLIB::SYNC_LOCK_TEST_AND_SET_16;break;
Jim Grosbacha57c2882010-06-18 23:03:10 +00002842 }
2843 break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002844 case ISD::ATOMIC_CMP_SWAP:
2845 switch (VT.SimpleTy) {
2846 default: llvm_unreachable("Unexpected value type for atomic!");
2847 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2848 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2849 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2850 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002851 case MVT::i128:LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002852 }
2853 break;
2854 case ISD::ATOMIC_LOAD_ADD:
2855 switch (VT.SimpleTy) {
2856 default: llvm_unreachable("Unexpected value type for atomic!");
2857 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2858 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2859 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2860 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002861 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_ADD_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002862 }
2863 break;
2864 case ISD::ATOMIC_LOAD_SUB:
2865 switch (VT.SimpleTy) {
2866 default: llvm_unreachable("Unexpected value type for atomic!");
2867 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2868 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2869 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2870 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002871 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_SUB_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002872 }
2873 break;
2874 case ISD::ATOMIC_LOAD_AND:
2875 switch (VT.SimpleTy) {
2876 default: llvm_unreachable("Unexpected value type for atomic!");
2877 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2878 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2879 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2880 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002881 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_AND_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002882 }
2883 break;
2884 case ISD::ATOMIC_LOAD_OR:
2885 switch (VT.SimpleTy) {
2886 default: llvm_unreachable("Unexpected value type for atomic!");
2887 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2888 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2889 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2890 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002891 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_OR_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002892 }
2893 break;
2894 case ISD::ATOMIC_LOAD_XOR:
2895 switch (VT.SimpleTy) {
2896 default: llvm_unreachable("Unexpected value type for atomic!");
2897 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2898 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2899 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2900 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002901 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_XOR_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002902 }
2903 break;
2904 case ISD::ATOMIC_LOAD_NAND:
2905 switch (VT.SimpleTy) {
2906 default: llvm_unreachable("Unexpected value type for atomic!");
2907 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2908 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2909 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2910 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002911 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_NAND_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002912 }
2913 break;
Tim Northovera564d322013-10-25 09:30:20 +00002914 case ISD::ATOMIC_LOAD_MAX:
2915 switch (VT.SimpleTy) {
2916 default: llvm_unreachable("Unexpected value type for atomic!");
2917 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MAX_1; break;
2918 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MAX_2; break;
2919 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MAX_4; break;
2920 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MAX_8; break;
2921 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MAX_16;break;
2922 }
2923 break;
2924 case ISD::ATOMIC_LOAD_UMAX:
2925 switch (VT.SimpleTy) {
2926 default: llvm_unreachable("Unexpected value type for atomic!");
2927 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMAX_1; break;
2928 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMAX_2; break;
2929 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMAX_4; break;
2930 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMAX_8; break;
2931 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMAX_16;break;
2932 }
2933 break;
2934 case ISD::ATOMIC_LOAD_MIN:
2935 switch (VT.SimpleTy) {
2936 default: llvm_unreachable("Unexpected value type for atomic!");
2937 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MIN_1; break;
2938 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MIN_2; break;
2939 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MIN_4; break;
2940 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MIN_8; break;
2941 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MIN_16;break;
2942 }
2943 break;
2944 case ISD::ATOMIC_LOAD_UMIN:
2945 switch (VT.SimpleTy) {
2946 default: llvm_unreachable("Unexpected value type for atomic!");
2947 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMIN_1; break;
2948 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMIN_2; break;
2949 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMIN_4; break;
2950 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMIN_8; break;
2951 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMIN_16;break;
2952 }
2953 break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002954 }
2955
2956 return ExpandChainLibCall(LC, Node, false);
2957}
2958
Dan Gohman198b7ff2011-11-03 21:49:52 +00002959void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2960 SmallVector<SDValue, 8> Results;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002961 SDLoc dl(Node);
Eli Friedmane1dc1932009-05-28 20:40:34 +00002962 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Daniel Sandersedc071b2013-11-21 13:24:49 +00002963 bool NeedInvert;
Eli Friedman21d349b2009-05-27 01:25:56 +00002964 switch (Node->getOpcode()) {
2965 case ISD::CTPOP:
2966 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002967 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002968 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002969 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002970 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2971 Results.push_back(Tmp1);
2972 break;
2973 case ISD::BSWAP:
Bill Wendlingef408db2009-12-23 00:28:23 +00002974 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman21d349b2009-05-27 01:25:56 +00002975 break;
2976 case ISD::FRAMEADDR:
2977 case ISD::RETURNADDR:
2978 case ISD::FRAME_TO_ARGS_OFFSET:
2979 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2980 break;
2981 case ISD::FLT_ROUNDS_:
2982 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2983 break;
2984 case ISD::EH_RETURN:
Eli Friedman21d349b2009-05-27 01:25:56 +00002985 case ISD::EH_LABEL:
2986 case ISD::PREFETCH:
Eli Friedman21d349b2009-05-27 01:25:56 +00002987 case ISD::VAEND:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002988 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002989 // If the target didn't expand these, there's nothing to do, so just
2990 // preserve the chain and be done.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002991 Results.push_back(Node->getOperand(0));
2992 break;
2993 case ISD::EH_SJLJ_SETJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002994 // If the target didn't expand this, just return 'zero' and preserve the
2995 // chain.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002996 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman21d349b2009-05-27 01:25:56 +00002997 Results.push_back(Node->getOperand(0));
2998 break;
Tim Northovera2b53392013-04-20 12:32:17 +00002999 case ISD::ATOMIC_FENCE: {
Jim Grosbachba451e82010-06-17 02:00:53 +00003000 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman26a48482011-07-27 22:21:52 +00003001 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachba451e82010-06-17 02:00:53 +00003002 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003003
3004 TargetLowering::CallLoweringInfo CLI(DAG);
3005 CLI.setDebugLoc(dl).setChain(Node->getOperand(0))
3006 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00003007 DAG.getExternalSymbol("__sync_synchronize",
3008 TLI.getPointerTy()), std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003009
Justin Holewinskiaa583972012-05-25 16:35:28 +00003010 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3011
Jim Grosbachba451e82010-06-17 02:00:53 +00003012 Results.push_back(CallResult.second);
3013 break;
3014 }
Eli Friedman452aae62011-08-26 02:59:24 +00003015 case ISD::ATOMIC_LOAD: {
3016 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedmanee8f14a72011-09-15 21:20:49 +00003017 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Tim Northover420a2162014-06-13 14:24:07 +00003018 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3019 SDValue Swap = DAG.getAtomicCmpSwap(
3020 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
3021 Node->getOperand(0), Node->getOperand(1), Zero, Zero,
3022 cast<AtomicSDNode>(Node)->getMemOperand(),
3023 cast<AtomicSDNode>(Node)->getOrdering(),
3024 cast<AtomicSDNode>(Node)->getOrdering(),
3025 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman452aae62011-08-26 02:59:24 +00003026 Results.push_back(Swap.getValue(0));
3027 Results.push_back(Swap.getValue(1));
3028 break;
3029 }
3030 case ISD::ATOMIC_STORE: {
3031 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
3032 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
3033 cast<AtomicSDNode>(Node)->getMemoryVT(),
3034 Node->getOperand(0),
3035 Node->getOperand(1), Node->getOperand(2),
3036 cast<AtomicSDNode>(Node)->getMemOperand(),
3037 cast<AtomicSDNode>(Node)->getOrdering(),
3038 cast<AtomicSDNode>(Node)->getSynchScope());
3039 Results.push_back(Swap.getValue(1));
3040 break;
3041 }
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00003042 // By default, atomic intrinsics are marked Legal and lowered. Targets
3043 // which don't support them directly, however, may want libcalls, in which
3044 // case they mark them Expand, and we get here.
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00003045 case ISD::ATOMIC_SWAP:
3046 case ISD::ATOMIC_LOAD_ADD:
3047 case ISD::ATOMIC_LOAD_SUB:
3048 case ISD::ATOMIC_LOAD_AND:
3049 case ISD::ATOMIC_LOAD_OR:
3050 case ISD::ATOMIC_LOAD_XOR:
3051 case ISD::ATOMIC_LOAD_NAND:
3052 case ISD::ATOMIC_LOAD_MIN:
3053 case ISD::ATOMIC_LOAD_MAX:
3054 case ISD::ATOMIC_LOAD_UMIN:
3055 case ISD::ATOMIC_LOAD_UMAX:
Evan Chengf5d62532010-06-18 22:01:37 +00003056 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00003057 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
3058 Results.push_back(Tmp.first);
3059 Results.push_back(Tmp.second);
Jim Grosbach0ed5b462010-06-17 17:58:54 +00003060 break;
Evan Chengf5d62532010-06-18 22:01:37 +00003061 }
Tim Northover420a2162014-06-13 14:24:07 +00003062 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
3063 // Expanding an ATOMIC_CMP_SWAP_WITH_SUCCESS produces an ATOMIC_CMP_SWAP and
3064 // splits out the success value as a comparison. Expanding the resulting
3065 // ATOMIC_CMP_SWAP will produce a libcall.
3066 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3067 SDValue Res = DAG.getAtomicCmpSwap(
3068 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
3069 Node->getOperand(0), Node->getOperand(1), Node->getOperand(2),
3070 Node->getOperand(3), cast<MemSDNode>(Node)->getMemOperand(),
3071 cast<AtomicSDNode>(Node)->getSuccessOrdering(),
3072 cast<AtomicSDNode>(Node)->getFailureOrdering(),
3073 cast<AtomicSDNode>(Node)->getSynchScope());
3074
3075 SDValue Success = DAG.getSetCC(SDLoc(Node), Node->getValueType(1),
3076 Res, Node->getOperand(2), ISD::SETEQ);
3077
3078 Results.push_back(Res.getValue(0));
3079 Results.push_back(Success);
3080 Results.push_back(Res.getValue(1));
3081 break;
3082 }
Eli Friedman2892d822009-05-27 12:20:41 +00003083 case ISD::DYNAMIC_STACKALLOC:
3084 ExpandDYNAMIC_STACKALLOC(Node, Results);
3085 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003086 case ISD::MERGE_VALUES:
3087 for (unsigned i = 0; i < Node->getNumValues(); i++)
3088 Results.push_back(Node->getOperand(i));
3089 break;
3090 case ISD::UNDEF: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003091 EVT VT = Node->getValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00003092 if (VT.isInteger())
3093 Results.push_back(DAG.getConstant(0, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003094 else {
3095 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman21d349b2009-05-27 01:25:56 +00003096 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003097 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003098 break;
3099 }
3100 case ISD::TRAP: {
3101 // If this operation is not supported, lower it to 'abort()' call
3102 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003103 TargetLowering::CallLoweringInfo CLI(DAG);
3104 CLI.setDebugLoc(dl).setChain(Node->getOperand(0))
3105 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00003106 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3107 std::move(Args), 0);
Justin Holewinskiaa583972012-05-25 16:35:28 +00003108 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3109
Eli Friedman21d349b2009-05-27 01:25:56 +00003110 Results.push_back(CallResult.second);
3111 break;
3112 }
3113 case ISD::FP_ROUND:
Wesley Peck527da1b2010-11-23 03:31:01 +00003114 case ISD::BITCAST:
Eli Friedman21d349b2009-05-27 01:25:56 +00003115 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3116 Node->getValueType(0), dl);
3117 Results.push_back(Tmp1);
3118 break;
3119 case ISD::FP_EXTEND:
3120 Tmp1 = EmitStackConvert(Node->getOperand(0),
3121 Node->getOperand(0).getValueType(),
3122 Node->getValueType(0), dl);
3123 Results.push_back(Tmp1);
3124 break;
3125 case ISD::SIGN_EXTEND_INREG: {
3126 // NOTE: we could fall back on load/store here too for targets without
3127 // SAR. However, it is doubtful that any exist.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003128 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman1d459e42009-12-11 21:31:27 +00003129 EVT VT = Node->getValueType(0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00003130 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003131 if (VT.isVector())
Dan Gohman1d459e42009-12-11 21:31:27 +00003132 ShiftAmountTy = VT;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003133 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
3134 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman1d459e42009-12-11 21:31:27 +00003135 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman21d349b2009-05-27 01:25:56 +00003136 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
3137 Node->getOperand(0), ShiftCst);
Bill Wendlingef408db2009-12-23 00:28:23 +00003138 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
3139 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003140 break;
3141 }
3142 case ISD::FP_ROUND_INREG: {
3143 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003144 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman21d349b2009-05-27 01:25:56 +00003145
3146 // NOTE: there is a choice here between constantly creating new stack
3147 // slots and always reusing the same one. We currently always create
3148 // new ones, as reuse may inhibit scheduling.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003149 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00003150 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
3151 Node->getValueType(0), dl);
3152 Results.push_back(Tmp1);
3153 break;
3154 }
3155 case ISD::SINT_TO_FP:
3156 case ISD::UINT_TO_FP:
3157 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
3158 Node->getOperand(0), Node->getValueType(0), dl);
3159 Results.push_back(Tmp1);
3160 break;
Jan Veselyeca89d22014-07-10 22:40:18 +00003161 case ISD::FP_TO_SINT:
3162 if (TLI.expandFP_TO_SINT(Node, Tmp1, DAG))
3163 Results.push_back(Tmp1);
Tom Stellardaad46592014-06-17 16:53:07 +00003164 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003165 case ISD::FP_TO_UINT: {
3166 SDValue True, False;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003167 EVT VT = Node->getOperand(0).getValueType();
3168 EVT NVT = Node->getValueType(0);
Tim Northover29178a32013-01-22 09:46:31 +00003169 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
3170 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman21d349b2009-05-27 01:25:56 +00003171 APInt x = APInt::getSignBit(NVT.getSizeInBits());
3172 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
3173 Tmp1 = DAG.getConstantFP(apf, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003174 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman21d349b2009-05-27 01:25:56 +00003175 Node->getOperand(0),
3176 Tmp1, ISD::SETLT);
3177 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003178 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
3179 DAG.getNode(ISD::FSUB, dl, VT,
3180 Node->getOperand(0), Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00003181 False = DAG.getNode(ISD::XOR, dl, NVT, False,
3182 DAG.getConstant(x, NVT));
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003183 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman21d349b2009-05-27 01:25:56 +00003184 Results.push_back(Tmp1);
3185 break;
3186 }
Eli Friedman3b251702009-05-27 07:58:35 +00003187 case ISD::VAARG: {
3188 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003189 EVT VT = Node->getValueType(0);
Eli Friedman3b251702009-05-27 07:58:35 +00003190 Tmp1 = Node->getOperand(0);
3191 Tmp2 = Node->getOperand(1);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003192 unsigned Align = Node->getConstantOperandVal(3);
3193
Chris Lattner1ffcf522010-09-21 16:36:31 +00003194 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Stephen Lincfe7f352013-07-08 00:37:03 +00003195 MachinePointerInfo(V),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003196 false, false, false, 0);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003197 SDValue VAList = VAListLoad;
3198
Rafael Espindolaa76eccf2010-07-11 04:01:49 +00003199 if (Align > TLI.getMinStackArgumentAlignment()) {
3200 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
3201
Tom Stellard838e2342013-08-26 15:06:10 +00003202 VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Rafael Espindola2041abd2010-06-26 18:22:20 +00003203 DAG.getConstant(Align - 1,
Tom Stellard838e2342013-08-26 15:06:10 +00003204 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003205
Tom Stellard838e2342013-08-26 15:06:10 +00003206 VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList,
Chris Lattnereb313a42010-10-10 18:36:26 +00003207 DAG.getConstant(-(int64_t)Align,
Tom Stellard838e2342013-08-26 15:06:10 +00003208 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003209 }
3210
Eli Friedman3b251702009-05-27 07:58:35 +00003211 // Increment the pointer, VAList, to the next vaarg
Tom Stellard838e2342013-08-26 15:06:10 +00003212 Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003213 DAG.getConstant(TLI.getDataLayout()->
Evan Cheng87b4f7c2010-04-15 01:25:27 +00003214 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Tom Stellard838e2342013-08-26 15:06:10 +00003215 VAList.getValueType()));
Eli Friedman3b251702009-05-27 07:58:35 +00003216 // Store the incremented VAList to the legalized pointer
Chris Lattner676c61d2010-09-21 18:41:36 +00003217 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
3218 MachinePointerInfo(V), false, false, 0);
Eli Friedman3b251702009-05-27 07:58:35 +00003219 // Load the actual argument out of the pointer VAList
Chris Lattner1ffcf522010-09-21 16:36:31 +00003220 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003221 false, false, false, 0));
Eli Friedman3b251702009-05-27 07:58:35 +00003222 Results.push_back(Results[0].getValue(1));
3223 break;
3224 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003225 case ISD::VACOPY: {
3226 // This defaults to loading a pointer from the input and storing it to the
3227 // output, returning the chain.
3228 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3229 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3230 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattner1ffcf522010-09-21 16:36:31 +00003231 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003232 false, false, false, 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +00003233 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
3234 MachinePointerInfo(VD), false, false, 0);
Bill Wendlingef408db2009-12-23 00:28:23 +00003235 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003236 break;
3237 }
3238 case ISD::EXTRACT_VECTOR_ELT:
3239 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3240 // This must be an access of the only element. Return it.
Wesley Peck527da1b2010-11-23 03:31:01 +00003241 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman21d349b2009-05-27 01:25:56 +00003242 Node->getOperand(0));
3243 else
3244 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3245 Results.push_back(Tmp1);
3246 break;
3247 case ISD::EXTRACT_SUBVECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003248 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00003249 break;
David Greenebab5e6e2011-01-26 19:13:22 +00003250 case ISD::INSERT_SUBVECTOR:
3251 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3252 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003253 case ISD::CONCAT_VECTORS: {
Bill Wendlingef408db2009-12-23 00:28:23 +00003254 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman3b251702009-05-27 07:58:35 +00003255 break;
3256 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003257 case ISD::SCALAR_TO_VECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003258 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman21d349b2009-05-27 01:25:56 +00003259 break;
Eli Friedmana8f9a022009-05-27 02:16:40 +00003260 case ISD::INSERT_VECTOR_ELT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003261 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3262 Node->getOperand(1),
3263 Node->getOperand(2), dl));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003264 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003265 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00003266 SmallVector<int, 32> NewMask;
3267 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00003268
Owen Anderson53aa7a92009-08-10 22:56:29 +00003269 EVT VT = Node->getValueType(0);
3270 EVT EltVT = VT.getVectorElementType();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003271 SDValue Op0 = Node->getOperand(0);
3272 SDValue Op1 = Node->getOperand(1);
3273 if (!TLI.isTypeLegal(EltVT)) {
3274
3275 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3276
3277 // BUILD_VECTOR operands are allowed to be wider than the element type.
Jack Carter5c0af482013-11-19 23:43:22 +00003278 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept
3279 // it.
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003280 if (NewEltVT.bitsLT(EltVT)) {
3281
3282 // Convert shuffle node.
3283 // If original node was v4i64 and the new EltVT is i32,
3284 // cast operands to v8i32 and re-build the mask.
3285
3286 // Calculate new VT, the size of the new VT should be equal to original.
Jack Carter5c0af482013-11-19 23:43:22 +00003287 EVT NewVT =
3288 EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3289 VT.getSizeInBits() / NewEltVT.getSizeInBits());
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003290 assert(NewVT.bitsEq(VT));
3291
3292 // cast operands to new VT
3293 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3294 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3295
3296 // Convert the shuffle mask
Jack Carter5c0af482013-11-19 23:43:22 +00003297 unsigned int factor =
3298 NewVT.getVectorNumElements()/VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003299
3300 // EltVT gets smaller
3301 assert(factor > 0);
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003302
3303 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3304 if (Mask[i] < 0) {
3305 for (unsigned fi = 0; fi < factor; ++fi)
3306 NewMask.push_back(Mask[i]);
3307 }
3308 else {
3309 for (unsigned fi = 0; fi < factor; ++fi)
3310 NewMask.push_back(Mask[i]*factor+fi);
3311 }
3312 }
3313 Mask = NewMask;
3314 VT = NewVT;
3315 }
3316 EltVT = NewEltVT;
3317 }
Eli Friedman3b251702009-05-27 07:58:35 +00003318 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003319 SmallVector<SDValue, 16> Ops;
Eli Friedman3b251702009-05-27 07:58:35 +00003320 for (unsigned i = 0; i != NumElems; ++i) {
3321 if (Mask[i] < 0) {
3322 Ops.push_back(DAG.getUNDEF(EltVT));
3323 continue;
3324 }
3325 unsigned Idx = Mask[i];
3326 if (Idx < NumElems)
Bill Wendlingef408db2009-12-23 00:28:23 +00003327 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003328 Op0,
Tom Stellardd42c5942013-08-05 22:22:01 +00003329 DAG.getConstant(Idx, TLI.getVectorIdxTy())));
Eli Friedman3b251702009-05-27 07:58:35 +00003330 else
Bill Wendlingef408db2009-12-23 00:28:23 +00003331 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003332 Op1,
Tom Stellardd42c5942013-08-05 22:22:01 +00003333 DAG.getConstant(Idx - NumElems,
3334 TLI.getVectorIdxTy())));
Eli Friedman3b251702009-05-27 07:58:35 +00003335 }
Nadav Rotem61bdf792012-01-10 14:28:46 +00003336
Craig Topper48d114b2014-04-26 18:35:24 +00003337 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
Nadav Rotem61bdf792012-01-10 14:28:46 +00003338 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3339 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00003340 Results.push_back(Tmp1);
3341 break;
3342 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003343 case ISD::EXTRACT_ELEMENT: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003344 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman21d349b2009-05-27 01:25:56 +00003345 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3346 // 1 -> Hi
3347 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3348 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003349 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman21d349b2009-05-27 01:25:56 +00003350 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3351 } else {
3352 // 0 -> Lo
3353 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3354 Node->getOperand(0));
3355 }
3356 Results.push_back(Tmp1);
3357 break;
3358 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003359 case ISD::STACKSAVE:
3360 // Expand to CopyFromReg if the target set
3361 // StackPointerRegisterToSaveRestore.
3362 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003363 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3364 Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003365 Results.push_back(Results[0].getValue(1));
3366 } else {
Bill Wendlingef408db2009-12-23 00:28:23 +00003367 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003368 Results.push_back(Node->getOperand(0));
3369 }
3370 break;
3371 case ISD::STACKRESTORE:
Bill Wendlingef408db2009-12-23 00:28:23 +00003372 // Expand to CopyToReg if the target set
3373 // StackPointerRegisterToSaveRestore.
3374 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3375 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3376 Node->getOperand(1)));
3377 } else {
3378 Results.push_back(Node->getOperand(0));
3379 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003380 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003381 case ISD::FCOPYSIGN:
Bill Wendlingef408db2009-12-23 00:28:23 +00003382 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00003383 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003384 case ISD::FNEG:
3385 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3386 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3387 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3388 Node->getOperand(0));
3389 Results.push_back(Tmp1);
3390 break;
3391 case ISD::FABS: {
3392 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Anderson53aa7a92009-08-10 22:56:29 +00003393 EVT VT = Node->getValueType(0);
Eli Friedmand6f28342009-05-27 03:33:44 +00003394 Tmp1 = Node->getOperand(0);
3395 Tmp2 = DAG.getConstantFP(0.0, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003396 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
Eli Friedmand6f28342009-05-27 03:33:44 +00003397 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendlingef408db2009-12-23 00:28:23 +00003398 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003399 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmand6f28342009-05-27 03:33:44 +00003400 Results.push_back(Tmp1);
3401 break;
3402 }
Matt Arsenault7c936902014-10-21 23:01:01 +00003403 case ISD::FMINNUM:
3404 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMIN_F32, RTLIB::FMIN_F64,
3405 RTLIB::FMIN_F80, RTLIB::FMIN_F128,
3406 RTLIB::FMIN_PPCF128));
3407 break;
3408 case ISD::FMAXNUM:
3409 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMAX_F32, RTLIB::FMAX_F64,
3410 RTLIB::FMAX_F80, RTLIB::FMAX_F128,
3411 RTLIB::FMAX_PPCF128));
3412 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003413 case ISD::FSQRT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003414 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003415 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3416 RTLIB::SQRT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003417 break;
3418 case ISD::FSIN:
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003419 case ISD::FCOS: {
3420 EVT VT = Node->getValueType(0);
3421 bool isSIN = Node->getOpcode() == ISD::FSIN;
3422 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3423 // fcos which share the same operand and both are used.
3424 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmondf29ddfe2013-02-15 18:45:18 +00003425 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003426 && useSinCos(Node)) {
3427 SDVTList VTs = DAG.getVTList(VT, VT);
3428 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3429 if (!isSIN)
3430 Tmp1 = Tmp1.getValue(1);
3431 Results.push_back(Tmp1);
3432 } else if (isSIN) {
3433 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3434 RTLIB::SIN_F80, RTLIB::SIN_F128,
3435 RTLIB::SIN_PPCF128));
3436 } else {
3437 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3438 RTLIB::COS_F80, RTLIB::COS_F128,
3439 RTLIB::COS_PPCF128));
3440 }
Eli Friedmand6f28342009-05-27 03:33:44 +00003441 break;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003442 }
3443 case ISD::FSINCOS:
3444 // Expand into sincos libcall.
3445 ExpandSinCosLibCall(Node, Results);
Eli Friedmand6f28342009-05-27 03:33:44 +00003446 break;
3447 case ISD::FLOG:
Bill Wendlingef408db2009-12-23 00:28:23 +00003448 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003449 RTLIB::LOG_F80, RTLIB::LOG_F128,
3450 RTLIB::LOG_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003451 break;
3452 case ISD::FLOG2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003453 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003454 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3455 RTLIB::LOG2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003456 break;
3457 case ISD::FLOG10:
Bill Wendlingef408db2009-12-23 00:28:23 +00003458 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003459 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3460 RTLIB::LOG10_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003461 break;
3462 case ISD::FEXP:
Bill Wendlingef408db2009-12-23 00:28:23 +00003463 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003464 RTLIB::EXP_F80, RTLIB::EXP_F128,
3465 RTLIB::EXP_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003466 break;
3467 case ISD::FEXP2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003468 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003469 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3470 RTLIB::EXP2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003471 break;
3472 case ISD::FTRUNC:
Bill Wendlingef408db2009-12-23 00:28:23 +00003473 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003474 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3475 RTLIB::TRUNC_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003476 break;
3477 case ISD::FFLOOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003478 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003479 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3480 RTLIB::FLOOR_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003481 break;
3482 case ISD::FCEIL:
Bill Wendlingef408db2009-12-23 00:28:23 +00003483 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003484 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3485 RTLIB::CEIL_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003486 break;
3487 case ISD::FRINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003488 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003489 RTLIB::RINT_F80, RTLIB::RINT_F128,
3490 RTLIB::RINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003491 break;
3492 case ISD::FNEARBYINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003493 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3494 RTLIB::NEARBYINT_F64,
3495 RTLIB::NEARBYINT_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003496 RTLIB::NEARBYINT_F128,
Bill Wendlingef408db2009-12-23 00:28:23 +00003497 RTLIB::NEARBYINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003498 break;
Hal Finkel171817e2013-08-07 22:49:12 +00003499 case ISD::FROUND:
3500 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3501 RTLIB::ROUND_F64,
3502 RTLIB::ROUND_F80,
3503 RTLIB::ROUND_F128,
3504 RTLIB::ROUND_PPCF128));
3505 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003506 case ISD::FPOWI:
Bill Wendlingef408db2009-12-23 00:28:23 +00003507 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003508 RTLIB::POWI_F80, RTLIB::POWI_F128,
3509 RTLIB::POWI_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003510 break;
3511 case ISD::FPOW:
Bill Wendlingef408db2009-12-23 00:28:23 +00003512 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003513 RTLIB::POW_F80, RTLIB::POW_F128,
3514 RTLIB::POW_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003515 break;
3516 case ISD::FDIV:
Bill Wendlingef408db2009-12-23 00:28:23 +00003517 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003518 RTLIB::DIV_F80, RTLIB::DIV_F128,
3519 RTLIB::DIV_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003520 break;
3521 case ISD::FREM:
Bill Wendlingef408db2009-12-23 00:28:23 +00003522 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003523 RTLIB::REM_F80, RTLIB::REM_F128,
3524 RTLIB::REM_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003525 break;
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003526 case ISD::FMA:
3527 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003528 RTLIB::FMA_F80, RTLIB::FMA_F128,
3529 RTLIB::FMA_PPCF128));
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003530 break;
Oliver Stannard51b1d462014-08-21 12:50:31 +00003531 case ISD::FADD:
3532 Results.push_back(ExpandFPLibCall(Node, RTLIB::ADD_F32, RTLIB::ADD_F64,
3533 RTLIB::ADD_F80, RTLIB::ADD_F128,
3534 RTLIB::ADD_PPCF128));
3535 break;
3536 case ISD::FMUL:
3537 Results.push_back(ExpandFPLibCall(Node, RTLIB::MUL_F32, RTLIB::MUL_F64,
3538 RTLIB::MUL_F80, RTLIB::MUL_F128,
3539 RTLIB::MUL_PPCF128));
3540 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);
Oliver Stannard51b1d462014-08-21 12:50:31 +00003573 if (TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3574 TLI.isOperationLegalOrCustom(ISD::FNEG, VT)) {
3575 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3576 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3577 Results.push_back(Tmp1);
3578 } else {
3579 Results.push_back(ExpandFPLibCall(Node, RTLIB::SUB_F32, RTLIB::SUB_F64,
3580 RTLIB::SUB_F80, RTLIB::SUB_F128,
3581 RTLIB::SUB_PPCF128));
3582 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003583 break;
3584 }
Eli Friedman56883962009-05-27 07:05:37 +00003585 case ISD::SUB: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003586 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003587 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3588 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3589 "Don't know how to expand this subtraction!");
3590 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3591 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Andersonf2118ea2012-05-21 22:39:20 +00003592 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendlingef408db2009-12-23 00:28:23 +00003593 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman56883962009-05-27 07:05:37 +00003594 break;
3595 }
Eli Friedman0e494312009-05-27 07:32:27 +00003596 case ISD::UREM:
3597 case ISD::SREM: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003598 EVT VT = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003599 bool isSigned = Node->getOpcode() == ISD::SREM;
3600 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3601 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3602 Tmp2 = Node->getOperand(0);
3603 Tmp3 = Node->getOperand(1);
Evan Chengb14ce092011-04-16 03:08:26 +00003604 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3605 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng21c4adc2012-10-12 01:15:47 +00003606 // If div is legal, it's better to do the normal expansion
3607 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003608 useDivRem(Node, isSigned, false))) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003609 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmane1bc3792009-05-28 03:06:16 +00003610 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3611 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedman0e494312009-05-27 07:32:27 +00003612 // X % Y -> X-X/Y*Y
3613 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3614 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3615 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Chengb14ce092011-04-16 03:08:26 +00003616 } else if (isSigned)
3617 Tmp1 = ExpandIntLibCall(Node, true,
3618 RTLIB::SREM_I8,
3619 RTLIB::SREM_I16, RTLIB::SREM_I32,
3620 RTLIB::SREM_I64, RTLIB::SREM_I128);
3621 else
3622 Tmp1 = ExpandIntLibCall(Node, false,
3623 RTLIB::UREM_I8,
3624 RTLIB::UREM_I16, RTLIB::UREM_I32,
3625 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003626 Results.push_back(Tmp1);
3627 break;
3628 }
Eli Friedman0e494312009-05-27 07:32:27 +00003629 case ISD::UDIV:
3630 case ISD::SDIV: {
3631 bool isSigned = Node->getOpcode() == ISD::SDIV;
3632 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003633 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003634 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Chengb14ce092011-04-16 03:08:26 +00003635 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3636 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003637 useDivRem(Node, isSigned, true)))
Eli Friedman0e494312009-05-27 07:32:27 +00003638 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3639 Node->getOperand(1));
Evan Chengb14ce092011-04-16 03:08:26 +00003640 else if (isSigned)
3641 Tmp1 = ExpandIntLibCall(Node, true,
3642 RTLIB::SDIV_I8,
3643 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3644 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3645 else
3646 Tmp1 = ExpandIntLibCall(Node, false,
3647 RTLIB::UDIV_I8,
3648 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3649 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003650 Results.push_back(Tmp1);
3651 break;
3652 }
3653 case ISD::MULHU:
3654 case ISD::MULHS: {
3655 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3656 ISD::SMUL_LOHI;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003657 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003658 SDVTList VTs = DAG.getVTList(VT, VT);
3659 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3660 "If this wasn't legal, it shouldn't have been created!");
3661 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3662 Node->getOperand(1));
3663 Results.push_back(Tmp1.getValue(1));
3664 break;
3665 }
Evan Chengb14ce092011-04-16 03:08:26 +00003666 case ISD::SDIVREM:
3667 case ISD::UDIVREM:
3668 // Expand into divrem libcall
3669 ExpandDivRemLibCall(Node, Results);
3670 break;
Eli Friedman56883962009-05-27 07:05:37 +00003671 case ISD::MUL: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003672 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003673 SDVTList VTs = DAG.getVTList(VT, VT);
3674 // See if multiply or divide can be lowered using two-result operations.
3675 // We just need the low half of the multiply; try both the signed
3676 // and unsigned forms. If the target supports both SMUL_LOHI and
3677 // UMUL_LOHI, form a preference by checking which forms of plain
3678 // MULH it supports.
3679 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3680 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3681 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3682 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3683 unsigned OpToUse = 0;
3684 if (HasSMUL_LOHI && !HasMULHS) {
3685 OpToUse = ISD::SMUL_LOHI;
3686 } else if (HasUMUL_LOHI && !HasMULHU) {
3687 OpToUse = ISD::UMUL_LOHI;
3688 } else if (HasSMUL_LOHI) {
3689 OpToUse = ISD::SMUL_LOHI;
3690 } else if (HasUMUL_LOHI) {
3691 OpToUse = ISD::UMUL_LOHI;
3692 }
3693 if (OpToUse) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003694 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3695 Node->getOperand(1)));
Eli Friedman56883962009-05-27 07:05:37 +00003696 break;
3697 }
Tom Stellarda1a5d9a2014-04-11 16:12:01 +00003698
3699 SDValue Lo, Hi;
3700 EVT HalfType = VT.getHalfSizedIntegerVT(*DAG.getContext());
3701 if (TLI.isOperationLegalOrCustom(ISD::ZERO_EXTEND, VT) &&
3702 TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND, VT) &&
3703 TLI.isOperationLegalOrCustom(ISD::SHL, VT) &&
3704 TLI.isOperationLegalOrCustom(ISD::OR, VT) &&
3705 TLI.expandMUL(Node, Lo, Hi, HalfType, DAG)) {
3706 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Lo);
3707 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, VT, Hi);
3708 SDValue Shift = DAG.getConstant(HalfType.getSizeInBits(),
3709 TLI.getShiftAmountTy(HalfType));
3710 Hi = DAG.getNode(ISD::SHL, dl, VT, Hi, Shift);
3711 Results.push_back(DAG.getNode(ISD::OR, dl, VT, Lo, Hi));
3712 break;
3713 }
3714
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00003715 Tmp1 = ExpandIntLibCall(Node, false,
3716 RTLIB::MUL_I8,
3717 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman56883962009-05-27 07:05:37 +00003718 RTLIB::MUL_I64, RTLIB::MUL_I128);
3719 Results.push_back(Tmp1);
3720 break;
3721 }
Eli Friedman2892d822009-05-27 12:20:41 +00003722 case ISD::SADDO:
3723 case ISD::SSUBO: {
3724 SDValue LHS = Node->getOperand(0);
3725 SDValue RHS = Node->getOperand(1);
3726 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3727 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3728 LHS, RHS);
3729 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003730 EVT ResultType = Node->getValueType(1);
3731 EVT OType = getSetCCResultType(Node->getValueType(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003732
Eli Friedman2892d822009-05-27 12:20:41 +00003733 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3734
3735 // LHSSign -> LHS >= 0
3736 // RHSSign -> RHS >= 0
3737 // SumSign -> Sum >= 0
3738 //
3739 // Add:
3740 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3741 // Sub:
3742 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3743 //
3744 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3745 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3746 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3747 Node->getOpcode() == ISD::SADDO ?
3748 ISD::SETEQ : ISD::SETNE);
3749
3750 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3751 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3752
3753 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003754 Results.push_back(DAG.getBoolExtOrTrunc(Cmp, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003755 break;
3756 }
3757 case ISD::UADDO:
3758 case ISD::USUBO: {
3759 SDValue LHS = Node->getOperand(0);
3760 SDValue RHS = Node->getOperand(1);
3761 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3762 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3763 LHS, RHS);
3764 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003765
3766 EVT ResultType = Node->getValueType(1);
3767 EVT SetCCType = getSetCCResultType(Node->getValueType(0));
3768 ISD::CondCode CC
3769 = Node->getOpcode() == ISD::UADDO ? ISD::SETULT : ISD::SETUGT;
3770 SDValue SetCC = DAG.getSetCC(dl, SetCCType, Sum, LHS, CC);
3771
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003772 Results.push_back(DAG.getBoolExtOrTrunc(SetCC, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003773 break;
3774 }
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003775 case ISD::UMULO:
3776 case ISD::SMULO: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003777 EVT VT = Node->getValueType(0);
Eric Christopherbcaedb52011-04-20 01:19:45 +00003778 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003779 SDValue LHS = Node->getOperand(0);
3780 SDValue RHS = Node->getOperand(1);
3781 SDValue BottomHalf;
3782 SDValue TopHalf;
Nuno Lopes129819d2009-12-23 17:48:10 +00003783 static const unsigned Ops[2][3] =
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003784 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3785 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3786 bool isSigned = Node->getOpcode() == ISD::SMULO;
3787 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3788 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3789 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3790 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3791 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3792 RHS);
3793 TopHalf = BottomHalf.getValue(1);
Eric Christopher83dd2fa2014-04-28 22:24:57 +00003794 } else if (TLI.isTypeLegal(WideVT)) {
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003795 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3796 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3797 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3798 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3799 DAG.getIntPtrConstant(0));
3800 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3801 DAG.getIntPtrConstant(1));
Eric Christopherbb14f652011-01-20 00:29:24 +00003802 } else {
3803 // We can fall back to a libcall with an illegal type for the MUL if we
3804 // have a libcall big enough.
3805 // Also, we can fall back to a division in some cases, but that's a big
3806 // performance hit in the general case.
Eric Christopherbb14f652011-01-20 00:29:24 +00003807 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3808 if (WideVT == MVT::i16)
3809 LC = RTLIB::MUL_I16;
3810 else if (WideVT == MVT::i32)
3811 LC = RTLIB::MUL_I32;
3812 else if (WideVT == MVT::i64)
3813 LC = RTLIB::MUL_I64;
3814 else if (WideVT == MVT::i128)
3815 LC = RTLIB::MUL_I128;
3816 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanae9b1682011-05-16 22:09:53 +00003817
3818 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherbcaedb52011-04-20 01:19:45 +00003819 // part.
3820 unsigned LoSize = VT.getSizeInBits();
3821 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3822 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3823 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3824 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Andersonb2c80da2011-02-25 21:41:48 +00003825
Eric Christopherbcaedb52011-04-20 01:19:45 +00003826 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3827 // pre-lowered to the correct types. This all depends upon WideVT not
3828 // being a legal type for the architecture and thus has to be split to
3829 // two arguments.
3830 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3831 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3832 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3833 DAG.getIntPtrConstant(0));
3834 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3835 DAG.getIntPtrConstant(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00003836 // Ret is a node with an illegal type. Because such things are not
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00003837 // generally permitted during this phase of legalization, make sure the
3838 // node has no more uses. The above EXTRACT_ELEMENT nodes should have been
3839 // folded.
3840 assert(Ret->use_empty() &&
3841 "Unexpected uses of illegally type from expanded lib call.");
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003842 }
Dan Gohmanae9b1682011-05-16 22:09:53 +00003843
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003844 if (isSigned) {
Owen Andersonb2c80da2011-02-25 21:41:48 +00003845 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3846 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003847 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault758659232013-05-18 00:21:46 +00003848 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003849 ISD::SETNE);
3850 } else {
Matt Arsenault758659232013-05-18 00:21:46 +00003851 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003852 DAG.getConstant(0, VT), ISD::SETNE);
3853 }
3854 Results.push_back(BottomHalf);
3855 Results.push_back(TopHalf);
3856 break;
3857 }
Eli Friedman0e494312009-05-27 07:32:27 +00003858 case ISD::BUILD_PAIR: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003859 EVT PairTy = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003860 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3861 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendlingef408db2009-12-23 00:28:23 +00003862 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedman0e494312009-05-27 07:32:27 +00003863 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003864 TLI.getShiftAmountTy(PairTy)));
Bill Wendlingef408db2009-12-23 00:28:23 +00003865 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedman0e494312009-05-27 07:32:27 +00003866 break;
3867 }
Eli Friedman3b251702009-05-27 07:58:35 +00003868 case ISD::SELECT:
3869 Tmp1 = Node->getOperand(0);
3870 Tmp2 = Node->getOperand(1);
3871 Tmp3 = Node->getOperand(2);
Bill Wendlingef408db2009-12-23 00:28:23 +00003872 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman3b251702009-05-27 07:58:35 +00003873 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3874 Tmp2, Tmp3,
3875 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendlingef408db2009-12-23 00:28:23 +00003876 } else {
Eli Friedman3b251702009-05-27 07:58:35 +00003877 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3878 DAG.getConstant(0, Tmp1.getValueType()),
3879 Tmp2, Tmp3, ISD::SETNE);
Bill Wendlingef408db2009-12-23 00:28:23 +00003880 }
Eli Friedman3b251702009-05-27 07:58:35 +00003881 Results.push_back(Tmp1);
3882 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003883 case ISD::BR_JT: {
3884 SDValue Chain = Node->getOperand(0);
3885 SDValue Table = Node->getOperand(1);
3886 SDValue Index = Node->getOperand(2);
3887
Owen Anderson53aa7a92009-08-10 22:56:29 +00003888 EVT PTy = TLI.getPointerTy();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003889
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003890 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003891 unsigned EntrySize =
3892 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00003893
Tom Stellard838e2342013-08-26 15:06:10 +00003894 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(),
3895 Index, DAG.getConstant(EntrySize, Index.getValueType()));
3896 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3897 Index, Table);
Eli Friedman2892d822009-05-27 12:20:41 +00003898
Owen Anderson117c9e82009-08-12 00:36:31 +00003899 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastings81c43062011-02-16 16:23:55 +00003900 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattnera35499e2010-09-21 07:32:19 +00003901 MachinePointerInfo::getJumpTable(), MemVT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00003902 false, false, false, 0);
Eli Friedman2892d822009-05-27 12:20:41 +00003903 Addr = LD;
Dan Gohmanc3349602010-04-19 19:05:59 +00003904 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman2892d822009-05-27 12:20:41 +00003905 // For PIC, the sequence is:
Bill Wendlingef408db2009-12-23 00:28:23 +00003906 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman2892d822009-05-27 12:20:41 +00003907 // RelocBase can be JumpTable, GOT or some sort of global base.
3908 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3909 TLI.getPICJumpTableRelocBase(Table, DAG));
3910 }
Owen Anderson9f944592009-08-11 20:47:22 +00003911 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman2892d822009-05-27 12:20:41 +00003912 Results.push_back(Tmp1);
3913 break;
3914 }
Eli Friedman0e494312009-05-27 07:32:27 +00003915 case ISD::BRCOND:
3916 // Expand brcond's setcc into its constituent parts and create a BR_CC
3917 // Node.
3918 Tmp1 = Node->getOperand(0);
3919 Tmp2 = Node->getOperand(1);
Bill Wendlingef408db2009-12-23 00:28:23 +00003920 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson9f944592009-08-11 20:47:22 +00003921 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedman0e494312009-05-27 07:32:27 +00003922 Tmp1, Tmp2.getOperand(2),
3923 Tmp2.getOperand(0), Tmp2.getOperand(1),
3924 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003925 } else {
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003926 // We test only the i1 bit. Skip the AND if UNDEF.
3927 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3928 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3929 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson9f944592009-08-11 20:47:22 +00003930 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003931 DAG.getCondCode(ISD::SETNE), Tmp3,
3932 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedman0e494312009-05-27 07:32:27 +00003933 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003934 }
Eli Friedman0e494312009-05-27 07:32:27 +00003935 Results.push_back(Tmp1);
3936 break;
Eli Friedman5df72022009-05-28 03:56:57 +00003937 case ISD::SETCC: {
3938 Tmp1 = Node->getOperand(0);
3939 Tmp2 = Node->getOperand(1);
3940 Tmp3 = Node->getOperand(2);
Tom Stellard08690a12013-09-28 02:50:32 +00003941 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
Daniel Sandersedc071b2013-11-21 13:24:49 +00003942 Tmp3, NeedInvert, dl);
Eli Friedman5df72022009-05-28 03:56:57 +00003943
Tom Stellard08690a12013-09-28 02:50:32 +00003944 if (Legalized) {
Daniel Sandersedc071b2013-11-21 13:24:49 +00003945 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3946 // condition code, create a new SETCC node.
Tom Stellard08690a12013-09-28 02:50:32 +00003947 if (Tmp3.getNode())
3948 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3949 Tmp1, Tmp2, Tmp3);
3950
Daniel Sandersedc071b2013-11-21 13:24:49 +00003951 // If we expanded the SETCC by inverting the condition code, then wrap
3952 // the existing SETCC in a NOT to restore the intended condition.
3953 if (NeedInvert)
Pete Cooper7fd1d722014-05-12 23:26:58 +00003954 Tmp1 = DAG.getLogicalNOT(dl, Tmp1, Tmp1->getValueType(0));
Daniel Sandersedc071b2013-11-21 13:24:49 +00003955
Eli Friedman5df72022009-05-28 03:56:57 +00003956 Results.push_back(Tmp1);
3957 break;
3958 }
3959
3960 // Otherwise, SETCC for the given comparison type must be completely
3961 // illegal; expand it into a SELECT_CC.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003962 EVT VT = Node->getValueType(0);
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003963 int TrueValue;
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003964 switch (TLI.getBooleanContents(Tmp1->getValueType(0))) {
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003965 case TargetLowering::ZeroOrOneBooleanContent:
3966 case TargetLowering::UndefinedBooleanContent:
3967 TrueValue = 1;
3968 break;
3969 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3970 TrueValue = -1;
3971 break;
3972 }
Eli Friedman5df72022009-05-28 03:56:57 +00003973 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003974 DAG.getConstant(TrueValue, VT), DAG.getConstant(0, VT),
3975 Tmp3);
Eli Friedman5df72022009-05-28 03:56:57 +00003976 Results.push_back(Tmp1);
3977 break;
3978 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00003979 case ISD::SELECT_CC: {
3980 Tmp1 = Node->getOperand(0); // LHS
3981 Tmp2 = Node->getOperand(1); // RHS
3982 Tmp3 = Node->getOperand(2); // True
3983 Tmp4 = Node->getOperand(3); // False
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003984 EVT VT = Node->getValueType(0);
Eli Friedmane1dc1932009-05-28 20:40:34 +00003985 SDValue CC = Node->getOperand(4);
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003986 ISD::CondCode CCOp = cast<CondCodeSDNode>(CC)->get();
Eli Friedmane1dc1932009-05-28 20:40:34 +00003987
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003988 if (TLI.isCondCodeLegal(CCOp, Tmp1.getSimpleValueType())) {
3989 // If the condition code is legal, then we need to expand this
3990 // node using SETCC and SELECT.
3991 EVT CmpVT = Tmp1.getValueType();
3992 assert(!TLI.isOperationExpand(ISD::SELECT, VT) &&
3993 "Cannot expand ISD::SELECT_CC when ISD::SELECT also needs to be "
3994 "expanded.");
3995 EVT CCVT = TLI.getSetCCResultType(*DAG.getContext(), CmpVT);
3996 SDValue Cond = DAG.getNode(ISD::SETCC, dl, CCVT, Tmp1, Tmp2, CC);
3997 Results.push_back(DAG.getSelect(dl, VT, Cond, Tmp3, Tmp4));
3998 break;
3999 }
4000
4001 // SELECT_CC is legal, so the condition code must not be.
Tom Stellard5694d302013-09-28 02:50:43 +00004002 bool Legalized = false;
4003 // Try to legalize by inverting the condition. This is for targets that
4004 // might support an ordered version of a condition, but not the unordered
4005 // version (or vice versa).
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00004006 ISD::CondCode InvCC = ISD::getSetCCInverse(CCOp,
Tom Stellard5694d302013-09-28 02:50:43 +00004007 Tmp1.getValueType().isInteger());
4008 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
4009 // Use the new condition code and swap true and false
4010 Legalized = true;
4011 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
Tom Stellard08690a12013-09-28 02:50:32 +00004012 } else {
Tom Stellard5694d302013-09-28 02:50:43 +00004013 // If The inverse is not legal, then try to swap the arguments using
4014 // the inverse condition code.
4015 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
4016 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
4017 // The swapped inverse condition is legal, so swap true and false,
4018 // lhs and rhs.
4019 Legalized = true;
4020 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
4021 }
4022 }
4023
4024 if (!Legalized) {
4025 Legalized = LegalizeSetCCCondCode(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004026 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, NeedInvert,
4027 dl);
Tom Stellard5694d302013-09-28 02:50:43 +00004028
4029 assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00004030
4031 // If we expanded the SETCC by inverting the condition code, then swap
4032 // the True/False operands to match.
4033 if (NeedInvert)
4034 std::swap(Tmp3, Tmp4);
4035
4036 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
4037 // condition code, create a new SELECT_CC node.
Tom Stellard5694d302013-09-28 02:50:43 +00004038 if (CC.getNode()) {
4039 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
4040 Tmp1, Tmp2, Tmp3, Tmp4, CC);
4041 } else {
4042 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4043 CC = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004044 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1,
4045 Tmp2, Tmp3, Tmp4, CC);
Tom Stellard5694d302013-09-28 02:50:43 +00004046 }
Tom Stellard08690a12013-09-28 02:50:32 +00004047 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004048 Results.push_back(Tmp1);
4049 break;
4050 }
4051 case ISD::BR_CC: {
4052 Tmp1 = Node->getOperand(0); // Chain
4053 Tmp2 = Node->getOperand(2); // LHS
4054 Tmp3 = Node->getOperand(3); // RHS
4055 Tmp4 = Node->getOperand(1); // CC
4056
Tom Stellard08690a12013-09-28 02:50:32 +00004057 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004058 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, NeedInvert, dl);
Tom Stellard45015d92013-09-28 03:10:17 +00004059 (void)Legalized;
Tom Stellard08690a12013-09-28 02:50:32 +00004060 assert(Legalized && "Can't legalize BR_CC with legal condition!");
Eli Friedmane1dc1932009-05-28 20:40:34 +00004061
Daniel Sandersedc071b2013-11-21 13:24:49 +00004062 // If we expanded the SETCC by inverting the condition code, then wrap
4063 // the existing SETCC in a NOT to restore the intended condition.
4064 if (NeedInvert)
4065 Tmp4 = DAG.getNOT(dl, Tmp4, Tmp4->getValueType(0));
4066
4067 // If we expanded the SETCC by swapping LHS and RHS, create a new BR_CC
Tom Stellard08690a12013-09-28 02:50:32 +00004068 // node.
4069 if (Tmp4.getNode()) {
4070 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
4071 Tmp4, Tmp2, Tmp3, Node->getOperand(4));
4072 } else {
4073 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
4074 Tmp4 = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004075 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4,
4076 Tmp2, Tmp3, Node->getOperand(4));
Tom Stellard08690a12013-09-28 02:50:32 +00004077 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004078 Results.push_back(Tmp1);
4079 break;
4080 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004081 case ISD::BUILD_VECTOR:
4082 Results.push_back(ExpandBUILD_VECTOR(Node));
4083 break;
4084 case ISD::SRA:
4085 case ISD::SRL:
4086 case ISD::SHL: {
4087 // Scalarize vector SRA/SRL/SHL.
4088 EVT VT = Node->getValueType(0);
4089 assert(VT.isVector() && "Unable to legalize non-vector shift");
4090 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
4091 unsigned NumElem = VT.getVectorNumElements();
4092
4093 SmallVector<SDValue, 8> Scalars;
4094 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
4095 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
4096 VT.getScalarType(),
Tom Stellardd42c5942013-08-05 22:22:01 +00004097 Node->getOperand(0), DAG.getConstant(Idx,
4098 TLI.getVectorIdxTy()));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004099 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
4100 VT.getScalarType(),
Tom Stellardd42c5942013-08-05 22:22:01 +00004101 Node->getOperand(1), DAG.getConstant(Idx,
4102 TLI.getVectorIdxTy()));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004103 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
4104 VT.getScalarType(), Ex, Sh));
4105 }
4106 SDValue Result =
Craig Topper48d114b2014-04-26 18:35:24 +00004107 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0), Scalars);
Eli Friedman13477152011-11-11 23:58:27 +00004108 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +00004109 break;
4110 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00004111 case ISD::GLOBAL_OFFSET_TABLE:
4112 case ISD::GlobalAddress:
4113 case ISD::GlobalTLSAddress:
4114 case ISD::ExternalSymbol:
4115 case ISD::ConstantPool:
4116 case ISD::JumpTable:
4117 case ISD::INTRINSIC_W_CHAIN:
4118 case ISD::INTRINSIC_WO_CHAIN:
4119 case ISD::INTRINSIC_VOID:
4120 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedmana8f9a022009-05-27 02:16:40 +00004121 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00004122 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004123
4124 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004125 if (!Results.empty())
4126 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004127}
Dan Gohman198b7ff2011-11-03 21:49:52 +00004128
4129void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
4130 SmallVector<SDValue, 8> Results;
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004131 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00004132 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedman97f3f962009-07-17 05:16:04 +00004133 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendlingef408db2009-12-23 00:28:23 +00004134 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004135 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendlingef408db2009-12-23 00:28:23 +00004136 }
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004137 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004138 SDLoc dl(Node);
Eli Friedman3b251702009-05-27 07:58:35 +00004139 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman21d349b2009-05-27 01:25:56 +00004140 switch (Node->getOpcode()) {
4141 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004142 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004143 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004144 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004145 case ISD::CTPOP:
4146 // Zero extend the argument.
4147 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004148 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
4149 // already the correct result.
Jakob Stoklund Olesen6b9f63c2009-07-12 17:43:20 +00004150 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004151 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004152 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault758659232013-05-18 00:21:46 +00004153 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Eli Friedman21d349b2009-05-27 01:25:56 +00004154 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
4155 ISD::SETEQ);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004156 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
4157 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004158 } else if (Node->getOpcode() == ISD::CTLZ ||
4159 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman21d349b2009-05-27 01:25:56 +00004160 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4161 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
4162 DAG.getConstant(NVT.getSizeInBits() -
4163 OVT.getSizeInBits(), NVT));
4164 }
Bill Wendlingef408db2009-12-23 00:28:23 +00004165 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00004166 break;
4167 case ISD::BSWAP: {
4168 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling70794592009-12-22 22:53:39 +00004169 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004170 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4171 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Andersonb2c80da2011-02-25 21:41:48 +00004172 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendlingef408db2009-12-23 00:28:23 +00004173 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004174 break;
4175 }
4176 case ISD::FP_TO_UINT:
4177 case ISD::FP_TO_SINT:
4178 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
4179 Node->getOpcode() == ISD::FP_TO_SINT, dl);
4180 Results.push_back(Tmp1);
4181 break;
4182 case ISD::UINT_TO_FP:
4183 case ISD::SINT_TO_FP:
4184 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
4185 Node->getOpcode() == ISD::SINT_TO_FP, dl);
4186 Results.push_back(Tmp1);
4187 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00004188 case ISD::VAARG: {
4189 SDValue Chain = Node->getOperand(0); // Get the chain.
4190 SDValue Ptr = Node->getOperand(1); // Get the pointer.
4191
4192 unsigned TruncOp;
4193 if (OVT.isVector()) {
4194 TruncOp = ISD::BITCAST;
4195 } else {
4196 assert(OVT.isInteger()
4197 && "VAARG promotion is supported only for vectors or integer types");
4198 TruncOp = ISD::TRUNCATE;
4199 }
4200
4201 // Perform the larger operation, then convert back
4202 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
4203 Node->getConstantOperandVal(3));
4204 Chain = Tmp1.getValue(1);
4205
4206 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
4207
4208 // Modified the chain result - switch anything that used the old chain to
4209 // use the new one.
4210 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
4211 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00004212 if (UpdatedNodes) {
4213 UpdatedNodes->insert(Tmp2.getNode());
4214 UpdatedNodes->insert(Chain.getNode());
4215 }
Hal Finkel71c2ba32012-03-24 03:53:52 +00004216 ReplacedNode(Node);
4217 break;
4218 }
Eli Friedmand6f28342009-05-27 03:33:44 +00004219 case ISD::AND:
4220 case ISD::OR:
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004221 case ISD::XOR: {
4222 unsigned ExtOp, TruncOp;
4223 if (OVT.isVector()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004224 ExtOp = ISD::BITCAST;
4225 TruncOp = ISD::BITCAST;
Chris Lattnercd927182010-04-07 23:47:51 +00004226 } else {
4227 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004228 ExtOp = ISD::ANY_EXTEND;
4229 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004230 }
4231 // Promote each of the values to the new type.
4232 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4233 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4234 // Perform the larger operation, then convert back
Bill Wendlingef408db2009-12-23 00:28:23 +00004235 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
4236 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmand6f28342009-05-27 03:33:44 +00004237 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004238 }
4239 case ISD::SELECT: {
Eli Friedman3b251702009-05-27 07:58:35 +00004240 unsigned ExtOp, TruncOp;
Tom Stellardc9a67a22014-03-24 16:07:28 +00004241 if (Node->getValueType(0).isVector() ||
4242 Node->getValueType(0).getSizeInBits() == NVT.getSizeInBits()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004243 ExtOp = ISD::BITCAST;
4244 TruncOp = ISD::BITCAST;
Eli Friedman2892d822009-05-27 12:20:41 +00004245 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman3b251702009-05-27 07:58:35 +00004246 ExtOp = ISD::ANY_EXTEND;
4247 TruncOp = ISD::TRUNCATE;
4248 } else {
4249 ExtOp = ISD::FP_EXTEND;
4250 TruncOp = ISD::FP_ROUND;
4251 }
4252 Tmp1 = Node->getOperand(0);
4253 // Promote each of the values to the new type.
4254 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4255 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4256 // Perform the larger operation, then round down.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004257 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman3b251702009-05-27 07:58:35 +00004258 if (TruncOp != ISD::FP_ROUND)
Bill Wendlingef408db2009-12-23 00:28:23 +00004259 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004260 else
Bill Wendlingef408db2009-12-23 00:28:23 +00004261 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman3b251702009-05-27 07:58:35 +00004262 DAG.getIntPtrConstant(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004263 Results.push_back(Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004264 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004265 }
Eli Friedman3b251702009-05-27 07:58:35 +00004266 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00004267 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00004268
4269 // Cast the two input vectors.
Wesley Peck527da1b2010-11-23 03:31:01 +00004270 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
4271 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman3b251702009-05-27 07:58:35 +00004272
4273 // Convert the shuffle mask to the right # elements.
Bill Wendlingef408db2009-12-23 00:28:23 +00004274 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peck527da1b2010-11-23 03:31:01 +00004275 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004276 Results.push_back(Tmp1);
4277 break;
4278 }
Eli Friedman5df72022009-05-28 03:56:57 +00004279 case ISD::SETCC: {
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004280 unsigned ExtOp = ISD::FP_EXTEND;
4281 if (NVT.isInteger()) {
4282 ISD::CondCode CCCode =
4283 cast<CondCodeSDNode>(Node->getOperand(2))->get();
4284 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedman5df72022009-05-28 03:56:57 +00004285 }
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004286 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4287 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedman5df72022009-05-28 03:56:57 +00004288 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
4289 Tmp1, Tmp2, Node->getOperand(2)));
4290 break;
4291 }
Oliver Stannardf5469be2014-08-18 14:22:39 +00004292 case ISD::FADD:
4293 case ISD::FSUB:
4294 case ISD::FMUL:
Pete Coopere69be6d2012-03-19 23:38:12 +00004295 case ISD::FDIV:
Pete Cooper8a3dc0e2012-04-04 19:36:31 +00004296 case ISD::FREM:
Pete Cooper99415fe2012-01-12 21:46:18 +00004297 case ISD::FPOW: {
4298 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4299 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopere69be6d2012-03-19 23:38:12 +00004300 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooper99415fe2012-01-12 21:46:18 +00004301 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4302 Tmp3, DAG.getIntPtrConstant(0)));
4303 break;
4304 }
4305 case ISD::FLOG2:
4306 case ISD::FEXP2:
4307 case ISD::FLOG:
4308 case ISD::FEXP: {
4309 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4310 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4311 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4312 Tmp2, DAG.getIntPtrConstant(0)));
4313 break;
4314 }
Eli Friedman21d349b2009-05-27 01:25:56 +00004315 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004316
4317 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004318 if (!Results.empty())
4319 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004320}
4321
Chris Lattnerdc750592005-01-07 07:47:09 +00004322// SelectionDAG::Legalize - This is the entry point for the file.
4323//
Dan Gohmand282f462011-05-16 22:19:54 +00004324void SelectionDAG::Legalize() {
Chandler Carruth411fb402014-07-26 05:49:40 +00004325 AssignTopologicalOrder();
4326
Chandler Carruth411fb402014-07-26 05:49:40 +00004327 SmallPtrSet<SDNode *, 16> LegalizedNodes;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004328 SelectionDAGLegalize Legalizer(*this, LegalizedNodes);
Chandler Carruth411fb402014-07-26 05:49:40 +00004329
4330 // Visit all the nodes. We start in topological order, so that we see
4331 // nodes with their original operands intact. Legalization can produce
4332 // new nodes which may themselves need to be legalized. Iterate until all
4333 // nodes have been legalized.
4334 for (;;) {
4335 bool AnyLegalized = false;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004336 for (auto NI = allnodes_end(); NI != allnodes_begin();) {
4337 --NI;
Chandler Carruth411fb402014-07-26 05:49:40 +00004338
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004339 SDNode *N = NI;
4340 if (N->use_empty() && N != getRoot().getNode()) {
4341 ++NI;
4342 DeleteNode(N);
4343 continue;
4344 }
4345
Chandler Carruth411fb402014-07-26 05:49:40 +00004346 if (LegalizedNodes.insert(N)) {
4347 AnyLegalized = true;
4348 Legalizer.LegalizeOp(N);
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004349
4350 if (N->use_empty() && N != getRoot().getNode()) {
4351 ++NI;
4352 DeleteNode(N);
4353 }
Chandler Carruth411fb402014-07-26 05:49:40 +00004354 }
4355 }
4356 if (!AnyLegalized)
4357 break;
4358
4359 }
4360
4361 // Remove dead nodes now.
4362 RemoveDeadNodes();
4363}
4364
4365bool SelectionDAG::LegalizeOp(SDNode *N,
4366 SmallSetVector<SDNode *, 16> &UpdatedNodes) {
Chandler Carruth411fb402014-07-26 05:49:40 +00004367 SmallPtrSet<SDNode *, 16> LegalizedNodes;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004368 SelectionDAGLegalize Legalizer(*this, LegalizedNodes, &UpdatedNodes);
Chandler Carruth411fb402014-07-26 05:49:40 +00004369
4370 // Directly insert the node in question, and legalize it. This will recurse
4371 // as needed through operands.
4372 LegalizedNodes.insert(N);
4373 Legalizer.LegalizeOp(N);
4374
4375 return LegalizedNodes.count(N);
Chris Lattnerdc750592005-01-07 07:47:09 +00004376}