blob: 0396736ad819be08bf0d8ab7cff9853439d320e1 [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//===----------------------------------------------------------------------===//
Sanjay Pateleb4a4d52014-11-21 18:58:38 +000043/// This takes an arbitrary SelectionDAG as input and
Chris Lattnerdc750592005-01-07 07:47:09 +000044/// 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///
Matthias Braun75e668e2015-07-14 02:09:57 +000054namespace {
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 {
Mehdi Amini44ede332015-07-09 02:09:04 +000068 return TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT);
Matt Arsenault758659232013-05-18 00:21:46 +000069 }
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
Sanjay Pateleb4a4d52014-11-21 18:58:38 +000089 /// Some targets cannot handle a variable
Nate Begeman6f94f612008-04-25 18:07:40 +000090 /// 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
Sanjay Pateleb4a4d52014-11-21 18:58:38 +000098 /// Return a vector shuffle operation which
Nate Begeman5f829d82009-04-29 05:20:52 +000099 /// 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);
Matthias Braun75e668e2015-07-14 02:09:57 +0000133 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};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000201}
Chris Lattnerdc750592005-01-07 07:47:09 +0000202
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000203/// Return a vector shuffle operation which
Nate Begeman5f829d82009-04-29 05:20:52 +0000204/// 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
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000235/// Expands the ConstantFP node to an integer constant or
Evan Cheng22cf8992006-12-13 20:57:08 +0000236/// 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");
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000252 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(), dl,
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.
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000263 TLI.isLoadExtLegal(ISD::EXTLOAD, OrigVT, 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
Mehdi Amini44ede332015-07-09 02:09:04 +0000272 SDValue CPIdx =
273 DAG.getConstantPool(LLVMC, TLI.getPointerTy(DAG.getDataLayout()));
Evan Cheng1fb8aed2009-03-13 07:51:59 +0000274 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman198b7ff2011-11-03 21:49:52 +0000275 if (Extend) {
276 SDValue Result =
277 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
278 DAG.getEntryNode(),
279 CPIdx, MachinePointerInfo::getConstantPool(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000280 VT, false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000281 return Result;
282 }
283 SDValue Result =
284 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000285 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman198b7ff2011-11-03 21:49:52 +0000286 Alignment);
287 return Result;
Evan Cheng47833a12006-12-12 21:32:44 +0000288}
289
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000290/// Expands an unaligned store to 2 half-size stores.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000291static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
292 const TargetLowering &TLI,
Eli Friedman13477152011-11-11 23:58:27 +0000293 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmand257a462011-11-16 02:43:15 +0000294 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
295 "unaligned indexed stores not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000296 SDValue Chain = ST->getChain();
297 SDValue Ptr = ST->getBasePtr();
298 SDValue Val = ST->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000299 EVT VT = Val.getValueType();
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000300 int Alignment = ST->getAlignment();
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000301 unsigned AS = ST->getAddressSpace();
302
Andrew Trickef9de2a2013-05-25 02:42:55 +0000303 SDLoc dl(ST);
Duncan Sands13237ac2008-06-06 12:08:01 +0000304 if (ST->getMemoryVT().isFloatingPoint() ||
305 ST->getMemoryVT().isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000306 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands8f352fe2008-12-12 21:47:02 +0000307 if (TLI.isTypeLegal(intVT)) {
308 // Expand to a bitconvert of the value to the integer type of the
309 // same size, then a (misaligned) int store.
310 // FIXME: Does not handle truncating floating point stores!
Wesley Peck527da1b2010-11-23 03:31:01 +0000311 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000312 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
313 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman13477152011-11-11 23:58:27 +0000314 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000315 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000316 }
Dan Gohmanabffc992011-05-17 22:22:52 +0000317 // Do a (aligned) store to a stack slot, then copy from the stack slot
318 // to the final destination using (unaligned) integer loads and stores.
319 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000320 MVT RegVT =
Dan Gohmanabffc992011-05-17 22:22:52 +0000321 TLI.getRegisterType(*DAG.getContext(),
322 EVT::getIntegerVT(*DAG.getContext(),
323 StoredVT.getSizeInBits()));
324 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
325 unsigned RegBytes = RegVT.getSizeInBits() / 8;
326 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
327
328 // Make sure the stack slot is also aligned for the register type.
329 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
330
331 // Perform the original store, only redirected to the stack slot.
332 SDValue Store = DAG.getTruncStore(Chain, dl,
333 Val, StackPtr, MachinePointerInfo(),
334 StoredVT, false, false, 0);
Mehdi Amini44ede332015-07-09 02:09:04 +0000335 SDValue Increment = DAG.getConstant(
336 RegBytes, dl, TLI.getPointerTy(DAG.getDataLayout(), AS));
Dan Gohmanabffc992011-05-17 22:22:52 +0000337 SmallVector<SDValue, 8> Stores;
338 unsigned Offset = 0;
339
340 // Do all but one copies using the full register width.
341 for (unsigned i = 1; i < NumRegs; i++) {
342 // Load one integer register's worth from the stack slot.
343 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
344 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000345 false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000346 // Store it to the final location. Remember the store.
347 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
348 ST->getPointerInfo().getWithOffset(Offset),
349 ST->isVolatile(), ST->isNonTemporal(),
350 MinAlign(ST->getAlignment(), Offset)));
351 // Increment the pointers.
352 Offset += RegBytes;
353 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
354 Increment);
355 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
356 }
357
358 // The last store may be partial. Do a truncating store. On big-endian
359 // machines this requires an extending load from the stack slot to ensure
360 // that the bits are in the right place.
361 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
362 8 * (StoredBytes - Offset));
363
364 // Load from the stack slot.
365 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
366 MachinePointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000367 MemVT, false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000368
369 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
370 ST->getPointerInfo()
371 .getWithOffset(Offset),
372 MemVT, ST->isVolatile(),
373 ST->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000374 MinAlign(ST->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000375 ST->getAAInfo()));
Dan Gohmanabffc992011-05-17 22:22:52 +0000376 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000377 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedman13477152011-11-11 23:58:27 +0000378 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000379 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000380 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000381 assert(ST->getMemoryVT().isInteger() &&
382 !ST->getMemoryVT().isVector() &&
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000383 "Unaligned store of unknown type.");
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000384 // Get the half-size VT
Ken Dyckdf5561d2009-12-17 20:09:43 +0000385 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands13237ac2008-06-06 12:08:01 +0000386 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000387 int IncrementSize = NumBits / 8;
388
389 // Divide the stored value in two parts.
Mehdi Amini9639d652015-07-09 02:09:20 +0000390 SDValue ShiftAmount =
391 DAG.getConstant(NumBits, dl, TLI.getShiftAmountTy(Val.getValueType(),
392 DAG.getDataLayout()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000393 SDValue Lo = Val;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000394 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000395
396 // Store the two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000397 SDValue Store1, Store2;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000398 Store1 = DAG.getTruncStore(Chain, dl,
399 DAG.getDataLayout().isLittleEndian() ? Lo : Hi,
400 Ptr, ST->getPointerInfo(), NewStoredVT,
David Greene39c6d012010-02-15 17:00:31 +0000401 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000402
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000403 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Mehdi Amini44ede332015-07-09 02:09:04 +0000404 DAG.getConstant(IncrementSize, dl,
405 TLI.getPointerTy(DAG.getDataLayout(), AS)));
Duncan Sands1826ded2007-10-28 12:59:45 +0000406 Alignment = MinAlign(Alignment, IncrementSize);
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000407 Store2 = DAG.getTruncStore(
408 Chain, dl, DAG.getDataLayout().isLittleEndian() ? Hi : Lo, Ptr,
409 ST->getPointerInfo().getWithOffset(IncrementSize), NewStoredVT,
410 ST->isVolatile(), ST->isNonTemporal(), Alignment, ST->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000411
Dan Gohman198b7ff2011-11-03 21:49:52 +0000412 SDValue Result =
413 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman13477152011-11-11 23:58:27 +0000414 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000415}
416
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000417/// Expands an unaligned load to 2 half-size loads.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000418static void
419ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
420 const TargetLowering &TLI,
421 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmand257a462011-11-16 02:43:15 +0000422 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
423 "unaligned indexed loads not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000424 SDValue Chain = LD->getChain();
425 SDValue Ptr = LD->getBasePtr();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000426 EVT VT = LD->getValueType(0);
427 EVT LoadedVT = LD->getMemoryVT();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000428 SDLoc dl(LD);
Duncan Sands13237ac2008-06-06 12:08:01 +0000429 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000430 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Roteme0f84d32012-08-09 01:56:44 +0000431 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands8f352fe2008-12-12 21:47:02 +0000432 // Expand to a (misaligned) integer load of the same size,
433 // then bitconvert to floating point or vector.
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000434 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr,
435 LD->getMemOperand());
Wesley Peck527da1b2010-11-23 03:31:01 +0000436 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Roteme0f84d32012-08-09 01:56:44 +0000437 if (LoadedVT != VT)
438 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
439 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000440
Dan Gohman198b7ff2011-11-03 21:49:52 +0000441 ValResult = Result;
442 ChainResult = Chain;
443 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000444 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000445
Chris Lattner1ffcf522010-09-21 16:36:31 +0000446 // Copy the value to a (aligned) stack slot using (unaligned) integer
447 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000448 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000449 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
450 unsigned RegBytes = RegVT.getSizeInBits() / 8;
451 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
452
453 // Make sure the stack slot is also aligned for the register type.
454 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
455
Mehdi Amini44ede332015-07-09 02:09:04 +0000456 SDValue Increment =
457 DAG.getConstant(RegBytes, dl, TLI.getPointerTy(DAG.getDataLayout()));
Chris Lattner1ffcf522010-09-21 16:36:31 +0000458 SmallVector<SDValue, 8> Stores;
459 SDValue StackPtr = StackBase;
460 unsigned Offset = 0;
461
462 // Do all but one copies using the full register width.
463 for (unsigned i = 1; i < NumRegs; i++) {
464 // Load one integer register's worth from the original location.
465 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
466 LD->getPointerInfo().getWithOffset(Offset),
467 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000468 LD->isInvariant(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000469 MinAlign(LD->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000470 LD->getAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000471 // Follow the load with a store to the stack slot. Remember the store.
472 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner676c61d2010-09-21 18:41:36 +0000473 MachinePointerInfo(), false, false, 0));
Chris Lattner1ffcf522010-09-21 16:36:31 +0000474 // Increment the pointers.
475 Offset += RegBytes;
476 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
477 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
478 Increment);
479 }
480
481 // The last copy may be partial. Do an extending load.
482 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
483 8 * (LoadedBytes - Offset));
Stuart Hastings81c43062011-02-16 16:23:55 +0000484 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000485 LD->getPointerInfo().getWithOffset(Offset),
486 MemVT, LD->isVolatile(),
487 LD->isNonTemporal(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000488 LD->isInvariant(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000489 MinAlign(LD->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000490 LD->getAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000491 // Follow the load with a store to the stack slot. Remember the store.
492 // On big-endian machines this requires a truncating store to ensure
493 // that the bits end up in the right place.
494 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
495 MachinePointerInfo(), MemVT,
496 false, false, 0));
497
498 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000499 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000500
501 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastings81c43062011-02-16 16:23:55 +0000502 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Louis Gerbarg67474e32014-07-31 21:45:05 +0000503 MachinePointerInfo(), LoadedVT, false,false, false,
504 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000505
506 // Callers expect a MERGE_VALUES node.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000507 ValResult = Load;
508 ChainResult = TF;
509 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000510 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000511 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner09c03932007-11-19 21:38:03 +0000512 "Unaligned load of unsupported type.");
513
Dale Johannesenbf76a082008-02-27 22:36:00 +0000514 // Compute the new VT that is half the size of the old one. This is an
515 // integer MVT.
Duncan Sands13237ac2008-06-06 12:08:01 +0000516 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000517 EVT NewLoadedVT;
Owen Anderson117c9e82009-08-12 00:36:31 +0000518 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattner09c03932007-11-19 21:38:03 +0000519 NumBits >>= 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000520
Chris Lattner09c03932007-11-19 21:38:03 +0000521 unsigned Alignment = LD->getAlignment();
522 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000523 ISD::LoadExtType HiExtType = LD->getExtensionType();
524
525 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
526 if (HiExtType == ISD::NON_EXTLOAD)
527 HiExtType = ISD::ZEXTLOAD;
528
529 // Load the value in two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000530 SDValue Lo, Hi;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000531 if (DAG.getDataLayout().isLittleEndian()) {
Stuart Hastings81c43062011-02-16 16:23:55 +0000532 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000533 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000534 LD->isNonTemporal(), LD->isInvariant(), Alignment,
535 LD->getAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000536 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000537 DAG.getConstant(IncrementSize, dl, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000538 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000539 LD->getPointerInfo().getWithOffset(IncrementSize),
540 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000541 LD->isNonTemporal(),LD->isInvariant(),
542 MinAlign(Alignment, IncrementSize), LD->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000543 } else {
Stuart Hastings81c43062011-02-16 16:23:55 +0000544 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000545 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000546 LD->isNonTemporal(), LD->isInvariant(), Alignment,
547 LD->getAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000548 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000549 DAG.getConstant(IncrementSize, dl, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000550 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000551 LD->getPointerInfo().getWithOffset(IncrementSize),
552 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000553 LD->isNonTemporal(), LD->isInvariant(),
554 MinAlign(Alignment, IncrementSize), LD->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000555 }
556
557 // aggregate the two parts
Mehdi Amini9639d652015-07-09 02:09:20 +0000558 SDValue ShiftAmount =
559 DAG.getConstant(NumBits, dl, TLI.getShiftAmountTy(Hi.getValueType(),
560 DAG.getDataLayout()));
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000561 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
562 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000563
Owen Anderson9f944592009-08-11 20:47:22 +0000564 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000565 Hi.getValue(1));
566
Dan Gohman198b7ff2011-11-03 21:49:52 +0000567 ValResult = Result;
568 ChainResult = TF;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000569}
Evan Cheng003feb02007-01-04 21:56:39 +0000570
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000571/// Some target cannot handle a variable insertion index for the
572/// INSERT_VECTOR_ELT instruction. In this case, it
Nate Begeman6f94f612008-04-25 18:07:40 +0000573/// is necessary to spill the vector being inserted into to memory, perform
574/// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000575SDValue SelectionDAGLegalize::
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000576PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000577 SDLoc dl) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000578 SDValue Tmp1 = Vec;
579 SDValue Tmp2 = Val;
580 SDValue Tmp3 = Idx;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000581
Nate Begeman6f94f612008-04-25 18:07:40 +0000582 // If the target doesn't support this, we have to spill the input vector
583 // to a temporary stack slot, update the element, then reload it. This is
584 // badness. We could also load the value into a vector register (either
585 // with a "move to register" or "extload into register" instruction, then
586 // permute it into place, if the idx is a constant and if the idx is
587 // supported by the target.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000588 EVT VT = Tmp1.getValueType();
589 EVT EltVT = VT.getVectorElementType();
590 EVT IdxVT = Tmp3.getValueType();
Mehdi Amini44ede332015-07-09 02:09:04 +0000591 EVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000592 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman6f94f612008-04-25 18:07:40 +0000593
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000594 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
595
Nate Begeman6f94f612008-04-25 18:07:40 +0000596 // Store the vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000597 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +0000598 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +0000599 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000600
601 // Truncate or zero extend offset to target pointer type.
Pete Cooper8acd3862015-07-15 00:43:54 +0000602 Tmp3 = DAG.getZExtOrTrunc(Tmp3, dl, PtrVT);
Nate Begeman6f94f612008-04-25 18:07:40 +0000603 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +0000604 unsigned EltSize = EltVT.getSizeInBits()/8;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000605 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,
606 DAG.getConstant(EltSize, dl, IdxVT));
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000607 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman6f94f612008-04-25 18:07:40 +0000608 // Store the scalar value.
Chris Lattnera35499e2010-09-21 07:32:19 +0000609 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene39c6d012010-02-15 17:00:31 +0000610 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000611 // Load the updated vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000612 return DAG.getLoad(VT, dl, Ch, StackPtr,
Stephen Lincfe7f352013-07-08 00:37:03 +0000613 MachinePointerInfo::getFixedStack(SPFI), false, false,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000614 false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000615}
616
Mon P Wang4dd832d2008-12-09 05:46:39 +0000617
Eli Friedmana8f9a022009-05-27 02:16:40 +0000618SDValue SelectionDAGLegalize::
Andrew Trickef9de2a2013-05-25 02:42:55 +0000619ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) {
Eli Friedmana8f9a022009-05-27 02:16:40 +0000620 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
621 // SCALAR_TO_VECTOR requires that the type of the value being inserted
622 // match the element type of the vector being created, except for
623 // integers in which case the inserted value can be over width.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000624 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedmana8f9a022009-05-27 02:16:40 +0000625 if (Val.getValueType() == EltVT ||
626 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
627 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
628 Vec.getValueType(), Val);
629
630 unsigned NumElts = Vec.getValueType().getVectorNumElements();
631 // We generate a shuffle of InVec and ScVec, so the shuffle mask
632 // should be 0,1,2,3,4,5... with the appropriate element replaced with
633 // elt 0 of the RHS.
634 SmallVector<int, 8> ShufOps;
635 for (unsigned i = 0; i != NumElts; ++i)
636 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
637
638 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
639 &ShufOps[0]);
640 }
641 }
642 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
643}
644
Eli Friedmanaee3f622009-06-06 07:04:42 +0000645SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
646 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
647 // FIXME: We shouldn't do this for TargetConstantFP's.
648 // FIXME: move this to the DAG Combiner! Note that we can't regress due
649 // to phase ordering between legalized code and the dag combiner. This
650 // probably means that we need to integrate dag combiner and legalizer
651 // together.
652 // We generally can't do this one for long doubles.
Nadav Rotem2a148662012-07-11 11:02:16 +0000653 SDValue Chain = ST->getChain();
654 SDValue Ptr = ST->getBasePtr();
Eli Friedmanaee3f622009-06-06 07:04:42 +0000655 unsigned Alignment = ST->getAlignment();
656 bool isVolatile = ST->isVolatile();
David Greene39c6d012010-02-15 17:00:31 +0000657 bool isNonTemporal = ST->isNonTemporal();
Hal Finkelcc39b672014-07-24 12:16:19 +0000658 AAMDNodes AAInfo = ST->getAAInfo();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000659 SDLoc dl(ST);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000660 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson9f944592009-08-11 20:47:22 +0000661 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohmane49e7422011-07-15 22:39:09 +0000662 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000663 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedmanaee3f622009-06-06 07:04:42 +0000664 bitcastToAPInt().zextOrTrunc(32),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000665 SDLoc(CFP), MVT::i32);
Nadav Rotem2a148662012-07-11 11:02:16 +0000666 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000667 isVolatile, isNonTemporal, Alignment, AAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000668 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000669
Chris Lattner6963c1f2010-09-21 17:42:31 +0000670 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000671 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohmane49e7422011-07-15 22:39:09 +0000672 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000673 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000674 zextOrTrunc(64), SDLoc(CFP), MVT::i64);
Nadav Rotem2a148662012-07-11 11:02:16 +0000675 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000676 isVolatile, isNonTemporal, Alignment, AAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000677 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000678
Dan Gohmane49e7422011-07-15 22:39:09 +0000679 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000680 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
681 // stores. If the target supports neither 32- nor 64-bits, this
682 // xform is certainly not worth it.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000683 const APInt &IntVal = CFP->getValueAPF().bitcastToAPInt();
684 SDValue Lo = DAG.getConstant(IntVal.trunc(32), dl, MVT::i32);
685 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), dl, MVT::i32);
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000686 if (DAG.getDataLayout().isBigEndian())
687 std::swap(Lo, Hi);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000688
Nadav Rotem2a148662012-07-11 11:02:16 +0000689 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Hal Finkelcc39b672014-07-24 12:16:19 +0000690 isNonTemporal, Alignment, AAInfo);
Nadav Rotem2a148662012-07-11 11:02:16 +0000691 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000692 DAG.getConstant(4, dl, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000693 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000694 ST->getPointerInfo().getWithOffset(4),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000695 isVolatile, isNonTemporal, MinAlign(Alignment, 4U),
Hal Finkelcc39b672014-07-24 12:16:19 +0000696 AAInfo);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000697
Owen Anderson9f944592009-08-11 20:47:22 +0000698 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000699 }
700 }
701 }
Craig Topperc0196b12014-04-14 00:51:57 +0000702 return SDValue(nullptr, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000703}
704
Nadav Rotemde6fd282012-07-11 08:52:09 +0000705void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
706 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000707 SDValue Chain = ST->getChain();
708 SDValue Ptr = ST->getBasePtr();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000709 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000710
711 unsigned Alignment = ST->getAlignment();
712 bool isVolatile = ST->isVolatile();
713 bool isNonTemporal = ST->isNonTemporal();
Hal Finkelcc39b672014-07-24 12:16:19 +0000714 AAMDNodes AAInfo = ST->getAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000715
716 if (!ST->isTruncatingStore()) {
717 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
718 ReplaceNode(ST, OptStore);
719 return;
720 }
721
722 {
Nadav Rotem2a148662012-07-11 11:02:16 +0000723 SDValue Value = ST->getValue();
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000724 MVT VT = Value.getSimpleValueType();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000725 switch (TLI.getOperationAction(ISD::STORE, VT)) {
726 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000727 case TargetLowering::Legal: {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000728 // If this is an unaligned store and the target doesn't support it,
729 // expand it.
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000730 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000731 unsigned Align = ST->getAlignment();
732 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000733 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000734 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000735 if (Align < ABIAlignment)
Sanjay Patelb06441a2014-11-21 18:05:59 +0000736 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000737 }
738 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000739 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000740 case TargetLowering::Custom: {
741 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
Hal Finkelcec70132015-02-24 12:59:47 +0000742 if (Res && Res != SDValue(Node, 0))
Nadav Rotem2a148662012-07-11 11:02:16 +0000743 ReplaceNode(SDValue(Node, 0), Res);
744 return;
745 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000746 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000747 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellardb785bd72012-12-10 21:41:54 +0000748 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
749 "Can only promote stores to same size type");
750 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000751 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000752 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000753 ST->getPointerInfo(), isVolatile,
Hal Finkelcc39b672014-07-24 12:16:19 +0000754 isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000755 ReplaceNode(SDValue(Node, 0), Result);
756 break;
757 }
758 }
759 return;
760 }
761 } else {
Nadav Rotem2a148662012-07-11 11:02:16 +0000762 SDValue Value = ST->getValue();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000763
764 EVT StVT = ST->getMemoryVT();
765 unsigned StWidth = StVT.getSizeInBits();
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000766 auto &DL = DAG.getDataLayout();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000767
768 if (StWidth != StVT.getStoreSizeInBits()) {
769 // Promote to a byte-sized store with upper bits zero if not
770 // storing an integral number of bytes. For example, promote
771 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
772 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
773 StVT.getStoreSizeInBits());
Nadav Rotem2a148662012-07-11 11:02:16 +0000774 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000775 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000776 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Sanjay Patelb06441a2014-11-21 18:05:59 +0000777 NVT, isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000778 ReplaceNode(SDValue(Node, 0), Result);
779 } else if (StWidth & (StWidth - 1)) {
780 // If not storing a power-of-2 number of bits, expand as two stores.
781 assert(!StVT.isVector() && "Unsupported truncstore!");
782 unsigned RoundWidth = 1 << Log2_32(StWidth);
783 assert(RoundWidth < StWidth);
784 unsigned ExtraWidth = StWidth - RoundWidth;
785 assert(ExtraWidth < RoundWidth);
786 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
787 "Store size not an integral number of bytes!");
788 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
789 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
790 SDValue Lo, Hi;
791 unsigned IncrementSize;
792
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000793 if (DL.isLittleEndian()) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000794 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
795 // Store the bottom RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000796 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemde6fd282012-07-11 08:52:09 +0000797 RoundVT,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000798 isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000799 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000800
801 // Store the remaining ExtraWidth bits.
802 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000803 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000804 DAG.getConstant(IncrementSize, dl,
805 Ptr.getValueType()));
Mehdi Amini9639d652015-07-09 02:09:20 +0000806 Hi = DAG.getNode(
807 ISD::SRL, dl, Value.getValueType(), Value,
808 DAG.getConstant(RoundWidth, dl,
809 TLI.getShiftAmountTy(Value.getValueType(), DL)));
Nadav Rotem2a148662012-07-11 11:02:16 +0000810 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000811 ST->getPointerInfo().getWithOffset(IncrementSize),
812 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000813 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000814 } else {
815 // Big endian - avoid unaligned stores.
816 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
817 // Store the top RoundWidth bits.
Mehdi Amini9639d652015-07-09 02:09:20 +0000818 Hi = DAG.getNode(
819 ISD::SRL, dl, Value.getValueType(), Value,
820 DAG.getConstant(ExtraWidth, dl,
821 TLI.getShiftAmountTy(Value.getValueType(), DL)));
Nadav Rotem2a148662012-07-11 11:02:16 +0000822 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000823 RoundVT, isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000824 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000825
826 // Store the remaining ExtraWidth bits.
827 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000828 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000829 DAG.getConstant(IncrementSize, dl,
830 Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000831 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000832 ST->getPointerInfo().getWithOffset(IncrementSize),
833 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000834 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000835 }
836
837 // The order of the stores doesn't matter.
838 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
839 ReplaceNode(SDValue(Node, 0), Result);
840 } else {
Patrik Hagglundd7cdcf82012-12-19 08:28:51 +0000841 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
842 StVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000843 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000844 case TargetLowering::Legal: {
845 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000846 unsigned Align = ST->getAlignment();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000847 // If this is an unaligned store and the target doesn't support it,
848 // expand it.
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000849 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000850 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000851 unsigned ABIAlignment = DL.getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000852 if (Align < ABIAlignment)
Nadav Rotemde6fd282012-07-11 08:52:09 +0000853 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
854 }
855 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000856 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000857 case TargetLowering::Custom: {
858 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
Hal Finkelcec70132015-02-24 12:59:47 +0000859 if (Res && Res != SDValue(Node, 0))
Nadav Rotem2a148662012-07-11 11:02:16 +0000860 ReplaceNode(SDValue(Node, 0), Res);
861 return;
862 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000863 case TargetLowering::Expand:
864 assert(!StVT.isVector() &&
865 "Vector Stores are handled in LegalizeVectorOps");
866
867 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem2a148662012-07-11 11:02:16 +0000868 assert(TLI.isTypeLegal(StVT) &&
869 "Do not know how to expand this store!");
870 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000871 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000872 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000873 isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000874 ReplaceNode(SDValue(Node, 0), Result);
875 break;
876 }
877 }
878 }
879}
880
881void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
882 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000883 SDValue Chain = LD->getChain(); // The chain.
884 SDValue Ptr = LD->getBasePtr(); // The base pointer.
885 SDValue Value; // The value returned by the load op.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000886 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000887
888 ISD::LoadExtType ExtType = LD->getExtensionType();
889 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000890 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem2a148662012-07-11 11:02:16 +0000891 SDValue RVal = SDValue(Node, 0);
892 SDValue RChain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000893
894 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
895 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000896 case TargetLowering::Legal: {
897 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000898 unsigned Align = LD->getAlignment();
Evan Chengc5735992012-09-18 01:34:40 +0000899 // If this is an unaligned load and the target doesn't support it,
900 // expand it.
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000901 if (!TLI.allowsMisalignedMemoryAccesses(LD->getMemoryVT(), AS, Align)) {
Evan Chengc5735992012-09-18 01:34:40 +0000902 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000903 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000904 if (Align < ABIAlignment){
Evan Chengc5735992012-09-18 01:34:40 +0000905 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
906 }
907 }
908 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000909 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000910 case TargetLowering::Custom: {
Evan Chengc5735992012-09-18 01:34:40 +0000911 SDValue Res = TLI.LowerOperation(RVal, DAG);
912 if (Res.getNode()) {
913 RVal = Res;
914 RChain = Res.getValue(1);
915 }
916 break;
Nadav Rotem2a148662012-07-11 11:02:16 +0000917 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000918 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000919 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellard30e2aa52012-12-10 21:41:58 +0000920 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
921 "Can only promote loads to same size type");
Nadav Rotemde6fd282012-07-11 08:52:09 +0000922
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000923 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
Nadav Rotem2a148662012-07-11 11:02:16 +0000924 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
925 RChain = Res.getValue(1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000926 break;
927 }
928 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000929 if (RChain.getNode() != Node) {
930 assert(RVal.getNode() != Node && "Load must be completely replaced");
931 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
932 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Chandler Carruth411fb402014-07-26 05:49:40 +0000933 if (UpdatedNodes) {
934 UpdatedNodes->insert(RVal.getNode());
935 UpdatedNodes->insert(RChain.getNode());
936 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000937 ReplacedNode(Node);
938 }
939 return;
940 }
941
942 EVT SrcVT = LD->getMemoryVT();
943 unsigned SrcWidth = SrcVT.getSizeInBits();
944 unsigned Alignment = LD->getAlignment();
945 bool isVolatile = LD->isVolatile();
946 bool isNonTemporal = LD->isNonTemporal();
Louis Gerbarg67474e32014-07-31 21:45:05 +0000947 bool isInvariant = LD->isInvariant();
Hal Finkelcc39b672014-07-24 12:16:19 +0000948 AAMDNodes AAInfo = LD->getAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000949
950 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
951 // Some targets pretend to have an i1 loading operation, and actually
952 // load an i8. This trick is correct for ZEXTLOAD because the top 7
953 // bits are guaranteed to be zero; it helps the optimizers understand
954 // that these bits are zero. It is also useful for EXTLOAD, since it
955 // tells the optimizers that those bits are undefined. It would be
956 // nice to have an effective generic way of getting these benefits...
957 // Until such a way is found, don't insist on promoting i1 here.
958 (SrcVT != MVT::i1 ||
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000959 TLI.getLoadExtAction(ExtType, Node->getValueType(0), MVT::i1) ==
960 TargetLowering::Promote)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000961 // Promote to a byte-sized load if not loading an integral number of
962 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
963 unsigned NewWidth = SrcVT.getStoreSizeInBits();
964 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
965 SDValue Ch;
966
967 // The extra bits are guaranteed to be zero, since we stored them that
968 // way. A zext load from NVT thus automatically gives zext from SrcVT.
969
970 ISD::LoadExtType NewExtType =
971 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
972
973 SDValue Result =
974 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +0000975 Chain, Ptr, LD->getPointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000976 NVT, isVolatile, isNonTemporal, isInvariant, Alignment,
977 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000978
979 Ch = Result.getValue(1); // The chain.
980
981 if (ExtType == ISD::SEXTLOAD)
982 // Having the top bits zero doesn't help when sign extending.
983 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
984 Result.getValueType(),
985 Result, DAG.getValueType(SrcVT));
986 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
987 // All the top bits are guaranteed to be zero - inform the optimizers.
988 Result = DAG.getNode(ISD::AssertZext, dl,
989 Result.getValueType(), Result,
990 DAG.getValueType(SrcVT));
991
Nadav Rotem2a148662012-07-11 11:02:16 +0000992 Value = Result;
993 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +0000994 } else if (SrcWidth & (SrcWidth - 1)) {
995 // If not loading a power-of-2 number of bits, expand as two loads.
996 assert(!SrcVT.isVector() && "Unsupported extload!");
997 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
998 assert(RoundWidth < SrcWidth);
999 unsigned ExtraWidth = SrcWidth - RoundWidth;
1000 assert(ExtraWidth < RoundWidth);
1001 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
1002 "Load size not an integral number of bytes!");
1003 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
1004 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
1005 SDValue Lo, Hi, Ch;
1006 unsigned IncrementSize;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001007 auto &DL = DAG.getDataLayout();
Nadav Rotemde6fd282012-07-11 08:52:09 +00001008
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001009 if (DL.isLittleEndian()) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001010 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1011 // Load the bottom RoundWidth bits.
1012 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +00001013 Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001014 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001015 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001016
1017 // Load the remaining ExtraWidth bits.
1018 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001019 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001020 DAG.getConstant(IncrementSize, dl,
1021 Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +00001022 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001023 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001024 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001025 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001026
1027 // Build a factor node to remember that this load is independent of
1028 // the other one.
1029 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1030 Hi.getValue(1));
1031
1032 // Move the top bits to the right place.
Mehdi Amini9639d652015-07-09 02:09:20 +00001033 Hi = DAG.getNode(
1034 ISD::SHL, dl, Hi.getValueType(), Hi,
1035 DAG.getConstant(RoundWidth, dl,
1036 TLI.getShiftAmountTy(Hi.getValueType(), DL)));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001037
1038 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001039 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001040 } else {
1041 // Big endian - avoid unaligned loads.
1042 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1043 // Load the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +00001044 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001045 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001046 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001047
1048 // Load the remaining ExtraWidth bits.
1049 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001050 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001051 DAG.getConstant(IncrementSize, dl,
1052 Ptr.getValueType()));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001053 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem2a148662012-07-11 11:02:16 +00001054 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001055 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001056 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001057 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001058
1059 // Build a factor node to remember that this load is independent of
1060 // the other one.
1061 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1062 Hi.getValue(1));
1063
1064 // Move the top bits to the right place.
Mehdi Amini9639d652015-07-09 02:09:20 +00001065 Hi = DAG.getNode(
1066 ISD::SHL, dl, Hi.getValueType(), Hi,
1067 DAG.getConstant(ExtraWidth, dl,
1068 TLI.getShiftAmountTy(Hi.getValueType(), DL)));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001069
1070 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001071 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001072 }
1073
Nadav Rotem2a148662012-07-11 11:02:16 +00001074 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001075 } else {
1076 bool isCustom = false;
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +00001077 switch (TLI.getLoadExtAction(ExtType, Node->getValueType(0),
1078 SrcVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001079 default: llvm_unreachable("This action is not supported yet!");
1080 case TargetLowering::Custom:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001081 isCustom = true;
1082 // FALLTHROUGH
Nadav Rotem2a148662012-07-11 11:02:16 +00001083 case TargetLowering::Legal: {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001084 Value = SDValue(Node, 0);
1085 Chain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001086
Matt Arsenault95b714c2014-03-11 00:01:25 +00001087 if (isCustom) {
1088 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1089 if (Res.getNode()) {
1090 Value = Res;
1091 Chain = Res.getValue(1);
1092 }
1093 } else {
1094 // If this is an unaligned load and the target doesn't support
1095 // it, expand it.
1096 EVT MemVT = LD->getMemoryVT();
1097 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001098 unsigned Align = LD->getAlignment();
1099 if (!TLI.allowsMisalignedMemoryAccesses(MemVT, AS, Align)) {
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001100 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001101 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001102 if (Align < ABIAlignment){
Sanjay Patelb06441a2014-11-21 18:05:59 +00001103 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, Value, Chain);
Matt Arsenault95b714c2014-03-11 00:01:25 +00001104 }
1105 }
1106 }
1107 break;
Nadav Rotem2a148662012-07-11 11:02:16 +00001108 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001109 case TargetLowering::Expand:
Matt Arsenaultbd223422015-01-14 01:35:17 +00001110 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, Node->getValueType(0), SrcVT)) {
1111 // If the source type is not legal, see if there is a legal extload to
1112 // an intermediate type that we can then extend further.
1113 EVT LoadVT = TLI.getRegisterType(SrcVT.getSimpleVT());
1114 if (TLI.isTypeLegal(SrcVT) || // Same as SrcVT == LoadVT?
1115 TLI.isLoadExtLegal(ExtType, LoadVT, SrcVT)) {
1116 // If we are loading a legal type, this is a non-extload followed by a
1117 // full extend.
1118 ISD::LoadExtType MidExtType =
1119 (LoadVT == SrcVT) ? ISD::NON_EXTLOAD : ExtType;
1120
1121 SDValue Load = DAG.getExtLoad(MidExtType, dl, LoadVT, Chain, Ptr,
1122 SrcVT, LD->getMemOperand());
1123 unsigned ExtendOp =
1124 ISD::getExtForLoadExtType(SrcVT.isFloatingPoint(), ExtType);
1125 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1126 Chain = Load.getValue(1);
Matt Arsenault95b714c2014-03-11 00:01:25 +00001127 break;
Matt Arsenault95b714c2014-03-11 00:01:25 +00001128 }
Matt Arsenault95b714c2014-03-11 00:01:25 +00001129 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001130
Matt Arsenault95b714c2014-03-11 00:01:25 +00001131 assert(!SrcVT.isVector() &&
1132 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemde6fd282012-07-11 08:52:09 +00001133
Matt Arsenault95b714c2014-03-11 00:01:25 +00001134 // FIXME: This does not work for vectors on most targets. Sign-
1135 // and zero-extend operations are currently folded into extending
1136 // loads, whether they are legal or not, and then we end up here
1137 // without any support for legalizing them.
1138 assert(ExtType != ISD::EXTLOAD &&
1139 "EXTLOAD should always be supported!");
1140 // Turn the unsupported load into an EXTLOAD followed by an
1141 // explicit zero/sign extend inreg.
1142 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl,
1143 Node->getValueType(0),
1144 Chain, Ptr, SrcVT,
1145 LD->getMemOperand());
1146 SDValue ValRes;
1147 if (ExtType == ISD::SEXTLOAD)
1148 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1149 Result.getValueType(),
1150 Result, DAG.getValueType(SrcVT));
1151 else
Sanjay Patelb06441a2014-11-21 18:05:59 +00001152 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Matt Arsenault95b714c2014-03-11 00:01:25 +00001153 Value = ValRes;
1154 Chain = Result.getValue(1);
1155 break;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001156 }
1157 }
1158
1159 // Since loads produce two values, make sure to remember that we legalized
1160 // both of them.
Nadav Rotem2a148662012-07-11 11:02:16 +00001161 if (Chain.getNode() != Node) {
1162 assert(Value.getNode() != Node && "Load must be completely replaced");
1163 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1164 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00001165 if (UpdatedNodes) {
1166 UpdatedNodes->insert(Value.getNode());
1167 UpdatedNodes->insert(Chain.getNode());
1168 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001169 ReplacedNode(Node);
1170 }
1171}
1172
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001173/// Return a legal replacement for the given operation, with all legal operands.
Dan Gohman198b7ff2011-11-03 21:49:52 +00001174void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
Chandler Carruthb1432742014-07-28 17:55:07 +00001175 DEBUG(dbgs() << "\nLegalizing: "; Node->dump(&DAG));
1176
Dan Gohman198b7ff2011-11-03 21:49:52 +00001177 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1178 return;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001179
Pete Cooperaf61ac72015-06-26 19:23:20 +00001180#ifndef NDEBUG
Eli Friedman5e0d1502009-05-24 02:46:31 +00001181 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001182 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1183 TargetLowering::TypeLegal &&
Eli Friedman5e0d1502009-05-24 02:46:31 +00001184 "Unexpected illegal type!");
1185
Pete Cooper8fc121d2015-06-26 19:08:33 +00001186 for (const SDValue &Op : Node->op_values())
Dan Gohmane49e7422011-07-15 22:39:09 +00001187 assert((TLI.getTypeAction(*DAG.getContext(),
Pete Cooper8fc121d2015-06-26 19:08:33 +00001188 Op.getValueType()) == TargetLowering::TypeLegal ||
1189 Op.getOpcode() == ISD::TargetConstant) &&
1190 "Unexpected illegal type!");
Pete Cooperaf61ac72015-06-26 19:23:20 +00001191#endif
Chris Lattnerdc750592005-01-07 07:47:09 +00001192
Eli Friedman21d349b2009-05-27 01:25:56 +00001193 // Figure out the correct action; the way to query this varies by opcode
Bill Wendlingfb4ee9b2011-01-26 22:21:35 +00001194 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman21d349b2009-05-27 01:25:56 +00001195 bool SimpleFinishLegalizing = true;
Chris Lattnerdc750592005-01-07 07:47:09 +00001196 switch (Node->getOpcode()) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001197 case ISD::INTRINSIC_W_CHAIN:
1198 case ISD::INTRINSIC_WO_CHAIN:
1199 case ISD::INTRINSIC_VOID:
Eli Friedman21d349b2009-05-27 01:25:56 +00001200 case ISD::STACKSAVE:
Owen Anderson9f944592009-08-11 20:47:22 +00001201 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman21d349b2009-05-27 01:25:56 +00001202 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00001203 case ISD::VAARG:
1204 Action = TLI.getOperationAction(Node->getOpcode(),
1205 Node->getValueType(0));
1206 if (Action != TargetLowering::Promote)
1207 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1208 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00001209 case ISD::FP_TO_FP16:
Eli Friedman21d349b2009-05-27 01:25:56 +00001210 case ISD::SINT_TO_FP:
1211 case ISD::UINT_TO_FP:
1212 case ISD::EXTRACT_VECTOR_ELT:
1213 Action = TLI.getOperationAction(Node->getOpcode(),
1214 Node->getOperand(0).getValueType());
1215 break;
1216 case ISD::FP_ROUND_INREG:
1217 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001218 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00001219 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1220 break;
1221 }
Eli Friedman342e8df2011-08-24 20:50:09 +00001222 case ISD::ATOMIC_STORE: {
1223 Action = TLI.getOperationAction(Node->getOpcode(),
1224 Node->getOperand(2).getValueType());
1225 break;
1226 }
Eli Friedmane1bc3792009-05-28 03:06:16 +00001227 case ISD::SELECT_CC:
1228 case ISD::SETCC:
1229 case ISD::BR_CC: {
1230 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1231 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1232 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001233 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedmane1bc3792009-05-28 03:06:16 +00001234 ISD::CondCode CCCode =
1235 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1236 Action = TLI.getCondCodeAction(CCCode, OpVT);
1237 if (Action == TargetLowering::Legal) {
1238 if (Node->getOpcode() == ISD::SELECT_CC)
1239 Action = TLI.getOperationAction(Node->getOpcode(),
1240 Node->getValueType(0));
1241 else
1242 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1243 }
1244 break;
1245 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001246 case ISD::LOAD:
1247 case ISD::STORE:
Eli Friedman5df72022009-05-28 03:56:57 +00001248 // FIXME: Model these properly. LOAD and STORE are complicated, and
1249 // STORE expects the unlegalized operand in some cases.
1250 SimpleFinishLegalizing = false;
1251 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001252 case ISD::CALLSEQ_START:
1253 case ISD::CALLSEQ_END:
Eli Friedman5df72022009-05-28 03:56:57 +00001254 // FIXME: This shouldn't be necessary. These nodes have special properties
1255 // dealing with the recursive nature of legalization. Removing this
1256 // special case should be done as part of making LegalizeDAG non-recursive.
1257 SimpleFinishLegalizing = false;
1258 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001259 case ISD::EXTRACT_ELEMENT:
1260 case ISD::FLT_ROUNDS_:
Eli Friedman21d349b2009-05-27 01:25:56 +00001261 case ISD::FPOWI:
1262 case ISD::MERGE_VALUES:
1263 case ISD::EH_RETURN:
1264 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00001265 case ISD::EH_SJLJ_SETJMP:
1266 case ISD::EH_SJLJ_LONGJMP:
Matthias Braun3cd00c12015-07-16 22:34:16 +00001267 case ISD::EH_SJLJ_SETUP_DISPATCH:
Eli Friedmand6f28342009-05-27 03:33:44 +00001268 // These operations lie about being legal: when they claim to be legal,
1269 // they should actually be expanded.
Eli Friedman21d349b2009-05-27 01:25:56 +00001270 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1271 if (Action == TargetLowering::Legal)
1272 Action = TargetLowering::Expand;
1273 break;
Duncan Sandsa0984362011-09-06 13:37:06 +00001274 case ISD::INIT_TRAMPOLINE:
1275 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman21d349b2009-05-27 01:25:56 +00001276 case ISD::FRAMEADDR:
1277 case ISD::RETURNADDR:
Eli Friedman2892d822009-05-27 12:20:41 +00001278 // These operations lie about being legal: when they claim to be legal,
1279 // they should actually be custom-lowered.
1280 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1281 if (Action == TargetLowering::Legal)
1282 Action = TargetLowering::Custom;
Eli Friedman21d349b2009-05-27 01:25:56 +00001283 break;
Renato Golinc7aea402014-05-06 16:51:25 +00001284 case ISD::READ_REGISTER:
1285 case ISD::WRITE_REGISTER:
1286 // Named register is legal in the DAG, but blocked by register name
1287 // selection if not implemented by target (to chose the correct register)
1288 // They'll be converted to Copy(To/From)Reg.
1289 Action = TargetLowering::Legal;
1290 break;
Shuxin Yangcdde0592012-10-19 20:11:16 +00001291 case ISD::DEBUGTRAP:
1292 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1293 if (Action == TargetLowering::Expand) {
1294 // replace ISD::DEBUGTRAP with ISD::TRAP
1295 SDValue NewVal;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001296 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yang1479fcd2012-10-19 23:00:20 +00001297 Node->getOperand(0));
Shuxin Yangcdde0592012-10-19 20:11:16 +00001298 ReplaceNode(Node, NewVal.getNode());
1299 LegalizeOp(NewVal.getNode());
1300 return;
1301 }
1302 break;
1303
Chris Lattnerdc750592005-01-07 07:47:09 +00001304 default:
Chris Lattner3eb86932005-05-14 06:34:48 +00001305 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001306 Action = TargetLowering::Legal;
1307 } else {
1308 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattner3eb86932005-05-14 06:34:48 +00001309 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001310 break;
1311 }
1312
1313 if (SimpleFinishLegalizing) {
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001314 SDNode *NewNode = Node;
Eli Friedman21d349b2009-05-27 01:25:56 +00001315 switch (Node->getOpcode()) {
1316 default: break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001317 case ISD::SHL:
1318 case ISD::SRL:
1319 case ISD::SRA:
1320 case ISD::ROTL:
1321 case ISD::ROTR:
1322 // Legalizing shifts/rotates requires adjusting the shift amount
1323 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001324 if (!Node->getOperand(1).getValueType().isVector()) {
1325 SDValue SAO =
1326 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1327 Node->getOperand(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001328 HandleSDNode Handle(SAO);
1329 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001330 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1331 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001332 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001333 break;
Dan Gohman4906f732009-08-18 23:36:17 +00001334 case ISD::SRL_PARTS:
1335 case ISD::SRA_PARTS:
1336 case ISD::SHL_PARTS:
1337 // Legalizing shifts/rotates requires adjusting the shift amount
1338 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001339 if (!Node->getOperand(2).getValueType().isVector()) {
1340 SDValue SAO =
1341 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1342 Node->getOperand(2));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001343 HandleSDNode Handle(SAO);
1344 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001345 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1346 Node->getOperand(1),
1347 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001348 }
Dan Gohman2fa67c92009-08-18 23:52:48 +00001349 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001350 }
1351
Dan Gohman198b7ff2011-11-03 21:49:52 +00001352 if (NewNode != Node) {
Chandler Carruth411fb402014-07-26 05:49:40 +00001353 ReplaceNode(Node, NewNode);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001354 Node = NewNode;
1355 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001356 switch (Action) {
1357 case TargetLowering::Legal:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001358 return;
Nadav Rotem2a148662012-07-11 11:02:16 +00001359 case TargetLowering::Custom: {
Eli Friedman21d349b2009-05-27 01:25:56 +00001360 // FIXME: The handling for custom lowering with multiple results is
1361 // a complete mess.
Nadav Rotem2a148662012-07-11 11:02:16 +00001362 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1363 if (Res.getNode()) {
Chandler Carruth98655fa2014-07-26 05:52:51 +00001364 if (!(Res.getNode() != Node || Res.getResNo() != 0))
1365 return;
1366
1367 if (Node->getNumValues() == 1) {
1368 // We can just directly replace this node with the lowered value.
1369 ReplaceNode(SDValue(Node, 0), Res);
1370 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001371 }
Chandler Carruth98655fa2014-07-26 05:52:51 +00001372
1373 SmallVector<SDValue, 8> ResultVals;
1374 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1375 ResultVals.push_back(Res.getValue(i));
1376 ReplaceNode(Node, ResultVals.data());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001377 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001378 }
Nadav Rotem2a148662012-07-11 11:02:16 +00001379 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001380 // FALL THROUGH
1381 case TargetLowering::Expand:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001382 ExpandNode(Node);
1383 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001384 case TargetLowering::Promote:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001385 PromoteNode(Node);
1386 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001387 }
1388 }
1389
1390 switch (Node->getOpcode()) {
1391 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001392#ifndef NDEBUG
David Greeneae4f2662010-01-05 01:24:53 +00001393 dbgs() << "NODE: ";
1394 Node->dump( &DAG);
1395 dbgs() << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001396#endif
Craig Topperee4dab52012-02-05 08:31:47 +00001397 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendlingf359fed2007-11-13 00:44:25 +00001398
Dan Gohman198b7ff2011-11-03 21:49:52 +00001399 case ISD::CALLSEQ_START:
Dan Gohman9b9c9702011-10-29 00:41:52 +00001400 case ISD::CALLSEQ_END:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001401 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001402 case ISD::LOAD: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001403 return LegalizeLoadOps(Node);
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001404 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001405 case ISD::STORE: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001406 return LegalizeStoreOps(Node);
Evan Cheng31d15fa2005-12-23 07:29:34 +00001407 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001408 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001409}
1410
Eli Friedman40afdb62009-05-23 22:37:25 +00001411SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1412 SDValue Vec = Op.getOperand(0);
1413 SDValue Idx = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001414 SDLoc dl(Op);
Hal Finkel90adf0f2014-03-30 15:10:18 +00001415
1416 // Before we generate a new store to a temporary stack slot, see if there is
1417 // already one that we can use. There often is because when we scalarize
1418 // vector operations (using SelectionDAG::UnrollVectorOp for example) a whole
1419 // series of EXTRACT_VECTOR_ELT nodes are generated, one for each element in
1420 // the vector. If all are expanded here, we don't want one store per vector
1421 // element.
1422 SDValue StackPtr, Ch;
1423 for (SDNode::use_iterator UI = Vec.getNode()->use_begin(),
1424 UE = Vec.getNode()->use_end(); UI != UE; ++UI) {
1425 SDNode *User = *UI;
1426 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(User)) {
1427 if (ST->isIndexed() || ST->isTruncatingStore() ||
1428 ST->getValue() != Vec)
1429 continue;
1430
1431 // Make sure that nothing else could have stored into the destination of
1432 // this store.
1433 if (!ST->getChain().reachesChainWithoutSideEffects(DAG.getEntryNode()))
1434 continue;
1435
1436 StackPtr = ST->getBasePtr();
1437 Ch = SDValue(ST, 0);
1438 break;
1439 }
1440 }
1441
1442 if (!Ch.getNode()) {
1443 // Store the value to a temporary stack slot, then LOAD the returned part.
1444 StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1445 Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1446 MachinePointerInfo(), false, false, 0);
1447 }
Eli Friedman40afdb62009-05-23 22:37:25 +00001448
1449 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +00001450 unsigned EltSize =
1451 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman40afdb62009-05-23 22:37:25 +00001452 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001453 DAG.getConstant(EltSize, SDLoc(Vec), Idx.getValueType()));
Eli Friedman40afdb62009-05-23 22:37:25 +00001454
Mehdi Amini44ede332015-07-09 02:09:04 +00001455 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy(DAG.getDataLayout()));
Eli Friedman40afdb62009-05-23 22:37:25 +00001456 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1457
Ahmed Bougachac8097612015-03-09 22:51:05 +00001458 SDValue NewLoad;
1459
Eli Friedman2b77eef2009-07-09 22:01:03 +00001460 if (Op.getValueType().isVector())
Ahmed Bougachac8097612015-03-09 22:51:05 +00001461 NewLoad = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,
1462 MachinePointerInfo(), false, false, false, 0);
1463 else
1464 NewLoad = DAG.getExtLoad(
1465 ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr, MachinePointerInfo(),
1466 Vec.getValueType().getVectorElementType(), false, false, false, 0);
1467
1468 // Replace the chain going out of the store, by the one out of the load.
1469 DAG.ReplaceAllUsesOfValueWith(Ch, SDValue(NewLoad.getNode(), 1));
1470
1471 // We introduced a cycle though, so update the loads operands, making sure
1472 // to use the original store's chain as an incoming chain.
1473 SmallVector<SDValue, 6> NewLoadOperands(NewLoad->op_begin(),
1474 NewLoad->op_end());
1475 NewLoadOperands[0] = Ch;
1476 NewLoad =
1477 SDValue(DAG.UpdateNodeOperands(NewLoad.getNode(), NewLoadOperands), 0);
1478 return NewLoad;
Eli Friedman40afdb62009-05-23 22:37:25 +00001479}
1480
David Greenebab5e6e2011-01-26 19:13:22 +00001481SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1482 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1483
1484 SDValue Vec = Op.getOperand(0);
1485 SDValue Part = Op.getOperand(1);
1486 SDValue Idx = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001487 SDLoc dl(Op);
David Greenebab5e6e2011-01-26 19:13:22 +00001488
1489 // Store the value to a temporary stack slot, then LOAD the returned part.
1490
1491 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1492 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1493 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1494
1495 // First store the whole vector.
1496 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1497 false, false, 0);
1498
1499 // Then store the inserted part.
1500
1501 // Add the offset to the index.
1502 unsigned EltSize =
1503 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1504
1505 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001506 DAG.getConstant(EltSize, SDLoc(Vec), Idx.getValueType()));
Mehdi Amini44ede332015-07-09 02:09:04 +00001507 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy(DAG.getDataLayout()));
David Greenebab5e6e2011-01-26 19:13:22 +00001508
1509 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1510 StackPtr);
1511
1512 // Store the subvector.
Owen Andersonb5a25992014-11-18 20:50:19 +00001513 Ch = DAG.getStore(Ch, dl, Part, SubStackPtr,
David Greenebab5e6e2011-01-26 19:13:22 +00001514 MachinePointerInfo(), false, false, 0);
1515
1516 // Finally, load the updated vector.
1517 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001518 false, false, false, 0);
David Greenebab5e6e2011-01-26 19:13:22 +00001519}
1520
Eli Friedmanaee3f622009-06-06 07:04:42 +00001521SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1522 // We can't handle this case efficiently. Allocate a sufficiently
1523 // aligned object on the stack, store each element into it, then load
1524 // the result as a vector.
1525 // Create the stack frame object.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001526 EVT VT = Node->getValueType(0);
Dale Johannesenb91eba32009-11-21 00:53:23 +00001527 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001528 SDLoc dl(Node);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001529 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001530 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattner1ffcf522010-09-21 16:36:31 +00001531 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001532
1533 // Emit a store of each element to the stack slot.
1534 SmallVector<SDValue, 8> Stores;
Dan Gohman9b80f862010-02-25 15:20:39 +00001535 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedmanaee3f622009-06-06 07:04:42 +00001536 // Store (in the right endianness) the elements to memory.
1537 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1538 // Ignore undef elements.
1539 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1540
1541 unsigned Offset = TypeByteSize*i;
1542
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001543 SDValue Idx = DAG.getConstant(Offset, dl, FIPtr.getValueType());
Eli Friedmanaee3f622009-06-06 07:04:42 +00001544 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1545
Dan Gohman2a8e3772010-02-25 20:30:49 +00001546 // If the destination vector element type is narrower than the source
1547 // element type, only store the bits necessary.
1548 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesenb91eba32009-11-21 00:53:23 +00001549 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001550 Node->getOperand(i), Idx,
1551 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001552 EltVT, false, false, 0));
Mon P Wang586d9972010-01-24 00:05:03 +00001553 } else
Jim Grosbach9b7755f2010-07-02 17:41:59 +00001554 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001555 Node->getOperand(i), Idx,
1556 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001557 false, false, 0));
Eli Friedmanaee3f622009-06-06 07:04:42 +00001558 }
1559
1560 SDValue StoreChain;
1561 if (!Stores.empty()) // Not all undef elements?
Craig Topper48d114b2014-04-26 18:35:24 +00001562 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001563 else
1564 StoreChain = DAG.getEntryNode();
1565
1566 // Result is a load from the stack slot.
Stephen Lincfe7f352013-07-08 00:37:03 +00001567 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001568 false, false, false, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001569}
1570
Matthias Braun75e668e2015-07-14 02:09:57 +00001571SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
1572 SDLoc dl(Node);
1573 SDValue Tmp1 = Node->getOperand(0);
1574 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands4c55f762010-03-12 11:45:06 +00001575
Matthias Braun75e668e2015-07-14 02:09:57 +00001576 // Get the sign bit of the RHS. First obtain a value that has the same
1577 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
1578 SDValue SignBit;
1579 EVT FloatVT = Tmp2.getValueType();
1580 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohmane49e7422011-07-15 22:39:09 +00001581 if (TLI.isTypeLegal(IVT)) {
Matthias Braun75e668e2015-07-14 02:09:57 +00001582 // Convert to an integer with the same sign bit.
1583 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
1584 } else {
1585 auto &DL = DAG.getDataLayout();
1586 // Store the float to memory, then load the sign part out as an integer.
1587 MVT LoadTy = TLI.getPointerTy(DL);
1588 // First create a temporary that is aligned for both the load and store.
1589 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1590 // Then store the float to it.
1591 SDValue Ch =
1592 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
1593 false, false, 0);
1594 if (DL.isBigEndian()) {
1595 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1596 // Load out a legal integer with the same sign bit as the float.
1597 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
1598 false, false, false, 0);
1599 } else { // Little endian
1600 SDValue LoadPtr = StackPtr;
1601 // The float may be wider than the integer we are going to load. Advance
1602 // the pointer so that the loaded integer will contain the sign bit.
1603 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1604 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1605 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(), LoadPtr,
1606 DAG.getConstant(ByteOffset, dl,
1607 LoadPtr.getValueType()));
1608 // Load a legal integer containing the sign bit.
1609 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
1610 false, false, false, 0);
1611 // Move the sign bit to the top bit of the loaded integer.
1612 unsigned BitShift = LoadTy.getSizeInBits() -
1613 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1614 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1615 if (BitShift)
1616 SignBit = DAG.getNode(
1617 ISD::SHL, dl, LoadTy, SignBit,
1618 DAG.getConstant(BitShift, dl,
1619 TLI.getShiftAmountTy(SignBit.getValueType(), DL)));
1620 }
Eli Friedman2892d822009-05-27 12:20:41 +00001621 }
Matthias Braun75e668e2015-07-14 02:09:57 +00001622 // Now get the sign bit proper, by seeing whether the value is negative.
1623 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
1624 SignBit,
1625 DAG.getConstant(0, dl, SignBit.getValueType()),
1626 ISD::SETLT);
1627 // Get the absolute value of the result.
1628 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1629 // Select between the nabs and abs value based on the sign bit of
1630 // the input.
1631 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
1632 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1633 AbsVal);
Eli Friedman2892d822009-05-27 12:20:41 +00001634}
1635
Eli Friedman2892d822009-05-27 12:20:41 +00001636void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1637 SmallVectorImpl<SDValue> &Results) {
1638 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1639 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1640 " not tell us which reg is the stack pointer!");
Andrew Trickef9de2a2013-05-25 02:42:55 +00001641 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001642 EVT VT = Node->getValueType(0);
Eli Friedman2892d822009-05-27 12:20:41 +00001643 SDValue Tmp1 = SDValue(Node, 0);
1644 SDValue Tmp2 = SDValue(Node, 1);
1645 SDValue Tmp3 = Node->getOperand(2);
1646 SDValue Chain = Tmp1.getOperand(0);
1647
1648 // Chain the dynamic stack allocation so that it doesn't modify the stack
1649 // pointer when other instructions are using the stack.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001650 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, dl, true), dl);
Eli Friedman2892d822009-05-27 12:20:41 +00001651
1652 SDValue Size = Tmp2.getOperand(1);
1653 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1654 Chain = SP.getValue(1);
1655 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Eric Christopherd9134482014-08-04 21:25:23 +00001656 unsigned StackAlign =
Eric Christopher85de8f92014-10-09 01:35:27 +00001657 DAG.getSubtarget().getFrameLowering()->getStackAlignment();
Eli Friedman2892d822009-05-27 12:20:41 +00001658 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Elena Demikhovsky82a46eb2013-10-14 07:26:51 +00001659 if (Align > StackAlign)
1660 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001661 DAG.getConstant(-(uint64_t)Align, dl, VT));
Eli Friedman2892d822009-05-27 12:20:41 +00001662 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1663
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001664 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, dl, true),
1665 DAG.getIntPtrConstant(0, dl, true), SDValue(), dl);
Eli Friedman2892d822009-05-27 12:20:41 +00001666
1667 Results.push_back(Tmp1);
1668 Results.push_back(Tmp2);
1669}
1670
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001671/// Legalize a SETCC with given LHS and RHS and condition code CC on the current
1672/// target.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001673///
Tom Stellard08690a12013-09-28 02:50:32 +00001674/// If the SETCC has been legalized using AND / OR, then the legalized node
Daniel Sandersedc071b2013-11-21 13:24:49 +00001675/// will be stored in LHS. RHS and CC will be set to SDValue(). NeedInvert
1676/// will be set to false.
1677///
Tom Stellard08690a12013-09-28 02:50:32 +00001678/// If the SETCC has been legalized by using getSetCCSwappedOperands(),
Daniel Sandersedc071b2013-11-21 13:24:49 +00001679/// then the values of LHS and RHS will be swapped, CC will be set to the
1680/// new condition, and NeedInvert will be set to false.
1681///
1682/// If the SETCC has been legalized using the inverse condcode, then LHS and
1683/// RHS will be unchanged, CC will set to the inverted condcode, and NeedInvert
1684/// will be set to true. The caller must invert the result of the SETCC with
Pete Cooper7fd1d722014-05-12 23:26:58 +00001685/// SelectionDAG::getLogicalNOT() or take equivalent action to swap the effect
1686/// of a true/false result.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001687///
Tom Stellard08690a12013-09-28 02:50:32 +00001688/// \returns true if the SetCC has been legalized, false if it hasn't.
1689bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001690 SDValue &LHS, SDValue &RHS,
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001691 SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +00001692 bool &NeedInvert,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001693 SDLoc dl) {
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001694 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001695 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
Daniel Sandersedc071b2013-11-21 13:24:49 +00001696 NeedInvert = false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001697 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topperee4dab52012-02-05 08:31:47 +00001698 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001699 case TargetLowering::Legal:
1700 // Nothing to do.
1701 break;
1702 case TargetLowering::Expand: {
Tom Stellardcd428182013-09-28 02:50:38 +00001703 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1704 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1705 std::swap(LHS, RHS);
1706 CC = DAG.getCondCode(InvCC);
1707 return true;
1708 }
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001709 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1710 unsigned Opc = 0;
1711 switch (CCCode) {
Craig Topperee4dab52012-02-05 08:31:47 +00001712 default: llvm_unreachable("Don't know how to expand this condition!");
Stephen Lincfe7f352013-07-08 00:37:03 +00001713 case ISD::SETO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001714 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1715 == TargetLowering::Legal
1716 && "If SETO is expanded, SETOEQ must be legal!");
1717 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
Stephen Lincfe7f352013-07-08 00:37:03 +00001718 case ISD::SETUO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001719 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1720 == TargetLowering::Legal
1721 && "If SETUO is expanded, SETUNE must be legal!");
1722 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1723 case ISD::SETOEQ:
1724 case ISD::SETOGT:
1725 case ISD::SETOGE:
1726 case ISD::SETOLT:
1727 case ISD::SETOLE:
Stephen Lincfe7f352013-07-08 00:37:03 +00001728 case ISD::SETONE:
1729 case ISD::SETUEQ:
1730 case ISD::SETUNE:
1731 case ISD::SETUGT:
1732 case ISD::SETUGE:
1733 case ISD::SETULT:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001734 case ISD::SETULE:
1735 // If we are floating point, assign and break, otherwise fall through.
1736 if (!OpVT.isInteger()) {
1737 // We can use the 4th bit to tell if we are the unordered
1738 // or ordered version of the opcode.
1739 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1740 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1741 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1742 break;
1743 }
1744 // Fallthrough if we are unsigned integer.
1745 case ISD::SETLE:
1746 case ISD::SETGT:
1747 case ISD::SETGE:
1748 case ISD::SETLT:
Tom Stellardcd428182013-09-28 02:50:38 +00001749 // We only support using the inverted operation, which is computed above
1750 // and not a different manner of supporting expanding these cases.
1751 llvm_unreachable("Don't know how to expand this condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00001752 case ISD::SETNE:
1753 case ISD::SETEQ:
1754 // Try inverting the result of the inverse condition.
1755 InvCC = CCCode == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ;
1756 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1757 CC = DAG.getCondCode(InvCC);
1758 NeedInvert = true;
1759 return true;
1760 }
1761 // If inverting the condition didn't work then we have no means to expand
1762 // the condition.
1763 llvm_unreachable("Don't know how to expand this condition!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001764 }
Stephen Lincfe7f352013-07-08 00:37:03 +00001765
Micah Villmow0242b9b2012-10-10 20:50:51 +00001766 SDValue SetCC1, SetCC2;
1767 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1768 // If we aren't the ordered or unorder operation,
1769 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1770 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1771 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1772 } else {
1773 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1774 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1775 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1776 }
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001777 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001778 RHS = SDValue();
1779 CC = SDValue();
Tom Stellard08690a12013-09-28 02:50:32 +00001780 return true;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001781 }
1782 }
Tom Stellard08690a12013-09-28 02:50:32 +00001783 return false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001784}
1785
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001786/// Emit a store/load combination to the stack. This stores
Chris Lattner87bc3e72008-01-16 07:45:30 +00001787/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1788/// a load from the stack slot to DestVT, extending it if needed.
1789/// The resultant code need not be legal.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001790SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001791 EVT SlotVT,
1792 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001793 SDLoc dl) {
Chris Lattner36e663d2005-12-23 00:16:34 +00001794 // Create the stack frame object.
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001795 unsigned SrcAlign = DAG.getDataLayout().getPrefTypeAlignment(
1796 SrcOp.getValueType().getTypeForEVT(*DAG.getContext()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001797 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001798
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001799 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1800 int SPFI = StackPtrFI->getIndex();
Chris Lattner6963c1f2010-09-21 17:42:31 +00001801 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001802
Duncan Sands13237ac2008-06-06 12:08:01 +00001803 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1804 unsigned SlotSize = SlotVT.getSizeInBits();
1805 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattner229907c2011-07-18 04:54:35 +00001806 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001807 unsigned DestAlign = DAG.getDataLayout().getPrefTypeAlignment(DestType);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001808
Chris Lattner87bc3e72008-01-16 07:45:30 +00001809 // Emit a store to the stack slot. Use a truncstore if the input value is
1810 // later than DestVT.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001811 SDValue Store;
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001812
Chris Lattner87bc3e72008-01-16 07:45:30 +00001813 if (SrcSize > SlotSize)
Dale Johannesena02e45c2009-02-02 22:12:50 +00001814 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001815 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001816 else {
1817 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesena02e45c2009-02-02 22:12:50 +00001818 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001819 PtrInfo, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001820 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001821
Chris Lattner36e663d2005-12-23 00:16:34 +00001822 // Result is a load from the stack slot.
Chris Lattner87bc3e72008-01-16 07:45:30 +00001823 if (SlotSize == DestSize)
Chris Lattner6963c1f2010-09-21 17:42:31 +00001824 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001825 false, false, false, DestAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001826
Chris Lattner87bc3e72008-01-16 07:45:30 +00001827 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastings81c43062011-02-16 16:23:55 +00001828 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001829 PtrInfo, SlotVT, false, false, false, DestAlign);
Chris Lattner36e663d2005-12-23 00:16:34 +00001830}
1831
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001832SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001833 SDLoc dl(Node);
Chris Lattner6be79822006-04-04 17:23:26 +00001834 // Create a vector sized/aligned stack slot, store the value to element #0,
1835 // then load the whole vector back out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001836 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman2d489b52008-02-06 22:27:42 +00001837
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001838 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1839 int SPFI = StackPtrFI->getIndex();
1840
Duncan Sandse4ff21b2009-04-18 20:16:54 +00001841 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1842 StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001843 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +00001844 Node->getValueType(0).getVectorElementType(),
1845 false, false, 0);
Dale Johannesena02e45c2009-02-02 22:12:50 +00001846 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001847 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001848 false, false, false, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00001849}
1850
Hal Finkelb811b6d2014-03-31 19:42:55 +00001851static bool
1852ExpandBVWithShuffles(SDNode *Node, SelectionDAG &DAG,
1853 const TargetLowering &TLI, SDValue &Res) {
1854 unsigned NumElems = Node->getNumOperands();
1855 SDLoc dl(Node);
1856 EVT VT = Node->getValueType(0);
1857
1858 // Try to group the scalars into pairs, shuffle the pairs together, then
1859 // shuffle the pairs of pairs together, etc. until the vector has
1860 // been built. This will work only if all of the necessary shuffle masks
1861 // are legal.
1862
1863 // We do this in two phases; first to check the legality of the shuffles,
1864 // and next, assuming that all shuffles are legal, to create the new nodes.
1865 for (int Phase = 0; Phase < 2; ++Phase) {
1866 SmallVector<std::pair<SDValue, SmallVector<int, 16> >, 16> IntermedVals,
1867 NewIntermedVals;
1868 for (unsigned i = 0; i < NumElems; ++i) {
1869 SDValue V = Node->getOperand(i);
1870 if (V.getOpcode() == ISD::UNDEF)
1871 continue;
1872
1873 SDValue Vec;
1874 if (Phase)
1875 Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, V);
1876 IntermedVals.push_back(std::make_pair(Vec, SmallVector<int, 16>(1, i)));
1877 }
1878
1879 while (IntermedVals.size() > 2) {
1880 NewIntermedVals.clear();
1881 for (unsigned i = 0, e = (IntermedVals.size() & ~1u); i < e; i += 2) {
1882 // This vector and the next vector are shuffled together (simply to
1883 // append the one to the other).
1884 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1885
1886 SmallVector<int, 16> FinalIndices;
1887 FinalIndices.reserve(IntermedVals[i].second.size() +
1888 IntermedVals[i+1].second.size());
1889
1890 int k = 0;
1891 for (unsigned j = 0, f = IntermedVals[i].second.size(); j != f;
1892 ++j, ++k) {
1893 ShuffleVec[k] = j;
1894 FinalIndices.push_back(IntermedVals[i].second[j]);
1895 }
1896 for (unsigned j = 0, f = IntermedVals[i+1].second.size(); j != f;
1897 ++j, ++k) {
1898 ShuffleVec[k] = NumElems + j;
1899 FinalIndices.push_back(IntermedVals[i+1].second[j]);
1900 }
1901
1902 SDValue Shuffle;
1903 if (Phase)
1904 Shuffle = DAG.getVectorShuffle(VT, dl, IntermedVals[i].first,
1905 IntermedVals[i+1].first,
1906 ShuffleVec.data());
1907 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1908 return false;
Benjamin Kramerc6cc58e2014-10-04 16:55:56 +00001909 NewIntermedVals.push_back(
1910 std::make_pair(Shuffle, std::move(FinalIndices)));
Hal Finkelb811b6d2014-03-31 19:42:55 +00001911 }
1912
1913 // If we had an odd number of defined values, then append the last
1914 // element to the array of new vectors.
1915 if ((IntermedVals.size() & 1) != 0)
1916 NewIntermedVals.push_back(IntermedVals.back());
1917
1918 IntermedVals.swap(NewIntermedVals);
1919 }
1920
1921 assert(IntermedVals.size() <= 2 && IntermedVals.size() > 0 &&
1922 "Invalid number of intermediate vectors");
1923 SDValue Vec1 = IntermedVals[0].first;
1924 SDValue Vec2;
1925 if (IntermedVals.size() > 1)
1926 Vec2 = IntermedVals[1].first;
1927 else if (Phase)
1928 Vec2 = DAG.getUNDEF(VT);
1929
1930 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1931 for (unsigned i = 0, e = IntermedVals[0].second.size(); i != e; ++i)
1932 ShuffleVec[IntermedVals[0].second[i]] = i;
1933 for (unsigned i = 0, e = IntermedVals[1].second.size(); i != e; ++i)
1934 ShuffleVec[IntermedVals[1].second[i]] = NumElems + i;
1935
1936 if (Phase)
1937 Res = DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
1938 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1939 return false;
1940 }
1941
1942 return true;
1943}
Chris Lattner6be79822006-04-04 17:23:26 +00001944
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001945/// Expand a BUILD_VECTOR node on targets that don't
Dan Gohman06c60b62007-07-16 14:29:03 +00001946/// support the operation, but do support the resultant vector type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001947SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilsonf6c21952009-04-13 20:20:30 +00001948 unsigned NumElems = Node->getNumOperands();
Eli Friedman32345872009-06-07 06:52:44 +00001949 SDValue Value1, Value2;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001950 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001951 EVT VT = Node->getValueType(0);
1952 EVT OpVT = Node->getOperand(0).getValueType();
1953 EVT EltVT = VT.getVectorElementType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001954
1955 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00001956 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001957 bool isOnlyLowElement = true;
Eli Friedman32345872009-06-07 06:52:44 +00001958 bool MoreThanTwoValues = false;
Chris Lattner77e271c2006-03-24 07:29:17 +00001959 bool isConstant = true;
Eli Friedman32345872009-06-07 06:52:44 +00001960 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001961 SDValue V = Node->getOperand(i);
Eli Friedman32345872009-06-07 06:52:44 +00001962 if (V.getOpcode() == ISD::UNDEF)
1963 continue;
1964 if (i > 0)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001965 isOnlyLowElement = false;
Eli Friedman32345872009-06-07 06:52:44 +00001966 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner77e271c2006-03-24 07:29:17 +00001967 isConstant = false;
Eli Friedman32345872009-06-07 06:52:44 +00001968
1969 if (!Value1.getNode()) {
1970 Value1 = V;
1971 } else if (!Value2.getNode()) {
1972 if (V != Value1)
1973 Value2 = V;
1974 } else if (V != Value1 && V != Value2) {
1975 MoreThanTwoValues = true;
1976 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001977 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001978
Eli Friedman32345872009-06-07 06:52:44 +00001979 if (!Value1.getNode())
1980 return DAG.getUNDEF(VT);
1981
1982 if (isOnlyLowElement)
Bob Wilsonf6c21952009-04-13 20:20:30 +00001983 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001984
Chris Lattner77e271c2006-03-24 07:29:17 +00001985 // If all elements are constants, create a load from the constant pool.
1986 if (isConstant) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001987 SmallVector<Constant*, 16> CV;
Chris Lattner77e271c2006-03-24 07:29:17 +00001988 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00001989 if (ConstantFPSDNode *V =
Chris Lattner77e271c2006-03-24 07:29:17 +00001990 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanec270fb2008-09-12 18:08:03 +00001991 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001992 } else if (ConstantSDNode *V =
Bob Wilsonf074ca72009-04-10 18:48:47 +00001993 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen6f7d5b22009-11-10 23:16:41 +00001994 if (OpVT==EltVT)
1995 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1996 else {
1997 // If OpVT and EltVT don't match, EltVT is not legal and the
1998 // element values have been promoted/truncated earlier. Undo this;
1999 // we don't want a v16i8 to become a v16i32 for example.
2000 const ConstantInt *CI = V->getConstantIntValue();
2001 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
2002 CI->getZExtValue()));
2003 }
Chris Lattner77e271c2006-03-24 07:29:17 +00002004 } else {
2005 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner229907c2011-07-18 04:54:35 +00002006 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Andersonb292b8c2009-07-30 23:03:37 +00002007 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner77e271c2006-03-24 07:29:17 +00002008 }
2009 }
Owen Anderson4aa32952009-07-28 21:19:26 +00002010 Constant *CP = ConstantVector::get(CV);
Mehdi Amini44ede332015-07-09 02:09:04 +00002011 SDValue CPIdx =
2012 DAG.getConstantPool(CP, TLI.getPointerTy(DAG.getDataLayout()));
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002013 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002014 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00002015 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002016 false, false, false, Alignment);
Chris Lattner77e271c2006-03-24 07:29:17 +00002017 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002018
Hal Finkel19775142014-03-31 17:48:10 +00002019 SmallSet<SDValue, 16> DefinedValues;
2020 for (unsigned i = 0; i < NumElems; ++i) {
2021 if (Node->getOperand(i).getOpcode() == ISD::UNDEF)
2022 continue;
2023 DefinedValues.insert(Node->getOperand(i));
2024 }
2025
Hal Finkelb811b6d2014-03-31 19:42:55 +00002026 if (TLI.shouldExpandBuildVectorWithShuffles(VT, DefinedValues.size())) {
2027 if (!MoreThanTwoValues) {
2028 SmallVector<int, 8> ShuffleVec(NumElems, -1);
2029 for (unsigned i = 0; i < NumElems; ++i) {
2030 SDValue V = Node->getOperand(i);
2031 if (V.getOpcode() == ISD::UNDEF)
2032 continue;
2033 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
2034 }
2035 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
2036 // Get the splatted value into the low element of a vector register.
2037 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
2038 SDValue Vec2;
2039 if (Value2.getNode())
2040 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
2041 else
2042 Vec2 = DAG.getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002043
Hal Finkelb811b6d2014-03-31 19:42:55 +00002044 // Return shuffle(LowValVec, undef, <0,0,0,0>)
2045 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
2046 }
2047 } else {
2048 SDValue Res;
2049 if (ExpandBVWithShuffles(Node, DAG, TLI, Res))
2050 return Res;
Evan Cheng1d2e9952006-03-24 01:17:21 +00002051 }
2052 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002053
Eli Friedmanaee3f622009-06-06 07:04:42 +00002054 // Otherwise, we can't handle this case efficiently.
2055 return ExpandVectorBuildThroughStack(Node);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002056}
2057
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002058// Expand a node into a call to a libcall. If the result value
Chris Lattneraac464e2005-01-21 06:05:23 +00002059// does not fit into a register, return the lo part and set the hi part to the
2060// by-reg argument. If it does fit into a single register, return the result
2061// and leave the Hi part unset.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002062SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedmanb3554152009-05-27 02:21:29 +00002063 bool isSigned) {
Chris Lattneraac464e2005-01-21 06:05:23 +00002064 TargetLowering::ArgListTy Args;
Reid Spencere63b6512006-12-31 05:55:36 +00002065 TargetLowering::ArgListEntry Entry;
Pete Cooper8fc121d2015-06-26 19:08:33 +00002066 for (const SDValue &Op : Node->op_values()) {
2067 EVT ArgVT = Op.getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002068 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Pete Cooper8fc121d2015-06-26 19:08:33 +00002069 Entry.Node = Op;
2070 Entry.Ty = ArgTy;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00002071 Entry.isSExt = isSigned;
Duncan Sands4c95dbd2008-02-14 17:28:50 +00002072 Entry.isZExt = !isSigned;
Reid Spencere63b6512006-12-31 05:55:36 +00002073 Args.push_back(Entry);
Chris Lattneraac464e2005-01-21 06:05:23 +00002074 }
Bill Wendling24c79f22008-09-16 21:48:12 +00002075 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002076 TLI.getPointerTy(DAG.getDataLayout()));
Misha Brukman835702a2005-04-21 22:36:52 +00002077
Chris Lattner229907c2011-07-18 04:54:35 +00002078 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Chengd4b08732010-11-30 23:55:39 +00002079
Evan Chengf8bad082012-04-10 01:51:00 +00002080 // By default, the input chain to this libcall is the entry node of the
2081 // function. If the libcall is going to be emitted as a tail call then
2082 // TLI.isUsedByReturnOnly will change it to the right chain if the return
2083 // node which is being folded has a non-entry input chain.
2084 SDValue InChain = DAG.getEntryNode();
2085
Evan Chengd4b08732010-11-30 23:55:39 +00002086 // isTailCall may be true since the callee does not reference caller stack
2087 // frame. Check if it's in the right position.
Evan Cheng136861d2012-04-10 03:15:18 +00002088 SDValue TCChain = InChain;
Tim Northoverf1450d82013-01-09 13:18:15 +00002089 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Cheng136861d2012-04-10 03:15:18 +00002090 if (isTailCall)
2091 InChain = TCChain;
2092
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002093 TargetLowering::CallLoweringInfo CLI(DAG);
2094 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002095 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002096 .setTailCall(isTailCall).setSExtResult(isSigned).setZExtResult(!isSigned);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002097
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002098 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Chris Lattnera5bf1032005-05-12 04:49:08 +00002099
Evan Chengd4b08732010-11-30 23:55:39 +00002100 if (!CallInfo.second.getNode())
2101 // It's a tailcall, return the chain (which is the DAG root).
2102 return DAG.getRoot();
2103
Eli Friedman4a951bf2009-05-26 08:55:52 +00002104 return CallInfo.first;
Chris Lattneraac464e2005-01-21 06:05:23 +00002105}
2106
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002107/// Generate a libcall taking the given operands as arguments
Eric Christopherbcaedb52011-04-20 01:19:45 +00002108/// and returning a result of type RetVT.
2109SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
2110 const SDValue *Ops, unsigned NumOps,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002111 bool isSigned, SDLoc dl) {
Eric Christopherbcaedb52011-04-20 01:19:45 +00002112 TargetLowering::ArgListTy Args;
2113 Args.reserve(NumOps);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002114
Eric Christopherbcaedb52011-04-20 01:19:45 +00002115 TargetLowering::ArgListEntry Entry;
2116 for (unsigned i = 0; i != NumOps; ++i) {
2117 Entry.Node = Ops[i];
2118 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
2119 Entry.isSExt = isSigned;
2120 Entry.isZExt = !isSigned;
2121 Args.push_back(Entry);
2122 }
2123 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002124 TLI.getPointerTy(DAG.getDataLayout()));
Dan Gohmanae9b1682011-05-16 22:09:53 +00002125
Chris Lattner229907c2011-07-18 04:54:35 +00002126 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002127
2128 TargetLowering::CallLoweringInfo CLI(DAG);
2129 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002130 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002131 .setSExtResult(isSigned).setZExtResult(!isSigned);
2132
Justin Holewinskiaa583972012-05-25 16:35:28 +00002133 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002134
Eric Christopherbcaedb52011-04-20 01:19:45 +00002135 return CallInfo.first;
2136}
2137
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002138// Expand a node into a call to a libcall. Similar to
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002139// ExpandLibCall except that the first operand is the in-chain.
2140std::pair<SDValue, SDValue>
2141SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
2142 SDNode *Node,
2143 bool isSigned) {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002144 SDValue InChain = Node->getOperand(0);
2145
2146 TargetLowering::ArgListTy Args;
2147 TargetLowering::ArgListEntry Entry;
2148 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
2149 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002150 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002151 Entry.Node = Node->getOperand(i);
2152 Entry.Ty = ArgTy;
2153 Entry.isSExt = isSigned;
2154 Entry.isZExt = !isSigned;
2155 Args.push_back(Entry);
2156 }
2157 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002158 TLI.getPointerTy(DAG.getDataLayout()));
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002159
Chris Lattner229907c2011-07-18 04:54:35 +00002160 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002161
2162 TargetLowering::CallLoweringInfo CLI(DAG);
2163 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002164 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002165 .setSExtResult(isSigned).setZExtResult(!isSigned);
2166
Justin Holewinskiaa583972012-05-25 16:35:28 +00002167 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002168
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002169 return CallInfo;
2170}
2171
Eli Friedmand6f28342009-05-27 03:33:44 +00002172SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
2173 RTLIB::Libcall Call_F32,
2174 RTLIB::Libcall Call_F64,
2175 RTLIB::Libcall Call_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00002176 RTLIB::Libcall Call_F128,
Eli Friedmand6f28342009-05-27 03:33:44 +00002177 RTLIB::Libcall Call_PPCF128) {
2178 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002179 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002180 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson9f944592009-08-11 20:47:22 +00002181 case MVT::f32: LC = Call_F32; break;
2182 case MVT::f64: LC = Call_F64; break;
2183 case MVT::f80: LC = Call_F80; break;
Tim Northover4bf47bc2013-01-08 17:09:59 +00002184 case MVT::f128: LC = Call_F128; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002185 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002186 }
2187 return ExpandLibCall(LC, Node, false);
2188}
2189
2190SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002191 RTLIB::Libcall Call_I8,
Eli Friedmand6f28342009-05-27 03:33:44 +00002192 RTLIB::Libcall Call_I16,
2193 RTLIB::Libcall Call_I32,
2194 RTLIB::Libcall Call_I64,
2195 RTLIB::Libcall Call_I128) {
2196 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002197 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002198 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002199 case MVT::i8: LC = Call_I8; break;
2200 case MVT::i16: LC = Call_I16; break;
2201 case MVT::i32: LC = Call_I32; break;
2202 case MVT::i64: LC = Call_I64; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002203 case MVT::i128: LC = Call_I128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002204 }
2205 return ExpandLibCall(LC, Node, isSigned);
2206}
2207
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002208/// Return true if divmod libcall is available.
Evan Chengb14ce092011-04-16 03:08:26 +00002209static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2210 const TargetLowering &TLI) {
Evan Chengbd766792011-04-01 00:42:02 +00002211 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002212 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002213 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengbd766792011-04-01 00:42:02 +00002214 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2215 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2216 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2217 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2218 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2219 }
2220
Craig Topperc0196b12014-04-14 00:51:57 +00002221 return TLI.getLibcallName(LC) != nullptr;
Evan Chengb14ce092011-04-16 03:08:26 +00002222}
Evan Chengbd766792011-04-01 00:42:02 +00002223
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002224/// Only issue divrem libcall if both quotient and remainder are needed.
Evan Cheng8c2ad812012-06-21 05:56:05 +00002225static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2226 // The other use might have been replaced with a divrem already.
2227 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Chengbd766792011-04-01 00:42:02 +00002228 unsigned OtherOpcode = 0;
Evan Chengb14ce092011-04-16 03:08:26 +00002229 if (isSigned)
Evan Chengbd766792011-04-01 00:42:02 +00002230 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002231 else
Evan Chengbd766792011-04-01 00:42:02 +00002232 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002233
Evan Chengbd766792011-04-01 00:42:02 +00002234 SDValue Op0 = Node->getOperand(0);
2235 SDValue Op1 = Node->getOperand(1);
2236 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2237 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2238 SDNode *User = *UI;
2239 if (User == Node)
2240 continue;
Evan Cheng8c2ad812012-06-21 05:56:05 +00002241 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Chengbd766792011-04-01 00:42:02 +00002242 User->getOperand(0) == Op0 &&
Evan Chengb14ce092011-04-16 03:08:26 +00002243 User->getOperand(1) == Op1)
2244 return true;
Evan Chengbd766792011-04-01 00:42:02 +00002245 }
Evan Chengb14ce092011-04-16 03:08:26 +00002246 return false;
2247}
Evan Chengbd766792011-04-01 00:42:02 +00002248
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002249/// Issue libcalls to __{u}divmod to compute div / rem pairs.
Evan Chengb14ce092011-04-16 03:08:26 +00002250void
2251SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2252 SmallVectorImpl<SDValue> &Results) {
2253 unsigned Opcode = Node->getOpcode();
2254 bool isSigned = Opcode == ISD::SDIVREM;
2255
2256 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002257 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002258 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengb14ce092011-04-16 03:08:26 +00002259 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2260 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2261 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2262 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2263 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Chengbd766792011-04-01 00:42:02 +00002264 }
2265
2266 // The input chain to this libcall is the entry node of the function.
2267 // Legalizing the call will automatically add the previous call to the
2268 // dependence.
2269 SDValue InChain = DAG.getEntryNode();
2270
2271 EVT RetVT = Node->getValueType(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002272 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002273
2274 TargetLowering::ArgListTy Args;
2275 TargetLowering::ArgListEntry Entry;
Pete Cooper8fc121d2015-06-26 19:08:33 +00002276 for (const SDValue &Op : Node->op_values()) {
2277 EVT ArgVT = Op.getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002278 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Pete Cooper8fc121d2015-06-26 19:08:33 +00002279 Entry.Node = Op;
2280 Entry.Ty = ArgTy;
Evan Chengbd766792011-04-01 00:42:02 +00002281 Entry.isSExt = isSigned;
2282 Entry.isZExt = !isSigned;
2283 Args.push_back(Entry);
2284 }
2285
2286 // Also pass the return address of the remainder.
2287 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2288 Entry.Node = FIPtr;
Micah Villmow51e72462012-10-24 17:25:11 +00002289 Entry.Ty = RetTy->getPointerTo();
Evan Chengbd766792011-04-01 00:42:02 +00002290 Entry.isSExt = isSigned;
2291 Entry.isZExt = !isSigned;
2292 Args.push_back(Entry);
2293
2294 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002295 TLI.getPointerTy(DAG.getDataLayout()));
Evan Chengbd766792011-04-01 00:42:02 +00002296
Andrew Trickef9de2a2013-05-25 02:42:55 +00002297 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002298 TargetLowering::CallLoweringInfo CLI(DAG);
2299 CLI.setDebugLoc(dl).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002300 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002301 .setSExtResult(isSigned).setZExtResult(!isSigned);
2302
Justin Holewinskiaa583972012-05-25 16:35:28 +00002303 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Chengbd766792011-04-01 00:42:02 +00002304
Evan Chengbd766792011-04-01 00:42:02 +00002305 // Remainder is loaded back from the stack frame.
Dan Gohman198b7ff2011-11-03 21:49:52 +00002306 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002307 MachinePointerInfo(), false, false, false, 0);
Evan Chengb14ce092011-04-16 03:08:26 +00002308 Results.push_back(CallInfo.first);
2309 Results.push_back(Rem);
Evan Chengbd766792011-04-01 00:42:02 +00002310}
2311
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002312/// Return true if sincos libcall is available.
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002313static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2314 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002315 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002316 default: llvm_unreachable("Unexpected request for libcall!");
2317 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2318 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2319 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2320 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2321 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2322 }
Craig Topperc0196b12014-04-14 00:51:57 +00002323 return TLI.getLibcallName(LC) != nullptr;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002324}
2325
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002326/// Return true if sincos libcall is available and can be used to combine sin
2327/// and cos.
Paul Redmondf29ddfe2013-02-15 18:45:18 +00002328static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2329 const TargetMachine &TM) {
2330 if (!isSinCosLibcallAvailable(Node, TLI))
2331 return false;
2332 // GNU sin/cos functions set errno while sincos does not. Therefore
2333 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2334 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2335 if (isGNU && !TM.Options.UnsafeFPMath)
2336 return false;
2337 return true;
2338}
2339
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002340/// Only issue sincos libcall if both sin and cos are needed.
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002341static bool useSinCos(SDNode *Node) {
2342 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2343 ? ISD::FCOS : ISD::FSIN;
Stephen Lincfe7f352013-07-08 00:37:03 +00002344
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002345 SDValue Op0 = Node->getOperand(0);
2346 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2347 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2348 SDNode *User = *UI;
2349 if (User == Node)
2350 continue;
2351 // The other user might have been turned into sincos already.
2352 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2353 return true;
2354 }
2355 return false;
2356}
2357
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002358/// Issue libcalls to sincos to compute sin / cos pairs.
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002359void
2360SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2361 SmallVectorImpl<SDValue> &Results) {
2362 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002363 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002364 default: llvm_unreachable("Unexpected request for libcall!");
2365 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2366 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2367 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2368 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2369 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2370 }
Stephen Lincfe7f352013-07-08 00:37:03 +00002371
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002372 // The input chain to this libcall is the entry node of the function.
2373 // Legalizing the call will automatically add the previous call to the
2374 // dependence.
2375 SDValue InChain = DAG.getEntryNode();
Stephen Lincfe7f352013-07-08 00:37:03 +00002376
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002377 EVT RetVT = Node->getValueType(0);
2378 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Stephen Lincfe7f352013-07-08 00:37:03 +00002379
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002380 TargetLowering::ArgListTy Args;
2381 TargetLowering::ArgListEntry Entry;
Stephen Lincfe7f352013-07-08 00:37:03 +00002382
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002383 // Pass the argument.
2384 Entry.Node = Node->getOperand(0);
2385 Entry.Ty = RetTy;
2386 Entry.isSExt = false;
2387 Entry.isZExt = false;
2388 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002389
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002390 // Pass the return address of sin.
2391 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2392 Entry.Node = SinPtr;
2393 Entry.Ty = RetTy->getPointerTo();
2394 Entry.isSExt = false;
2395 Entry.isZExt = false;
2396 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002397
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002398 // Also pass the return address of the cos.
2399 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2400 Entry.Node = CosPtr;
2401 Entry.Ty = RetTy->getPointerTo();
2402 Entry.isSExt = false;
2403 Entry.isZExt = false;
2404 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002405
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002406 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002407 TLI.getPointerTy(DAG.getDataLayout()));
Stephen Lincfe7f352013-07-08 00:37:03 +00002408
Andrew Trickef9de2a2013-05-25 02:42:55 +00002409 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002410 TargetLowering::CallLoweringInfo CLI(DAG);
2411 CLI.setDebugLoc(dl).setChain(InChain)
2412 .setCallee(TLI.getLibcallCallingConv(LC),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002413 Type::getVoidTy(*DAG.getContext()), Callee, std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002414
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002415 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2416
2417 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2418 MachinePointerInfo(), false, false, false, 0));
2419 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2420 MachinePointerInfo(), false, false, false, 0));
2421}
2422
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002423/// This function is responsible for legalizing a
Chris Lattner689bdcc2006-01-28 08:25:58 +00002424/// INT_TO_FP operation of the specified operand when the target requests that
2425/// we expand it. At this point, we know that the result and operand types are
2426/// legal for the target.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002427SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2428 SDValue Op0,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002429 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002430 SDLoc dl) {
Akira Hatanakaadb14f52012-08-28 02:12:42 +00002431 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002432 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelcf0da6c2009-02-17 22:15:04 +00002433
Chris Lattnera2c7ff32008-01-16 07:03:22 +00002434 // Get the stack frame index of a 8 byte buffer.
Owen Anderson9f944592009-08-11 20:47:22 +00002435 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002436
Chris Lattner689bdcc2006-01-28 08:25:58 +00002437 // word offset constant for Hi/Lo address computation
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002438 SDValue WordOff = DAG.getConstant(sizeof(int), dl,
2439 StackSlot.getValueType());
Chris Lattner689bdcc2006-01-28 08:25:58 +00002440 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002441 SDValue Hi = StackSlot;
Tom Stellard838e2342013-08-26 15:06:10 +00002442 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2443 StackSlot, WordOff);
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00002444 if (DAG.getDataLayout().isLittleEndian())
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00002445 std::swap(Hi, Lo);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002446
Chris Lattner689bdcc2006-01-28 08:25:58 +00002447 // if signed map to unsigned space
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002448 SDValue Op0Mapped;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002449 if (isSigned) {
2450 // constant used to invert sign bit (signed to unsigned mapping)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002451 SDValue SignBit = DAG.getConstant(0x80000000u, dl, MVT::i32);
Owen Anderson9f944592009-08-11 20:47:22 +00002452 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002453 } else {
2454 Op0Mapped = Op0;
2455 }
2456 // store the lo of the constructed double - based on integer input
Dale Johannesen8525d832009-02-02 19:03:57 +00002457 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00002458 Op0Mapped, Lo, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00002459 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002460 // initial hi portion of constructed double
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002461 SDValue InitialHi = DAG.getConstant(0x43300000u, dl, MVT::i32);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002462 // store the hi of the constructed double - biased exponent
Chris Lattner676c61d2010-09-21 18:41:36 +00002463 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2464 MachinePointerInfo(),
2465 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002466 // load the constructed double
Chris Lattner1ffcf522010-09-21 16:36:31 +00002467 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002468 MachinePointerInfo(), false, false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002469 // FP constant to bias correct the final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002470 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonf074ca72009-04-10 18:48:47 +00002471 BitsToDouble(0x4330000080000000ULL) :
2472 BitsToDouble(0x4330000000000000ULL),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002473 dl, MVT::f64);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002474 // subtract the bias
Owen Anderson9f944592009-08-11 20:47:22 +00002475 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002476 // final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002477 SDValue Result;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002478 // handle final rounding
Owen Anderson9f944592009-08-11 20:47:22 +00002479 if (DestVT == MVT::f64) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002480 // do nothing
2481 Result = Sub;
Owen Anderson9f944592009-08-11 20:47:22 +00002482 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002483 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002484 DAG.getIntPtrConstant(0, dl));
Owen Anderson9f944592009-08-11 20:47:22 +00002485 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002486 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002487 }
2488 return Result;
2489 }
2490 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002491 // Code below here assumes !isSigned without checking again.
Dan Gohman14e450f2010-03-06 00:00:55 +00002492
2493 // Implementation of unsigned i64 to f64 following the algorithm in
2494 // __floatundidf in compiler_rt. This implementation has the advantage
2495 // of performing rounding correctly, both in the default rounding mode
2496 // and in all alternate rounding modes.
2497 // TODO: Generalize this for use with other types.
2498 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2499 SDValue TwoP52 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002500 DAG.getConstant(UINT64_C(0x4330000000000000), dl, MVT::i64);
Dan Gohman14e450f2010-03-06 00:00:55 +00002501 SDValue TwoP84PlusTwoP52 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002502 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), dl,
2503 MVT::f64);
Dan Gohman14e450f2010-03-06 00:00:55 +00002504 SDValue TwoP84 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002505 DAG.getConstant(UINT64_C(0x4530000000000000), dl, MVT::i64);
Dan Gohman14e450f2010-03-06 00:00:55 +00002506
2507 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2508 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002509 DAG.getConstant(32, dl, MVT::i64));
Dan Gohman14e450f2010-03-06 00:00:55 +00002510 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2511 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peck527da1b2010-11-23 03:31:01 +00002512 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2513 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002514 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2515 TwoP84PlusTwoP52);
Dan Gohman14e450f2010-03-06 00:00:55 +00002516 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2517 }
2518
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002519 // Implementation of unsigned i64 to f32.
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002520 // TODO: Generalize this for use with other types.
2521 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002522 // For unsigned conversions, convert them to signed conversions using the
2523 // algorithm from the x86_64 __floatundidf in compiler_rt.
2524 if (!isSigned) {
2525 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peck527da1b2010-11-23 03:31:01 +00002526
Mehdi Amini9639d652015-07-09 02:09:20 +00002527 SDValue ShiftConst = DAG.getConstant(
2528 1, dl, TLI.getShiftAmountTy(Op0.getValueType(), DAG.getDataLayout()));
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002529 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002530 SDValue AndConst = DAG.getConstant(1, dl, MVT::i64);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002531 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2532 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peck527da1b2010-11-23 03:31:01 +00002533
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002534 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2535 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peck527da1b2010-11-23 03:31:01 +00002536
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002537 // TODO: This really should be implemented using a branch rather than a
Wesley Peck527da1b2010-11-23 03:31:01 +00002538 // select. We happen to get lucky and machinesink does the right
2539 // thing most of the time. This would be a good candidate for a
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002540 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault758659232013-05-18 00:21:46 +00002541 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002542 Op0, DAG.getConstant(0, dl, MVT::i64), ISD::SETLT);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002543 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002544 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002545
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002546 // Otherwise, implement the fully general conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002547
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002548 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002549 DAG.getConstant(UINT64_C(0xfffffffffffff800), dl, MVT::i64));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002550 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002551 DAG.getConstant(UINT64_C(0x800), dl, MVT::i64));
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002552 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002553 DAG.getConstant(UINT64_C(0x7ff), dl, MVT::i64));
2554 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), And2,
2555 DAG.getConstant(UINT64_C(0), dl, MVT::i64),
2556 ISD::SETNE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002557 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002558 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), Op0,
2559 DAG.getConstant(UINT64_C(0x0020000000000000), dl,
2560 MVT::i64),
2561 ISD::SETUGE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002562 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Mehdi Amini9639d652015-07-09 02:09:20 +00002563 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType(), DAG.getDataLayout());
Wesley Peck527da1b2010-11-23 03:31:01 +00002564
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002565 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002566 DAG.getConstant(32, dl, SHVT));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002567 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2568 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2569 SDValue TwoP32 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002570 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), dl,
2571 MVT::f64);
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002572 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2573 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2574 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2575 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2576 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002577 DAG.getIntPtrConstant(0, dl));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002578 }
2579
Dan Gohman998c7c22010-03-05 02:40:23 +00002580 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002581
Matt Arsenault758659232013-05-18 00:21:46 +00002582 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002583 Op0,
2584 DAG.getConstant(0, dl, Op0.getValueType()),
Dan Gohman998c7c22010-03-05 02:40:23 +00002585 ISD::SETLT);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002586 SDValue Zero = DAG.getIntPtrConstant(0, dl),
2587 Four = DAG.getIntPtrConstant(4, dl);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002588 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohman998c7c22010-03-05 02:40:23 +00002589 SignSet, Four, Zero);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002590
Dan Gohman998c7c22010-03-05 02:40:23 +00002591 // If the sign bit of the integer is set, the large number will be treated
2592 // as a negative number. To counteract this, the dynamic code adds an
2593 // offset depending on the data type.
2594 uint64_t FF;
Craig Topperd9c27832013-08-15 02:44:19 +00002595 switch (Op0.getSimpleValueType().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002596 default: llvm_unreachable("Unsupported integer type!");
Dan Gohman998c7c22010-03-05 02:40:23 +00002597 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2598 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2599 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2600 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2601 }
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00002602 if (DAG.getDataLayout().isLittleEndian())
2603 FF <<= 32;
Dan Gohman998c7c22010-03-05 02:40:23 +00002604 Constant *FudgeFactor = ConstantInt::get(
2605 Type::getInt64Ty(*DAG.getContext()), FF);
2606
Mehdi Amini44ede332015-07-09 02:09:04 +00002607 SDValue CPIdx =
2608 DAG.getConstantPool(FudgeFactor, TLI.getPointerTy(DAG.getDataLayout()));
Dan Gohman998c7c22010-03-05 02:40:23 +00002609 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Tom Stellard838e2342013-08-26 15:06:10 +00002610 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
Dan Gohman998c7c22010-03-05 02:40:23 +00002611 Alignment = std::min(Alignment, 4u);
2612 SDValue FudgeInReg;
2613 if (DestVT == MVT::f32)
2614 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00002615 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002616 false, false, false, Alignment);
Dan Gohman998c7c22010-03-05 02:40:23 +00002617 else {
Dan Gohman198b7ff2011-11-03 21:49:52 +00002618 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2619 DAG.getEntryNode(), CPIdx,
2620 MachinePointerInfo::getConstantPool(),
Louis Gerbarg67474e32014-07-31 21:45:05 +00002621 MVT::f32, false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +00002622 HandleSDNode Handle(Load);
2623 LegalizeOp(Load.getNode());
2624 FudgeInReg = Handle.getValue();
Dan Gohman998c7c22010-03-05 02:40:23 +00002625 }
2626
2627 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002628}
2629
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002630/// This function is responsible for legalizing a
Chris Lattner689bdcc2006-01-28 08:25:58 +00002631/// *INT_TO_FP operation of the specified operand when the target requests that
2632/// we promote it. At this point, we know that the result and operand types are
2633/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2634/// operation that takes a larger input.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002635SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002636 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002637 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002638 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002639 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002640 EVT NewInTy = LegalOp.getValueType();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002641
2642 unsigned OpToUse = 0;
2643
2644 // Scan for the appropriate larger type to use.
2645 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002646 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002647 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002648
2649 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002650 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2651 OpToUse = ISD::SINT_TO_FP;
2652 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002653 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002654 if (isSigned) continue;
2655
2656 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002657 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2658 OpToUse = ISD::UINT_TO_FP;
2659 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002660 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002661
2662 // Otherwise, try a larger type.
2663 }
2664
2665 // Okay, we found the operation and type to use. Zero extend our input to the
2666 // desired type then run the operation on it.
Dale Johannesen8525d832009-02-02 19:03:57 +00002667 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner689bdcc2006-01-28 08:25:58 +00002668 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen8525d832009-02-02 19:03:57 +00002669 dl, NewInTy, LegalOp));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002670}
2671
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002672/// This function is responsible for legalizing a
Chris Lattner689bdcc2006-01-28 08:25:58 +00002673/// FP_TO_*INT operation of the specified operand when the target requests that
2674/// we promote it. At this point, we know that the result and operand types are
2675/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2676/// operation that returns a larger result.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002677SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002678 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002679 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002680 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002681 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002682 EVT NewOutTy = DestVT;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002683
2684 unsigned OpToUse = 0;
2685
2686 // Scan for the appropriate larger type to use.
2687 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002688 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002689 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002690
Tim Northover65277a22014-06-15 09:27:20 +00002691 // A larger signed type can hold all unsigned values of the requested type,
2692 // so using FP_TO_SINT is valid
Eli Friedmane1bc3792009-05-28 03:06:16 +00002693 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002694 OpToUse = ISD::FP_TO_SINT;
2695 break;
2696 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002697
Tim Northover65277a22014-06-15 09:27:20 +00002698 // However, if the value may be < 0.0, we *must* use some FP_TO_SINT.
2699 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002700 OpToUse = ISD::FP_TO_UINT;
2701 break;
2702 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002703
2704 // Otherwise, try a larger type.
2705 }
2706
Scott Michelcf0da6c2009-02-17 22:15:04 +00002707
Chris Lattnerf81d5882007-11-24 07:07:01 +00002708 // Okay, we found the operation and type to use.
Dale Johannesen8525d832009-02-02 19:03:57 +00002709 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands93e180342008-07-04 11:47:58 +00002710
Chris Lattnerf81d5882007-11-24 07:07:01 +00002711 // Truncate the result of the extended FP_TO_*INT operation to the desired
2712 // size.
Dale Johannesen8525d832009-02-02 19:03:57 +00002713 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002714}
2715
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002716/// Open code the operations for BSWAP of the specified operation.
Andrew Trickef9de2a2013-05-25 02:42:55 +00002717SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002718 EVT VT = Op.getValueType();
Mehdi Amini9639d652015-07-09 02:09:20 +00002719 EVT SHVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002720 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson9f944592009-08-11 20:47:22 +00002721 switch (VT.getSimpleVT().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002722 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson9f944592009-08-11 20:47:22 +00002723 case MVT::i16:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002724 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2725 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
Dale Johannesena02e45c2009-02-02 22:12:50 +00002726 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002727 case MVT::i32:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002728 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2729 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2730 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2731 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2732 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3,
2733 DAG.getConstant(0xFF0000, dl, VT));
2734 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, dl, VT));
Dale Johannesena02e45c2009-02-02 22:12:50 +00002735 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2736 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2737 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002738 case MVT::i64:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002739 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, dl, SHVT));
2740 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, dl, SHVT));
2741 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2742 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2743 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2744 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2745 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, dl, SHVT));
2746 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, dl, SHVT));
2747 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7,
2748 DAG.getConstant(255ULL<<48, dl, VT));
2749 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6,
2750 DAG.getConstant(255ULL<<40, dl, VT));
2751 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5,
2752 DAG.getConstant(255ULL<<32, dl, VT));
2753 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4,
2754 DAG.getConstant(255ULL<<24, dl, VT));
2755 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3,
2756 DAG.getConstant(255ULL<<16, dl, VT));
2757 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2,
2758 DAG.getConstant(255ULL<<8 , dl, VT));
Dale Johannesena02e45c2009-02-02 22:12:50 +00002759 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2760 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2761 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2762 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2763 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2764 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2765 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002766 }
2767}
2768
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002769/// Expand the specified bitcount instruction into operations.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002770SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002771 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002772 switch (Opc) {
Craig Topperee4dab52012-02-05 08:31:47 +00002773 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002774 case ISD::CTPOP: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002775 EVT VT = Op.getValueType();
Mehdi Amini9639d652015-07-09 02:09:20 +00002776 EVT ShVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout());
Benjamin Kramerfff25172011-01-15 20:30:30 +00002777 unsigned Len = VT.getSizeInBits();
2778
Benjamin Kramerbec03ea2011-01-15 21:19:37 +00002779 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2780 "CTPOP not implemented for this type.");
2781
Benjamin Kramerfff25172011-01-15 20:30:30 +00002782 // This is the "best" algorithm from
2783 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2784
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002785 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)),
2786 dl, VT);
2787 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)),
2788 dl, VT);
2789 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)),
2790 dl, VT);
2791 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)),
2792 dl, VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002793
2794 // v = v - ((v >> 1) & 0x55555555...)
2795 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2796 DAG.getNode(ISD::AND, dl, VT,
2797 DAG.getNode(ISD::SRL, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002798 DAG.getConstant(1, dl, ShVT)),
Benjamin Kramerfff25172011-01-15 20:30:30 +00002799 Mask55));
2800 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2801 Op = DAG.getNode(ISD::ADD, dl, VT,
2802 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2803 DAG.getNode(ISD::AND, dl, VT,
2804 DAG.getNode(ISD::SRL, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002805 DAG.getConstant(2, dl, ShVT)),
Benjamin Kramerfff25172011-01-15 20:30:30 +00002806 Mask33));
2807 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2808 Op = DAG.getNode(ISD::AND, dl, VT,
2809 DAG.getNode(ISD::ADD, dl, VT, Op,
2810 DAG.getNode(ISD::SRL, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002811 DAG.getConstant(4, dl, ShVT))),
Benjamin Kramerfff25172011-01-15 20:30:30 +00002812 Mask0F);
2813 // v = (v * 0x01010101...) >> (Len - 8)
2814 Op = DAG.getNode(ISD::SRL, dl, VT,
2815 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002816 DAG.getConstant(Len - 8, dl, ShVT));
Owen Andersonb2c80da2011-02-25 21:41:48 +00002817
Chris Lattner689bdcc2006-01-28 08:25:58 +00002818 return Op;
2819 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002820 case ISD::CTLZ_ZERO_UNDEF:
2821 // This trivially expands to CTLZ.
2822 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002823 case ISD::CTLZ: {
2824 // for now, we do this:
2825 // x = x | (x >> 1);
2826 // x = x | (x >> 2);
2827 // ...
2828 // x = x | (x >>16);
2829 // x = x | (x >>32); // for 64-bit input
2830 // return popcount(~x);
2831 //
Sanjay Patelbb292212014-09-15 19:47:44 +00002832 // Ref: "Hacker's Delight" by Henry Warren
Owen Anderson53aa7a92009-08-10 22:56:29 +00002833 EVT VT = Op.getValueType();
Mehdi Amini9639d652015-07-09 02:09:20 +00002834 EVT ShVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout());
Duncan Sands13237ac2008-06-06 12:08:01 +00002835 unsigned len = VT.getSizeInBits();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002836 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002837 SDValue Tmp3 = DAG.getConstant(1ULL << i, dl, ShVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002838 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesendc93bbc2009-02-06 21:55:48 +00002839 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002840 }
Dale Johannesena02e45c2009-02-02 22:12:50 +00002841 Op = DAG.getNOT(dl, Op, VT);
2842 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002843 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002844 case ISD::CTTZ_ZERO_UNDEF:
2845 // This trivially expands to CTTZ.
2846 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002847 case ISD::CTTZ: {
2848 // for now, we use: { return popcount(~x & (x - 1)); }
2849 // unless the target has ctlz but not ctpop, in which case we use:
2850 // { return 32 - nlz(~x & (x-1)); }
Sanjay Patelbb292212014-09-15 19:47:44 +00002851 // Ref: "Hacker's Delight" by Henry Warren
Owen Anderson53aa7a92009-08-10 22:56:29 +00002852 EVT VT = Op.getValueType();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002853 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2854 DAG.getNOT(dl, Op, VT),
2855 DAG.getNode(ISD::SUB, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002856 DAG.getConstant(1, dl, VT)));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002857 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman4aa18462009-01-28 17:46:25 +00002858 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2859 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesena02e45c2009-02-02 22:12:50 +00002860 return DAG.getNode(ISD::SUB, dl, VT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002861 DAG.getConstant(VT.getSizeInBits(), dl, VT),
Dale Johannesena02e45c2009-02-02 22:12:50 +00002862 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2863 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002864 }
2865 }
2866}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002867
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002868std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2869 unsigned Opc = Node->getOpcode();
2870 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
Benjamin Kramerc54c38e2015-03-05 20:04:29 +00002871 RTLIB::Libcall LC = RTLIB::getATOMIC(Opc, VT);
2872 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected atomic op or value type!");
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002873
2874 return ExpandChainLibCall(LC, Node, false);
2875}
2876
Dan Gohman198b7ff2011-11-03 21:49:52 +00002877void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2878 SmallVector<SDValue, 8> Results;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002879 SDLoc dl(Node);
Eli Friedmane1dc1932009-05-28 20:40:34 +00002880 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Daniel Sandersedc071b2013-11-21 13:24:49 +00002881 bool NeedInvert;
Eli Friedman21d349b2009-05-27 01:25:56 +00002882 switch (Node->getOpcode()) {
2883 case ISD::CTPOP:
2884 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002885 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002886 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002887 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002888 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2889 Results.push_back(Tmp1);
2890 break;
2891 case ISD::BSWAP:
Bill Wendlingef408db2009-12-23 00:28:23 +00002892 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman21d349b2009-05-27 01:25:56 +00002893 break;
2894 case ISD::FRAMEADDR:
2895 case ISD::RETURNADDR:
2896 case ISD::FRAME_TO_ARGS_OFFSET:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002897 Results.push_back(DAG.getConstant(0, dl, Node->getValueType(0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00002898 break;
2899 case ISD::FLT_ROUNDS_:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002900 Results.push_back(DAG.getConstant(1, dl, Node->getValueType(0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00002901 break;
2902 case ISD::EH_RETURN:
Eli Friedman21d349b2009-05-27 01:25:56 +00002903 case ISD::EH_LABEL:
2904 case ISD::PREFETCH:
Eli Friedman21d349b2009-05-27 01:25:56 +00002905 case ISD::VAEND:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002906 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002907 // If the target didn't expand these, there's nothing to do, so just
2908 // preserve the chain and be done.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002909 Results.push_back(Node->getOperand(0));
2910 break;
2911 case ISD::EH_SJLJ_SETJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002912 // If the target didn't expand this, just return 'zero' and preserve the
2913 // chain.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002914 Results.push_back(DAG.getConstant(0, dl, MVT::i32));
Eli Friedman21d349b2009-05-27 01:25:56 +00002915 Results.push_back(Node->getOperand(0));
2916 break;
Tim Northovera2b53392013-04-20 12:32:17 +00002917 case ISD::ATOMIC_FENCE: {
Jim Grosbachba451e82010-06-17 02:00:53 +00002918 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman26a48482011-07-27 22:21:52 +00002919 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachba451e82010-06-17 02:00:53 +00002920 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002921
2922 TargetLowering::CallLoweringInfo CLI(DAG);
Mehdi Amini44ede332015-07-09 02:09:04 +00002923 CLI.setDebugLoc(dl)
2924 .setChain(Node->getOperand(0))
2925 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
2926 DAG.getExternalSymbol("__sync_synchronize",
2927 TLI.getPointerTy(DAG.getDataLayout())),
2928 std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002929
Justin Holewinskiaa583972012-05-25 16:35:28 +00002930 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2931
Jim Grosbachba451e82010-06-17 02:00:53 +00002932 Results.push_back(CallResult.second);
2933 break;
2934 }
Eli Friedman452aae62011-08-26 02:59:24 +00002935 case ISD::ATOMIC_LOAD: {
2936 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002937 SDValue Zero = DAG.getConstant(0, dl, Node->getValueType(0));
Tim Northover420a2162014-06-13 14:24:07 +00002938 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
2939 SDValue Swap = DAG.getAtomicCmpSwap(
2940 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
2941 Node->getOperand(0), Node->getOperand(1), Zero, Zero,
2942 cast<AtomicSDNode>(Node)->getMemOperand(),
2943 cast<AtomicSDNode>(Node)->getOrdering(),
2944 cast<AtomicSDNode>(Node)->getOrdering(),
2945 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman452aae62011-08-26 02:59:24 +00002946 Results.push_back(Swap.getValue(0));
2947 Results.push_back(Swap.getValue(1));
2948 break;
2949 }
2950 case ISD::ATOMIC_STORE: {
2951 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2952 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2953 cast<AtomicSDNode>(Node)->getMemoryVT(),
2954 Node->getOperand(0),
2955 Node->getOperand(1), Node->getOperand(2),
2956 cast<AtomicSDNode>(Node)->getMemOperand(),
2957 cast<AtomicSDNode>(Node)->getOrdering(),
2958 cast<AtomicSDNode>(Node)->getSynchScope());
2959 Results.push_back(Swap.getValue(1));
2960 break;
2961 }
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00002962 // By default, atomic intrinsics are marked Legal and lowered. Targets
2963 // which don't support them directly, however, may want libcalls, in which
2964 // case they mark them Expand, and we get here.
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00002965 case ISD::ATOMIC_SWAP:
2966 case ISD::ATOMIC_LOAD_ADD:
2967 case ISD::ATOMIC_LOAD_SUB:
2968 case ISD::ATOMIC_LOAD_AND:
2969 case ISD::ATOMIC_LOAD_OR:
2970 case ISD::ATOMIC_LOAD_XOR:
2971 case ISD::ATOMIC_LOAD_NAND:
2972 case ISD::ATOMIC_LOAD_MIN:
2973 case ISD::ATOMIC_LOAD_MAX:
2974 case ISD::ATOMIC_LOAD_UMIN:
2975 case ISD::ATOMIC_LOAD_UMAX:
Evan Chengf5d62532010-06-18 22:01:37 +00002976 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002977 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2978 Results.push_back(Tmp.first);
2979 Results.push_back(Tmp.second);
Jim Grosbach0ed5b462010-06-17 17:58:54 +00002980 break;
Evan Chengf5d62532010-06-18 22:01:37 +00002981 }
Tim Northover420a2162014-06-13 14:24:07 +00002982 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
2983 // Expanding an ATOMIC_CMP_SWAP_WITH_SUCCESS produces an ATOMIC_CMP_SWAP and
2984 // splits out the success value as a comparison. Expanding the resulting
2985 // ATOMIC_CMP_SWAP will produce a libcall.
2986 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
2987 SDValue Res = DAG.getAtomicCmpSwap(
2988 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
2989 Node->getOperand(0), Node->getOperand(1), Node->getOperand(2),
2990 Node->getOperand(3), cast<MemSDNode>(Node)->getMemOperand(),
2991 cast<AtomicSDNode>(Node)->getSuccessOrdering(),
2992 cast<AtomicSDNode>(Node)->getFailureOrdering(),
2993 cast<AtomicSDNode>(Node)->getSynchScope());
2994
2995 SDValue Success = DAG.getSetCC(SDLoc(Node), Node->getValueType(1),
2996 Res, Node->getOperand(2), ISD::SETEQ);
2997
2998 Results.push_back(Res.getValue(0));
2999 Results.push_back(Success);
3000 Results.push_back(Res.getValue(1));
3001 break;
3002 }
Eli Friedman2892d822009-05-27 12:20:41 +00003003 case ISD::DYNAMIC_STACKALLOC:
3004 ExpandDYNAMIC_STACKALLOC(Node, Results);
3005 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003006 case ISD::MERGE_VALUES:
3007 for (unsigned i = 0; i < Node->getNumValues(); i++)
3008 Results.push_back(Node->getOperand(i));
3009 break;
3010 case ISD::UNDEF: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003011 EVT VT = Node->getValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00003012 if (VT.isInteger())
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003013 Results.push_back(DAG.getConstant(0, dl, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003014 else {
3015 assert(VT.isFloatingPoint() && "Unknown value type!");
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003016 Results.push_back(DAG.getConstantFP(0, dl, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003017 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003018 break;
3019 }
3020 case ISD::TRAP: {
3021 // If this operation is not supported, lower it to 'abort()' call
3022 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003023 TargetLowering::CallLoweringInfo CLI(DAG);
Mehdi Amini44ede332015-07-09 02:09:04 +00003024 CLI.setDebugLoc(dl)
3025 .setChain(Node->getOperand(0))
3026 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
3027 DAG.getExternalSymbol("abort",
3028 TLI.getPointerTy(DAG.getDataLayout())),
3029 std::move(Args), 0);
Justin Holewinskiaa583972012-05-25 16:35:28 +00003030 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3031
Eli Friedman21d349b2009-05-27 01:25:56 +00003032 Results.push_back(CallResult.second);
3033 break;
3034 }
3035 case ISD::FP_ROUND:
Wesley Peck527da1b2010-11-23 03:31:01 +00003036 case ISD::BITCAST:
Eli Friedman21d349b2009-05-27 01:25:56 +00003037 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3038 Node->getValueType(0), dl);
3039 Results.push_back(Tmp1);
3040 break;
3041 case ISD::FP_EXTEND:
3042 Tmp1 = EmitStackConvert(Node->getOperand(0),
3043 Node->getOperand(0).getValueType(),
3044 Node->getValueType(0), dl);
3045 Results.push_back(Tmp1);
3046 break;
3047 case ISD::SIGN_EXTEND_INREG: {
3048 // NOTE: we could fall back on load/store here too for targets without
3049 // SAR. However, it is doubtful that any exist.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003050 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman1d459e42009-12-11 21:31:27 +00003051 EVT VT = Node->getValueType(0);
Mehdi Amini9639d652015-07-09 02:09:20 +00003052 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT, DAG.getDataLayout());
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003053 if (VT.isVector())
Dan Gohman1d459e42009-12-11 21:31:27 +00003054 ShiftAmountTy = VT;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003055 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
3056 ExtraVT.getScalarType().getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003057 SDValue ShiftCst = DAG.getConstant(BitsDiff, dl, ShiftAmountTy);
Eli Friedman21d349b2009-05-27 01:25:56 +00003058 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
3059 Node->getOperand(0), ShiftCst);
Bill Wendlingef408db2009-12-23 00:28:23 +00003060 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
3061 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003062 break;
3063 }
3064 case ISD::FP_ROUND_INREG: {
3065 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003066 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman21d349b2009-05-27 01:25:56 +00003067
3068 // NOTE: there is a choice here between constantly creating new stack
3069 // slots and always reusing the same one. We currently always create
3070 // new ones, as reuse may inhibit scheduling.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003071 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00003072 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
3073 Node->getValueType(0), dl);
3074 Results.push_back(Tmp1);
3075 break;
3076 }
3077 case ISD::SINT_TO_FP:
3078 case ISD::UINT_TO_FP:
3079 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
3080 Node->getOperand(0), Node->getValueType(0), dl);
3081 Results.push_back(Tmp1);
3082 break;
Jan Veselyeca89d22014-07-10 22:40:18 +00003083 case ISD::FP_TO_SINT:
3084 if (TLI.expandFP_TO_SINT(Node, Tmp1, DAG))
3085 Results.push_back(Tmp1);
Tom Stellardaad46592014-06-17 16:53:07 +00003086 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003087 case ISD::FP_TO_UINT: {
3088 SDValue True, False;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003089 EVT VT = Node->getOperand(0).getValueType();
3090 EVT NVT = Node->getValueType(0);
Tim Northover29178a32013-01-22 09:46:31 +00003091 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
3092 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman21d349b2009-05-27 01:25:56 +00003093 APInt x = APInt::getSignBit(NVT.getSizeInBits());
3094 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003095 Tmp1 = DAG.getConstantFP(apf, dl, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003096 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman21d349b2009-05-27 01:25:56 +00003097 Node->getOperand(0),
3098 Tmp1, ISD::SETLT);
3099 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003100 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
3101 DAG.getNode(ISD::FSUB, dl, VT,
3102 Node->getOperand(0), Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00003103 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003104 DAG.getConstant(x, dl, NVT));
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003105 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman21d349b2009-05-27 01:25:56 +00003106 Results.push_back(Tmp1);
3107 break;
3108 }
Eli Friedman3b251702009-05-27 07:58:35 +00003109 case ISD::VAARG: {
3110 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003111 EVT VT = Node->getValueType(0);
Eli Friedman3b251702009-05-27 07:58:35 +00003112 Tmp1 = Node->getOperand(0);
3113 Tmp2 = Node->getOperand(1);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003114 unsigned Align = Node->getConstantOperandVal(3);
3115
Mehdi Amini44ede332015-07-09 02:09:04 +00003116 SDValue VAListLoad =
3117 DAG.getLoad(TLI.getPointerTy(DAG.getDataLayout()), dl, Tmp1, Tmp2,
3118 MachinePointerInfo(V), false, false, false, 0);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003119 SDValue VAList = VAListLoad;
3120
Rafael Espindolaa76eccf2010-07-11 04:01:49 +00003121 if (Align > TLI.getMinStackArgumentAlignment()) {
3122 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
3123
Tom Stellard838e2342013-08-26 15:06:10 +00003124 VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003125 DAG.getConstant(Align - 1, dl,
Tom Stellard838e2342013-08-26 15:06:10 +00003126 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003127
Tom Stellard838e2342013-08-26 15:06:10 +00003128 VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003129 DAG.getConstant(-(int64_t)Align, dl,
Tom Stellard838e2342013-08-26 15:06:10 +00003130 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003131 }
3132
Eli Friedman3b251702009-05-27 07:58:35 +00003133 // Increment the pointer, VAList, to the next vaarg
Tom Stellard838e2342013-08-26 15:06:10 +00003134 Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00003135 DAG.getConstant(DAG.getDataLayout().getTypeAllocSize(
3136 VT.getTypeForEVT(*DAG.getContext())),
3137 dl, VAList.getValueType()));
Eli Friedman3b251702009-05-27 07:58:35 +00003138 // Store the incremented VAList to the legalized pointer
Chris Lattner676c61d2010-09-21 18:41:36 +00003139 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
3140 MachinePointerInfo(V), false, false, 0);
Eli Friedman3b251702009-05-27 07:58:35 +00003141 // Load the actual argument out of the pointer VAList
Chris Lattner1ffcf522010-09-21 16:36:31 +00003142 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003143 false, false, false, 0));
Eli Friedman3b251702009-05-27 07:58:35 +00003144 Results.push_back(Results[0].getValue(1));
3145 break;
3146 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003147 case ISD::VACOPY: {
3148 // This defaults to loading a pointer from the input and storing it to the
3149 // output, returning the chain.
3150 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3151 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Mehdi Amini44ede332015-07-09 02:09:04 +00003152 Tmp1 = DAG.getLoad(TLI.getPointerTy(DAG.getDataLayout()), dl,
3153 Node->getOperand(0), Node->getOperand(2),
3154 MachinePointerInfo(VS), false, false, false, 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +00003155 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
3156 MachinePointerInfo(VD), false, false, 0);
Bill Wendlingef408db2009-12-23 00:28:23 +00003157 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003158 break;
3159 }
3160 case ISD::EXTRACT_VECTOR_ELT:
3161 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3162 // This must be an access of the only element. Return it.
Wesley Peck527da1b2010-11-23 03:31:01 +00003163 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman21d349b2009-05-27 01:25:56 +00003164 Node->getOperand(0));
3165 else
3166 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3167 Results.push_back(Tmp1);
3168 break;
3169 case ISD::EXTRACT_SUBVECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003170 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00003171 break;
David Greenebab5e6e2011-01-26 19:13:22 +00003172 case ISD::INSERT_SUBVECTOR:
3173 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3174 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003175 case ISD::CONCAT_VECTORS: {
Bill Wendlingef408db2009-12-23 00:28:23 +00003176 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman3b251702009-05-27 07:58:35 +00003177 break;
3178 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003179 case ISD::SCALAR_TO_VECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003180 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman21d349b2009-05-27 01:25:56 +00003181 break;
Eli Friedmana8f9a022009-05-27 02:16:40 +00003182 case ISD::INSERT_VECTOR_ELT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003183 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3184 Node->getOperand(1),
3185 Node->getOperand(2), dl));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003186 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003187 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00003188 SmallVector<int, 32> NewMask;
3189 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00003190
Owen Anderson53aa7a92009-08-10 22:56:29 +00003191 EVT VT = Node->getValueType(0);
3192 EVT EltVT = VT.getVectorElementType();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003193 SDValue Op0 = Node->getOperand(0);
3194 SDValue Op1 = Node->getOperand(1);
3195 if (!TLI.isTypeLegal(EltVT)) {
3196
3197 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3198
3199 // BUILD_VECTOR operands are allowed to be wider than the element type.
Jack Carter5c0af482013-11-19 23:43:22 +00003200 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept
3201 // it.
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003202 if (NewEltVT.bitsLT(EltVT)) {
3203
3204 // Convert shuffle node.
3205 // If original node was v4i64 and the new EltVT is i32,
3206 // cast operands to v8i32 and re-build the mask.
3207
3208 // Calculate new VT, the size of the new VT should be equal to original.
Jack Carter5c0af482013-11-19 23:43:22 +00003209 EVT NewVT =
3210 EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3211 VT.getSizeInBits() / NewEltVT.getSizeInBits());
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003212 assert(NewVT.bitsEq(VT));
3213
3214 // cast operands to new VT
3215 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3216 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3217
3218 // Convert the shuffle mask
Jack Carter5c0af482013-11-19 23:43:22 +00003219 unsigned int factor =
3220 NewVT.getVectorNumElements()/VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003221
3222 // EltVT gets smaller
3223 assert(factor > 0);
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003224
3225 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3226 if (Mask[i] < 0) {
3227 for (unsigned fi = 0; fi < factor; ++fi)
3228 NewMask.push_back(Mask[i]);
3229 }
3230 else {
3231 for (unsigned fi = 0; fi < factor; ++fi)
3232 NewMask.push_back(Mask[i]*factor+fi);
3233 }
3234 }
3235 Mask = NewMask;
3236 VT = NewVT;
3237 }
3238 EltVT = NewEltVT;
3239 }
Eli Friedman3b251702009-05-27 07:58:35 +00003240 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003241 SmallVector<SDValue, 16> Ops;
Eli Friedman3b251702009-05-27 07:58:35 +00003242 for (unsigned i = 0; i != NumElems; ++i) {
3243 if (Mask[i] < 0) {
3244 Ops.push_back(DAG.getUNDEF(EltVT));
3245 continue;
3246 }
3247 unsigned Idx = Mask[i];
3248 if (Idx < NumElems)
Mehdi Amini44ede332015-07-09 02:09:04 +00003249 Ops.push_back(DAG.getNode(
3250 ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Op0,
3251 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout()))));
Eli Friedman3b251702009-05-27 07:58:35 +00003252 else
Mehdi Amini44ede332015-07-09 02:09:04 +00003253 Ops.push_back(DAG.getNode(
3254 ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Op1,
3255 DAG.getConstant(Idx - NumElems, dl,
3256 TLI.getVectorIdxTy(DAG.getDataLayout()))));
Eli Friedman3b251702009-05-27 07:58:35 +00003257 }
Nadav Rotem61bdf792012-01-10 14:28:46 +00003258
Craig Topper48d114b2014-04-26 18:35:24 +00003259 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
Nadav Rotem61bdf792012-01-10 14:28:46 +00003260 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3261 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00003262 Results.push_back(Tmp1);
3263 break;
3264 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003265 case ISD::EXTRACT_ELEMENT: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003266 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman21d349b2009-05-27 01:25:56 +00003267 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3268 // 1 -> Hi
3269 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Mehdi Amini9639d652015-07-09 02:09:20 +00003270 DAG.getConstant(OpTy.getSizeInBits() / 2, dl,
3271 TLI.getShiftAmountTy(
3272 Node->getOperand(0).getValueType(),
3273 DAG.getDataLayout())));
Eli Friedman21d349b2009-05-27 01:25:56 +00003274 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3275 } else {
3276 // 0 -> Lo
3277 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3278 Node->getOperand(0));
3279 }
3280 Results.push_back(Tmp1);
3281 break;
3282 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003283 case ISD::STACKSAVE:
3284 // Expand to CopyFromReg if the target set
3285 // StackPointerRegisterToSaveRestore.
3286 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003287 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3288 Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003289 Results.push_back(Results[0].getValue(1));
3290 } else {
Bill Wendlingef408db2009-12-23 00:28:23 +00003291 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003292 Results.push_back(Node->getOperand(0));
3293 }
3294 break;
3295 case ISD::STACKRESTORE:
Bill Wendlingef408db2009-12-23 00:28:23 +00003296 // Expand to CopyToReg if the target set
3297 // StackPointerRegisterToSaveRestore.
3298 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3299 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3300 Node->getOperand(1)));
3301 } else {
3302 Results.push_back(Node->getOperand(0));
3303 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003304 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003305 case ISD::FCOPYSIGN:
Bill Wendlingef408db2009-12-23 00:28:23 +00003306 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00003307 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003308 case ISD::FNEG:
3309 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003310 Tmp1 = DAG.getConstantFP(-0.0, dl, Node->getValueType(0));
Eli Friedmand6f28342009-05-27 03:33:44 +00003311 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3312 Node->getOperand(0));
3313 Results.push_back(Tmp1);
3314 break;
Matthias Braun75e668e2015-07-14 02:09:57 +00003315 case ISD::FABS: {
3316 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3317 EVT VT = Node->getValueType(0);
3318 Tmp1 = Node->getOperand(0);
3319 Tmp2 = DAG.getConstantFP(0.0, dl, VT);
3320 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
3321 Tmp1, Tmp2, ISD::SETUGT);
3322 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3323 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
3324 Results.push_back(Tmp1);
Eli Friedmand6f28342009-05-27 03:33:44 +00003325 break;
Matthias Braun75e668e2015-07-14 02:09:57 +00003326 }
James Molloy7e9776b2015-05-15 09:03:15 +00003327 case ISD::SMIN:
3328 case ISD::SMAX:
3329 case ISD::UMIN:
3330 case ISD::UMAX: {
3331 // Expand Y = MAX(A, B) -> Y = (A > B) ? A : B
3332 ISD::CondCode Pred;
3333 switch (Node->getOpcode()) {
3334 default: llvm_unreachable("How did we get here?");
3335 case ISD::SMAX: Pred = ISD::SETGT; break;
3336 case ISD::SMIN: Pred = ISD::SETLT; break;
3337 case ISD::UMAX: Pred = ISD::SETUGT; break;
3338 case ISD::UMIN: Pred = ISD::SETULT; break;
3339 }
3340 Tmp1 = Node->getOperand(0);
3341 Tmp2 = Node->getOperand(1);
3342 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp1, Tmp2, Pred);
3343 Results.push_back(Tmp1);
3344 break;
3345 }
3346
Matt Arsenault7c936902014-10-21 23:01:01 +00003347 case ISD::FMINNUM:
3348 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMIN_F32, RTLIB::FMIN_F64,
3349 RTLIB::FMIN_F80, RTLIB::FMIN_F128,
3350 RTLIB::FMIN_PPCF128));
3351 break;
3352 case ISD::FMAXNUM:
3353 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMAX_F32, RTLIB::FMAX_F64,
3354 RTLIB::FMAX_F80, RTLIB::FMAX_F128,
3355 RTLIB::FMAX_PPCF128));
3356 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003357 case ISD::FSQRT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003358 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003359 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3360 RTLIB::SQRT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003361 break;
3362 case ISD::FSIN:
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003363 case ISD::FCOS: {
3364 EVT VT = Node->getValueType(0);
3365 bool isSIN = Node->getOpcode() == ISD::FSIN;
3366 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3367 // fcos which share the same operand and both are used.
3368 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmondf29ddfe2013-02-15 18:45:18 +00003369 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003370 && useSinCos(Node)) {
3371 SDVTList VTs = DAG.getVTList(VT, VT);
3372 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3373 if (!isSIN)
3374 Tmp1 = Tmp1.getValue(1);
3375 Results.push_back(Tmp1);
3376 } else if (isSIN) {
3377 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3378 RTLIB::SIN_F80, RTLIB::SIN_F128,
3379 RTLIB::SIN_PPCF128));
3380 } else {
3381 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3382 RTLIB::COS_F80, RTLIB::COS_F128,
3383 RTLIB::COS_PPCF128));
3384 }
Eli Friedmand6f28342009-05-27 03:33:44 +00003385 break;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003386 }
3387 case ISD::FSINCOS:
3388 // Expand into sincos libcall.
3389 ExpandSinCosLibCall(Node, Results);
Eli Friedmand6f28342009-05-27 03:33:44 +00003390 break;
3391 case ISD::FLOG:
Bill Wendlingef408db2009-12-23 00:28:23 +00003392 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003393 RTLIB::LOG_F80, RTLIB::LOG_F128,
3394 RTLIB::LOG_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003395 break;
3396 case ISD::FLOG2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003397 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003398 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3399 RTLIB::LOG2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003400 break;
3401 case ISD::FLOG10:
Bill Wendlingef408db2009-12-23 00:28:23 +00003402 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003403 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3404 RTLIB::LOG10_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003405 break;
3406 case ISD::FEXP:
Bill Wendlingef408db2009-12-23 00:28:23 +00003407 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003408 RTLIB::EXP_F80, RTLIB::EXP_F128,
3409 RTLIB::EXP_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003410 break;
3411 case ISD::FEXP2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003412 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003413 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3414 RTLIB::EXP2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003415 break;
3416 case ISD::FTRUNC:
Bill Wendlingef408db2009-12-23 00:28:23 +00003417 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003418 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3419 RTLIB::TRUNC_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003420 break;
3421 case ISD::FFLOOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003422 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003423 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3424 RTLIB::FLOOR_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003425 break;
3426 case ISD::FCEIL:
Bill Wendlingef408db2009-12-23 00:28:23 +00003427 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003428 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3429 RTLIB::CEIL_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003430 break;
3431 case ISD::FRINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003432 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003433 RTLIB::RINT_F80, RTLIB::RINT_F128,
3434 RTLIB::RINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003435 break;
3436 case ISD::FNEARBYINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003437 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3438 RTLIB::NEARBYINT_F64,
3439 RTLIB::NEARBYINT_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003440 RTLIB::NEARBYINT_F128,
Bill Wendlingef408db2009-12-23 00:28:23 +00003441 RTLIB::NEARBYINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003442 break;
Hal Finkel171817e2013-08-07 22:49:12 +00003443 case ISD::FROUND:
3444 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3445 RTLIB::ROUND_F64,
3446 RTLIB::ROUND_F80,
3447 RTLIB::ROUND_F128,
3448 RTLIB::ROUND_PPCF128));
3449 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003450 case ISD::FPOWI:
Bill Wendlingef408db2009-12-23 00:28:23 +00003451 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003452 RTLIB::POWI_F80, RTLIB::POWI_F128,
3453 RTLIB::POWI_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003454 break;
3455 case ISD::FPOW:
Bill Wendlingef408db2009-12-23 00:28:23 +00003456 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003457 RTLIB::POW_F80, RTLIB::POW_F128,
3458 RTLIB::POW_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003459 break;
3460 case ISD::FDIV:
Bill Wendlingef408db2009-12-23 00:28:23 +00003461 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003462 RTLIB::DIV_F80, RTLIB::DIV_F128,
3463 RTLIB::DIV_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003464 break;
3465 case ISD::FREM:
Bill Wendlingef408db2009-12-23 00:28:23 +00003466 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003467 RTLIB::REM_F80, RTLIB::REM_F128,
3468 RTLIB::REM_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003469 break;
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003470 case ISD::FMA:
3471 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003472 RTLIB::FMA_F80, RTLIB::FMA_F128,
3473 RTLIB::FMA_PPCF128));
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003474 break;
Matt Arsenault0dc54c42015-02-20 22:10:33 +00003475 case ISD::FMAD:
3476 llvm_unreachable("Illegal fmad should never be formed");
3477
Oliver Stannard51b1d462014-08-21 12:50:31 +00003478 case ISD::FADD:
3479 Results.push_back(ExpandFPLibCall(Node, RTLIB::ADD_F32, RTLIB::ADD_F64,
3480 RTLIB::ADD_F80, RTLIB::ADD_F128,
3481 RTLIB::ADD_PPCF128));
3482 break;
3483 case ISD::FMUL:
3484 Results.push_back(ExpandFPLibCall(Node, RTLIB::MUL_F32, RTLIB::MUL_F64,
3485 RTLIB::MUL_F80, RTLIB::MUL_F128,
3486 RTLIB::MUL_PPCF128));
3487 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00003488 case ISD::FP16_TO_FP: {
3489 if (Node->getValueType(0) == MVT::f32) {
3490 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3491 break;
3492 }
3493
3494 // We can extend to types bigger than f32 in two steps without changing the
3495 // result. Since "f16 -> f32" is much more commonly available, give CodeGen
3496 // the option of emitting that before resorting to a libcall.
3497 SDValue Res =
3498 DAG.getNode(ISD::FP16_TO_FP, dl, MVT::f32, Node->getOperand(0));
3499 Results.push_back(
3500 DAG.getNode(ISD::FP_EXTEND, dl, Node->getValueType(0), Res));
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003501 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00003502 }
Tim Northover84ce0a62014-07-17 11:12:12 +00003503 case ISD::FP_TO_FP16: {
Eric Christopher824f42f2015-05-12 01:26:05 +00003504 if (!TLI.useSoftFloat() && TM.Options.UnsafeFPMath) {
Andrea Di Biagioaf3f3972015-02-23 22:59:02 +00003505 SDValue Op = Node->getOperand(0);
3506 MVT SVT = Op.getSimpleValueType();
3507 if ((SVT == MVT::f64 || SVT == MVT::f80) &&
3508 TLI.isOperationLegalOrCustom(ISD::FP_TO_FP16, MVT::f32)) {
3509 // Under fastmath, we can expand this node into a fround followed by
3510 // a float-half conversion.
3511 SDValue FloatVal = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003512 DAG.getIntPtrConstant(0, dl));
Andrea Di Biagioaf3f3972015-02-23 22:59:02 +00003513 Results.push_back(
3514 DAG.getNode(ISD::FP_TO_FP16, dl, MVT::i16, FloatVal));
3515 break;
3516 }
3517 }
3518
Tim Northover84ce0a62014-07-17 11:12:12 +00003519 RTLIB::Libcall LC =
3520 RTLIB::getFPROUND(Node->getOperand(0).getValueType(), MVT::f16);
3521 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unable to expand fp_to_fp16");
3522 Results.push_back(ExpandLibCall(LC, Node, false));
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003523 break;
Tim Northover84ce0a62014-07-17 11:12:12 +00003524 }
Eli Friedman0e494312009-05-27 07:32:27 +00003525 case ISD::ConstantFP: {
3526 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendlingef408db2009-12-23 00:28:23 +00003527 // Check to see if this FP immediate is already legal.
3528 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman198b7ff2011-11-03 21:49:52 +00003529 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3530 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedman0e494312009-05-27 07:32:27 +00003531 break;
3532 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003533 case ISD::FSUB: {
3534 EVT VT = Node->getValueType(0);
Oliver Stannard51b1d462014-08-21 12:50:31 +00003535 if (TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3536 TLI.isOperationLegalOrCustom(ISD::FNEG, VT)) {
3537 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3538 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3539 Results.push_back(Tmp1);
3540 } else {
3541 Results.push_back(ExpandFPLibCall(Node, RTLIB::SUB_F32, RTLIB::SUB_F64,
3542 RTLIB::SUB_F80, RTLIB::SUB_F128,
3543 RTLIB::SUB_PPCF128));
3544 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003545 break;
3546 }
Eli Friedman56883962009-05-27 07:05:37 +00003547 case ISD::SUB: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003548 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003549 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3550 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3551 "Don't know how to expand this subtraction!");
3552 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003553 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), dl,
3554 VT));
3555 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, dl, VT));
Bill Wendlingef408db2009-12-23 00:28:23 +00003556 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman56883962009-05-27 07:05:37 +00003557 break;
3558 }
Eli Friedman0e494312009-05-27 07:32:27 +00003559 case ISD::UREM:
3560 case ISD::SREM: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003561 EVT VT = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003562 bool isSigned = Node->getOpcode() == ISD::SREM;
3563 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3564 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3565 Tmp2 = Node->getOperand(0);
3566 Tmp3 = Node->getOperand(1);
Evan Chengb14ce092011-04-16 03:08:26 +00003567 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3568 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng21c4adc2012-10-12 01:15:47 +00003569 // If div is legal, it's better to do the normal expansion
3570 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003571 useDivRem(Node, isSigned, false))) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003572 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmane1bc3792009-05-28 03:06:16 +00003573 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3574 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedman0e494312009-05-27 07:32:27 +00003575 // X % Y -> X-X/Y*Y
3576 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3577 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3578 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Chengb14ce092011-04-16 03:08:26 +00003579 } else if (isSigned)
3580 Tmp1 = ExpandIntLibCall(Node, true,
3581 RTLIB::SREM_I8,
3582 RTLIB::SREM_I16, RTLIB::SREM_I32,
3583 RTLIB::SREM_I64, RTLIB::SREM_I128);
3584 else
3585 Tmp1 = ExpandIntLibCall(Node, false,
3586 RTLIB::UREM_I8,
3587 RTLIB::UREM_I16, RTLIB::UREM_I32,
3588 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003589 Results.push_back(Tmp1);
3590 break;
3591 }
Eli Friedman0e494312009-05-27 07:32:27 +00003592 case ISD::UDIV:
3593 case ISD::SDIV: {
3594 bool isSigned = Node->getOpcode() == ISD::SDIV;
3595 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003596 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003597 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Chengb14ce092011-04-16 03:08:26 +00003598 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3599 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003600 useDivRem(Node, isSigned, true)))
Eli Friedman0e494312009-05-27 07:32:27 +00003601 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3602 Node->getOperand(1));
Evan Chengb14ce092011-04-16 03:08:26 +00003603 else if (isSigned)
3604 Tmp1 = ExpandIntLibCall(Node, true,
3605 RTLIB::SDIV_I8,
3606 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3607 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3608 else
3609 Tmp1 = ExpandIntLibCall(Node, false,
3610 RTLIB::UDIV_I8,
3611 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3612 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003613 Results.push_back(Tmp1);
3614 break;
3615 }
3616 case ISD::MULHU:
3617 case ISD::MULHS: {
3618 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3619 ISD::SMUL_LOHI;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003620 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003621 SDVTList VTs = DAG.getVTList(VT, VT);
3622 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3623 "If this wasn't legal, it shouldn't have been created!");
3624 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3625 Node->getOperand(1));
3626 Results.push_back(Tmp1.getValue(1));
3627 break;
3628 }
Evan Chengb14ce092011-04-16 03:08:26 +00003629 case ISD::SDIVREM:
3630 case ISD::UDIVREM:
3631 // Expand into divrem libcall
3632 ExpandDivRemLibCall(Node, Results);
3633 break;
Eli Friedman56883962009-05-27 07:05:37 +00003634 case ISD::MUL: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003635 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003636 SDVTList VTs = DAG.getVTList(VT, VT);
3637 // See if multiply or divide can be lowered using two-result operations.
3638 // We just need the low half of the multiply; try both the signed
3639 // and unsigned forms. If the target supports both SMUL_LOHI and
3640 // UMUL_LOHI, form a preference by checking which forms of plain
3641 // MULH it supports.
3642 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3643 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3644 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3645 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3646 unsigned OpToUse = 0;
3647 if (HasSMUL_LOHI && !HasMULHS) {
3648 OpToUse = ISD::SMUL_LOHI;
3649 } else if (HasUMUL_LOHI && !HasMULHU) {
3650 OpToUse = ISD::UMUL_LOHI;
3651 } else if (HasSMUL_LOHI) {
3652 OpToUse = ISD::SMUL_LOHI;
3653 } else if (HasUMUL_LOHI) {
3654 OpToUse = ISD::UMUL_LOHI;
3655 }
3656 if (OpToUse) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003657 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3658 Node->getOperand(1)));
Eli Friedman56883962009-05-27 07:05:37 +00003659 break;
3660 }
Tom Stellarda1a5d9a2014-04-11 16:12:01 +00003661
3662 SDValue Lo, Hi;
3663 EVT HalfType = VT.getHalfSizedIntegerVT(*DAG.getContext());
3664 if (TLI.isOperationLegalOrCustom(ISD::ZERO_EXTEND, VT) &&
3665 TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND, VT) &&
3666 TLI.isOperationLegalOrCustom(ISD::SHL, VT) &&
3667 TLI.isOperationLegalOrCustom(ISD::OR, VT) &&
3668 TLI.expandMUL(Node, Lo, Hi, HalfType, DAG)) {
3669 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Lo);
3670 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, VT, Hi);
Mehdi Amini9639d652015-07-09 02:09:20 +00003671 SDValue Shift =
3672 DAG.getConstant(HalfType.getSizeInBits(), dl,
3673 TLI.getShiftAmountTy(HalfType, DAG.getDataLayout()));
Tom Stellarda1a5d9a2014-04-11 16:12:01 +00003674 Hi = DAG.getNode(ISD::SHL, dl, VT, Hi, Shift);
3675 Results.push_back(DAG.getNode(ISD::OR, dl, VT, Lo, Hi));
3676 break;
3677 }
3678
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00003679 Tmp1 = ExpandIntLibCall(Node, false,
3680 RTLIB::MUL_I8,
3681 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman56883962009-05-27 07:05:37 +00003682 RTLIB::MUL_I64, RTLIB::MUL_I128);
3683 Results.push_back(Tmp1);
3684 break;
3685 }
Eli Friedman2892d822009-05-27 12:20:41 +00003686 case ISD::SADDO:
3687 case ISD::SSUBO: {
3688 SDValue LHS = Node->getOperand(0);
3689 SDValue RHS = Node->getOperand(1);
3690 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3691 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3692 LHS, RHS);
3693 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003694 EVT ResultType = Node->getValueType(1);
3695 EVT OType = getSetCCResultType(Node->getValueType(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003696
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003697 SDValue Zero = DAG.getConstant(0, dl, LHS.getValueType());
Eli Friedman2892d822009-05-27 12:20:41 +00003698
3699 // LHSSign -> LHS >= 0
3700 // RHSSign -> RHS >= 0
3701 // SumSign -> Sum >= 0
3702 //
3703 // Add:
3704 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3705 // Sub:
3706 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3707 //
3708 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3709 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3710 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3711 Node->getOpcode() == ISD::SADDO ?
3712 ISD::SETEQ : ISD::SETNE);
3713
3714 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3715 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3716
3717 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003718 Results.push_back(DAG.getBoolExtOrTrunc(Cmp, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003719 break;
3720 }
3721 case ISD::UADDO:
3722 case ISD::USUBO: {
3723 SDValue LHS = Node->getOperand(0);
3724 SDValue RHS = Node->getOperand(1);
3725 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3726 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3727 LHS, RHS);
3728 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003729
3730 EVT ResultType = Node->getValueType(1);
3731 EVT SetCCType = getSetCCResultType(Node->getValueType(0));
3732 ISD::CondCode CC
3733 = Node->getOpcode() == ISD::UADDO ? ISD::SETULT : ISD::SETUGT;
3734 SDValue SetCC = DAG.getSetCC(dl, SetCCType, Sum, LHS, CC);
3735
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003736 Results.push_back(DAG.getBoolExtOrTrunc(SetCC, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003737 break;
3738 }
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003739 case ISD::UMULO:
3740 case ISD::SMULO: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003741 EVT VT = Node->getValueType(0);
Eric Christopherbcaedb52011-04-20 01:19:45 +00003742 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003743 SDValue LHS = Node->getOperand(0);
3744 SDValue RHS = Node->getOperand(1);
3745 SDValue BottomHalf;
3746 SDValue TopHalf;
Nuno Lopes129819d2009-12-23 17:48:10 +00003747 static const unsigned Ops[2][3] =
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003748 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3749 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3750 bool isSigned = Node->getOpcode() == ISD::SMULO;
3751 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3752 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3753 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3754 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3755 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3756 RHS);
3757 TopHalf = BottomHalf.getValue(1);
Eric Christopher83dd2fa2014-04-28 22:24:57 +00003758 } else if (TLI.isTypeLegal(WideVT)) {
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003759 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3760 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3761 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3762 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003763 DAG.getIntPtrConstant(0, dl));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003764 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003765 DAG.getIntPtrConstant(1, dl));
Eric Christopherbb14f652011-01-20 00:29:24 +00003766 } else {
3767 // We can fall back to a libcall with an illegal type for the MUL if we
3768 // have a libcall big enough.
3769 // Also, we can fall back to a division in some cases, but that's a big
3770 // performance hit in the general case.
Eric Christopherbb14f652011-01-20 00:29:24 +00003771 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3772 if (WideVT == MVT::i16)
3773 LC = RTLIB::MUL_I16;
3774 else if (WideVT == MVT::i32)
3775 LC = RTLIB::MUL_I32;
3776 else if (WideVT == MVT::i64)
3777 LC = RTLIB::MUL_I64;
3778 else if (WideVT == MVT::i128)
3779 LC = RTLIB::MUL_I128;
3780 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanae9b1682011-05-16 22:09:53 +00003781
3782 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherbcaedb52011-04-20 01:19:45 +00003783 // part.
3784 unsigned LoSize = VT.getSizeInBits();
Mehdi Amini44ede332015-07-09 02:09:04 +00003785 SDValue HiLHS =
3786 DAG.getNode(ISD::SRA, dl, VT, RHS,
3787 DAG.getConstant(LoSize - 1, dl,
3788 TLI.getPointerTy(DAG.getDataLayout())));
3789 SDValue HiRHS =
3790 DAG.getNode(ISD::SRA, dl, VT, LHS,
3791 DAG.getConstant(LoSize - 1, dl,
3792 TLI.getPointerTy(DAG.getDataLayout())));
Owen Andersonb2c80da2011-02-25 21:41:48 +00003793
Eric Christopherbcaedb52011-04-20 01:19:45 +00003794 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3795 // pre-lowered to the correct types. This all depends upon WideVT not
3796 // being a legal type for the architecture and thus has to be split to
3797 // two arguments.
3798 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3799 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3800 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003801 DAG.getIntPtrConstant(0, dl));
Eric Christopherbcaedb52011-04-20 01:19:45 +00003802 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003803 DAG.getIntPtrConstant(1, dl));
Dan Gohman198b7ff2011-11-03 21:49:52 +00003804 // Ret is a node with an illegal type. Because such things are not
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00003805 // generally permitted during this phase of legalization, make sure the
3806 // node has no more uses. The above EXTRACT_ELEMENT nodes should have been
3807 // folded.
3808 assert(Ret->use_empty() &&
3809 "Unexpected uses of illegally type from expanded lib call.");
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003810 }
Dan Gohmanae9b1682011-05-16 22:09:53 +00003811
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003812 if (isSigned) {
Mehdi Amini9639d652015-07-09 02:09:20 +00003813 Tmp1 = DAG.getConstant(
3814 VT.getSizeInBits() - 1, dl,
3815 TLI.getShiftAmountTy(BottomHalf.getValueType(), DAG.getDataLayout()));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003816 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault758659232013-05-18 00:21:46 +00003817 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003818 ISD::SETNE);
3819 } else {
Matt Arsenault758659232013-05-18 00:21:46 +00003820 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003821 DAG.getConstant(0, dl, VT), ISD::SETNE);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003822 }
3823 Results.push_back(BottomHalf);
3824 Results.push_back(TopHalf);
3825 break;
3826 }
Eli Friedman0e494312009-05-27 07:32:27 +00003827 case ISD::BUILD_PAIR: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003828 EVT PairTy = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003829 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3830 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Mehdi Amini9639d652015-07-09 02:09:20 +00003831 Tmp2 = DAG.getNode(
3832 ISD::SHL, dl, PairTy, Tmp2,
3833 DAG.getConstant(PairTy.getSizeInBits() / 2, dl,
3834 TLI.getShiftAmountTy(PairTy, DAG.getDataLayout())));
Bill Wendlingef408db2009-12-23 00:28:23 +00003835 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedman0e494312009-05-27 07:32:27 +00003836 break;
3837 }
Eli Friedman3b251702009-05-27 07:58:35 +00003838 case ISD::SELECT:
3839 Tmp1 = Node->getOperand(0);
3840 Tmp2 = Node->getOperand(1);
3841 Tmp3 = Node->getOperand(2);
Bill Wendlingef408db2009-12-23 00:28:23 +00003842 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman3b251702009-05-27 07:58:35 +00003843 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3844 Tmp2, Tmp3,
3845 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendlingef408db2009-12-23 00:28:23 +00003846 } else {
Eli Friedman3b251702009-05-27 07:58:35 +00003847 Tmp1 = DAG.getSelectCC(dl, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003848 DAG.getConstant(0, dl, Tmp1.getValueType()),
Eli Friedman3b251702009-05-27 07:58:35 +00003849 Tmp2, Tmp3, ISD::SETNE);
Bill Wendlingef408db2009-12-23 00:28:23 +00003850 }
Eli Friedman3b251702009-05-27 07:58:35 +00003851 Results.push_back(Tmp1);
3852 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003853 case ISD::BR_JT: {
3854 SDValue Chain = Node->getOperand(0);
3855 SDValue Table = Node->getOperand(1);
3856 SDValue Index = Node->getOperand(2);
3857
Mehdi Amini44ede332015-07-09 02:09:04 +00003858 EVT PTy = TLI.getPointerTy(DAG.getDataLayout());
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003859
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00003860 const DataLayout &TD = DAG.getDataLayout();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003861 unsigned EntrySize =
3862 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00003863
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003864 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(), Index,
3865 DAG.getConstant(EntrySize, dl, Index.getValueType()));
Tom Stellard838e2342013-08-26 15:06:10 +00003866 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3867 Index, Table);
Eli Friedman2892d822009-05-27 12:20:41 +00003868
Owen Anderson117c9e82009-08-12 00:36:31 +00003869 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastings81c43062011-02-16 16:23:55 +00003870 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattnera35499e2010-09-21 07:32:19 +00003871 MachinePointerInfo::getJumpTable(), MemVT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00003872 false, false, false, 0);
Eli Friedman2892d822009-05-27 12:20:41 +00003873 Addr = LD;
Dan Gohmanc3349602010-04-19 19:05:59 +00003874 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman2892d822009-05-27 12:20:41 +00003875 // For PIC, the sequence is:
Bill Wendlingef408db2009-12-23 00:28:23 +00003876 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman2892d822009-05-27 12:20:41 +00003877 // RelocBase can be JumpTable, GOT or some sort of global base.
3878 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3879 TLI.getPICJumpTableRelocBase(Table, DAG));
3880 }
Owen Anderson9f944592009-08-11 20:47:22 +00003881 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman2892d822009-05-27 12:20:41 +00003882 Results.push_back(Tmp1);
3883 break;
3884 }
Eli Friedman0e494312009-05-27 07:32:27 +00003885 case ISD::BRCOND:
3886 // Expand brcond's setcc into its constituent parts and create a BR_CC
3887 // Node.
3888 Tmp1 = Node->getOperand(0);
3889 Tmp2 = Node->getOperand(1);
Bill Wendlingef408db2009-12-23 00:28:23 +00003890 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson9f944592009-08-11 20:47:22 +00003891 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedman0e494312009-05-27 07:32:27 +00003892 Tmp1, Tmp2.getOperand(2),
3893 Tmp2.getOperand(0), Tmp2.getOperand(1),
3894 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003895 } else {
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003896 // We test only the i1 bit. Skip the AND if UNDEF.
3897 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3898 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003899 DAG.getConstant(1, dl, Tmp2.getValueType()));
Owen Anderson9f944592009-08-11 20:47:22 +00003900 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003901 DAG.getCondCode(ISD::SETNE), Tmp3,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003902 DAG.getConstant(0, dl, Tmp3.getValueType()),
Eli Friedman0e494312009-05-27 07:32:27 +00003903 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003904 }
Eli Friedman0e494312009-05-27 07:32:27 +00003905 Results.push_back(Tmp1);
3906 break;
Eli Friedman5df72022009-05-28 03:56:57 +00003907 case ISD::SETCC: {
3908 Tmp1 = Node->getOperand(0);
3909 Tmp2 = Node->getOperand(1);
3910 Tmp3 = Node->getOperand(2);
Tom Stellard08690a12013-09-28 02:50:32 +00003911 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
Daniel Sandersedc071b2013-11-21 13:24:49 +00003912 Tmp3, NeedInvert, dl);
Eli Friedman5df72022009-05-28 03:56:57 +00003913
Tom Stellard08690a12013-09-28 02:50:32 +00003914 if (Legalized) {
Daniel Sandersedc071b2013-11-21 13:24:49 +00003915 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3916 // condition code, create a new SETCC node.
Tom Stellard08690a12013-09-28 02:50:32 +00003917 if (Tmp3.getNode())
3918 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3919 Tmp1, Tmp2, Tmp3);
3920
Daniel Sandersedc071b2013-11-21 13:24:49 +00003921 // If we expanded the SETCC by inverting the condition code, then wrap
3922 // the existing SETCC in a NOT to restore the intended condition.
3923 if (NeedInvert)
Pete Cooper7fd1d722014-05-12 23:26:58 +00003924 Tmp1 = DAG.getLogicalNOT(dl, Tmp1, Tmp1->getValueType(0));
Daniel Sandersedc071b2013-11-21 13:24:49 +00003925
Eli Friedman5df72022009-05-28 03:56:57 +00003926 Results.push_back(Tmp1);
3927 break;
3928 }
3929
3930 // Otherwise, SETCC for the given comparison type must be completely
3931 // illegal; expand it into a SELECT_CC.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003932 EVT VT = Node->getValueType(0);
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003933 int TrueValue;
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003934 switch (TLI.getBooleanContents(Tmp1->getValueType(0))) {
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003935 case TargetLowering::ZeroOrOneBooleanContent:
3936 case TargetLowering::UndefinedBooleanContent:
3937 TrueValue = 1;
3938 break;
3939 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3940 TrueValue = -1;
3941 break;
3942 }
Eli Friedman5df72022009-05-28 03:56:57 +00003943 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003944 DAG.getConstant(TrueValue, dl, VT),
3945 DAG.getConstant(0, dl, VT),
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003946 Tmp3);
Eli Friedman5df72022009-05-28 03:56:57 +00003947 Results.push_back(Tmp1);
3948 break;
3949 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00003950 case ISD::SELECT_CC: {
3951 Tmp1 = Node->getOperand(0); // LHS
3952 Tmp2 = Node->getOperand(1); // RHS
3953 Tmp3 = Node->getOperand(2); // True
3954 Tmp4 = Node->getOperand(3); // False
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003955 EVT VT = Node->getValueType(0);
Eli Friedmane1dc1932009-05-28 20:40:34 +00003956 SDValue CC = Node->getOperand(4);
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003957 ISD::CondCode CCOp = cast<CondCodeSDNode>(CC)->get();
Eli Friedmane1dc1932009-05-28 20:40:34 +00003958
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003959 if (TLI.isCondCodeLegal(CCOp, Tmp1.getSimpleValueType())) {
3960 // If the condition code is legal, then we need to expand this
3961 // node using SETCC and SELECT.
3962 EVT CmpVT = Tmp1.getValueType();
3963 assert(!TLI.isOperationExpand(ISD::SELECT, VT) &&
3964 "Cannot expand ISD::SELECT_CC when ISD::SELECT also needs to be "
3965 "expanded.");
Mehdi Amini44ede332015-07-09 02:09:04 +00003966 EVT CCVT =
3967 TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), CmpVT);
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003968 SDValue Cond = DAG.getNode(ISD::SETCC, dl, CCVT, Tmp1, Tmp2, CC);
3969 Results.push_back(DAG.getSelect(dl, VT, Cond, Tmp3, Tmp4));
3970 break;
3971 }
3972
3973 // SELECT_CC is legal, so the condition code must not be.
Tom Stellard5694d302013-09-28 02:50:43 +00003974 bool Legalized = false;
3975 // Try to legalize by inverting the condition. This is for targets that
3976 // might support an ordered version of a condition, but not the unordered
3977 // version (or vice versa).
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003978 ISD::CondCode InvCC = ISD::getSetCCInverse(CCOp,
Tom Stellard5694d302013-09-28 02:50:43 +00003979 Tmp1.getValueType().isInteger());
3980 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
3981 // Use the new condition code and swap true and false
3982 Legalized = true;
3983 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
Tom Stellard08690a12013-09-28 02:50:32 +00003984 } else {
Tom Stellard5694d302013-09-28 02:50:43 +00003985 // If The inverse is not legal, then try to swap the arguments using
3986 // the inverse condition code.
3987 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
3988 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
3989 // The swapped inverse condition is legal, so swap true and false,
3990 // lhs and rhs.
3991 Legalized = true;
3992 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
3993 }
3994 }
3995
3996 if (!Legalized) {
3997 Legalized = LegalizeSetCCCondCode(
Daniel Sandersedc071b2013-11-21 13:24:49 +00003998 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, NeedInvert,
3999 dl);
Tom Stellard5694d302013-09-28 02:50:43 +00004000
4001 assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00004002
4003 // If we expanded the SETCC by inverting the condition code, then swap
4004 // the True/False operands to match.
4005 if (NeedInvert)
4006 std::swap(Tmp3, Tmp4);
4007
4008 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
4009 // condition code, create a new SELECT_CC node.
Tom Stellard5694d302013-09-28 02:50:43 +00004010 if (CC.getNode()) {
4011 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
4012 Tmp1, Tmp2, Tmp3, Tmp4, CC);
4013 } else {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004014 Tmp2 = DAG.getConstant(0, dl, Tmp1.getValueType());
Tom Stellard5694d302013-09-28 02:50:43 +00004015 CC = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004016 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1,
4017 Tmp2, Tmp3, Tmp4, CC);
Tom Stellard5694d302013-09-28 02:50:43 +00004018 }
Tom Stellard08690a12013-09-28 02:50:32 +00004019 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004020 Results.push_back(Tmp1);
4021 break;
4022 }
4023 case ISD::BR_CC: {
4024 Tmp1 = Node->getOperand(0); // Chain
4025 Tmp2 = Node->getOperand(2); // LHS
4026 Tmp3 = Node->getOperand(3); // RHS
4027 Tmp4 = Node->getOperand(1); // CC
4028
Tom Stellard08690a12013-09-28 02:50:32 +00004029 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004030 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, NeedInvert, dl);
Tom Stellard45015d92013-09-28 03:10:17 +00004031 (void)Legalized;
Tom Stellard08690a12013-09-28 02:50:32 +00004032 assert(Legalized && "Can't legalize BR_CC with legal condition!");
Eli Friedmane1dc1932009-05-28 20:40:34 +00004033
Daniel Sandersedc071b2013-11-21 13:24:49 +00004034 // If we expanded the SETCC by inverting the condition code, then wrap
4035 // the existing SETCC in a NOT to restore the intended condition.
4036 if (NeedInvert)
4037 Tmp4 = DAG.getNOT(dl, Tmp4, Tmp4->getValueType(0));
4038
4039 // If we expanded the SETCC by swapping LHS and RHS, create a new BR_CC
Tom Stellard08690a12013-09-28 02:50:32 +00004040 // node.
4041 if (Tmp4.getNode()) {
4042 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
4043 Tmp4, Tmp2, Tmp3, Node->getOperand(4));
4044 } else {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004045 Tmp3 = DAG.getConstant(0, dl, Tmp2.getValueType());
Tom Stellard08690a12013-09-28 02:50:32 +00004046 Tmp4 = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004047 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4,
4048 Tmp2, Tmp3, Node->getOperand(4));
Tom Stellard08690a12013-09-28 02:50:32 +00004049 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004050 Results.push_back(Tmp1);
4051 break;
4052 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004053 case ISD::BUILD_VECTOR:
4054 Results.push_back(ExpandBUILD_VECTOR(Node));
4055 break;
4056 case ISD::SRA:
4057 case ISD::SRL:
4058 case ISD::SHL: {
4059 // Scalarize vector SRA/SRL/SHL.
4060 EVT VT = Node->getValueType(0);
4061 assert(VT.isVector() && "Unable to legalize non-vector shift");
4062 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
4063 unsigned NumElem = VT.getVectorNumElements();
4064
4065 SmallVector<SDValue, 8> Scalars;
4066 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
Mehdi Amini44ede332015-07-09 02:09:04 +00004067 SDValue Ex = DAG.getNode(
4068 ISD::EXTRACT_VECTOR_ELT, dl, VT.getScalarType(), Node->getOperand(0),
4069 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
4070 SDValue Sh = DAG.getNode(
4071 ISD::EXTRACT_VECTOR_ELT, dl, VT.getScalarType(), Node->getOperand(1),
4072 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004073 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
4074 VT.getScalarType(), Ex, Sh));
4075 }
4076 SDValue Result =
Craig Topper48d114b2014-04-26 18:35:24 +00004077 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0), Scalars);
Eli Friedman13477152011-11-11 23:58:27 +00004078 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +00004079 break;
4080 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00004081 case ISD::GLOBAL_OFFSET_TABLE:
4082 case ISD::GlobalAddress:
4083 case ISD::GlobalTLSAddress:
4084 case ISD::ExternalSymbol:
4085 case ISD::ConstantPool:
4086 case ISD::JumpTable:
4087 case ISD::INTRINSIC_W_CHAIN:
4088 case ISD::INTRINSIC_WO_CHAIN:
4089 case ISD::INTRINSIC_VOID:
4090 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedmana8f9a022009-05-27 02:16:40 +00004091 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00004092 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004093
4094 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004095 if (!Results.empty())
4096 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004097}
Dan Gohman198b7ff2011-11-03 21:49:52 +00004098
4099void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
4100 SmallVector<SDValue, 8> Results;
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004101 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00004102 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedman97f3f962009-07-17 05:16:04 +00004103 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendlingef408db2009-12-23 00:28:23 +00004104 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004105 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendlingef408db2009-12-23 00:28:23 +00004106 }
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004107 if (Node->getOpcode() == ISD::BR_CC)
4108 OVT = Node->getOperand(2).getSimpleValueType();
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004109 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004110 SDLoc dl(Node);
Eli Friedman3b251702009-05-27 07:58:35 +00004111 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman21d349b2009-05-27 01:25:56 +00004112 switch (Node->getOpcode()) {
4113 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004114 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004115 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004116 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004117 case ISD::CTPOP:
4118 // Zero extend the argument.
4119 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004120 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
4121 // already the correct result.
Jakob Stoklund Olesen6b9f63c2009-07-12 17:43:20 +00004122 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004123 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004124 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault758659232013-05-18 00:21:46 +00004125 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004126 Tmp1, DAG.getConstant(NVT.getSizeInBits(), dl, NVT),
Eli Friedman21d349b2009-05-27 01:25:56 +00004127 ISD::SETEQ);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004128 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004129 DAG.getConstant(OVT.getSizeInBits(), dl, NVT), Tmp1);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004130 } else if (Node->getOpcode() == ISD::CTLZ ||
4131 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman21d349b2009-05-27 01:25:56 +00004132 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4133 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
4134 DAG.getConstant(NVT.getSizeInBits() -
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004135 OVT.getSizeInBits(), dl, NVT));
Eli Friedman21d349b2009-05-27 01:25:56 +00004136 }
Bill Wendlingef408db2009-12-23 00:28:23 +00004137 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00004138 break;
4139 case ISD::BSWAP: {
4140 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling70794592009-12-22 22:53:39 +00004141 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004142 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
Mehdi Amini9639d652015-07-09 02:09:20 +00004143 Tmp1 = DAG.getNode(
4144 ISD::SRL, dl, NVT, Tmp1,
4145 DAG.getConstant(DiffBits, dl,
4146 TLI.getShiftAmountTy(NVT, DAG.getDataLayout())));
Bill Wendlingef408db2009-12-23 00:28:23 +00004147 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004148 break;
4149 }
4150 case ISD::FP_TO_UINT:
4151 case ISD::FP_TO_SINT:
4152 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
4153 Node->getOpcode() == ISD::FP_TO_SINT, dl);
4154 Results.push_back(Tmp1);
4155 break;
4156 case ISD::UINT_TO_FP:
4157 case ISD::SINT_TO_FP:
4158 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
4159 Node->getOpcode() == ISD::SINT_TO_FP, dl);
4160 Results.push_back(Tmp1);
4161 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00004162 case ISD::VAARG: {
4163 SDValue Chain = Node->getOperand(0); // Get the chain.
4164 SDValue Ptr = Node->getOperand(1); // Get the pointer.
4165
4166 unsigned TruncOp;
4167 if (OVT.isVector()) {
4168 TruncOp = ISD::BITCAST;
4169 } else {
4170 assert(OVT.isInteger()
4171 && "VAARG promotion is supported only for vectors or integer types");
4172 TruncOp = ISD::TRUNCATE;
4173 }
4174
4175 // Perform the larger operation, then convert back
4176 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
4177 Node->getConstantOperandVal(3));
4178 Chain = Tmp1.getValue(1);
4179
4180 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
4181
4182 // Modified the chain result - switch anything that used the old chain to
4183 // use the new one.
4184 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
4185 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00004186 if (UpdatedNodes) {
4187 UpdatedNodes->insert(Tmp2.getNode());
4188 UpdatedNodes->insert(Chain.getNode());
4189 }
Hal Finkel71c2ba32012-03-24 03:53:52 +00004190 ReplacedNode(Node);
4191 break;
4192 }
Eli Friedmand6f28342009-05-27 03:33:44 +00004193 case ISD::AND:
4194 case ISD::OR:
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004195 case ISD::XOR: {
4196 unsigned ExtOp, TruncOp;
4197 if (OVT.isVector()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004198 ExtOp = ISD::BITCAST;
4199 TruncOp = ISD::BITCAST;
Chris Lattnercd927182010-04-07 23:47:51 +00004200 } else {
4201 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004202 ExtOp = ISD::ANY_EXTEND;
4203 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004204 }
4205 // Promote each of the values to the new type.
4206 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4207 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4208 // Perform the larger operation, then convert back
Bill Wendlingef408db2009-12-23 00:28:23 +00004209 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
4210 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmand6f28342009-05-27 03:33:44 +00004211 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004212 }
4213 case ISD::SELECT: {
Eli Friedman3b251702009-05-27 07:58:35 +00004214 unsigned ExtOp, TruncOp;
Tom Stellardc9a67a22014-03-24 16:07:28 +00004215 if (Node->getValueType(0).isVector() ||
4216 Node->getValueType(0).getSizeInBits() == NVT.getSizeInBits()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004217 ExtOp = ISD::BITCAST;
4218 TruncOp = ISD::BITCAST;
Eli Friedman2892d822009-05-27 12:20:41 +00004219 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman3b251702009-05-27 07:58:35 +00004220 ExtOp = ISD::ANY_EXTEND;
4221 TruncOp = ISD::TRUNCATE;
4222 } else {
4223 ExtOp = ISD::FP_EXTEND;
4224 TruncOp = ISD::FP_ROUND;
4225 }
4226 Tmp1 = Node->getOperand(0);
4227 // Promote each of the values to the new type.
4228 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4229 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4230 // Perform the larger operation, then round down.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004231 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman3b251702009-05-27 07:58:35 +00004232 if (TruncOp != ISD::FP_ROUND)
Bill Wendlingef408db2009-12-23 00:28:23 +00004233 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004234 else
Bill Wendlingef408db2009-12-23 00:28:23 +00004235 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004236 DAG.getIntPtrConstant(0, dl));
Bill Wendlingef408db2009-12-23 00:28:23 +00004237 Results.push_back(Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004238 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004239 }
Eli Friedman3b251702009-05-27 07:58:35 +00004240 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00004241 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00004242
4243 // Cast the two input vectors.
Wesley Peck527da1b2010-11-23 03:31:01 +00004244 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
4245 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman3b251702009-05-27 07:58:35 +00004246
4247 // Convert the shuffle mask to the right # elements.
Bill Wendlingef408db2009-12-23 00:28:23 +00004248 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peck527da1b2010-11-23 03:31:01 +00004249 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004250 Results.push_back(Tmp1);
4251 break;
4252 }
Eli Friedman5df72022009-05-28 03:56:57 +00004253 case ISD::SETCC: {
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004254 unsigned ExtOp = ISD::FP_EXTEND;
4255 if (NVT.isInteger()) {
4256 ISD::CondCode CCCode =
4257 cast<CondCodeSDNode>(Node->getOperand(2))->get();
4258 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedman5df72022009-05-28 03:56:57 +00004259 }
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004260 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4261 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedman5df72022009-05-28 03:56:57 +00004262 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
4263 Tmp1, Tmp2, Node->getOperand(2)));
4264 break;
4265 }
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004266 case ISD::BR_CC: {
4267 unsigned ExtOp = ISD::FP_EXTEND;
4268 if (NVT.isInteger()) {
4269 ISD::CondCode CCCode =
4270 cast<CondCodeSDNode>(Node->getOperand(1))->get();
4271 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
4272 }
4273 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4274 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(3));
4275 Results.push_back(DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0),
4276 Node->getOperand(0), Node->getOperand(1),
4277 Tmp1, Tmp2, Node->getOperand(4)));
4278 break;
4279 }
Oliver Stannardf5469be2014-08-18 14:22:39 +00004280 case ISD::FADD:
4281 case ISD::FSUB:
4282 case ISD::FMUL:
Pete Coopere69be6d2012-03-19 23:38:12 +00004283 case ISD::FDIV:
Pete Cooper8a3dc0e2012-04-04 19:36:31 +00004284 case ISD::FREM:
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004285 case ISD::FMINNUM:
4286 case ISD::FMAXNUM:
4287 case ISD::FCOPYSIGN:
Pete Cooper99415fe2012-01-12 21:46:18 +00004288 case ISD::FPOW: {
4289 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4290 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopere69be6d2012-03-19 23:38:12 +00004291 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooper99415fe2012-01-12 21:46:18 +00004292 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004293 Tmp3, DAG.getIntPtrConstant(0, dl)));
Pete Cooper99415fe2012-01-12 21:46:18 +00004294 break;
4295 }
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004296 case ISD::FMA: {
4297 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4298 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
4299 Tmp3 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(2));
4300 Results.push_back(
4301 DAG.getNode(ISD::FP_ROUND, dl, OVT,
4302 DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2, Tmp3),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004303 DAG.getIntPtrConstant(0, dl)));
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004304 break;
4305 }
4306 case ISD::FPOWI: {
4307 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4308 Tmp2 = Node->getOperand(1);
4309 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
4310 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004311 Tmp3, DAG.getIntPtrConstant(0, dl)));
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004312 break;
4313 }
4314 case ISD::FFLOOR:
4315 case ISD::FCEIL:
4316 case ISD::FRINT:
4317 case ISD::FNEARBYINT:
4318 case ISD::FROUND:
4319 case ISD::FTRUNC:
4320 case ISD::FNEG:
4321 case ISD::FSQRT:
4322 case ISD::FSIN:
4323 case ISD::FCOS:
Pete Cooper99415fe2012-01-12 21:46:18 +00004324 case ISD::FLOG:
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004325 case ISD::FLOG2:
4326 case ISD::FLOG10:
4327 case ISD::FABS:
4328 case ISD::FEXP:
4329 case ISD::FEXP2: {
Pete Cooper99415fe2012-01-12 21:46:18 +00004330 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4331 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4332 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004333 Tmp2, DAG.getIntPtrConstant(0, dl)));
Pete Cooper99415fe2012-01-12 21:46:18 +00004334 break;
4335 }
Eli Friedman21d349b2009-05-27 01:25:56 +00004336 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004337
4338 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004339 if (!Results.empty())
4340 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004341}
4342
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00004343/// This is the entry point for the file.
Dan Gohmand282f462011-05-16 22:19:54 +00004344void SelectionDAG::Legalize() {
Chandler Carruth411fb402014-07-26 05:49:40 +00004345 AssignTopologicalOrder();
4346
Chandler Carruth411fb402014-07-26 05:49:40 +00004347 SmallPtrSet<SDNode *, 16> LegalizedNodes;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004348 SelectionDAGLegalize Legalizer(*this, LegalizedNodes);
Chandler Carruth411fb402014-07-26 05:49:40 +00004349
4350 // Visit all the nodes. We start in topological order, so that we see
4351 // nodes with their original operands intact. Legalization can produce
4352 // new nodes which may themselves need to be legalized. Iterate until all
4353 // nodes have been legalized.
4354 for (;;) {
4355 bool AnyLegalized = false;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004356 for (auto NI = allnodes_end(); NI != allnodes_begin();) {
4357 --NI;
Chandler Carruth411fb402014-07-26 05:49:40 +00004358
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004359 SDNode *N = NI;
4360 if (N->use_empty() && N != getRoot().getNode()) {
4361 ++NI;
4362 DeleteNode(N);
4363 continue;
4364 }
4365
David Blaikie70573dc2014-11-19 07:49:26 +00004366 if (LegalizedNodes.insert(N).second) {
Chandler Carruth411fb402014-07-26 05:49:40 +00004367 AnyLegalized = true;
4368 Legalizer.LegalizeOp(N);
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004369
4370 if (N->use_empty() && N != getRoot().getNode()) {
4371 ++NI;
4372 DeleteNode(N);
4373 }
Chandler Carruth411fb402014-07-26 05:49:40 +00004374 }
4375 }
4376 if (!AnyLegalized)
4377 break;
4378
4379 }
4380
4381 // Remove dead nodes now.
4382 RemoveDeadNodes();
4383}
4384
4385bool SelectionDAG::LegalizeOp(SDNode *N,
4386 SmallSetVector<SDNode *, 16> &UpdatedNodes) {
Chandler Carruth411fb402014-07-26 05:49:40 +00004387 SmallPtrSet<SDNode *, 16> LegalizedNodes;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004388 SelectionDAGLegalize Legalizer(*this, LegalizedNodes, &UpdatedNodes);
Chandler Carruth411fb402014-07-26 05:49:40 +00004389
4390 // Directly insert the node in question, and legalize it. This will recurse
4391 // as needed through operands.
4392 LegalizedNodes.insert(N);
4393 Legalizer.LegalizeOp(N);
4394
4395 return LegalizedNodes.count(N);
Chris Lattnerdc750592005-01-07 07:47:09 +00004396}