blob: fea08273efd60cf3fd3f1906a778069b4d9450e3 [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)
Sanjay Patelb06441a2014-11-21 18:05:59 +0000728 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000729 }
730 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000731 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000732 case TargetLowering::Custom: {
733 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
734 if (Res.getNode())
735 ReplaceNode(SDValue(Node, 0), Res);
736 return;
737 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000738 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000739 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellardb785bd72012-12-10 21:41:54 +0000740 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
741 "Can only promote stores to same size type");
742 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000743 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000744 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000745 ST->getPointerInfo(), isVolatile,
Hal Finkelcc39b672014-07-24 12:16:19 +0000746 isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000747 ReplaceNode(SDValue(Node, 0), Result);
748 break;
749 }
750 }
751 return;
752 }
753 } else {
Nadav Rotem2a148662012-07-11 11:02:16 +0000754 SDValue Value = ST->getValue();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000755
756 EVT StVT = ST->getMemoryVT();
757 unsigned StWidth = StVT.getSizeInBits();
758
759 if (StWidth != StVT.getStoreSizeInBits()) {
760 // Promote to a byte-sized store with upper bits zero if not
761 // storing an integral number of bytes. For example, promote
762 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
763 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
764 StVT.getStoreSizeInBits());
Nadav Rotem2a148662012-07-11 11:02:16 +0000765 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000766 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000767 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Sanjay Patelb06441a2014-11-21 18:05:59 +0000768 NVT, isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000769 ReplaceNode(SDValue(Node, 0), Result);
770 } else if (StWidth & (StWidth - 1)) {
771 // If not storing a power-of-2 number of bits, expand as two stores.
772 assert(!StVT.isVector() && "Unsupported truncstore!");
773 unsigned RoundWidth = 1 << Log2_32(StWidth);
774 assert(RoundWidth < StWidth);
775 unsigned ExtraWidth = StWidth - RoundWidth;
776 assert(ExtraWidth < RoundWidth);
777 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
778 "Store size not an integral number of bytes!");
779 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
780 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
781 SDValue Lo, Hi;
782 unsigned IncrementSize;
783
784 if (TLI.isLittleEndian()) {
785 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
786 // Store the bottom RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000787 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemde6fd282012-07-11 08:52:09 +0000788 RoundVT,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000789 isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000790 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000791
792 // Store the remaining ExtraWidth bits.
793 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000794 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000795 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000796 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000797 DAG.getConstant(RoundWidth,
Jack Carter5c0af482013-11-19 23:43:22 +0000798 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000799 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000800 ST->getPointerInfo().getWithOffset(IncrementSize),
801 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000802 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000803 } else {
804 // Big endian - avoid unaligned stores.
805 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
806 // Store the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000807 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000808 DAG.getConstant(ExtraWidth,
Jack Carter5c0af482013-11-19 23:43:22 +0000809 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000810 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000811 RoundVT, isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000812 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000813
814 // Store the remaining ExtraWidth bits.
815 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000816 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Jack Carter5c0af482013-11-19 23:43:22 +0000817 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000818 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000819 ST->getPointerInfo().getWithOffset(IncrementSize),
820 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000821 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000822 }
823
824 // The order of the stores doesn't matter.
825 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
826 ReplaceNode(SDValue(Node, 0), Result);
827 } else {
Patrik Hagglundd7cdcf82012-12-19 08:28:51 +0000828 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
829 StVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000830 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000831 case TargetLowering::Legal: {
832 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000833 unsigned Align = ST->getAlignment();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000834 // If this is an unaligned store and the target doesn't support it,
835 // expand it.
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000836 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000837 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000838 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000839 if (Align < ABIAlignment)
Nadav Rotemde6fd282012-07-11 08:52:09 +0000840 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
841 }
842 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000843 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000844 case TargetLowering::Custom: {
845 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
846 if (Res.getNode())
847 ReplaceNode(SDValue(Node, 0), Res);
848 return;
849 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000850 case TargetLowering::Expand:
851 assert(!StVT.isVector() &&
852 "Vector Stores are handled in LegalizeVectorOps");
853
854 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem2a148662012-07-11 11:02:16 +0000855 assert(TLI.isTypeLegal(StVT) &&
856 "Do not know how to expand this store!");
857 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000858 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000859 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000860 isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000861 ReplaceNode(SDValue(Node, 0), Result);
862 break;
863 }
864 }
865 }
866}
867
868void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
869 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000870 SDValue Chain = LD->getChain(); // The chain.
871 SDValue Ptr = LD->getBasePtr(); // The base pointer.
872 SDValue Value; // The value returned by the load op.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000873 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000874
875 ISD::LoadExtType ExtType = LD->getExtensionType();
876 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000877 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem2a148662012-07-11 11:02:16 +0000878 SDValue RVal = SDValue(Node, 0);
879 SDValue RChain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000880
881 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
882 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000883 case TargetLowering::Legal: {
884 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000885 unsigned Align = LD->getAlignment();
Evan Chengc5735992012-09-18 01:34:40 +0000886 // If this is an unaligned load and the target doesn't support it,
887 // expand it.
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000888 if (!TLI.allowsMisalignedMemoryAccesses(LD->getMemoryVT(), AS, Align)) {
Evan Chengc5735992012-09-18 01:34:40 +0000889 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
890 unsigned ABIAlignment =
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000891 TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000892 if (Align < ABIAlignment){
Evan Chengc5735992012-09-18 01:34:40 +0000893 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
894 }
895 }
896 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000897 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000898 case TargetLowering::Custom: {
Evan Chengc5735992012-09-18 01:34:40 +0000899 SDValue Res = TLI.LowerOperation(RVal, DAG);
900 if (Res.getNode()) {
901 RVal = Res;
902 RChain = Res.getValue(1);
903 }
904 break;
Nadav Rotem2a148662012-07-11 11:02:16 +0000905 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000906 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000907 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellard30e2aa52012-12-10 21:41:58 +0000908 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
909 "Can only promote loads to same size type");
Nadav Rotemde6fd282012-07-11 08:52:09 +0000910
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000911 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
Nadav Rotem2a148662012-07-11 11:02:16 +0000912 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
913 RChain = Res.getValue(1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000914 break;
915 }
916 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000917 if (RChain.getNode() != Node) {
918 assert(RVal.getNode() != Node && "Load must be completely replaced");
919 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
920 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Chandler Carruth411fb402014-07-26 05:49:40 +0000921 if (UpdatedNodes) {
922 UpdatedNodes->insert(RVal.getNode());
923 UpdatedNodes->insert(RChain.getNode());
924 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000925 ReplacedNode(Node);
926 }
927 return;
928 }
929
930 EVT SrcVT = LD->getMemoryVT();
931 unsigned SrcWidth = SrcVT.getSizeInBits();
932 unsigned Alignment = LD->getAlignment();
933 bool isVolatile = LD->isVolatile();
934 bool isNonTemporal = LD->isNonTemporal();
Louis Gerbarg67474e32014-07-31 21:45:05 +0000935 bool isInvariant = LD->isInvariant();
Hal Finkelcc39b672014-07-24 12:16:19 +0000936 AAMDNodes AAInfo = LD->getAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000937
938 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
939 // Some targets pretend to have an i1 loading operation, and actually
940 // load an i8. This trick is correct for ZEXTLOAD because the top 7
941 // bits are guaranteed to be zero; it helps the optimizers understand
942 // that these bits are zero. It is also useful for EXTLOAD, since it
943 // tells the optimizers that those bits are undefined. It would be
944 // nice to have an effective generic way of getting these benefits...
945 // Until such a way is found, don't insist on promoting i1 here.
946 (SrcVT != MVT::i1 ||
947 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
948 // Promote to a byte-sized load if not loading an integral number of
949 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
950 unsigned NewWidth = SrcVT.getStoreSizeInBits();
951 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
952 SDValue Ch;
953
954 // The extra bits are guaranteed to be zero, since we stored them that
955 // way. A zext load from NVT thus automatically gives zext from SrcVT.
956
957 ISD::LoadExtType NewExtType =
958 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
959
960 SDValue Result =
961 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +0000962 Chain, Ptr, LD->getPointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000963 NVT, isVolatile, isNonTemporal, isInvariant, Alignment,
964 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000965
966 Ch = Result.getValue(1); // The chain.
967
968 if (ExtType == ISD::SEXTLOAD)
969 // Having the top bits zero doesn't help when sign extending.
970 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
971 Result.getValueType(),
972 Result, DAG.getValueType(SrcVT));
973 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
974 // All the top bits are guaranteed to be zero - inform the optimizers.
975 Result = DAG.getNode(ISD::AssertZext, dl,
976 Result.getValueType(), Result,
977 DAG.getValueType(SrcVT));
978
Nadav Rotem2a148662012-07-11 11:02:16 +0000979 Value = Result;
980 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +0000981 } else if (SrcWidth & (SrcWidth - 1)) {
982 // If not loading a power-of-2 number of bits, expand as two loads.
983 assert(!SrcVT.isVector() && "Unsupported extload!");
984 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
985 assert(RoundWidth < SrcWidth);
986 unsigned ExtraWidth = SrcWidth - RoundWidth;
987 assert(ExtraWidth < RoundWidth);
988 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
989 "Load size not an integral number of bytes!");
990 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
991 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
992 SDValue Lo, Hi, Ch;
993 unsigned IncrementSize;
994
995 if (TLI.isLittleEndian()) {
996 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
997 // Load the bottom RoundWidth bits.
998 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +0000999 Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001000 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001001 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001002
1003 // Load the remaining ExtraWidth bits.
1004 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001005 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +00001006 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +00001007 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001008 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001009 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001010 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001011
1012 // Build a factor node to remember that this load is independent of
1013 // the other one.
1014 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1015 Hi.getValue(1));
1016
1017 // Move the top bits to the right place.
1018 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1019 DAG.getConstant(RoundWidth,
Jack Carter5c0af482013-11-19 23:43:22 +00001020 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001021
1022 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001023 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001024 } else {
1025 // Big endian - avoid unaligned loads.
1026 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1027 // Load the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +00001028 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001029 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001030 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001031
1032 // Load the remaining ExtraWidth bits.
1033 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001034 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +00001035 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001036 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem2a148662012-07-11 11:02:16 +00001037 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001038 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001039 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001040 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001041
1042 // Build a factor node to remember that this load is independent of
1043 // the other one.
1044 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1045 Hi.getValue(1));
1046
1047 // Move the top bits to the right place.
1048 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1049 DAG.getConstant(ExtraWidth,
Jack Carter5c0af482013-11-19 23:43:22 +00001050 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001051
1052 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001053 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001054 }
1055
Nadav Rotem2a148662012-07-11 11:02:16 +00001056 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001057 } else {
1058 bool isCustom = false;
Patrik Hagglund55d6f472012-12-14 09:05:13 +00001059 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001060 default: llvm_unreachable("This action is not supported yet!");
1061 case TargetLowering::Custom:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001062 isCustom = true;
1063 // FALLTHROUGH
Nadav Rotem2a148662012-07-11 11:02:16 +00001064 case TargetLowering::Legal: {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001065 Value = SDValue(Node, 0);
1066 Chain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001067
Matt Arsenault95b714c2014-03-11 00:01:25 +00001068 if (isCustom) {
1069 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1070 if (Res.getNode()) {
1071 Value = Res;
1072 Chain = Res.getValue(1);
1073 }
1074 } else {
1075 // If this is an unaligned load and the target doesn't support
1076 // it, expand it.
1077 EVT MemVT = LD->getMemoryVT();
1078 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001079 unsigned Align = LD->getAlignment();
1080 if (!TLI.allowsMisalignedMemoryAccesses(MemVT, AS, Align)) {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001081 Type *Ty =
1082 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1083 unsigned ABIAlignment =
1084 TLI.getDataLayout()->getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001085 if (Align < ABIAlignment){
Sanjay Patelb06441a2014-11-21 18:05:59 +00001086 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, Value, Chain);
Matt Arsenault95b714c2014-03-11 00:01:25 +00001087 }
1088 }
1089 }
1090 break;
Nadav Rotem2a148662012-07-11 11:02:16 +00001091 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001092 case TargetLowering::Expand:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001093 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) &&
1094 TLI.isTypeLegal(SrcVT)) {
1095 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
1096 LD->getMemOperand());
1097 unsigned ExtendOp;
1098 switch (ExtType) {
1099 case ISD::EXTLOAD:
1100 ExtendOp = (SrcVT.isFloatingPoint() ?
1101 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1102 break;
1103 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1104 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1105 default: llvm_unreachable("Unexpected extend load type!");
1106 }
1107 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1108 Chain = Load.getValue(1);
1109 break;
1110 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001111
Matt Arsenault95b714c2014-03-11 00:01:25 +00001112 assert(!SrcVT.isVector() &&
1113 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemde6fd282012-07-11 08:52:09 +00001114
Matt Arsenault95b714c2014-03-11 00:01:25 +00001115 // FIXME: This does not work for vectors on most targets. Sign-
1116 // and zero-extend operations are currently folded into extending
1117 // loads, whether they are legal or not, and then we end up here
1118 // without any support for legalizing them.
1119 assert(ExtType != ISD::EXTLOAD &&
1120 "EXTLOAD should always be supported!");
1121 // Turn the unsupported load into an EXTLOAD followed by an
1122 // explicit zero/sign extend inreg.
1123 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl,
1124 Node->getValueType(0),
1125 Chain, Ptr, SrcVT,
1126 LD->getMemOperand());
1127 SDValue ValRes;
1128 if (ExtType == ISD::SEXTLOAD)
1129 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1130 Result.getValueType(),
1131 Result, DAG.getValueType(SrcVT));
1132 else
Sanjay Patelb06441a2014-11-21 18:05:59 +00001133 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Matt Arsenault95b714c2014-03-11 00:01:25 +00001134 Value = ValRes;
1135 Chain = Result.getValue(1);
1136 break;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001137 }
1138 }
1139
1140 // Since loads produce two values, make sure to remember that we legalized
1141 // both of them.
Nadav Rotem2a148662012-07-11 11:02:16 +00001142 if (Chain.getNode() != Node) {
1143 assert(Value.getNode() != Node && "Load must be completely replaced");
1144 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1145 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00001146 if (UpdatedNodes) {
1147 UpdatedNodes->insert(Value.getNode());
1148 UpdatedNodes->insert(Chain.getNode());
1149 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001150 ReplacedNode(Node);
1151 }
1152}
1153
Dan Gohmanad946082011-07-15 21:42:20 +00001154/// LegalizeOp - Return a legal replacement for the given operation, with
1155/// all legal operands.
Dan Gohman198b7ff2011-11-03 21:49:52 +00001156void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
Chandler Carruthb1432742014-07-28 17:55:07 +00001157 DEBUG(dbgs() << "\nLegalizing: "; Node->dump(&DAG));
1158
Dan Gohman198b7ff2011-11-03 21:49:52 +00001159 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1160 return;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001161
Eli Friedman5e0d1502009-05-24 02:46:31 +00001162 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001163 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1164 TargetLowering::TypeLegal &&
Eli Friedman5e0d1502009-05-24 02:46:31 +00001165 "Unexpected illegal type!");
1166
1167 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001168 assert((TLI.getTypeAction(*DAG.getContext(),
1169 Node->getOperand(i).getValueType()) ==
1170 TargetLowering::TypeLegal ||
Eli Friedman5e0d1502009-05-24 02:46:31 +00001171 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1172 "Unexpected illegal type!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001173
Eli Friedman21d349b2009-05-27 01:25:56 +00001174 // Figure out the correct action; the way to query this varies by opcode
Bill Wendlingfb4ee9b2011-01-26 22:21:35 +00001175 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman21d349b2009-05-27 01:25:56 +00001176 bool SimpleFinishLegalizing = true;
Chris Lattnerdc750592005-01-07 07:47:09 +00001177 switch (Node->getOpcode()) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001178 case ISD::INTRINSIC_W_CHAIN:
1179 case ISD::INTRINSIC_WO_CHAIN:
1180 case ISD::INTRINSIC_VOID:
Eli Friedman21d349b2009-05-27 01:25:56 +00001181 case ISD::STACKSAVE:
Owen Anderson9f944592009-08-11 20:47:22 +00001182 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman21d349b2009-05-27 01:25:56 +00001183 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00001184 case ISD::VAARG:
1185 Action = TLI.getOperationAction(Node->getOpcode(),
1186 Node->getValueType(0));
1187 if (Action != TargetLowering::Promote)
1188 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1189 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00001190 case ISD::FP_TO_FP16:
Eli Friedman21d349b2009-05-27 01:25:56 +00001191 case ISD::SINT_TO_FP:
1192 case ISD::UINT_TO_FP:
1193 case ISD::EXTRACT_VECTOR_ELT:
1194 Action = TLI.getOperationAction(Node->getOpcode(),
1195 Node->getOperand(0).getValueType());
1196 break;
1197 case ISD::FP_ROUND_INREG:
1198 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001199 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00001200 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1201 break;
1202 }
Eli Friedman342e8df2011-08-24 20:50:09 +00001203 case ISD::ATOMIC_STORE: {
1204 Action = TLI.getOperationAction(Node->getOpcode(),
1205 Node->getOperand(2).getValueType());
1206 break;
1207 }
Eli Friedmane1bc3792009-05-28 03:06:16 +00001208 case ISD::SELECT_CC:
1209 case ISD::SETCC:
1210 case ISD::BR_CC: {
1211 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1212 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1213 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001214 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedmane1bc3792009-05-28 03:06:16 +00001215 ISD::CondCode CCCode =
1216 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1217 Action = TLI.getCondCodeAction(CCCode, OpVT);
1218 if (Action == TargetLowering::Legal) {
1219 if (Node->getOpcode() == ISD::SELECT_CC)
1220 Action = TLI.getOperationAction(Node->getOpcode(),
1221 Node->getValueType(0));
1222 else
1223 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1224 }
1225 break;
1226 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001227 case ISD::LOAD:
1228 case ISD::STORE:
Eli Friedman5df72022009-05-28 03:56:57 +00001229 // FIXME: Model these properly. LOAD and STORE are complicated, and
1230 // STORE expects the unlegalized operand in some cases.
1231 SimpleFinishLegalizing = false;
1232 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001233 case ISD::CALLSEQ_START:
1234 case ISD::CALLSEQ_END:
Eli Friedman5df72022009-05-28 03:56:57 +00001235 // FIXME: This shouldn't be necessary. These nodes have special properties
1236 // dealing with the recursive nature of legalization. Removing this
1237 // special case should be done as part of making LegalizeDAG non-recursive.
1238 SimpleFinishLegalizing = false;
1239 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001240 case ISD::EXTRACT_ELEMENT:
1241 case ISD::FLT_ROUNDS_:
1242 case ISD::SADDO:
1243 case ISD::SSUBO:
1244 case ISD::UADDO:
1245 case ISD::USUBO:
1246 case ISD::SMULO:
1247 case ISD::UMULO:
1248 case ISD::FPOWI:
1249 case ISD::MERGE_VALUES:
1250 case ISD::EH_RETURN:
1251 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00001252 case ISD::EH_SJLJ_SETJMP:
1253 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmand6f28342009-05-27 03:33:44 +00001254 // These operations lie about being legal: when they claim to be legal,
1255 // they should actually be expanded.
Eli Friedman21d349b2009-05-27 01:25:56 +00001256 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1257 if (Action == TargetLowering::Legal)
1258 Action = TargetLowering::Expand;
1259 break;
Duncan Sandsa0984362011-09-06 13:37:06 +00001260 case ISD::INIT_TRAMPOLINE:
1261 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman21d349b2009-05-27 01:25:56 +00001262 case ISD::FRAMEADDR:
1263 case ISD::RETURNADDR:
Eli Friedman2892d822009-05-27 12:20:41 +00001264 // These operations lie about being legal: when they claim to be legal,
1265 // they should actually be custom-lowered.
1266 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1267 if (Action == TargetLowering::Legal)
1268 Action = TargetLowering::Custom;
Eli Friedman21d349b2009-05-27 01:25:56 +00001269 break;
Renato Golinc7aea402014-05-06 16:51:25 +00001270 case ISD::READ_REGISTER:
1271 case ISD::WRITE_REGISTER:
1272 // Named register is legal in the DAG, but blocked by register name
1273 // selection if not implemented by target (to chose the correct register)
1274 // They'll be converted to Copy(To/From)Reg.
1275 Action = TargetLowering::Legal;
1276 break;
Shuxin Yangcdde0592012-10-19 20:11:16 +00001277 case ISD::DEBUGTRAP:
1278 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1279 if (Action == TargetLowering::Expand) {
1280 // replace ISD::DEBUGTRAP with ISD::TRAP
1281 SDValue NewVal;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001282 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yang1479fcd2012-10-19 23:00:20 +00001283 Node->getOperand(0));
Shuxin Yangcdde0592012-10-19 20:11:16 +00001284 ReplaceNode(Node, NewVal.getNode());
1285 LegalizeOp(NewVal.getNode());
1286 return;
1287 }
1288 break;
1289
Chris Lattnerdc750592005-01-07 07:47:09 +00001290 default:
Chris Lattner3eb86932005-05-14 06:34:48 +00001291 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001292 Action = TargetLowering::Legal;
1293 } else {
1294 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattner3eb86932005-05-14 06:34:48 +00001295 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001296 break;
1297 }
1298
1299 if (SimpleFinishLegalizing) {
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001300 SDNode *NewNode = Node;
Eli Friedman21d349b2009-05-27 01:25:56 +00001301 switch (Node->getOpcode()) {
1302 default: break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001303 case ISD::SHL:
1304 case ISD::SRL:
1305 case ISD::SRA:
1306 case ISD::ROTL:
1307 case ISD::ROTR:
1308 // Legalizing shifts/rotates requires adjusting the shift amount
1309 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001310 if (!Node->getOperand(1).getValueType().isVector()) {
1311 SDValue SAO =
1312 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1313 Node->getOperand(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001314 HandleSDNode Handle(SAO);
1315 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001316 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1317 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001318 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001319 break;
Dan Gohman4906f732009-08-18 23:36:17 +00001320 case ISD::SRL_PARTS:
1321 case ISD::SRA_PARTS:
1322 case ISD::SHL_PARTS:
1323 // Legalizing shifts/rotates requires adjusting the shift amount
1324 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001325 if (!Node->getOperand(2).getValueType().isVector()) {
1326 SDValue SAO =
1327 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1328 Node->getOperand(2));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001329 HandleSDNode Handle(SAO);
1330 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001331 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1332 Node->getOperand(1),
1333 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001334 }
Dan Gohman2fa67c92009-08-18 23:52:48 +00001335 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001336 }
1337
Dan Gohman198b7ff2011-11-03 21:49:52 +00001338 if (NewNode != Node) {
Chandler Carruth411fb402014-07-26 05:49:40 +00001339 ReplaceNode(Node, NewNode);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001340 Node = NewNode;
1341 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001342 switch (Action) {
1343 case TargetLowering::Legal:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001344 return;
Nadav Rotem2a148662012-07-11 11:02:16 +00001345 case TargetLowering::Custom: {
Eli Friedman21d349b2009-05-27 01:25:56 +00001346 // FIXME: The handling for custom lowering with multiple results is
1347 // a complete mess.
Nadav Rotem2a148662012-07-11 11:02:16 +00001348 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1349 if (Res.getNode()) {
Chandler Carruth98655fa2014-07-26 05:52:51 +00001350 if (!(Res.getNode() != Node || Res.getResNo() != 0))
1351 return;
1352
1353 if (Node->getNumValues() == 1) {
1354 // We can just directly replace this node with the lowered value.
1355 ReplaceNode(SDValue(Node, 0), Res);
1356 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001357 }
Chandler Carruth98655fa2014-07-26 05:52:51 +00001358
1359 SmallVector<SDValue, 8> ResultVals;
1360 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1361 ResultVals.push_back(Res.getValue(i));
1362 ReplaceNode(Node, ResultVals.data());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001363 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001364 }
Nadav Rotem2a148662012-07-11 11:02:16 +00001365 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001366 // FALL THROUGH
1367 case TargetLowering::Expand:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001368 ExpandNode(Node);
1369 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001370 case TargetLowering::Promote:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001371 PromoteNode(Node);
1372 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001373 }
1374 }
1375
1376 switch (Node->getOpcode()) {
1377 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001378#ifndef NDEBUG
David Greeneae4f2662010-01-05 01:24:53 +00001379 dbgs() << "NODE: ";
1380 Node->dump( &DAG);
1381 dbgs() << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001382#endif
Craig Topperee4dab52012-02-05 08:31:47 +00001383 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendlingf359fed2007-11-13 00:44:25 +00001384
Dan Gohman198b7ff2011-11-03 21:49:52 +00001385 case ISD::CALLSEQ_START:
Dan Gohman9b9c9702011-10-29 00:41:52 +00001386 case ISD::CALLSEQ_END:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001387 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001388 case ISD::LOAD: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001389 return LegalizeLoadOps(Node);
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001390 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001391 case ISD::STORE: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001392 return LegalizeStoreOps(Node);
Evan Cheng31d15fa2005-12-23 07:29:34 +00001393 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001394 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001395}
1396
Eli Friedman40afdb62009-05-23 22:37:25 +00001397SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1398 SDValue Vec = Op.getOperand(0);
1399 SDValue Idx = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001400 SDLoc dl(Op);
Hal Finkel90adf0f2014-03-30 15:10:18 +00001401
1402 // Before we generate a new store to a temporary stack slot, see if there is
1403 // already one that we can use. There often is because when we scalarize
1404 // vector operations (using SelectionDAG::UnrollVectorOp for example) a whole
1405 // series of EXTRACT_VECTOR_ELT nodes are generated, one for each element in
1406 // the vector. If all are expanded here, we don't want one store per vector
1407 // element.
1408 SDValue StackPtr, Ch;
1409 for (SDNode::use_iterator UI = Vec.getNode()->use_begin(),
1410 UE = Vec.getNode()->use_end(); UI != UE; ++UI) {
1411 SDNode *User = *UI;
1412 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(User)) {
1413 if (ST->isIndexed() || ST->isTruncatingStore() ||
1414 ST->getValue() != Vec)
1415 continue;
1416
1417 // Make sure that nothing else could have stored into the destination of
1418 // this store.
1419 if (!ST->getChain().reachesChainWithoutSideEffects(DAG.getEntryNode()))
1420 continue;
1421
1422 StackPtr = ST->getBasePtr();
1423 Ch = SDValue(ST, 0);
1424 break;
1425 }
1426 }
1427
1428 if (!Ch.getNode()) {
1429 // Store the value to a temporary stack slot, then LOAD the returned part.
1430 StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1431 Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1432 MachinePointerInfo(), false, false, 0);
1433 }
Eli Friedman40afdb62009-05-23 22:37:25 +00001434
1435 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +00001436 unsigned EltSize =
1437 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman40afdb62009-05-23 22:37:25 +00001438 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1439 DAG.getConstant(EltSize, Idx.getValueType()));
1440
Matt Arsenault873bb3e2013-11-17 02:24:21 +00001441 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
Eli Friedman40afdb62009-05-23 22:37:25 +00001442 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1443
Eli Friedman2b77eef2009-07-09 22:01:03 +00001444 if (Op.getValueType().isVector())
Chris Lattner1ffcf522010-09-21 16:36:31 +00001445 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001446 false, false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +00001447 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d178ed2010-09-21 17:04:51 +00001448 MachinePointerInfo(),
1449 Vec.getValueType().getVectorElementType(),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001450 false, false, false, 0);
Eli Friedman40afdb62009-05-23 22:37:25 +00001451}
1452
David Greenebab5e6e2011-01-26 19:13:22 +00001453SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1454 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1455
1456 SDValue Vec = Op.getOperand(0);
1457 SDValue Part = Op.getOperand(1);
1458 SDValue Idx = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001459 SDLoc dl(Op);
David Greenebab5e6e2011-01-26 19:13:22 +00001460
1461 // Store the value to a temporary stack slot, then LOAD the returned part.
1462
1463 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1464 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1465 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1466
1467 // First store the whole vector.
1468 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1469 false, false, 0);
1470
1471 // Then store the inserted part.
1472
1473 // Add the offset to the index.
1474 unsigned EltSize =
1475 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1476
1477 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1478 DAG.getConstant(EltSize, Idx.getValueType()));
Matt Arsenault64283bd2013-11-17 02:31:26 +00001479 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
David Greenebab5e6e2011-01-26 19:13:22 +00001480
1481 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1482 StackPtr);
1483
1484 // Store the subvector.
Owen Andersonb5a25992014-11-18 20:50:19 +00001485 Ch = DAG.getStore(Ch, dl, Part, SubStackPtr,
David Greenebab5e6e2011-01-26 19:13:22 +00001486 MachinePointerInfo(), false, false, 0);
1487
1488 // Finally, load the updated vector.
1489 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001490 false, false, false, 0);
David Greenebab5e6e2011-01-26 19:13:22 +00001491}
1492
Eli Friedmanaee3f622009-06-06 07:04:42 +00001493SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1494 // We can't handle this case efficiently. Allocate a sufficiently
1495 // aligned object on the stack, store each element into it, then load
1496 // the result as a vector.
1497 // Create the stack frame object.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001498 EVT VT = Node->getValueType(0);
Dale Johannesenb91eba32009-11-21 00:53:23 +00001499 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001500 SDLoc dl(Node);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001501 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001502 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattner1ffcf522010-09-21 16:36:31 +00001503 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001504
1505 // Emit a store of each element to the stack slot.
1506 SmallVector<SDValue, 8> Stores;
Dan Gohman9b80f862010-02-25 15:20:39 +00001507 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedmanaee3f622009-06-06 07:04:42 +00001508 // Store (in the right endianness) the elements to memory.
1509 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1510 // Ignore undef elements.
1511 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1512
1513 unsigned Offset = TypeByteSize*i;
1514
1515 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1516 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1517
Dan Gohman2a8e3772010-02-25 20:30:49 +00001518 // If the destination vector element type is narrower than the source
1519 // element type, only store the bits necessary.
1520 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesenb91eba32009-11-21 00:53:23 +00001521 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001522 Node->getOperand(i), Idx,
1523 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001524 EltVT, false, false, 0));
Mon P Wang586d9972010-01-24 00:05:03 +00001525 } else
Jim Grosbach9b7755f2010-07-02 17:41:59 +00001526 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001527 Node->getOperand(i), Idx,
1528 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001529 false, false, 0));
Eli Friedmanaee3f622009-06-06 07:04:42 +00001530 }
1531
1532 SDValue StoreChain;
1533 if (!Stores.empty()) // Not all undef elements?
Craig Topper48d114b2014-04-26 18:35:24 +00001534 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001535 else
1536 StoreChain = DAG.getEntryNode();
1537
1538 // Result is a load from the stack slot.
Stephen Lincfe7f352013-07-08 00:37:03 +00001539 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001540 false, false, false, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001541}
1542
Eli Friedman2892d822009-05-27 12:20:41 +00001543SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001544 SDLoc dl(Node);
Eli Friedman2892d822009-05-27 12:20:41 +00001545 SDValue Tmp1 = Node->getOperand(0);
1546 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands4c55f762010-03-12 11:45:06 +00001547
1548 // Get the sign bit of the RHS. First obtain a value that has the same
1549 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman2892d822009-05-27 12:20:41 +00001550 SDValue SignBit;
Duncan Sands4c55f762010-03-12 11:45:06 +00001551 EVT FloatVT = Tmp2.getValueType();
1552 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohmane49e7422011-07-15 22:39:09 +00001553 if (TLI.isTypeLegal(IVT)) {
Duncan Sands4c55f762010-03-12 11:45:06 +00001554 // Convert to an integer with the same sign bit.
Wesley Peck527da1b2010-11-23 03:31:01 +00001555 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman2892d822009-05-27 12:20:41 +00001556 } else {
Duncan Sands4c55f762010-03-12 11:45:06 +00001557 // Store the float to memory, then load the sign part out as an integer.
1558 MVT LoadTy = TLI.getPointerTy();
1559 // First create a temporary that is aligned for both the load and store.
1560 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1561 // Then store the float to it.
Eli Friedman2892d822009-05-27 12:20:41 +00001562 SDValue Ch =
Chris Lattner676c61d2010-09-21 18:41:36 +00001563 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00001564 false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001565 if (TLI.isBigEndian()) {
1566 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1567 // Load out a legal integer with the same sign bit as the float.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001568 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001569 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001570 } else { // Little endian
1571 SDValue LoadPtr = StackPtr;
1572 // The float may be wider than the integer we are going to load. Advance
1573 // the pointer so that the loaded integer will contain the sign bit.
1574 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1575 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
Jack Carter5c0af482013-11-19 23:43:22 +00001576 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(), LoadPtr,
1577 DAG.getConstant(ByteOffset, LoadPtr.getValueType()));
Duncan Sands4c55f762010-03-12 11:45:06 +00001578 // Load a legal integer containing the sign bit.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001579 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001580 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001581 // Move the sign bit to the top bit of the loaded integer.
1582 unsigned BitShift = LoadTy.getSizeInBits() -
1583 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1584 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1585 if (BitShift)
1586 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Andersonb2c80da2011-02-25 21:41:48 +00001587 DAG.getConstant(BitShift,
1588 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands4c55f762010-03-12 11:45:06 +00001589 }
Eli Friedman2892d822009-05-27 12:20:41 +00001590 }
Duncan Sands4c55f762010-03-12 11:45:06 +00001591 // Now get the sign bit proper, by seeing whether the value is negative.
Matt Arsenault758659232013-05-18 00:21:46 +00001592 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
Duncan Sands4c55f762010-03-12 11:45:06 +00001593 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1594 ISD::SETLT);
Eli Friedman2892d822009-05-27 12:20:41 +00001595 // Get the absolute value of the result.
1596 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1597 // Select between the nabs and abs value based on the sign bit of
1598 // the input.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00001599 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
Jack Carter5c0af482013-11-19 23:43:22 +00001600 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1601 AbsVal);
Eli Friedman2892d822009-05-27 12:20:41 +00001602}
1603
Eli Friedman2892d822009-05-27 12:20:41 +00001604void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1605 SmallVectorImpl<SDValue> &Results) {
1606 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1607 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1608 " not tell us which reg is the stack pointer!");
Andrew Trickef9de2a2013-05-25 02:42:55 +00001609 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001610 EVT VT = Node->getValueType(0);
Eli Friedman2892d822009-05-27 12:20:41 +00001611 SDValue Tmp1 = SDValue(Node, 0);
1612 SDValue Tmp2 = SDValue(Node, 1);
1613 SDValue Tmp3 = Node->getOperand(2);
1614 SDValue Chain = Tmp1.getOperand(0);
1615
1616 // Chain the dynamic stack allocation so that it doesn't modify the stack
1617 // pointer when other instructions are using the stack.
Andrew Trickad6d08a2013-05-29 22:03:55 +00001618 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
1619 SDLoc(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00001620
1621 SDValue Size = Tmp2.getOperand(1);
1622 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1623 Chain = SP.getValue(1);
1624 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Eric Christopherd9134482014-08-04 21:25:23 +00001625 unsigned StackAlign =
Eric Christopher85de8f92014-10-09 01:35:27 +00001626 DAG.getSubtarget().getFrameLowering()->getStackAlignment();
Eli Friedman2892d822009-05-27 12:20:41 +00001627 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Elena Demikhovsky82a46eb2013-10-14 07:26:51 +00001628 if (Align > StackAlign)
1629 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
1630 DAG.getConstant(-(uint64_t)Align, VT));
Eli Friedman2892d822009-05-27 12:20:41 +00001631 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1632
1633 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00001634 DAG.getIntPtrConstant(0, true), SDValue(),
1635 SDLoc(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00001636
1637 Results.push_back(Tmp1);
1638 Results.push_back(Tmp2);
1639}
1640
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001641/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Tom Stellard08690a12013-09-28 02:50:32 +00001642/// condition code CC on the current target.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001643///
Tom Stellard08690a12013-09-28 02:50:32 +00001644/// If the SETCC has been legalized using AND / OR, then the legalized node
Daniel Sandersedc071b2013-11-21 13:24:49 +00001645/// will be stored in LHS. RHS and CC will be set to SDValue(). NeedInvert
1646/// will be set to false.
1647///
Tom Stellard08690a12013-09-28 02:50:32 +00001648/// If the SETCC has been legalized by using getSetCCSwappedOperands(),
Daniel Sandersedc071b2013-11-21 13:24:49 +00001649/// then the values of LHS and RHS will be swapped, CC will be set to the
1650/// new condition, and NeedInvert will be set to false.
1651///
1652/// If the SETCC has been legalized using the inverse condcode, then LHS and
1653/// RHS will be unchanged, CC will set to the inverted condcode, and NeedInvert
1654/// will be set to true. The caller must invert the result of the SETCC with
Pete Cooper7fd1d722014-05-12 23:26:58 +00001655/// SelectionDAG::getLogicalNOT() or take equivalent action to swap the effect
1656/// of a true/false result.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001657///
Tom Stellard08690a12013-09-28 02:50:32 +00001658/// \returns true if the SetCC has been legalized, false if it hasn't.
1659bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001660 SDValue &LHS, SDValue &RHS,
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001661 SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +00001662 bool &NeedInvert,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001663 SDLoc dl) {
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001664 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001665 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
Daniel Sandersedc071b2013-11-21 13:24:49 +00001666 NeedInvert = false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001667 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topperee4dab52012-02-05 08:31:47 +00001668 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001669 case TargetLowering::Legal:
1670 // Nothing to do.
1671 break;
1672 case TargetLowering::Expand: {
Tom Stellardcd428182013-09-28 02:50:38 +00001673 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1674 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1675 std::swap(LHS, RHS);
1676 CC = DAG.getCondCode(InvCC);
1677 return true;
1678 }
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001679 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1680 unsigned Opc = 0;
1681 switch (CCCode) {
Craig Topperee4dab52012-02-05 08:31:47 +00001682 default: llvm_unreachable("Don't know how to expand this condition!");
Stephen Lincfe7f352013-07-08 00:37:03 +00001683 case ISD::SETO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001684 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1685 == TargetLowering::Legal
1686 && "If SETO is expanded, SETOEQ must be legal!");
1687 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
Stephen Lincfe7f352013-07-08 00:37:03 +00001688 case ISD::SETUO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001689 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1690 == TargetLowering::Legal
1691 && "If SETUO is expanded, SETUNE must be legal!");
1692 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1693 case ISD::SETOEQ:
1694 case ISD::SETOGT:
1695 case ISD::SETOGE:
1696 case ISD::SETOLT:
1697 case ISD::SETOLE:
Stephen Lincfe7f352013-07-08 00:37:03 +00001698 case ISD::SETONE:
1699 case ISD::SETUEQ:
1700 case ISD::SETUNE:
1701 case ISD::SETUGT:
1702 case ISD::SETUGE:
1703 case ISD::SETULT:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001704 case ISD::SETULE:
1705 // If we are floating point, assign and break, otherwise fall through.
1706 if (!OpVT.isInteger()) {
1707 // We can use the 4th bit to tell if we are the unordered
1708 // or ordered version of the opcode.
1709 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1710 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1711 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1712 break;
1713 }
1714 // Fallthrough if we are unsigned integer.
1715 case ISD::SETLE:
1716 case ISD::SETGT:
1717 case ISD::SETGE:
1718 case ISD::SETLT:
Tom Stellardcd428182013-09-28 02:50:38 +00001719 // We only support using the inverted operation, which is computed above
1720 // and not a different manner of supporting expanding these cases.
1721 llvm_unreachable("Don't know how to expand this condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00001722 case ISD::SETNE:
1723 case ISD::SETEQ:
1724 // Try inverting the result of the inverse condition.
1725 InvCC = CCCode == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ;
1726 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1727 CC = DAG.getCondCode(InvCC);
1728 NeedInvert = true;
1729 return true;
1730 }
1731 // If inverting the condition didn't work then we have no means to expand
1732 // the condition.
1733 llvm_unreachable("Don't know how to expand this condition!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001734 }
Stephen Lincfe7f352013-07-08 00:37:03 +00001735
Micah Villmow0242b9b2012-10-10 20:50:51 +00001736 SDValue SetCC1, SetCC2;
1737 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1738 // If we aren't the ordered or unorder operation,
1739 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1740 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1741 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1742 } else {
1743 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1744 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1745 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1746 }
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001747 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001748 RHS = SDValue();
1749 CC = SDValue();
Tom Stellard08690a12013-09-28 02:50:32 +00001750 return true;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001751 }
1752 }
Tom Stellard08690a12013-09-28 02:50:32 +00001753 return false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001754}
1755
Chris Lattner87bc3e72008-01-16 07:45:30 +00001756/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1757/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1758/// a load from the stack slot to DestVT, extending it if needed.
1759/// The resultant code need not be legal.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001760SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001761 EVT SlotVT,
1762 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001763 SDLoc dl) {
Chris Lattner36e663d2005-12-23 00:16:34 +00001764 // Create the stack frame object.
Bob Wilsonf074ca72009-04-10 18:48:47 +00001765 unsigned SrcAlign =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001766 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson117c9e82009-08-12 00:36:31 +00001767 getTypeForEVT(*DAG.getContext()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001768 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001769
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001770 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1771 int SPFI = StackPtrFI->getIndex();
Chris Lattner6963c1f2010-09-21 17:42:31 +00001772 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001773
Duncan Sands13237ac2008-06-06 12:08:01 +00001774 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1775 unsigned SlotSize = SlotVT.getSizeInBits();
1776 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattner229907c2011-07-18 04:54:35 +00001777 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001778 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001779
Chris Lattner87bc3e72008-01-16 07:45:30 +00001780 // Emit a store to the stack slot. Use a truncstore if the input value is
1781 // later than DestVT.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001782 SDValue Store;
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001783
Chris Lattner87bc3e72008-01-16 07:45:30 +00001784 if (SrcSize > SlotSize)
Dale Johannesena02e45c2009-02-02 22:12:50 +00001785 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001786 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001787 else {
1788 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesena02e45c2009-02-02 22:12:50 +00001789 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001790 PtrInfo, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001791 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001792
Chris Lattner36e663d2005-12-23 00:16:34 +00001793 // Result is a load from the stack slot.
Chris Lattner87bc3e72008-01-16 07:45:30 +00001794 if (SlotSize == DestSize)
Chris Lattner6963c1f2010-09-21 17:42:31 +00001795 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001796 false, false, false, DestAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001797
Chris Lattner87bc3e72008-01-16 07:45:30 +00001798 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastings81c43062011-02-16 16:23:55 +00001799 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001800 PtrInfo, SlotVT, false, false, false, DestAlign);
Chris Lattner36e663d2005-12-23 00:16:34 +00001801}
1802
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001803SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001804 SDLoc dl(Node);
Chris Lattner6be79822006-04-04 17:23:26 +00001805 // Create a vector sized/aligned stack slot, store the value to element #0,
1806 // then load the whole vector back out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001807 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman2d489b52008-02-06 22:27:42 +00001808
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001809 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1810 int SPFI = StackPtrFI->getIndex();
1811
Duncan Sandse4ff21b2009-04-18 20:16:54 +00001812 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1813 StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001814 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +00001815 Node->getValueType(0).getVectorElementType(),
1816 false, false, 0);
Dale Johannesena02e45c2009-02-02 22:12:50 +00001817 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001818 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001819 false, false, false, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00001820}
1821
Hal Finkelb811b6d2014-03-31 19:42:55 +00001822static bool
1823ExpandBVWithShuffles(SDNode *Node, SelectionDAG &DAG,
1824 const TargetLowering &TLI, SDValue &Res) {
1825 unsigned NumElems = Node->getNumOperands();
1826 SDLoc dl(Node);
1827 EVT VT = Node->getValueType(0);
1828
1829 // Try to group the scalars into pairs, shuffle the pairs together, then
1830 // shuffle the pairs of pairs together, etc. until the vector has
1831 // been built. This will work only if all of the necessary shuffle masks
1832 // are legal.
1833
1834 // We do this in two phases; first to check the legality of the shuffles,
1835 // and next, assuming that all shuffles are legal, to create the new nodes.
1836 for (int Phase = 0; Phase < 2; ++Phase) {
1837 SmallVector<std::pair<SDValue, SmallVector<int, 16> >, 16> IntermedVals,
1838 NewIntermedVals;
1839 for (unsigned i = 0; i < NumElems; ++i) {
1840 SDValue V = Node->getOperand(i);
1841 if (V.getOpcode() == ISD::UNDEF)
1842 continue;
1843
1844 SDValue Vec;
1845 if (Phase)
1846 Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, V);
1847 IntermedVals.push_back(std::make_pair(Vec, SmallVector<int, 16>(1, i)));
1848 }
1849
1850 while (IntermedVals.size() > 2) {
1851 NewIntermedVals.clear();
1852 for (unsigned i = 0, e = (IntermedVals.size() & ~1u); i < e; i += 2) {
1853 // This vector and the next vector are shuffled together (simply to
1854 // append the one to the other).
1855 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1856
1857 SmallVector<int, 16> FinalIndices;
1858 FinalIndices.reserve(IntermedVals[i].second.size() +
1859 IntermedVals[i+1].second.size());
1860
1861 int k = 0;
1862 for (unsigned j = 0, f = IntermedVals[i].second.size(); j != f;
1863 ++j, ++k) {
1864 ShuffleVec[k] = j;
1865 FinalIndices.push_back(IntermedVals[i].second[j]);
1866 }
1867 for (unsigned j = 0, f = IntermedVals[i+1].second.size(); j != f;
1868 ++j, ++k) {
1869 ShuffleVec[k] = NumElems + j;
1870 FinalIndices.push_back(IntermedVals[i+1].second[j]);
1871 }
1872
1873 SDValue Shuffle;
1874 if (Phase)
1875 Shuffle = DAG.getVectorShuffle(VT, dl, IntermedVals[i].first,
1876 IntermedVals[i+1].first,
1877 ShuffleVec.data());
1878 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1879 return false;
Benjamin Kramerc6cc58e2014-10-04 16:55:56 +00001880 NewIntermedVals.push_back(
1881 std::make_pair(Shuffle, std::move(FinalIndices)));
Hal Finkelb811b6d2014-03-31 19:42:55 +00001882 }
1883
1884 // If we had an odd number of defined values, then append the last
1885 // element to the array of new vectors.
1886 if ((IntermedVals.size() & 1) != 0)
1887 NewIntermedVals.push_back(IntermedVals.back());
1888
1889 IntermedVals.swap(NewIntermedVals);
1890 }
1891
1892 assert(IntermedVals.size() <= 2 && IntermedVals.size() > 0 &&
1893 "Invalid number of intermediate vectors");
1894 SDValue Vec1 = IntermedVals[0].first;
1895 SDValue Vec2;
1896 if (IntermedVals.size() > 1)
1897 Vec2 = IntermedVals[1].first;
1898 else if (Phase)
1899 Vec2 = DAG.getUNDEF(VT);
1900
1901 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1902 for (unsigned i = 0, e = IntermedVals[0].second.size(); i != e; ++i)
1903 ShuffleVec[IntermedVals[0].second[i]] = i;
1904 for (unsigned i = 0, e = IntermedVals[1].second.size(); i != e; ++i)
1905 ShuffleVec[IntermedVals[1].second[i]] = NumElems + i;
1906
1907 if (Phase)
1908 Res = DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
1909 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1910 return false;
1911 }
1912
1913 return true;
1914}
Chris Lattner6be79822006-04-04 17:23:26 +00001915
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001916/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman06c60b62007-07-16 14:29:03 +00001917/// support the operation, but do support the resultant vector type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001918SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilsonf6c21952009-04-13 20:20:30 +00001919 unsigned NumElems = Node->getNumOperands();
Eli Friedman32345872009-06-07 06:52:44 +00001920 SDValue Value1, Value2;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001921 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001922 EVT VT = Node->getValueType(0);
1923 EVT OpVT = Node->getOperand(0).getValueType();
1924 EVT EltVT = VT.getVectorElementType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001925
1926 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00001927 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001928 bool isOnlyLowElement = true;
Eli Friedman32345872009-06-07 06:52:44 +00001929 bool MoreThanTwoValues = false;
Chris Lattner77e271c2006-03-24 07:29:17 +00001930 bool isConstant = true;
Eli Friedman32345872009-06-07 06:52:44 +00001931 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001932 SDValue V = Node->getOperand(i);
Eli Friedman32345872009-06-07 06:52:44 +00001933 if (V.getOpcode() == ISD::UNDEF)
1934 continue;
1935 if (i > 0)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001936 isOnlyLowElement = false;
Eli Friedman32345872009-06-07 06:52:44 +00001937 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner77e271c2006-03-24 07:29:17 +00001938 isConstant = false;
Eli Friedman32345872009-06-07 06:52:44 +00001939
1940 if (!Value1.getNode()) {
1941 Value1 = V;
1942 } else if (!Value2.getNode()) {
1943 if (V != Value1)
1944 Value2 = V;
1945 } else if (V != Value1 && V != Value2) {
1946 MoreThanTwoValues = true;
1947 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001948 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001949
Eli Friedman32345872009-06-07 06:52:44 +00001950 if (!Value1.getNode())
1951 return DAG.getUNDEF(VT);
1952
1953 if (isOnlyLowElement)
Bob Wilsonf6c21952009-04-13 20:20:30 +00001954 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001955
Chris Lattner77e271c2006-03-24 07:29:17 +00001956 // If all elements are constants, create a load from the constant pool.
1957 if (isConstant) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001958 SmallVector<Constant*, 16> CV;
Chris Lattner77e271c2006-03-24 07:29:17 +00001959 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00001960 if (ConstantFPSDNode *V =
Chris Lattner77e271c2006-03-24 07:29:17 +00001961 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanec270fb2008-09-12 18:08:03 +00001962 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001963 } else if (ConstantSDNode *V =
Bob Wilsonf074ca72009-04-10 18:48:47 +00001964 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen6f7d5b22009-11-10 23:16:41 +00001965 if (OpVT==EltVT)
1966 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1967 else {
1968 // If OpVT and EltVT don't match, EltVT is not legal and the
1969 // element values have been promoted/truncated earlier. Undo this;
1970 // we don't want a v16i8 to become a v16i32 for example.
1971 const ConstantInt *CI = V->getConstantIntValue();
1972 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1973 CI->getZExtValue()));
1974 }
Chris Lattner77e271c2006-03-24 07:29:17 +00001975 } else {
1976 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner229907c2011-07-18 04:54:35 +00001977 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Andersonb292b8c2009-07-30 23:03:37 +00001978 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner77e271c2006-03-24 07:29:17 +00001979 }
1980 }
Owen Anderson4aa32952009-07-28 21:19:26 +00001981 Constant *CP = ConstantVector::get(CV);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001982 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1fb8aed2009-03-13 07:51:59 +00001983 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesena02e45c2009-02-02 22:12:50 +00001984 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00001985 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001986 false, false, false, Alignment);
Chris Lattner77e271c2006-03-24 07:29:17 +00001987 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001988
Hal Finkel19775142014-03-31 17:48:10 +00001989 SmallSet<SDValue, 16> DefinedValues;
1990 for (unsigned i = 0; i < NumElems; ++i) {
1991 if (Node->getOperand(i).getOpcode() == ISD::UNDEF)
1992 continue;
1993 DefinedValues.insert(Node->getOperand(i));
1994 }
1995
Hal Finkelb811b6d2014-03-31 19:42:55 +00001996 if (TLI.shouldExpandBuildVectorWithShuffles(VT, DefinedValues.size())) {
1997 if (!MoreThanTwoValues) {
1998 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1999 for (unsigned i = 0; i < NumElems; ++i) {
2000 SDValue V = Node->getOperand(i);
2001 if (V.getOpcode() == ISD::UNDEF)
2002 continue;
2003 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
2004 }
2005 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
2006 // Get the splatted value into the low element of a vector register.
2007 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
2008 SDValue Vec2;
2009 if (Value2.getNode())
2010 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
2011 else
2012 Vec2 = DAG.getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002013
Hal Finkelb811b6d2014-03-31 19:42:55 +00002014 // Return shuffle(LowValVec, undef, <0,0,0,0>)
2015 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
2016 }
2017 } else {
2018 SDValue Res;
2019 if (ExpandBVWithShuffles(Node, DAG, TLI, Res))
2020 return Res;
Evan Cheng1d2e9952006-03-24 01:17:21 +00002021 }
2022 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002023
Eli Friedmanaee3f622009-06-06 07:04:42 +00002024 // Otherwise, we can't handle this case efficiently.
2025 return ExpandVectorBuildThroughStack(Node);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002026}
2027
Chris Lattneraac464e2005-01-21 06:05:23 +00002028// ExpandLibCall - Expand a node into a call to a libcall. If the result value
2029// does not fit into a register, return the lo part and set the hi part to the
2030// by-reg argument. If it does fit into a single register, return the result
2031// and leave the Hi part unset.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002032SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedmanb3554152009-05-27 02:21:29 +00002033 bool isSigned) {
Chris Lattneraac464e2005-01-21 06:05:23 +00002034 TargetLowering::ArgListTy Args;
Reid Spencere63b6512006-12-31 05:55:36 +00002035 TargetLowering::ArgListEntry Entry;
Chris Lattneraac464e2005-01-21 06:05:23 +00002036 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002037 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002038 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelcf0da6c2009-02-17 22:15:04 +00002039 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00002040 Entry.isSExt = isSigned;
Duncan Sands4c95dbd2008-02-14 17:28:50 +00002041 Entry.isZExt = !isSigned;
Reid Spencere63b6512006-12-31 05:55:36 +00002042 Args.push_back(Entry);
Chris Lattneraac464e2005-01-21 06:05:23 +00002043 }
Bill Wendling24c79f22008-09-16 21:48:12 +00002044 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang58c37942008-10-30 08:01:45 +00002045 TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00002046
Chris Lattner229907c2011-07-18 04:54:35 +00002047 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Chengd4b08732010-11-30 23:55:39 +00002048
Evan Chengf8bad082012-04-10 01:51:00 +00002049 // By default, the input chain to this libcall is the entry node of the
2050 // function. If the libcall is going to be emitted as a tail call then
2051 // TLI.isUsedByReturnOnly will change it to the right chain if the return
2052 // node which is being folded has a non-entry input chain.
2053 SDValue InChain = DAG.getEntryNode();
2054
Evan Chengd4b08732010-11-30 23:55:39 +00002055 // isTailCall may be true since the callee does not reference caller stack
2056 // frame. Check if it's in the right position.
Evan Cheng136861d2012-04-10 03:15:18 +00002057 SDValue TCChain = InChain;
Tim Northoverf1450d82013-01-09 13:18:15 +00002058 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Cheng136861d2012-04-10 03:15:18 +00002059 if (isTailCall)
2060 InChain = TCChain;
2061
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002062 TargetLowering::CallLoweringInfo CLI(DAG);
2063 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002064 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002065 .setTailCall(isTailCall).setSExtResult(isSigned).setZExtResult(!isSigned);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002066
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002067 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Chris Lattnera5bf1032005-05-12 04:49:08 +00002068
Evan Chengd4b08732010-11-30 23:55:39 +00002069 if (!CallInfo.second.getNode())
2070 // It's a tailcall, return the chain (which is the DAG root).
2071 return DAG.getRoot();
2072
Eli Friedman4a951bf2009-05-26 08:55:52 +00002073 return CallInfo.first;
Chris Lattneraac464e2005-01-21 06:05:23 +00002074}
2075
Dan Gohmanae9b1682011-05-16 22:09:53 +00002076/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherbcaedb52011-04-20 01:19:45 +00002077/// and returning a result of type RetVT.
2078SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
2079 const SDValue *Ops, unsigned NumOps,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002080 bool isSigned, SDLoc dl) {
Eric Christopherbcaedb52011-04-20 01:19:45 +00002081 TargetLowering::ArgListTy Args;
2082 Args.reserve(NumOps);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002083
Eric Christopherbcaedb52011-04-20 01:19:45 +00002084 TargetLowering::ArgListEntry Entry;
2085 for (unsigned i = 0; i != NumOps; ++i) {
2086 Entry.Node = Ops[i];
2087 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
2088 Entry.isSExt = isSigned;
2089 Entry.isZExt = !isSigned;
2090 Args.push_back(Entry);
2091 }
2092 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2093 TLI.getPointerTy());
Dan Gohmanae9b1682011-05-16 22:09:53 +00002094
Chris Lattner229907c2011-07-18 04:54:35 +00002095 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002096
2097 TargetLowering::CallLoweringInfo CLI(DAG);
2098 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002099 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002100 .setSExtResult(isSigned).setZExtResult(!isSigned);
2101
Justin Holewinskiaa583972012-05-25 16:35:28 +00002102 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002103
Eric Christopherbcaedb52011-04-20 01:19:45 +00002104 return CallInfo.first;
2105}
2106
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002107// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
2108// ExpandLibCall except that the first operand is the in-chain.
2109std::pair<SDValue, SDValue>
2110SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
2111 SDNode *Node,
2112 bool isSigned) {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002113 SDValue InChain = Node->getOperand(0);
2114
2115 TargetLowering::ArgListTy Args;
2116 TargetLowering::ArgListEntry Entry;
2117 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
2118 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002119 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002120 Entry.Node = Node->getOperand(i);
2121 Entry.Ty = ArgTy;
2122 Entry.isSExt = isSigned;
2123 Entry.isZExt = !isSigned;
2124 Args.push_back(Entry);
2125 }
2126 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2127 TLI.getPointerTy());
2128
Chris Lattner229907c2011-07-18 04:54:35 +00002129 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002130
2131 TargetLowering::CallLoweringInfo CLI(DAG);
2132 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002133 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002134 .setSExtResult(isSigned).setZExtResult(!isSigned);
2135
Justin Holewinskiaa583972012-05-25 16:35:28 +00002136 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002137
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002138 return CallInfo;
2139}
2140
Eli Friedmand6f28342009-05-27 03:33:44 +00002141SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
2142 RTLIB::Libcall Call_F32,
2143 RTLIB::Libcall Call_F64,
2144 RTLIB::Libcall Call_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00002145 RTLIB::Libcall Call_F128,
Eli Friedmand6f28342009-05-27 03:33:44 +00002146 RTLIB::Libcall Call_PPCF128) {
2147 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002148 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002149 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson9f944592009-08-11 20:47:22 +00002150 case MVT::f32: LC = Call_F32; break;
2151 case MVT::f64: LC = Call_F64; break;
2152 case MVT::f80: LC = Call_F80; break;
Tim Northover4bf47bc2013-01-08 17:09:59 +00002153 case MVT::f128: LC = Call_F128; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002154 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002155 }
2156 return ExpandLibCall(LC, Node, false);
2157}
2158
2159SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002160 RTLIB::Libcall Call_I8,
Eli Friedmand6f28342009-05-27 03:33:44 +00002161 RTLIB::Libcall Call_I16,
2162 RTLIB::Libcall Call_I32,
2163 RTLIB::Libcall Call_I64,
2164 RTLIB::Libcall Call_I128) {
2165 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002166 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002167 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002168 case MVT::i8: LC = Call_I8; break;
2169 case MVT::i16: LC = Call_I16; break;
2170 case MVT::i32: LC = Call_I32; break;
2171 case MVT::i64: LC = Call_I64; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002172 case MVT::i128: LC = Call_I128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002173 }
2174 return ExpandLibCall(LC, Node, isSigned);
2175}
2176
Evan Chengb14ce092011-04-16 03:08:26 +00002177/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
2178static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2179 const TargetLowering &TLI) {
Evan Chengbd766792011-04-01 00:42:02 +00002180 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002181 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002182 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengbd766792011-04-01 00:42:02 +00002183 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2184 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2185 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2186 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2187 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2188 }
2189
Craig Topperc0196b12014-04-14 00:51:57 +00002190 return TLI.getLibcallName(LC) != nullptr;
Evan Chengb14ce092011-04-16 03:08:26 +00002191}
Evan Chengbd766792011-04-01 00:42:02 +00002192
Evan Cheng8c2ad812012-06-21 05:56:05 +00002193/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Chengb14ce092011-04-16 03:08:26 +00002194/// needed.
Evan Cheng8c2ad812012-06-21 05:56:05 +00002195static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2196 // The other use might have been replaced with a divrem already.
2197 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Chengbd766792011-04-01 00:42:02 +00002198 unsigned OtherOpcode = 0;
Evan Chengb14ce092011-04-16 03:08:26 +00002199 if (isSigned)
Evan Chengbd766792011-04-01 00:42:02 +00002200 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002201 else
Evan Chengbd766792011-04-01 00:42:02 +00002202 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002203
Evan Chengbd766792011-04-01 00:42:02 +00002204 SDValue Op0 = Node->getOperand(0);
2205 SDValue Op1 = Node->getOperand(1);
2206 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2207 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2208 SDNode *User = *UI;
2209 if (User == Node)
2210 continue;
Evan Cheng8c2ad812012-06-21 05:56:05 +00002211 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Chengbd766792011-04-01 00:42:02 +00002212 User->getOperand(0) == Op0 &&
Evan Chengb14ce092011-04-16 03:08:26 +00002213 User->getOperand(1) == Op1)
2214 return true;
Evan Chengbd766792011-04-01 00:42:02 +00002215 }
Evan Chengb14ce092011-04-16 03:08:26 +00002216 return false;
2217}
Evan Chengbd766792011-04-01 00:42:02 +00002218
Evan Chengb14ce092011-04-16 03:08:26 +00002219/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2220/// pairs.
2221void
2222SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2223 SmallVectorImpl<SDValue> &Results) {
2224 unsigned Opcode = Node->getOpcode();
2225 bool isSigned = Opcode == ISD::SDIVREM;
2226
2227 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002228 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002229 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengb14ce092011-04-16 03:08:26 +00002230 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2231 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2232 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2233 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2234 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Chengbd766792011-04-01 00:42:02 +00002235 }
2236
2237 // The input chain to this libcall is the entry node of the function.
2238 // Legalizing the call will automatically add the previous call to the
2239 // dependence.
2240 SDValue InChain = DAG.getEntryNode();
2241
2242 EVT RetVT = Node->getValueType(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002243 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002244
2245 TargetLowering::ArgListTy Args;
2246 TargetLowering::ArgListEntry Entry;
2247 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2248 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002249 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002250 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2251 Entry.isSExt = isSigned;
2252 Entry.isZExt = !isSigned;
2253 Args.push_back(Entry);
2254 }
2255
2256 // Also pass the return address of the remainder.
2257 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2258 Entry.Node = FIPtr;
Micah Villmow51e72462012-10-24 17:25:11 +00002259 Entry.Ty = RetTy->getPointerTo();
Evan Chengbd766792011-04-01 00:42:02 +00002260 Entry.isSExt = isSigned;
2261 Entry.isZExt = !isSigned;
2262 Args.push_back(Entry);
2263
2264 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2265 TLI.getPointerTy());
2266
Andrew Trickef9de2a2013-05-25 02:42:55 +00002267 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002268 TargetLowering::CallLoweringInfo CLI(DAG);
2269 CLI.setDebugLoc(dl).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002270 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002271 .setSExtResult(isSigned).setZExtResult(!isSigned);
2272
Justin Holewinskiaa583972012-05-25 16:35:28 +00002273 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Chengbd766792011-04-01 00:42:02 +00002274
Evan Chengbd766792011-04-01 00:42:02 +00002275 // Remainder is loaded back from the stack frame.
Dan Gohman198b7ff2011-11-03 21:49:52 +00002276 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002277 MachinePointerInfo(), false, false, false, 0);
Evan Chengb14ce092011-04-16 03:08:26 +00002278 Results.push_back(CallInfo.first);
2279 Results.push_back(Rem);
Evan Chengbd766792011-04-01 00:42:02 +00002280}
2281
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002282/// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2283static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2284 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002285 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002286 default: llvm_unreachable("Unexpected request for libcall!");
2287 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2288 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2289 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2290 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2291 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2292 }
Craig Topperc0196b12014-04-14 00:51:57 +00002293 return TLI.getLibcallName(LC) != nullptr;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002294}
2295
Paul Redmondf29ddfe2013-02-15 18:45:18 +00002296/// canCombineSinCosLibcall - Return true if sincos libcall is available and
2297/// can be used to combine sin and cos.
2298static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2299 const TargetMachine &TM) {
2300 if (!isSinCosLibcallAvailable(Node, TLI))
2301 return false;
2302 // GNU sin/cos functions set errno while sincos does not. Therefore
2303 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2304 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2305 if (isGNU && !TM.Options.UnsafeFPMath)
2306 return false;
2307 return true;
2308}
2309
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002310/// useSinCos - Only issue sincos libcall if both sin and cos are
2311/// needed.
2312static bool useSinCos(SDNode *Node) {
2313 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2314 ? ISD::FCOS : ISD::FSIN;
Stephen Lincfe7f352013-07-08 00:37:03 +00002315
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002316 SDValue Op0 = Node->getOperand(0);
2317 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2318 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2319 SDNode *User = *UI;
2320 if (User == Node)
2321 continue;
2322 // The other user might have been turned into sincos already.
2323 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2324 return true;
2325 }
2326 return false;
2327}
2328
2329/// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2330/// pairs.
2331void
2332SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2333 SmallVectorImpl<SDValue> &Results) {
2334 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002335 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002336 default: llvm_unreachable("Unexpected request for libcall!");
2337 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2338 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2339 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2340 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2341 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2342 }
Stephen Lincfe7f352013-07-08 00:37:03 +00002343
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002344 // The input chain to this libcall is the entry node of the function.
2345 // Legalizing the call will automatically add the previous call to the
2346 // dependence.
2347 SDValue InChain = DAG.getEntryNode();
Stephen Lincfe7f352013-07-08 00:37:03 +00002348
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002349 EVT RetVT = Node->getValueType(0);
2350 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Stephen Lincfe7f352013-07-08 00:37:03 +00002351
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002352 TargetLowering::ArgListTy Args;
2353 TargetLowering::ArgListEntry Entry;
Stephen Lincfe7f352013-07-08 00:37:03 +00002354
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002355 // Pass the argument.
2356 Entry.Node = Node->getOperand(0);
2357 Entry.Ty = RetTy;
2358 Entry.isSExt = false;
2359 Entry.isZExt = false;
2360 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002361
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002362 // Pass the return address of sin.
2363 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2364 Entry.Node = SinPtr;
2365 Entry.Ty = RetTy->getPointerTo();
2366 Entry.isSExt = false;
2367 Entry.isZExt = false;
2368 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002369
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002370 // Also pass the return address of the cos.
2371 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2372 Entry.Node = CosPtr;
2373 Entry.Ty = RetTy->getPointerTo();
2374 Entry.isSExt = false;
2375 Entry.isZExt = false;
2376 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002377
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002378 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2379 TLI.getPointerTy());
Stephen Lincfe7f352013-07-08 00:37:03 +00002380
Andrew Trickef9de2a2013-05-25 02:42:55 +00002381 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002382 TargetLowering::CallLoweringInfo CLI(DAG);
2383 CLI.setDebugLoc(dl).setChain(InChain)
2384 .setCallee(TLI.getLibcallCallingConv(LC),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002385 Type::getVoidTy(*DAG.getContext()), Callee, std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002386
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002387 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2388
2389 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2390 MachinePointerInfo(), false, false, false, 0));
2391 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2392 MachinePointerInfo(), false, false, false, 0));
2393}
2394
Chris Lattner689bdcc2006-01-28 08:25:58 +00002395/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2396/// INT_TO_FP operation of the specified operand when the target requests that
2397/// we expand it. At this point, we know that the result and operand types are
2398/// legal for the target.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002399SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2400 SDValue Op0,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002401 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002402 SDLoc dl) {
Akira Hatanakaadb14f52012-08-28 02:12:42 +00002403 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002404 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelcf0da6c2009-02-17 22:15:04 +00002405
Chris Lattnera2c7ff32008-01-16 07:03:22 +00002406 // Get the stack frame index of a 8 byte buffer.
Owen Anderson9f944592009-08-11 20:47:22 +00002407 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002408
Chris Lattner689bdcc2006-01-28 08:25:58 +00002409 // word offset constant for Hi/Lo address computation
Tom Stellard838e2342013-08-26 15:06:10 +00002410 SDValue WordOff = DAG.getConstant(sizeof(int), StackSlot.getValueType());
Chris Lattner689bdcc2006-01-28 08:25:58 +00002411 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002412 SDValue Hi = StackSlot;
Tom Stellard838e2342013-08-26 15:06:10 +00002413 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2414 StackSlot, WordOff);
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00002415 if (TLI.isLittleEndian())
2416 std::swap(Hi, Lo);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002417
Chris Lattner689bdcc2006-01-28 08:25:58 +00002418 // if signed map to unsigned space
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002419 SDValue Op0Mapped;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002420 if (isSigned) {
2421 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson9f944592009-08-11 20:47:22 +00002422 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2423 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002424 } else {
2425 Op0Mapped = Op0;
2426 }
2427 // store the lo of the constructed double - based on integer input
Dale Johannesen8525d832009-02-02 19:03:57 +00002428 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00002429 Op0Mapped, Lo, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00002430 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002431 // initial hi portion of constructed double
Owen Anderson9f944592009-08-11 20:47:22 +00002432 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002433 // store the hi of the constructed double - biased exponent
Chris Lattner676c61d2010-09-21 18:41:36 +00002434 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2435 MachinePointerInfo(),
2436 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002437 // load the constructed double
Chris Lattner1ffcf522010-09-21 16:36:31 +00002438 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002439 MachinePointerInfo(), false, false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002440 // FP constant to bias correct the final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002441 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonf074ca72009-04-10 18:48:47 +00002442 BitsToDouble(0x4330000080000000ULL) :
2443 BitsToDouble(0x4330000000000000ULL),
Owen Anderson9f944592009-08-11 20:47:22 +00002444 MVT::f64);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002445 // subtract the bias
Owen Anderson9f944592009-08-11 20:47:22 +00002446 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002447 // final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002448 SDValue Result;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002449 // handle final rounding
Owen Anderson9f944592009-08-11 20:47:22 +00002450 if (DestVT == MVT::f64) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002451 // do nothing
2452 Result = Sub;
Owen Anderson9f944592009-08-11 20:47:22 +00002453 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002454 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner72733e52008-01-17 07:00:52 +00002455 DAG.getIntPtrConstant(0));
Owen Anderson9f944592009-08-11 20:47:22 +00002456 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002457 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002458 }
2459 return Result;
2460 }
2461 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002462 // Code below here assumes !isSigned without checking again.
Dan Gohman14e450f2010-03-06 00:00:55 +00002463
2464 // Implementation of unsigned i64 to f64 following the algorithm in
2465 // __floatundidf in compiler_rt. This implementation has the advantage
2466 // of performing rounding correctly, both in the default rounding mode
2467 // and in all alternate rounding modes.
2468 // TODO: Generalize this for use with other types.
2469 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2470 SDValue TwoP52 =
2471 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2472 SDValue TwoP84PlusTwoP52 =
2473 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2474 SDValue TwoP84 =
2475 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2476
2477 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2478 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2479 DAG.getConstant(32, MVT::i64));
2480 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2481 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peck527da1b2010-11-23 03:31:01 +00002482 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2483 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002484 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2485 TwoP84PlusTwoP52);
Dan Gohman14e450f2010-03-06 00:00:55 +00002486 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2487 }
2488
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002489 // Implementation of unsigned i64 to f32.
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002490 // TODO: Generalize this for use with other types.
2491 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002492 // For unsigned conversions, convert them to signed conversions using the
2493 // algorithm from the x86_64 __floatundidf in compiler_rt.
2494 if (!isSigned) {
2495 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peck527da1b2010-11-23 03:31:01 +00002496
Owen Andersonb2c80da2011-02-25 21:41:48 +00002497 SDValue ShiftConst =
2498 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002499 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2500 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2501 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2502 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peck527da1b2010-11-23 03:31:01 +00002503
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002504 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2505 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peck527da1b2010-11-23 03:31:01 +00002506
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002507 // TODO: This really should be implemented using a branch rather than a
Wesley Peck527da1b2010-11-23 03:31:01 +00002508 // select. We happen to get lucky and machinesink does the right
2509 // thing most of the time. This would be a good candidate for a
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002510 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault758659232013-05-18 00:21:46 +00002511 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002512 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002513 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002514 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002515
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002516 // Otherwise, implement the fully general conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002517
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002518 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002519 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2520 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2521 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002522 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002523 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
Matt Arsenault758659232013-05-18 00:21:46 +00002524 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002525 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002526 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Matt Arsenault758659232013-05-18 00:21:46 +00002527 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002528 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002529 ISD::SETUGE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002530 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00002531 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peck527da1b2010-11-23 03:31:01 +00002532
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002533 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2534 DAG.getConstant(32, SHVT));
2535 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2536 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2537 SDValue TwoP32 =
2538 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2539 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2540 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2541 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2542 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2543 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2544 DAG.getIntPtrConstant(0));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002545 }
2546
Dan Gohman998c7c22010-03-05 02:40:23 +00002547 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002548
Matt Arsenault758659232013-05-18 00:21:46 +00002549 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Dan Gohman998c7c22010-03-05 02:40:23 +00002550 Op0, DAG.getConstant(0, Op0.getValueType()),
2551 ISD::SETLT);
2552 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002553 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohman998c7c22010-03-05 02:40:23 +00002554 SignSet, Four, Zero);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002555
Dan Gohman998c7c22010-03-05 02:40:23 +00002556 // If the sign bit of the integer is set, the large number will be treated
2557 // as a negative number. To counteract this, the dynamic code adds an
2558 // offset depending on the data type.
2559 uint64_t FF;
Craig Topperd9c27832013-08-15 02:44:19 +00002560 switch (Op0.getSimpleValueType().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002561 default: llvm_unreachable("Unsupported integer type!");
Dan Gohman998c7c22010-03-05 02:40:23 +00002562 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2563 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2564 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2565 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2566 }
2567 if (TLI.isLittleEndian()) FF <<= 32;
2568 Constant *FudgeFactor = ConstantInt::get(
2569 Type::getInt64Ty(*DAG.getContext()), FF);
2570
2571 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2572 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Tom Stellard838e2342013-08-26 15:06:10 +00002573 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
Dan Gohman998c7c22010-03-05 02:40:23 +00002574 Alignment = std::min(Alignment, 4u);
2575 SDValue FudgeInReg;
2576 if (DestVT == MVT::f32)
2577 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00002578 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002579 false, false, false, Alignment);
Dan Gohman998c7c22010-03-05 02:40:23 +00002580 else {
Dan Gohman198b7ff2011-11-03 21:49:52 +00002581 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2582 DAG.getEntryNode(), CPIdx,
2583 MachinePointerInfo::getConstantPool(),
Louis Gerbarg67474e32014-07-31 21:45:05 +00002584 MVT::f32, false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +00002585 HandleSDNode Handle(Load);
2586 LegalizeOp(Load.getNode());
2587 FudgeInReg = Handle.getValue();
Dan Gohman998c7c22010-03-05 02:40:23 +00002588 }
2589
2590 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002591}
2592
2593/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2594/// *INT_TO_FP operation of the specified operand when the target requests that
2595/// we promote it. At this point, we know that the result and operand types are
2596/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2597/// operation that takes a larger input.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002598SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002599 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002600 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002601 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002602 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002603 EVT NewInTy = LegalOp.getValueType();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002604
2605 unsigned OpToUse = 0;
2606
2607 // Scan for the appropriate larger type to use.
2608 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002609 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002610 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002611
2612 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002613 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2614 OpToUse = ISD::SINT_TO_FP;
2615 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002616 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002617 if (isSigned) continue;
2618
2619 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002620 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2621 OpToUse = ISD::UINT_TO_FP;
2622 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002623 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002624
2625 // Otherwise, try a larger type.
2626 }
2627
2628 // Okay, we found the operation and type to use. Zero extend our input to the
2629 // desired type then run the operation on it.
Dale Johannesen8525d832009-02-02 19:03:57 +00002630 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner689bdcc2006-01-28 08:25:58 +00002631 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen8525d832009-02-02 19:03:57 +00002632 dl, NewInTy, LegalOp));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002633}
2634
2635/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2636/// FP_TO_*INT operation of the specified operand when the target requests that
2637/// we promote it. At this point, we know that the result and operand types are
2638/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2639/// operation that returns a larger result.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002640SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002641 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002642 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002643 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002644 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002645 EVT NewOutTy = DestVT;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002646
2647 unsigned OpToUse = 0;
2648
2649 // Scan for the appropriate larger type to use.
2650 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002651 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002652 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002653
Tim Northover65277a22014-06-15 09:27:20 +00002654 // A larger signed type can hold all unsigned values of the requested type,
2655 // so using FP_TO_SINT is valid
Eli Friedmane1bc3792009-05-28 03:06:16 +00002656 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002657 OpToUse = ISD::FP_TO_SINT;
2658 break;
2659 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002660
Tim Northover65277a22014-06-15 09:27:20 +00002661 // However, if the value may be < 0.0, we *must* use some FP_TO_SINT.
2662 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002663 OpToUse = ISD::FP_TO_UINT;
2664 break;
2665 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002666
2667 // Otherwise, try a larger type.
2668 }
2669
Scott Michelcf0da6c2009-02-17 22:15:04 +00002670
Chris Lattnerf81d5882007-11-24 07:07:01 +00002671 // Okay, we found the operation and type to use.
Dale Johannesen8525d832009-02-02 19:03:57 +00002672 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands93e180342008-07-04 11:47:58 +00002673
Chris Lattnerf81d5882007-11-24 07:07:01 +00002674 // Truncate the result of the extended FP_TO_*INT operation to the desired
2675 // size.
Dale Johannesen8525d832009-02-02 19:03:57 +00002676 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002677}
2678
2679/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2680///
Andrew Trickef9de2a2013-05-25 02:42:55 +00002681SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002682 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002683 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002684 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson9f944592009-08-11 20:47:22 +00002685 switch (VT.getSimpleVT().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002686 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson9f944592009-08-11 20:47:22 +00002687 case MVT::i16:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002688 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2689 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2690 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002691 case MVT::i32:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002692 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2693 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2694 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2695 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2696 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2697 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2698 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2699 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2700 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002701 case MVT::i64:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002702 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2703 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2704 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2705 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2706 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2707 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2708 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2709 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2710 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2711 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2712 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2713 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2714 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2715 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2716 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2717 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2718 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2719 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2720 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2721 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2722 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002723 }
2724}
2725
2726/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2727///
Scott Michelcf0da6c2009-02-17 22:15:04 +00002728SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002729 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002730 switch (Opc) {
Craig Topperee4dab52012-02-05 08:31:47 +00002731 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002732 case ISD::CTPOP: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002733 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002734 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002735 unsigned Len = VT.getSizeInBits();
2736
Benjamin Kramerbec03ea2011-01-15 21:19:37 +00002737 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2738 "CTPOP not implemented for this type.");
2739
Benjamin Kramerfff25172011-01-15 20:30:30 +00002740 // This is the "best" algorithm from
2741 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2742
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00002743 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), VT);
2744 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), VT);
2745 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), VT);
2746 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002747
2748 // v = v - ((v >> 1) & 0x55555555...)
2749 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2750 DAG.getNode(ISD::AND, dl, VT,
2751 DAG.getNode(ISD::SRL, dl, VT, Op,
2752 DAG.getConstant(1, ShVT)),
2753 Mask55));
2754 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2755 Op = DAG.getNode(ISD::ADD, dl, VT,
2756 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2757 DAG.getNode(ISD::AND, dl, VT,
2758 DAG.getNode(ISD::SRL, dl, VT, Op,
2759 DAG.getConstant(2, ShVT)),
2760 Mask33));
2761 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2762 Op = DAG.getNode(ISD::AND, dl, VT,
2763 DAG.getNode(ISD::ADD, dl, VT, Op,
2764 DAG.getNode(ISD::SRL, dl, VT, Op,
2765 DAG.getConstant(4, ShVT))),
2766 Mask0F);
2767 // v = (v * 0x01010101...) >> (Len - 8)
2768 Op = DAG.getNode(ISD::SRL, dl, VT,
2769 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2770 DAG.getConstant(Len - 8, ShVT));
Owen Andersonb2c80da2011-02-25 21:41:48 +00002771
Chris Lattner689bdcc2006-01-28 08:25:58 +00002772 return Op;
2773 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002774 case ISD::CTLZ_ZERO_UNDEF:
2775 // This trivially expands to CTLZ.
2776 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002777 case ISD::CTLZ: {
2778 // for now, we do this:
2779 // x = x | (x >> 1);
2780 // x = x | (x >> 2);
2781 // ...
2782 // x = x | (x >>16);
2783 // x = x | (x >>32); // for 64-bit input
2784 // return popcount(~x);
2785 //
Sanjay Patelbb292212014-09-15 19:47:44 +00002786 // Ref: "Hacker's Delight" by Henry Warren
Owen Anderson53aa7a92009-08-10 22:56:29 +00002787 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002788 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands13237ac2008-06-06 12:08:01 +00002789 unsigned len = VT.getSizeInBits();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002790 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002791 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002792 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesendc93bbc2009-02-06 21:55:48 +00002793 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002794 }
Dale Johannesena02e45c2009-02-02 22:12:50 +00002795 Op = DAG.getNOT(dl, Op, VT);
2796 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002797 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002798 case ISD::CTTZ_ZERO_UNDEF:
2799 // This trivially expands to CTTZ.
2800 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002801 case ISD::CTTZ: {
2802 // for now, we use: { return popcount(~x & (x - 1)); }
2803 // unless the target has ctlz but not ctpop, in which case we use:
2804 // { return 32 - nlz(~x & (x-1)); }
Sanjay Patelbb292212014-09-15 19:47:44 +00002805 // Ref: "Hacker's Delight" by Henry Warren
Owen Anderson53aa7a92009-08-10 22:56:29 +00002806 EVT VT = Op.getValueType();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002807 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2808 DAG.getNOT(dl, Op, VT),
2809 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling8fb81f12009-01-30 23:03:19 +00002810 DAG.getConstant(1, VT)));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002811 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman4aa18462009-01-28 17:46:25 +00002812 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2813 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesena02e45c2009-02-02 22:12:50 +00002814 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands13237ac2008-06-06 12:08:01 +00002815 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesena02e45c2009-02-02 22:12:50 +00002816 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2817 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002818 }
2819 }
2820}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002821
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002822std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2823 unsigned Opc = Node->getOpcode();
2824 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2825 RTLIB::Libcall LC;
2826
2827 switch (Opc) {
2828 default:
2829 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbacha57c2882010-06-18 23:03:10 +00002830 case ISD::ATOMIC_SWAP:
2831 switch (VT.SimpleTy) {
2832 default: llvm_unreachable("Unexpected value type for atomic!");
2833 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2834 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2835 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2836 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002837 case MVT::i128:LC = RTLIB::SYNC_LOCK_TEST_AND_SET_16;break;
Jim Grosbacha57c2882010-06-18 23:03:10 +00002838 }
2839 break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002840 case ISD::ATOMIC_CMP_SWAP:
2841 switch (VT.SimpleTy) {
2842 default: llvm_unreachable("Unexpected value type for atomic!");
2843 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2844 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2845 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2846 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002847 case MVT::i128:LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002848 }
2849 break;
2850 case ISD::ATOMIC_LOAD_ADD:
2851 switch (VT.SimpleTy) {
2852 default: llvm_unreachable("Unexpected value type for atomic!");
2853 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2854 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2855 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2856 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002857 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_ADD_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002858 }
2859 break;
2860 case ISD::ATOMIC_LOAD_SUB:
2861 switch (VT.SimpleTy) {
2862 default: llvm_unreachable("Unexpected value type for atomic!");
2863 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2864 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2865 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2866 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002867 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_SUB_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002868 }
2869 break;
2870 case ISD::ATOMIC_LOAD_AND:
2871 switch (VT.SimpleTy) {
2872 default: llvm_unreachable("Unexpected value type for atomic!");
2873 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2874 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2875 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2876 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002877 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_AND_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002878 }
2879 break;
2880 case ISD::ATOMIC_LOAD_OR:
2881 switch (VT.SimpleTy) {
2882 default: llvm_unreachable("Unexpected value type for atomic!");
2883 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2884 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2885 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2886 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002887 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_OR_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002888 }
2889 break;
2890 case ISD::ATOMIC_LOAD_XOR:
2891 switch (VT.SimpleTy) {
2892 default: llvm_unreachable("Unexpected value type for atomic!");
2893 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2894 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2895 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2896 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002897 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_XOR_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002898 }
2899 break;
2900 case ISD::ATOMIC_LOAD_NAND:
2901 switch (VT.SimpleTy) {
2902 default: llvm_unreachable("Unexpected value type for atomic!");
2903 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2904 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2905 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2906 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002907 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_NAND_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002908 }
2909 break;
Tim Northovera564d322013-10-25 09:30:20 +00002910 case ISD::ATOMIC_LOAD_MAX:
2911 switch (VT.SimpleTy) {
2912 default: llvm_unreachable("Unexpected value type for atomic!");
2913 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MAX_1; break;
2914 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MAX_2; break;
2915 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MAX_4; break;
2916 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MAX_8; break;
2917 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MAX_16;break;
2918 }
2919 break;
2920 case ISD::ATOMIC_LOAD_UMAX:
2921 switch (VT.SimpleTy) {
2922 default: llvm_unreachable("Unexpected value type for atomic!");
2923 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMAX_1; break;
2924 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMAX_2; break;
2925 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMAX_4; break;
2926 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMAX_8; break;
2927 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMAX_16;break;
2928 }
2929 break;
2930 case ISD::ATOMIC_LOAD_MIN:
2931 switch (VT.SimpleTy) {
2932 default: llvm_unreachable("Unexpected value type for atomic!");
2933 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MIN_1; break;
2934 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MIN_2; break;
2935 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MIN_4; break;
2936 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MIN_8; break;
2937 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MIN_16;break;
2938 }
2939 break;
2940 case ISD::ATOMIC_LOAD_UMIN:
2941 switch (VT.SimpleTy) {
2942 default: llvm_unreachable("Unexpected value type for atomic!");
2943 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMIN_1; break;
2944 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMIN_2; break;
2945 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMIN_4; break;
2946 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMIN_8; break;
2947 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMIN_16;break;
2948 }
2949 break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002950 }
2951
2952 return ExpandChainLibCall(LC, Node, false);
2953}
2954
Dan Gohman198b7ff2011-11-03 21:49:52 +00002955void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2956 SmallVector<SDValue, 8> Results;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002957 SDLoc dl(Node);
Eli Friedmane1dc1932009-05-28 20:40:34 +00002958 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Daniel Sandersedc071b2013-11-21 13:24:49 +00002959 bool NeedInvert;
Eli Friedman21d349b2009-05-27 01:25:56 +00002960 switch (Node->getOpcode()) {
2961 case ISD::CTPOP:
2962 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002963 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002964 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002965 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002966 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2967 Results.push_back(Tmp1);
2968 break;
2969 case ISD::BSWAP:
Bill Wendlingef408db2009-12-23 00:28:23 +00002970 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman21d349b2009-05-27 01:25:56 +00002971 break;
2972 case ISD::FRAMEADDR:
2973 case ISD::RETURNADDR:
2974 case ISD::FRAME_TO_ARGS_OFFSET:
2975 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2976 break;
2977 case ISD::FLT_ROUNDS_:
2978 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2979 break;
2980 case ISD::EH_RETURN:
Eli Friedman21d349b2009-05-27 01:25:56 +00002981 case ISD::EH_LABEL:
2982 case ISD::PREFETCH:
Eli Friedman21d349b2009-05-27 01:25:56 +00002983 case ISD::VAEND:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002984 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002985 // If the target didn't expand these, there's nothing to do, so just
2986 // preserve the chain and be done.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002987 Results.push_back(Node->getOperand(0));
2988 break;
2989 case ISD::EH_SJLJ_SETJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002990 // If the target didn't expand this, just return 'zero' and preserve the
2991 // chain.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002992 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman21d349b2009-05-27 01:25:56 +00002993 Results.push_back(Node->getOperand(0));
2994 break;
Tim Northovera2b53392013-04-20 12:32:17 +00002995 case ISD::ATOMIC_FENCE: {
Jim Grosbachba451e82010-06-17 02:00:53 +00002996 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman26a48482011-07-27 22:21:52 +00002997 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachba451e82010-06-17 02:00:53 +00002998 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002999
3000 TargetLowering::CallLoweringInfo CLI(DAG);
3001 CLI.setDebugLoc(dl).setChain(Node->getOperand(0))
3002 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00003003 DAG.getExternalSymbol("__sync_synchronize",
3004 TLI.getPointerTy()), std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003005
Justin Holewinskiaa583972012-05-25 16:35:28 +00003006 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3007
Jim Grosbachba451e82010-06-17 02:00:53 +00003008 Results.push_back(CallResult.second);
3009 break;
3010 }
Eli Friedman452aae62011-08-26 02:59:24 +00003011 case ISD::ATOMIC_LOAD: {
3012 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedmanee8f14a72011-09-15 21:20:49 +00003013 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Tim Northover420a2162014-06-13 14:24:07 +00003014 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3015 SDValue Swap = DAG.getAtomicCmpSwap(
3016 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
3017 Node->getOperand(0), Node->getOperand(1), Zero, Zero,
3018 cast<AtomicSDNode>(Node)->getMemOperand(),
3019 cast<AtomicSDNode>(Node)->getOrdering(),
3020 cast<AtomicSDNode>(Node)->getOrdering(),
3021 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman452aae62011-08-26 02:59:24 +00003022 Results.push_back(Swap.getValue(0));
3023 Results.push_back(Swap.getValue(1));
3024 break;
3025 }
3026 case ISD::ATOMIC_STORE: {
3027 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
3028 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
3029 cast<AtomicSDNode>(Node)->getMemoryVT(),
3030 Node->getOperand(0),
3031 Node->getOperand(1), Node->getOperand(2),
3032 cast<AtomicSDNode>(Node)->getMemOperand(),
3033 cast<AtomicSDNode>(Node)->getOrdering(),
3034 cast<AtomicSDNode>(Node)->getSynchScope());
3035 Results.push_back(Swap.getValue(1));
3036 break;
3037 }
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00003038 // By default, atomic intrinsics are marked Legal and lowered. Targets
3039 // which don't support them directly, however, may want libcalls, in which
3040 // case they mark them Expand, and we get here.
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00003041 case ISD::ATOMIC_SWAP:
3042 case ISD::ATOMIC_LOAD_ADD:
3043 case ISD::ATOMIC_LOAD_SUB:
3044 case ISD::ATOMIC_LOAD_AND:
3045 case ISD::ATOMIC_LOAD_OR:
3046 case ISD::ATOMIC_LOAD_XOR:
3047 case ISD::ATOMIC_LOAD_NAND:
3048 case ISD::ATOMIC_LOAD_MIN:
3049 case ISD::ATOMIC_LOAD_MAX:
3050 case ISD::ATOMIC_LOAD_UMIN:
3051 case ISD::ATOMIC_LOAD_UMAX:
Evan Chengf5d62532010-06-18 22:01:37 +00003052 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00003053 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
3054 Results.push_back(Tmp.first);
3055 Results.push_back(Tmp.second);
Jim Grosbach0ed5b462010-06-17 17:58:54 +00003056 break;
Evan Chengf5d62532010-06-18 22:01:37 +00003057 }
Tim Northover420a2162014-06-13 14:24:07 +00003058 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
3059 // Expanding an ATOMIC_CMP_SWAP_WITH_SUCCESS produces an ATOMIC_CMP_SWAP and
3060 // splits out the success value as a comparison. Expanding the resulting
3061 // ATOMIC_CMP_SWAP will produce a libcall.
3062 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3063 SDValue Res = DAG.getAtomicCmpSwap(
3064 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
3065 Node->getOperand(0), Node->getOperand(1), Node->getOperand(2),
3066 Node->getOperand(3), cast<MemSDNode>(Node)->getMemOperand(),
3067 cast<AtomicSDNode>(Node)->getSuccessOrdering(),
3068 cast<AtomicSDNode>(Node)->getFailureOrdering(),
3069 cast<AtomicSDNode>(Node)->getSynchScope());
3070
3071 SDValue Success = DAG.getSetCC(SDLoc(Node), Node->getValueType(1),
3072 Res, Node->getOperand(2), ISD::SETEQ);
3073
3074 Results.push_back(Res.getValue(0));
3075 Results.push_back(Success);
3076 Results.push_back(Res.getValue(1));
3077 break;
3078 }
Eli Friedman2892d822009-05-27 12:20:41 +00003079 case ISD::DYNAMIC_STACKALLOC:
3080 ExpandDYNAMIC_STACKALLOC(Node, Results);
3081 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003082 case ISD::MERGE_VALUES:
3083 for (unsigned i = 0; i < Node->getNumValues(); i++)
3084 Results.push_back(Node->getOperand(i));
3085 break;
3086 case ISD::UNDEF: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003087 EVT VT = Node->getValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00003088 if (VT.isInteger())
3089 Results.push_back(DAG.getConstant(0, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003090 else {
3091 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman21d349b2009-05-27 01:25:56 +00003092 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003093 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003094 break;
3095 }
3096 case ISD::TRAP: {
3097 // If this operation is not supported, lower it to 'abort()' call
3098 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003099 TargetLowering::CallLoweringInfo CLI(DAG);
3100 CLI.setDebugLoc(dl).setChain(Node->getOperand(0))
3101 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00003102 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3103 std::move(Args), 0);
Justin Holewinskiaa583972012-05-25 16:35:28 +00003104 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3105
Eli Friedman21d349b2009-05-27 01:25:56 +00003106 Results.push_back(CallResult.second);
3107 break;
3108 }
3109 case ISD::FP_ROUND:
Wesley Peck527da1b2010-11-23 03:31:01 +00003110 case ISD::BITCAST:
Eli Friedman21d349b2009-05-27 01:25:56 +00003111 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3112 Node->getValueType(0), dl);
3113 Results.push_back(Tmp1);
3114 break;
3115 case ISD::FP_EXTEND:
3116 Tmp1 = EmitStackConvert(Node->getOperand(0),
3117 Node->getOperand(0).getValueType(),
3118 Node->getValueType(0), dl);
3119 Results.push_back(Tmp1);
3120 break;
3121 case ISD::SIGN_EXTEND_INREG: {
3122 // NOTE: we could fall back on load/store here too for targets without
3123 // SAR. However, it is doubtful that any exist.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003124 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman1d459e42009-12-11 21:31:27 +00003125 EVT VT = Node->getValueType(0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00003126 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003127 if (VT.isVector())
Dan Gohman1d459e42009-12-11 21:31:27 +00003128 ShiftAmountTy = VT;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003129 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
3130 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman1d459e42009-12-11 21:31:27 +00003131 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman21d349b2009-05-27 01:25:56 +00003132 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
3133 Node->getOperand(0), ShiftCst);
Bill Wendlingef408db2009-12-23 00:28:23 +00003134 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
3135 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003136 break;
3137 }
3138 case ISD::FP_ROUND_INREG: {
3139 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003140 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman21d349b2009-05-27 01:25:56 +00003141
3142 // NOTE: there is a choice here between constantly creating new stack
3143 // slots and always reusing the same one. We currently always create
3144 // new ones, as reuse may inhibit scheduling.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003145 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00003146 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
3147 Node->getValueType(0), dl);
3148 Results.push_back(Tmp1);
3149 break;
3150 }
3151 case ISD::SINT_TO_FP:
3152 case ISD::UINT_TO_FP:
3153 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
3154 Node->getOperand(0), Node->getValueType(0), dl);
3155 Results.push_back(Tmp1);
3156 break;
Jan Veselyeca89d22014-07-10 22:40:18 +00003157 case ISD::FP_TO_SINT:
3158 if (TLI.expandFP_TO_SINT(Node, Tmp1, DAG))
3159 Results.push_back(Tmp1);
Tom Stellardaad46592014-06-17 16:53:07 +00003160 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003161 case ISD::FP_TO_UINT: {
3162 SDValue True, False;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003163 EVT VT = Node->getOperand(0).getValueType();
3164 EVT NVT = Node->getValueType(0);
Tim Northover29178a32013-01-22 09:46:31 +00003165 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
3166 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman21d349b2009-05-27 01:25:56 +00003167 APInt x = APInt::getSignBit(NVT.getSizeInBits());
3168 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
3169 Tmp1 = DAG.getConstantFP(apf, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003170 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman21d349b2009-05-27 01:25:56 +00003171 Node->getOperand(0),
3172 Tmp1, ISD::SETLT);
3173 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003174 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
3175 DAG.getNode(ISD::FSUB, dl, VT,
3176 Node->getOperand(0), Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00003177 False = DAG.getNode(ISD::XOR, dl, NVT, False,
3178 DAG.getConstant(x, NVT));
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003179 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman21d349b2009-05-27 01:25:56 +00003180 Results.push_back(Tmp1);
3181 break;
3182 }
Eli Friedman3b251702009-05-27 07:58:35 +00003183 case ISD::VAARG: {
3184 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003185 EVT VT = Node->getValueType(0);
Eli Friedman3b251702009-05-27 07:58:35 +00003186 Tmp1 = Node->getOperand(0);
3187 Tmp2 = Node->getOperand(1);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003188 unsigned Align = Node->getConstantOperandVal(3);
3189
Chris Lattner1ffcf522010-09-21 16:36:31 +00003190 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Stephen Lincfe7f352013-07-08 00:37:03 +00003191 MachinePointerInfo(V),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003192 false, false, false, 0);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003193 SDValue VAList = VAListLoad;
3194
Rafael Espindolaa76eccf2010-07-11 04:01:49 +00003195 if (Align > TLI.getMinStackArgumentAlignment()) {
3196 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
3197
Tom Stellard838e2342013-08-26 15:06:10 +00003198 VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Rafael Espindola2041abd2010-06-26 18:22:20 +00003199 DAG.getConstant(Align - 1,
Tom Stellard838e2342013-08-26 15:06:10 +00003200 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003201
Tom Stellard838e2342013-08-26 15:06:10 +00003202 VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList,
Chris Lattnereb313a42010-10-10 18:36:26 +00003203 DAG.getConstant(-(int64_t)Align,
Tom Stellard838e2342013-08-26 15:06:10 +00003204 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003205 }
3206
Eli Friedman3b251702009-05-27 07:58:35 +00003207 // Increment the pointer, VAList, to the next vaarg
Tom Stellard838e2342013-08-26 15:06:10 +00003208 Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003209 DAG.getConstant(TLI.getDataLayout()->
Evan Cheng87b4f7c2010-04-15 01:25:27 +00003210 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Tom Stellard838e2342013-08-26 15:06:10 +00003211 VAList.getValueType()));
Eli Friedman3b251702009-05-27 07:58:35 +00003212 // Store the incremented VAList to the legalized pointer
Chris Lattner676c61d2010-09-21 18:41:36 +00003213 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
3214 MachinePointerInfo(V), false, false, 0);
Eli Friedman3b251702009-05-27 07:58:35 +00003215 // Load the actual argument out of the pointer VAList
Chris Lattner1ffcf522010-09-21 16:36:31 +00003216 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003217 false, false, false, 0));
Eli Friedman3b251702009-05-27 07:58:35 +00003218 Results.push_back(Results[0].getValue(1));
3219 break;
3220 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003221 case ISD::VACOPY: {
3222 // This defaults to loading a pointer from the input and storing it to the
3223 // output, returning the chain.
3224 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3225 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3226 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattner1ffcf522010-09-21 16:36:31 +00003227 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003228 false, false, false, 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +00003229 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
3230 MachinePointerInfo(VD), false, false, 0);
Bill Wendlingef408db2009-12-23 00:28:23 +00003231 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003232 break;
3233 }
3234 case ISD::EXTRACT_VECTOR_ELT:
3235 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3236 // This must be an access of the only element. Return it.
Wesley Peck527da1b2010-11-23 03:31:01 +00003237 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman21d349b2009-05-27 01:25:56 +00003238 Node->getOperand(0));
3239 else
3240 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3241 Results.push_back(Tmp1);
3242 break;
3243 case ISD::EXTRACT_SUBVECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003244 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00003245 break;
David Greenebab5e6e2011-01-26 19:13:22 +00003246 case ISD::INSERT_SUBVECTOR:
3247 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3248 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003249 case ISD::CONCAT_VECTORS: {
Bill Wendlingef408db2009-12-23 00:28:23 +00003250 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman3b251702009-05-27 07:58:35 +00003251 break;
3252 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003253 case ISD::SCALAR_TO_VECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003254 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman21d349b2009-05-27 01:25:56 +00003255 break;
Eli Friedmana8f9a022009-05-27 02:16:40 +00003256 case ISD::INSERT_VECTOR_ELT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003257 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3258 Node->getOperand(1),
3259 Node->getOperand(2), dl));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003260 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003261 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00003262 SmallVector<int, 32> NewMask;
3263 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00003264
Owen Anderson53aa7a92009-08-10 22:56:29 +00003265 EVT VT = Node->getValueType(0);
3266 EVT EltVT = VT.getVectorElementType();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003267 SDValue Op0 = Node->getOperand(0);
3268 SDValue Op1 = Node->getOperand(1);
3269 if (!TLI.isTypeLegal(EltVT)) {
3270
3271 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3272
3273 // BUILD_VECTOR operands are allowed to be wider than the element type.
Jack Carter5c0af482013-11-19 23:43:22 +00003274 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept
3275 // it.
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003276 if (NewEltVT.bitsLT(EltVT)) {
3277
3278 // Convert shuffle node.
3279 // If original node was v4i64 and the new EltVT is i32,
3280 // cast operands to v8i32 and re-build the mask.
3281
3282 // Calculate new VT, the size of the new VT should be equal to original.
Jack Carter5c0af482013-11-19 23:43:22 +00003283 EVT NewVT =
3284 EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3285 VT.getSizeInBits() / NewEltVT.getSizeInBits());
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003286 assert(NewVT.bitsEq(VT));
3287
3288 // cast operands to new VT
3289 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3290 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3291
3292 // Convert the shuffle mask
Jack Carter5c0af482013-11-19 23:43:22 +00003293 unsigned int factor =
3294 NewVT.getVectorNumElements()/VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003295
3296 // EltVT gets smaller
3297 assert(factor > 0);
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003298
3299 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3300 if (Mask[i] < 0) {
3301 for (unsigned fi = 0; fi < factor; ++fi)
3302 NewMask.push_back(Mask[i]);
3303 }
3304 else {
3305 for (unsigned fi = 0; fi < factor; ++fi)
3306 NewMask.push_back(Mask[i]*factor+fi);
3307 }
3308 }
3309 Mask = NewMask;
3310 VT = NewVT;
3311 }
3312 EltVT = NewEltVT;
3313 }
Eli Friedman3b251702009-05-27 07:58:35 +00003314 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003315 SmallVector<SDValue, 16> Ops;
Eli Friedman3b251702009-05-27 07:58:35 +00003316 for (unsigned i = 0; i != NumElems; ++i) {
3317 if (Mask[i] < 0) {
3318 Ops.push_back(DAG.getUNDEF(EltVT));
3319 continue;
3320 }
3321 unsigned Idx = Mask[i];
3322 if (Idx < NumElems)
Bill Wendlingef408db2009-12-23 00:28:23 +00003323 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003324 Op0,
Tom Stellardd42c5942013-08-05 22:22:01 +00003325 DAG.getConstant(Idx, TLI.getVectorIdxTy())));
Eli Friedman3b251702009-05-27 07:58:35 +00003326 else
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 Op1,
Tom Stellardd42c5942013-08-05 22:22:01 +00003329 DAG.getConstant(Idx - NumElems,
3330 TLI.getVectorIdxTy())));
Eli Friedman3b251702009-05-27 07:58:35 +00003331 }
Nadav Rotem61bdf792012-01-10 14:28:46 +00003332
Craig Topper48d114b2014-04-26 18:35:24 +00003333 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
Nadav Rotem61bdf792012-01-10 14:28:46 +00003334 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3335 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00003336 Results.push_back(Tmp1);
3337 break;
3338 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003339 case ISD::EXTRACT_ELEMENT: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003340 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman21d349b2009-05-27 01:25:56 +00003341 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3342 // 1 -> Hi
3343 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3344 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003345 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman21d349b2009-05-27 01:25:56 +00003346 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3347 } else {
3348 // 0 -> Lo
3349 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3350 Node->getOperand(0));
3351 }
3352 Results.push_back(Tmp1);
3353 break;
3354 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003355 case ISD::STACKSAVE:
3356 // Expand to CopyFromReg if the target set
3357 // StackPointerRegisterToSaveRestore.
3358 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003359 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3360 Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003361 Results.push_back(Results[0].getValue(1));
3362 } else {
Bill Wendlingef408db2009-12-23 00:28:23 +00003363 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003364 Results.push_back(Node->getOperand(0));
3365 }
3366 break;
3367 case ISD::STACKRESTORE:
Bill Wendlingef408db2009-12-23 00:28:23 +00003368 // Expand to CopyToReg if the target set
3369 // StackPointerRegisterToSaveRestore.
3370 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3371 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3372 Node->getOperand(1)));
3373 } else {
3374 Results.push_back(Node->getOperand(0));
3375 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003376 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003377 case ISD::FCOPYSIGN:
Bill Wendlingef408db2009-12-23 00:28:23 +00003378 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00003379 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003380 case ISD::FNEG:
3381 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3382 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3383 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3384 Node->getOperand(0));
3385 Results.push_back(Tmp1);
3386 break;
3387 case ISD::FABS: {
3388 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Anderson53aa7a92009-08-10 22:56:29 +00003389 EVT VT = Node->getValueType(0);
Eli Friedmand6f28342009-05-27 03:33:44 +00003390 Tmp1 = Node->getOperand(0);
3391 Tmp2 = DAG.getConstantFP(0.0, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003392 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
Eli Friedmand6f28342009-05-27 03:33:44 +00003393 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendlingef408db2009-12-23 00:28:23 +00003394 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003395 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmand6f28342009-05-27 03:33:44 +00003396 Results.push_back(Tmp1);
3397 break;
3398 }
Matt Arsenault7c936902014-10-21 23:01:01 +00003399 case ISD::FMINNUM:
3400 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMIN_F32, RTLIB::FMIN_F64,
3401 RTLIB::FMIN_F80, RTLIB::FMIN_F128,
3402 RTLIB::FMIN_PPCF128));
3403 break;
3404 case ISD::FMAXNUM:
3405 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMAX_F32, RTLIB::FMAX_F64,
3406 RTLIB::FMAX_F80, RTLIB::FMAX_F128,
3407 RTLIB::FMAX_PPCF128));
3408 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003409 case ISD::FSQRT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003410 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003411 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3412 RTLIB::SQRT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003413 break;
3414 case ISD::FSIN:
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003415 case ISD::FCOS: {
3416 EVT VT = Node->getValueType(0);
3417 bool isSIN = Node->getOpcode() == ISD::FSIN;
3418 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3419 // fcos which share the same operand and both are used.
3420 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmondf29ddfe2013-02-15 18:45:18 +00003421 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003422 && useSinCos(Node)) {
3423 SDVTList VTs = DAG.getVTList(VT, VT);
3424 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3425 if (!isSIN)
3426 Tmp1 = Tmp1.getValue(1);
3427 Results.push_back(Tmp1);
3428 } else if (isSIN) {
3429 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3430 RTLIB::SIN_F80, RTLIB::SIN_F128,
3431 RTLIB::SIN_PPCF128));
3432 } else {
3433 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3434 RTLIB::COS_F80, RTLIB::COS_F128,
3435 RTLIB::COS_PPCF128));
3436 }
Eli Friedmand6f28342009-05-27 03:33:44 +00003437 break;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003438 }
3439 case ISD::FSINCOS:
3440 // Expand into sincos libcall.
3441 ExpandSinCosLibCall(Node, Results);
Eli Friedmand6f28342009-05-27 03:33:44 +00003442 break;
3443 case ISD::FLOG:
Bill Wendlingef408db2009-12-23 00:28:23 +00003444 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003445 RTLIB::LOG_F80, RTLIB::LOG_F128,
3446 RTLIB::LOG_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003447 break;
3448 case ISD::FLOG2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003449 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003450 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3451 RTLIB::LOG2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003452 break;
3453 case ISD::FLOG10:
Bill Wendlingef408db2009-12-23 00:28:23 +00003454 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003455 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3456 RTLIB::LOG10_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003457 break;
3458 case ISD::FEXP:
Bill Wendlingef408db2009-12-23 00:28:23 +00003459 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003460 RTLIB::EXP_F80, RTLIB::EXP_F128,
3461 RTLIB::EXP_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003462 break;
3463 case ISD::FEXP2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003464 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003465 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3466 RTLIB::EXP2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003467 break;
3468 case ISD::FTRUNC:
Bill Wendlingef408db2009-12-23 00:28:23 +00003469 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003470 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3471 RTLIB::TRUNC_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003472 break;
3473 case ISD::FFLOOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003474 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003475 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3476 RTLIB::FLOOR_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003477 break;
3478 case ISD::FCEIL:
Bill Wendlingef408db2009-12-23 00:28:23 +00003479 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003480 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3481 RTLIB::CEIL_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003482 break;
3483 case ISD::FRINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003484 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003485 RTLIB::RINT_F80, RTLIB::RINT_F128,
3486 RTLIB::RINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003487 break;
3488 case ISD::FNEARBYINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003489 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3490 RTLIB::NEARBYINT_F64,
3491 RTLIB::NEARBYINT_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003492 RTLIB::NEARBYINT_F128,
Bill Wendlingef408db2009-12-23 00:28:23 +00003493 RTLIB::NEARBYINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003494 break;
Hal Finkel171817e2013-08-07 22:49:12 +00003495 case ISD::FROUND:
3496 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3497 RTLIB::ROUND_F64,
3498 RTLIB::ROUND_F80,
3499 RTLIB::ROUND_F128,
3500 RTLIB::ROUND_PPCF128));
3501 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003502 case ISD::FPOWI:
Bill Wendlingef408db2009-12-23 00:28:23 +00003503 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003504 RTLIB::POWI_F80, RTLIB::POWI_F128,
3505 RTLIB::POWI_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003506 break;
3507 case ISD::FPOW:
Bill Wendlingef408db2009-12-23 00:28:23 +00003508 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003509 RTLIB::POW_F80, RTLIB::POW_F128,
3510 RTLIB::POW_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003511 break;
3512 case ISD::FDIV:
Bill Wendlingef408db2009-12-23 00:28:23 +00003513 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003514 RTLIB::DIV_F80, RTLIB::DIV_F128,
3515 RTLIB::DIV_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003516 break;
3517 case ISD::FREM:
Bill Wendlingef408db2009-12-23 00:28:23 +00003518 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003519 RTLIB::REM_F80, RTLIB::REM_F128,
3520 RTLIB::REM_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003521 break;
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003522 case ISD::FMA:
3523 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003524 RTLIB::FMA_F80, RTLIB::FMA_F128,
3525 RTLIB::FMA_PPCF128));
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003526 break;
Oliver Stannard51b1d462014-08-21 12:50:31 +00003527 case ISD::FADD:
3528 Results.push_back(ExpandFPLibCall(Node, RTLIB::ADD_F32, RTLIB::ADD_F64,
3529 RTLIB::ADD_F80, RTLIB::ADD_F128,
3530 RTLIB::ADD_PPCF128));
3531 break;
3532 case ISD::FMUL:
3533 Results.push_back(ExpandFPLibCall(Node, RTLIB::MUL_F32, RTLIB::MUL_F64,
3534 RTLIB::MUL_F80, RTLIB::MUL_F128,
3535 RTLIB::MUL_PPCF128));
3536 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00003537 case ISD::FP16_TO_FP: {
3538 if (Node->getValueType(0) == MVT::f32) {
3539 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3540 break;
3541 }
3542
3543 // We can extend to types bigger than f32 in two steps without changing the
3544 // result. Since "f16 -> f32" is much more commonly available, give CodeGen
3545 // the option of emitting that before resorting to a libcall.
3546 SDValue Res =
3547 DAG.getNode(ISD::FP16_TO_FP, dl, MVT::f32, Node->getOperand(0));
3548 Results.push_back(
3549 DAG.getNode(ISD::FP_EXTEND, dl, Node->getValueType(0), Res));
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003550 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00003551 }
Tim Northover84ce0a62014-07-17 11:12:12 +00003552 case ISD::FP_TO_FP16: {
3553 RTLIB::Libcall LC =
3554 RTLIB::getFPROUND(Node->getOperand(0).getValueType(), MVT::f16);
3555 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unable to expand fp_to_fp16");
3556 Results.push_back(ExpandLibCall(LC, Node, false));
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003557 break;
Tim Northover84ce0a62014-07-17 11:12:12 +00003558 }
Eli Friedman0e494312009-05-27 07:32:27 +00003559 case ISD::ConstantFP: {
3560 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendlingef408db2009-12-23 00:28:23 +00003561 // Check to see if this FP immediate is already legal.
3562 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman198b7ff2011-11-03 21:49:52 +00003563 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3564 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedman0e494312009-05-27 07:32:27 +00003565 break;
3566 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003567 case ISD::FSUB: {
3568 EVT VT = Node->getValueType(0);
Oliver Stannard51b1d462014-08-21 12:50:31 +00003569 if (TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3570 TLI.isOperationLegalOrCustom(ISD::FNEG, VT)) {
3571 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3572 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3573 Results.push_back(Tmp1);
3574 } else {
3575 Results.push_back(ExpandFPLibCall(Node, RTLIB::SUB_F32, RTLIB::SUB_F64,
3576 RTLIB::SUB_F80, RTLIB::SUB_F128,
3577 RTLIB::SUB_PPCF128));
3578 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003579 break;
3580 }
Eli Friedman56883962009-05-27 07:05:37 +00003581 case ISD::SUB: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003582 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003583 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3584 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3585 "Don't know how to expand this subtraction!");
3586 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3587 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Andersonf2118ea2012-05-21 22:39:20 +00003588 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendlingef408db2009-12-23 00:28:23 +00003589 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman56883962009-05-27 07:05:37 +00003590 break;
3591 }
Eli Friedman0e494312009-05-27 07:32:27 +00003592 case ISD::UREM:
3593 case ISD::SREM: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003594 EVT VT = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003595 bool isSigned = Node->getOpcode() == ISD::SREM;
3596 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3597 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3598 Tmp2 = Node->getOperand(0);
3599 Tmp3 = Node->getOperand(1);
Evan Chengb14ce092011-04-16 03:08:26 +00003600 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3601 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng21c4adc2012-10-12 01:15:47 +00003602 // If div is legal, it's better to do the normal expansion
3603 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003604 useDivRem(Node, isSigned, false))) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003605 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmane1bc3792009-05-28 03:06:16 +00003606 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3607 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedman0e494312009-05-27 07:32:27 +00003608 // X % Y -> X-X/Y*Y
3609 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3610 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3611 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Chengb14ce092011-04-16 03:08:26 +00003612 } else if (isSigned)
3613 Tmp1 = ExpandIntLibCall(Node, true,
3614 RTLIB::SREM_I8,
3615 RTLIB::SREM_I16, RTLIB::SREM_I32,
3616 RTLIB::SREM_I64, RTLIB::SREM_I128);
3617 else
3618 Tmp1 = ExpandIntLibCall(Node, false,
3619 RTLIB::UREM_I8,
3620 RTLIB::UREM_I16, RTLIB::UREM_I32,
3621 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003622 Results.push_back(Tmp1);
3623 break;
3624 }
Eli Friedman0e494312009-05-27 07:32:27 +00003625 case ISD::UDIV:
3626 case ISD::SDIV: {
3627 bool isSigned = Node->getOpcode() == ISD::SDIV;
3628 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003629 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003630 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Chengb14ce092011-04-16 03:08:26 +00003631 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3632 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003633 useDivRem(Node, isSigned, true)))
Eli Friedman0e494312009-05-27 07:32:27 +00003634 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3635 Node->getOperand(1));
Evan Chengb14ce092011-04-16 03:08:26 +00003636 else if (isSigned)
3637 Tmp1 = ExpandIntLibCall(Node, true,
3638 RTLIB::SDIV_I8,
3639 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3640 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3641 else
3642 Tmp1 = ExpandIntLibCall(Node, false,
3643 RTLIB::UDIV_I8,
3644 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3645 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003646 Results.push_back(Tmp1);
3647 break;
3648 }
3649 case ISD::MULHU:
3650 case ISD::MULHS: {
3651 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3652 ISD::SMUL_LOHI;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003653 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003654 SDVTList VTs = DAG.getVTList(VT, VT);
3655 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3656 "If this wasn't legal, it shouldn't have been created!");
3657 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3658 Node->getOperand(1));
3659 Results.push_back(Tmp1.getValue(1));
3660 break;
3661 }
Evan Chengb14ce092011-04-16 03:08:26 +00003662 case ISD::SDIVREM:
3663 case ISD::UDIVREM:
3664 // Expand into divrem libcall
3665 ExpandDivRemLibCall(Node, Results);
3666 break;
Eli Friedman56883962009-05-27 07:05:37 +00003667 case ISD::MUL: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003668 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003669 SDVTList VTs = DAG.getVTList(VT, VT);
3670 // See if multiply or divide can be lowered using two-result operations.
3671 // We just need the low half of the multiply; try both the signed
3672 // and unsigned forms. If the target supports both SMUL_LOHI and
3673 // UMUL_LOHI, form a preference by checking which forms of plain
3674 // MULH it supports.
3675 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3676 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3677 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3678 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3679 unsigned OpToUse = 0;
3680 if (HasSMUL_LOHI && !HasMULHS) {
3681 OpToUse = ISD::SMUL_LOHI;
3682 } else if (HasUMUL_LOHI && !HasMULHU) {
3683 OpToUse = ISD::UMUL_LOHI;
3684 } else if (HasSMUL_LOHI) {
3685 OpToUse = ISD::SMUL_LOHI;
3686 } else if (HasUMUL_LOHI) {
3687 OpToUse = ISD::UMUL_LOHI;
3688 }
3689 if (OpToUse) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003690 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3691 Node->getOperand(1)));
Eli Friedman56883962009-05-27 07:05:37 +00003692 break;
3693 }
Tom Stellarda1a5d9a2014-04-11 16:12:01 +00003694
3695 SDValue Lo, Hi;
3696 EVT HalfType = VT.getHalfSizedIntegerVT(*DAG.getContext());
3697 if (TLI.isOperationLegalOrCustom(ISD::ZERO_EXTEND, VT) &&
3698 TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND, VT) &&
3699 TLI.isOperationLegalOrCustom(ISD::SHL, VT) &&
3700 TLI.isOperationLegalOrCustom(ISD::OR, VT) &&
3701 TLI.expandMUL(Node, Lo, Hi, HalfType, DAG)) {
3702 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Lo);
3703 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, VT, Hi);
3704 SDValue Shift = DAG.getConstant(HalfType.getSizeInBits(),
3705 TLI.getShiftAmountTy(HalfType));
3706 Hi = DAG.getNode(ISD::SHL, dl, VT, Hi, Shift);
3707 Results.push_back(DAG.getNode(ISD::OR, dl, VT, Lo, Hi));
3708 break;
3709 }
3710
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00003711 Tmp1 = ExpandIntLibCall(Node, false,
3712 RTLIB::MUL_I8,
3713 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman56883962009-05-27 07:05:37 +00003714 RTLIB::MUL_I64, RTLIB::MUL_I128);
3715 Results.push_back(Tmp1);
3716 break;
3717 }
Eli Friedman2892d822009-05-27 12:20:41 +00003718 case ISD::SADDO:
3719 case ISD::SSUBO: {
3720 SDValue LHS = Node->getOperand(0);
3721 SDValue RHS = Node->getOperand(1);
3722 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3723 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3724 LHS, RHS);
3725 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003726 EVT ResultType = Node->getValueType(1);
3727 EVT OType = getSetCCResultType(Node->getValueType(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003728
Eli Friedman2892d822009-05-27 12:20:41 +00003729 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3730
3731 // LHSSign -> LHS >= 0
3732 // RHSSign -> RHS >= 0
3733 // SumSign -> Sum >= 0
3734 //
3735 // Add:
3736 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3737 // Sub:
3738 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3739 //
3740 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3741 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3742 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3743 Node->getOpcode() == ISD::SADDO ?
3744 ISD::SETEQ : ISD::SETNE);
3745
3746 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3747 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3748
3749 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003750 Results.push_back(DAG.getBoolExtOrTrunc(Cmp, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003751 break;
3752 }
3753 case ISD::UADDO:
3754 case ISD::USUBO: {
3755 SDValue LHS = Node->getOperand(0);
3756 SDValue RHS = Node->getOperand(1);
3757 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3758 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3759 LHS, RHS);
3760 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003761
3762 EVT ResultType = Node->getValueType(1);
3763 EVT SetCCType = getSetCCResultType(Node->getValueType(0));
3764 ISD::CondCode CC
3765 = Node->getOpcode() == ISD::UADDO ? ISD::SETULT : ISD::SETUGT;
3766 SDValue SetCC = DAG.getSetCC(dl, SetCCType, Sum, LHS, CC);
3767
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003768 Results.push_back(DAG.getBoolExtOrTrunc(SetCC, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003769 break;
3770 }
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003771 case ISD::UMULO:
3772 case ISD::SMULO: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003773 EVT VT = Node->getValueType(0);
Eric Christopherbcaedb52011-04-20 01:19:45 +00003774 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003775 SDValue LHS = Node->getOperand(0);
3776 SDValue RHS = Node->getOperand(1);
3777 SDValue BottomHalf;
3778 SDValue TopHalf;
Nuno Lopes129819d2009-12-23 17:48:10 +00003779 static const unsigned Ops[2][3] =
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003780 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3781 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3782 bool isSigned = Node->getOpcode() == ISD::SMULO;
3783 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3784 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3785 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3786 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3787 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3788 RHS);
3789 TopHalf = BottomHalf.getValue(1);
Eric Christopher83dd2fa2014-04-28 22:24:57 +00003790 } else if (TLI.isTypeLegal(WideVT)) {
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003791 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3792 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3793 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3794 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3795 DAG.getIntPtrConstant(0));
3796 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3797 DAG.getIntPtrConstant(1));
Eric Christopherbb14f652011-01-20 00:29:24 +00003798 } else {
3799 // We can fall back to a libcall with an illegal type for the MUL if we
3800 // have a libcall big enough.
3801 // Also, we can fall back to a division in some cases, but that's a big
3802 // performance hit in the general case.
Eric Christopherbb14f652011-01-20 00:29:24 +00003803 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3804 if (WideVT == MVT::i16)
3805 LC = RTLIB::MUL_I16;
3806 else if (WideVT == MVT::i32)
3807 LC = RTLIB::MUL_I32;
3808 else if (WideVT == MVT::i64)
3809 LC = RTLIB::MUL_I64;
3810 else if (WideVT == MVT::i128)
3811 LC = RTLIB::MUL_I128;
3812 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanae9b1682011-05-16 22:09:53 +00003813
3814 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherbcaedb52011-04-20 01:19:45 +00003815 // part.
3816 unsigned LoSize = VT.getSizeInBits();
3817 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3818 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3819 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3820 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Andersonb2c80da2011-02-25 21:41:48 +00003821
Eric Christopherbcaedb52011-04-20 01:19:45 +00003822 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3823 // pre-lowered to the correct types. This all depends upon WideVT not
3824 // being a legal type for the architecture and thus has to be split to
3825 // two arguments.
3826 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3827 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3828 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3829 DAG.getIntPtrConstant(0));
3830 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3831 DAG.getIntPtrConstant(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00003832 // Ret is a node with an illegal type. Because such things are not
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00003833 // generally permitted during this phase of legalization, make sure the
3834 // node has no more uses. The above EXTRACT_ELEMENT nodes should have been
3835 // folded.
3836 assert(Ret->use_empty() &&
3837 "Unexpected uses of illegally type from expanded lib call.");
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003838 }
Dan Gohmanae9b1682011-05-16 22:09:53 +00003839
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003840 if (isSigned) {
Owen Andersonb2c80da2011-02-25 21:41:48 +00003841 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3842 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003843 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault758659232013-05-18 00:21:46 +00003844 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003845 ISD::SETNE);
3846 } else {
Matt Arsenault758659232013-05-18 00:21:46 +00003847 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003848 DAG.getConstant(0, VT), ISD::SETNE);
3849 }
3850 Results.push_back(BottomHalf);
3851 Results.push_back(TopHalf);
3852 break;
3853 }
Eli Friedman0e494312009-05-27 07:32:27 +00003854 case ISD::BUILD_PAIR: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003855 EVT PairTy = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003856 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3857 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendlingef408db2009-12-23 00:28:23 +00003858 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedman0e494312009-05-27 07:32:27 +00003859 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003860 TLI.getShiftAmountTy(PairTy)));
Bill Wendlingef408db2009-12-23 00:28:23 +00003861 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedman0e494312009-05-27 07:32:27 +00003862 break;
3863 }
Eli Friedman3b251702009-05-27 07:58:35 +00003864 case ISD::SELECT:
3865 Tmp1 = Node->getOperand(0);
3866 Tmp2 = Node->getOperand(1);
3867 Tmp3 = Node->getOperand(2);
Bill Wendlingef408db2009-12-23 00:28:23 +00003868 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman3b251702009-05-27 07:58:35 +00003869 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3870 Tmp2, Tmp3,
3871 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendlingef408db2009-12-23 00:28:23 +00003872 } else {
Eli Friedman3b251702009-05-27 07:58:35 +00003873 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3874 DAG.getConstant(0, Tmp1.getValueType()),
3875 Tmp2, Tmp3, ISD::SETNE);
Bill Wendlingef408db2009-12-23 00:28:23 +00003876 }
Eli Friedman3b251702009-05-27 07:58:35 +00003877 Results.push_back(Tmp1);
3878 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003879 case ISD::BR_JT: {
3880 SDValue Chain = Node->getOperand(0);
3881 SDValue Table = Node->getOperand(1);
3882 SDValue Index = Node->getOperand(2);
3883
Owen Anderson53aa7a92009-08-10 22:56:29 +00003884 EVT PTy = TLI.getPointerTy();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003885
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003886 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003887 unsigned EntrySize =
3888 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00003889
Tom Stellard838e2342013-08-26 15:06:10 +00003890 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(),
3891 Index, DAG.getConstant(EntrySize, Index.getValueType()));
3892 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3893 Index, Table);
Eli Friedman2892d822009-05-27 12:20:41 +00003894
Owen Anderson117c9e82009-08-12 00:36:31 +00003895 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastings81c43062011-02-16 16:23:55 +00003896 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattnera35499e2010-09-21 07:32:19 +00003897 MachinePointerInfo::getJumpTable(), MemVT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00003898 false, false, false, 0);
Eli Friedman2892d822009-05-27 12:20:41 +00003899 Addr = LD;
Dan Gohmanc3349602010-04-19 19:05:59 +00003900 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman2892d822009-05-27 12:20:41 +00003901 // For PIC, the sequence is:
Bill Wendlingef408db2009-12-23 00:28:23 +00003902 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman2892d822009-05-27 12:20:41 +00003903 // RelocBase can be JumpTable, GOT or some sort of global base.
3904 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3905 TLI.getPICJumpTableRelocBase(Table, DAG));
3906 }
Owen Anderson9f944592009-08-11 20:47:22 +00003907 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman2892d822009-05-27 12:20:41 +00003908 Results.push_back(Tmp1);
3909 break;
3910 }
Eli Friedman0e494312009-05-27 07:32:27 +00003911 case ISD::BRCOND:
3912 // Expand brcond's setcc into its constituent parts and create a BR_CC
3913 // Node.
3914 Tmp1 = Node->getOperand(0);
3915 Tmp2 = Node->getOperand(1);
Bill Wendlingef408db2009-12-23 00:28:23 +00003916 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson9f944592009-08-11 20:47:22 +00003917 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedman0e494312009-05-27 07:32:27 +00003918 Tmp1, Tmp2.getOperand(2),
3919 Tmp2.getOperand(0), Tmp2.getOperand(1),
3920 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003921 } else {
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003922 // We test only the i1 bit. Skip the AND if UNDEF.
3923 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3924 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3925 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson9f944592009-08-11 20:47:22 +00003926 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003927 DAG.getCondCode(ISD::SETNE), Tmp3,
3928 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedman0e494312009-05-27 07:32:27 +00003929 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003930 }
Eli Friedman0e494312009-05-27 07:32:27 +00003931 Results.push_back(Tmp1);
3932 break;
Eli Friedman5df72022009-05-28 03:56:57 +00003933 case ISD::SETCC: {
3934 Tmp1 = Node->getOperand(0);
3935 Tmp2 = Node->getOperand(1);
3936 Tmp3 = Node->getOperand(2);
Tom Stellard08690a12013-09-28 02:50:32 +00003937 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
Daniel Sandersedc071b2013-11-21 13:24:49 +00003938 Tmp3, NeedInvert, dl);
Eli Friedman5df72022009-05-28 03:56:57 +00003939
Tom Stellard08690a12013-09-28 02:50:32 +00003940 if (Legalized) {
Daniel Sandersedc071b2013-11-21 13:24:49 +00003941 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3942 // condition code, create a new SETCC node.
Tom Stellard08690a12013-09-28 02:50:32 +00003943 if (Tmp3.getNode())
3944 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3945 Tmp1, Tmp2, Tmp3);
3946
Daniel Sandersedc071b2013-11-21 13:24:49 +00003947 // If we expanded the SETCC by inverting the condition code, then wrap
3948 // the existing SETCC in a NOT to restore the intended condition.
3949 if (NeedInvert)
Pete Cooper7fd1d722014-05-12 23:26:58 +00003950 Tmp1 = DAG.getLogicalNOT(dl, Tmp1, Tmp1->getValueType(0));
Daniel Sandersedc071b2013-11-21 13:24:49 +00003951
Eli Friedman5df72022009-05-28 03:56:57 +00003952 Results.push_back(Tmp1);
3953 break;
3954 }
3955
3956 // Otherwise, SETCC for the given comparison type must be completely
3957 // illegal; expand it into a SELECT_CC.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003958 EVT VT = Node->getValueType(0);
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003959 int TrueValue;
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003960 switch (TLI.getBooleanContents(Tmp1->getValueType(0))) {
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003961 case TargetLowering::ZeroOrOneBooleanContent:
3962 case TargetLowering::UndefinedBooleanContent:
3963 TrueValue = 1;
3964 break;
3965 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3966 TrueValue = -1;
3967 break;
3968 }
Eli Friedman5df72022009-05-28 03:56:57 +00003969 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003970 DAG.getConstant(TrueValue, VT), DAG.getConstant(0, VT),
3971 Tmp3);
Eli Friedman5df72022009-05-28 03:56:57 +00003972 Results.push_back(Tmp1);
3973 break;
3974 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00003975 case ISD::SELECT_CC: {
3976 Tmp1 = Node->getOperand(0); // LHS
3977 Tmp2 = Node->getOperand(1); // RHS
3978 Tmp3 = Node->getOperand(2); // True
3979 Tmp4 = Node->getOperand(3); // False
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003980 EVT VT = Node->getValueType(0);
Eli Friedmane1dc1932009-05-28 20:40:34 +00003981 SDValue CC = Node->getOperand(4);
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003982 ISD::CondCode CCOp = cast<CondCodeSDNode>(CC)->get();
Eli Friedmane1dc1932009-05-28 20:40:34 +00003983
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003984 if (TLI.isCondCodeLegal(CCOp, Tmp1.getSimpleValueType())) {
3985 // If the condition code is legal, then we need to expand this
3986 // node using SETCC and SELECT.
3987 EVT CmpVT = Tmp1.getValueType();
3988 assert(!TLI.isOperationExpand(ISD::SELECT, VT) &&
3989 "Cannot expand ISD::SELECT_CC when ISD::SELECT also needs to be "
3990 "expanded.");
3991 EVT CCVT = TLI.getSetCCResultType(*DAG.getContext(), CmpVT);
3992 SDValue Cond = DAG.getNode(ISD::SETCC, dl, CCVT, Tmp1, Tmp2, CC);
3993 Results.push_back(DAG.getSelect(dl, VT, Cond, Tmp3, Tmp4));
3994 break;
3995 }
3996
3997 // SELECT_CC is legal, so the condition code must not be.
Tom Stellard5694d302013-09-28 02:50:43 +00003998 bool Legalized = false;
3999 // Try to legalize by inverting the condition. This is for targets that
4000 // might support an ordered version of a condition, but not the unordered
4001 // version (or vice versa).
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00004002 ISD::CondCode InvCC = ISD::getSetCCInverse(CCOp,
Tom Stellard5694d302013-09-28 02:50:43 +00004003 Tmp1.getValueType().isInteger());
4004 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
4005 // Use the new condition code and swap true and false
4006 Legalized = true;
4007 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
Tom Stellard08690a12013-09-28 02:50:32 +00004008 } else {
Tom Stellard5694d302013-09-28 02:50:43 +00004009 // If The inverse is not legal, then try to swap the arguments using
4010 // the inverse condition code.
4011 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
4012 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
4013 // The swapped inverse condition is legal, so swap true and false,
4014 // lhs and rhs.
4015 Legalized = true;
4016 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
4017 }
4018 }
4019
4020 if (!Legalized) {
4021 Legalized = LegalizeSetCCCondCode(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004022 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, NeedInvert,
4023 dl);
Tom Stellard5694d302013-09-28 02:50:43 +00004024
4025 assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00004026
4027 // If we expanded the SETCC by inverting the condition code, then swap
4028 // the True/False operands to match.
4029 if (NeedInvert)
4030 std::swap(Tmp3, Tmp4);
4031
4032 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
4033 // condition code, create a new SELECT_CC node.
Tom Stellard5694d302013-09-28 02:50:43 +00004034 if (CC.getNode()) {
4035 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
4036 Tmp1, Tmp2, Tmp3, Tmp4, CC);
4037 } else {
4038 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4039 CC = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004040 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1,
4041 Tmp2, Tmp3, Tmp4, CC);
Tom Stellard5694d302013-09-28 02:50:43 +00004042 }
Tom Stellard08690a12013-09-28 02:50:32 +00004043 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004044 Results.push_back(Tmp1);
4045 break;
4046 }
4047 case ISD::BR_CC: {
4048 Tmp1 = Node->getOperand(0); // Chain
4049 Tmp2 = Node->getOperand(2); // LHS
4050 Tmp3 = Node->getOperand(3); // RHS
4051 Tmp4 = Node->getOperand(1); // CC
4052
Tom Stellard08690a12013-09-28 02:50:32 +00004053 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004054 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, NeedInvert, dl);
Tom Stellard45015d92013-09-28 03:10:17 +00004055 (void)Legalized;
Tom Stellard08690a12013-09-28 02:50:32 +00004056 assert(Legalized && "Can't legalize BR_CC with legal condition!");
Eli Friedmane1dc1932009-05-28 20:40:34 +00004057
Daniel Sandersedc071b2013-11-21 13:24:49 +00004058 // If we expanded the SETCC by inverting the condition code, then wrap
4059 // the existing SETCC in a NOT to restore the intended condition.
4060 if (NeedInvert)
4061 Tmp4 = DAG.getNOT(dl, Tmp4, Tmp4->getValueType(0));
4062
4063 // If we expanded the SETCC by swapping LHS and RHS, create a new BR_CC
Tom Stellard08690a12013-09-28 02:50:32 +00004064 // node.
4065 if (Tmp4.getNode()) {
4066 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
4067 Tmp4, Tmp2, Tmp3, Node->getOperand(4));
4068 } else {
4069 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
4070 Tmp4 = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004071 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4,
4072 Tmp2, Tmp3, Node->getOperand(4));
Tom Stellard08690a12013-09-28 02:50:32 +00004073 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004074 Results.push_back(Tmp1);
4075 break;
4076 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004077 case ISD::BUILD_VECTOR:
4078 Results.push_back(ExpandBUILD_VECTOR(Node));
4079 break;
4080 case ISD::SRA:
4081 case ISD::SRL:
4082 case ISD::SHL: {
4083 // Scalarize vector SRA/SRL/SHL.
4084 EVT VT = Node->getValueType(0);
4085 assert(VT.isVector() && "Unable to legalize non-vector shift");
4086 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
4087 unsigned NumElem = VT.getVectorNumElements();
4088
4089 SmallVector<SDValue, 8> Scalars;
4090 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
4091 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
4092 VT.getScalarType(),
Tom Stellardd42c5942013-08-05 22:22:01 +00004093 Node->getOperand(0), DAG.getConstant(Idx,
4094 TLI.getVectorIdxTy()));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004095 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
4096 VT.getScalarType(),
Tom Stellardd42c5942013-08-05 22:22:01 +00004097 Node->getOperand(1), DAG.getConstant(Idx,
4098 TLI.getVectorIdxTy()));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004099 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
4100 VT.getScalarType(), Ex, Sh));
4101 }
4102 SDValue Result =
Craig Topper48d114b2014-04-26 18:35:24 +00004103 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0), Scalars);
Eli Friedman13477152011-11-11 23:58:27 +00004104 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +00004105 break;
4106 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00004107 case ISD::GLOBAL_OFFSET_TABLE:
4108 case ISD::GlobalAddress:
4109 case ISD::GlobalTLSAddress:
4110 case ISD::ExternalSymbol:
4111 case ISD::ConstantPool:
4112 case ISD::JumpTable:
4113 case ISD::INTRINSIC_W_CHAIN:
4114 case ISD::INTRINSIC_WO_CHAIN:
4115 case ISD::INTRINSIC_VOID:
4116 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedmana8f9a022009-05-27 02:16:40 +00004117 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00004118 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004119
4120 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004121 if (!Results.empty())
4122 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004123}
Dan Gohman198b7ff2011-11-03 21:49:52 +00004124
4125void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
4126 SmallVector<SDValue, 8> Results;
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004127 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00004128 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedman97f3f962009-07-17 05:16:04 +00004129 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendlingef408db2009-12-23 00:28:23 +00004130 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004131 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendlingef408db2009-12-23 00:28:23 +00004132 }
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004133 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004134 SDLoc dl(Node);
Eli Friedman3b251702009-05-27 07:58:35 +00004135 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman21d349b2009-05-27 01:25:56 +00004136 switch (Node->getOpcode()) {
4137 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004138 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004139 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004140 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004141 case ISD::CTPOP:
4142 // Zero extend the argument.
4143 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004144 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
4145 // already the correct result.
Jakob Stoklund Olesen6b9f63c2009-07-12 17:43:20 +00004146 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004147 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004148 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault758659232013-05-18 00:21:46 +00004149 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Eli Friedman21d349b2009-05-27 01:25:56 +00004150 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
4151 ISD::SETEQ);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004152 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
4153 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004154 } else if (Node->getOpcode() == ISD::CTLZ ||
4155 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman21d349b2009-05-27 01:25:56 +00004156 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4157 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
4158 DAG.getConstant(NVT.getSizeInBits() -
4159 OVT.getSizeInBits(), NVT));
4160 }
Bill Wendlingef408db2009-12-23 00:28:23 +00004161 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00004162 break;
4163 case ISD::BSWAP: {
4164 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling70794592009-12-22 22:53:39 +00004165 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004166 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4167 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Andersonb2c80da2011-02-25 21:41:48 +00004168 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendlingef408db2009-12-23 00:28:23 +00004169 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004170 break;
4171 }
4172 case ISD::FP_TO_UINT:
4173 case ISD::FP_TO_SINT:
4174 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
4175 Node->getOpcode() == ISD::FP_TO_SINT, dl);
4176 Results.push_back(Tmp1);
4177 break;
4178 case ISD::UINT_TO_FP:
4179 case ISD::SINT_TO_FP:
4180 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
4181 Node->getOpcode() == ISD::SINT_TO_FP, dl);
4182 Results.push_back(Tmp1);
4183 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00004184 case ISD::VAARG: {
4185 SDValue Chain = Node->getOperand(0); // Get the chain.
4186 SDValue Ptr = Node->getOperand(1); // Get the pointer.
4187
4188 unsigned TruncOp;
4189 if (OVT.isVector()) {
4190 TruncOp = ISD::BITCAST;
4191 } else {
4192 assert(OVT.isInteger()
4193 && "VAARG promotion is supported only for vectors or integer types");
4194 TruncOp = ISD::TRUNCATE;
4195 }
4196
4197 // Perform the larger operation, then convert back
4198 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
4199 Node->getConstantOperandVal(3));
4200 Chain = Tmp1.getValue(1);
4201
4202 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
4203
4204 // Modified the chain result - switch anything that used the old chain to
4205 // use the new one.
4206 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
4207 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00004208 if (UpdatedNodes) {
4209 UpdatedNodes->insert(Tmp2.getNode());
4210 UpdatedNodes->insert(Chain.getNode());
4211 }
Hal Finkel71c2ba32012-03-24 03:53:52 +00004212 ReplacedNode(Node);
4213 break;
4214 }
Eli Friedmand6f28342009-05-27 03:33:44 +00004215 case ISD::AND:
4216 case ISD::OR:
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004217 case ISD::XOR: {
4218 unsigned ExtOp, TruncOp;
4219 if (OVT.isVector()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004220 ExtOp = ISD::BITCAST;
4221 TruncOp = ISD::BITCAST;
Chris Lattnercd927182010-04-07 23:47:51 +00004222 } else {
4223 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004224 ExtOp = ISD::ANY_EXTEND;
4225 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004226 }
4227 // Promote each of the values to the new type.
4228 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4229 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4230 // Perform the larger operation, then convert back
Bill Wendlingef408db2009-12-23 00:28:23 +00004231 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
4232 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmand6f28342009-05-27 03:33:44 +00004233 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004234 }
4235 case ISD::SELECT: {
Eli Friedman3b251702009-05-27 07:58:35 +00004236 unsigned ExtOp, TruncOp;
Tom Stellardc9a67a22014-03-24 16:07:28 +00004237 if (Node->getValueType(0).isVector() ||
4238 Node->getValueType(0).getSizeInBits() == NVT.getSizeInBits()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004239 ExtOp = ISD::BITCAST;
4240 TruncOp = ISD::BITCAST;
Eli Friedman2892d822009-05-27 12:20:41 +00004241 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman3b251702009-05-27 07:58:35 +00004242 ExtOp = ISD::ANY_EXTEND;
4243 TruncOp = ISD::TRUNCATE;
4244 } else {
4245 ExtOp = ISD::FP_EXTEND;
4246 TruncOp = ISD::FP_ROUND;
4247 }
4248 Tmp1 = Node->getOperand(0);
4249 // Promote each of the values to the new type.
4250 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4251 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4252 // Perform the larger operation, then round down.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004253 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman3b251702009-05-27 07:58:35 +00004254 if (TruncOp != ISD::FP_ROUND)
Bill Wendlingef408db2009-12-23 00:28:23 +00004255 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004256 else
Bill Wendlingef408db2009-12-23 00:28:23 +00004257 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman3b251702009-05-27 07:58:35 +00004258 DAG.getIntPtrConstant(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004259 Results.push_back(Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004260 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004261 }
Eli Friedman3b251702009-05-27 07:58:35 +00004262 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00004263 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00004264
4265 // Cast the two input vectors.
Wesley Peck527da1b2010-11-23 03:31:01 +00004266 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
4267 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman3b251702009-05-27 07:58:35 +00004268
4269 // Convert the shuffle mask to the right # elements.
Bill Wendlingef408db2009-12-23 00:28:23 +00004270 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peck527da1b2010-11-23 03:31:01 +00004271 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004272 Results.push_back(Tmp1);
4273 break;
4274 }
Eli Friedman5df72022009-05-28 03:56:57 +00004275 case ISD::SETCC: {
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004276 unsigned ExtOp = ISD::FP_EXTEND;
4277 if (NVT.isInteger()) {
4278 ISD::CondCode CCCode =
4279 cast<CondCodeSDNode>(Node->getOperand(2))->get();
4280 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedman5df72022009-05-28 03:56:57 +00004281 }
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004282 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4283 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedman5df72022009-05-28 03:56:57 +00004284 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
4285 Tmp1, Tmp2, Node->getOperand(2)));
4286 break;
4287 }
Oliver Stannardf5469be2014-08-18 14:22:39 +00004288 case ISD::FADD:
4289 case ISD::FSUB:
4290 case ISD::FMUL:
Pete Coopere69be6d2012-03-19 23:38:12 +00004291 case ISD::FDIV:
Pete Cooper8a3dc0e2012-04-04 19:36:31 +00004292 case ISD::FREM:
Pete Cooper99415fe2012-01-12 21:46:18 +00004293 case ISD::FPOW: {
4294 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4295 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopere69be6d2012-03-19 23:38:12 +00004296 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooper99415fe2012-01-12 21:46:18 +00004297 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4298 Tmp3, DAG.getIntPtrConstant(0)));
4299 break;
4300 }
4301 case ISD::FLOG2:
4302 case ISD::FEXP2:
4303 case ISD::FLOG:
4304 case ISD::FEXP: {
4305 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4306 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4307 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4308 Tmp2, DAG.getIntPtrConstant(0)));
4309 break;
4310 }
Eli Friedman21d349b2009-05-27 01:25:56 +00004311 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004312
4313 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004314 if (!Results.empty())
4315 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004316}
4317
Chris Lattnerdc750592005-01-07 07:47:09 +00004318// SelectionDAG::Legalize - This is the entry point for the file.
4319//
Dan Gohmand282f462011-05-16 22:19:54 +00004320void SelectionDAG::Legalize() {
Chandler Carruth411fb402014-07-26 05:49:40 +00004321 AssignTopologicalOrder();
4322
Chandler Carruth411fb402014-07-26 05:49:40 +00004323 SmallPtrSet<SDNode *, 16> LegalizedNodes;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004324 SelectionDAGLegalize Legalizer(*this, LegalizedNodes);
Chandler Carruth411fb402014-07-26 05:49:40 +00004325
4326 // Visit all the nodes. We start in topological order, so that we see
4327 // nodes with their original operands intact. Legalization can produce
4328 // new nodes which may themselves need to be legalized. Iterate until all
4329 // nodes have been legalized.
4330 for (;;) {
4331 bool AnyLegalized = false;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004332 for (auto NI = allnodes_end(); NI != allnodes_begin();) {
4333 --NI;
Chandler Carruth411fb402014-07-26 05:49:40 +00004334
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004335 SDNode *N = NI;
4336 if (N->use_empty() && N != getRoot().getNode()) {
4337 ++NI;
4338 DeleteNode(N);
4339 continue;
4340 }
4341
David Blaikie70573dc2014-11-19 07:49:26 +00004342 if (LegalizedNodes.insert(N).second) {
Chandler Carruth411fb402014-07-26 05:49:40 +00004343 AnyLegalized = true;
4344 Legalizer.LegalizeOp(N);
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004345
4346 if (N->use_empty() && N != getRoot().getNode()) {
4347 ++NI;
4348 DeleteNode(N);
4349 }
Chandler Carruth411fb402014-07-26 05:49:40 +00004350 }
4351 }
4352 if (!AnyLegalized)
4353 break;
4354
4355 }
4356
4357 // Remove dead nodes now.
4358 RemoveDeadNodes();
4359}
4360
4361bool SelectionDAG::LegalizeOp(SDNode *N,
4362 SmallSetVector<SDNode *, 16> &UpdatedNodes) {
Chandler Carruth411fb402014-07-26 05:49:40 +00004363 SmallPtrSet<SDNode *, 16> LegalizedNodes;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004364 SelectionDAGLegalize Legalizer(*this, LegalizedNodes, &UpdatedNodes);
Chandler Carruth411fb402014-07-26 05:49:40 +00004365
4366 // Directly insert the node in question, and legalize it. This will recurse
4367 // as needed through operands.
4368 LegalizedNodes.insert(N);
4369 Legalizer.LegalizeOp(N);
4370
4371 return LegalizedNodes.count(N);
Chris Lattnerdc750592005-01-07 07:47:09 +00004372}