blob: da0afa6578a944176123be5339ed858fa23a9b5e [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) {
Alex Lorenze40c8a22015-08-11 23:09:45 +0000276 SDValue Result = DAG.getExtLoad(
277 ISD::EXTLOAD, dl, OrigVT, DAG.getEntryNode(), CPIdx,
278 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), VT,
279 false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000280 return Result;
281 }
282 SDValue Result =
Alex Lorenze40c8a22015-08-11 23:09:45 +0000283 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
284 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
285 false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000286 return Result;
Evan Cheng47833a12006-12-12 21:32:44 +0000287}
288
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000289/// Expands an unaligned store to 2 half-size stores.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000290static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
291 const TargetLowering &TLI,
Eli Friedman13477152011-11-11 23:58:27 +0000292 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmand257a462011-11-16 02:43:15 +0000293 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
294 "unaligned indexed stores not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000295 SDValue Chain = ST->getChain();
296 SDValue Ptr = ST->getBasePtr();
297 SDValue Val = ST->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000298 EVT VT = Val.getValueType();
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000299 int Alignment = ST->getAlignment();
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000300 unsigned AS = ST->getAddressSpace();
301
Andrew Trickef9de2a2013-05-25 02:42:55 +0000302 SDLoc dl(ST);
Duncan Sands13237ac2008-06-06 12:08:01 +0000303 if (ST->getMemoryVT().isFloatingPoint() ||
304 ST->getMemoryVT().isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000305 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands8f352fe2008-12-12 21:47:02 +0000306 if (TLI.isTypeLegal(intVT)) {
307 // Expand to a bitconvert of the value to the integer type of the
308 // same size, then a (misaligned) int store.
309 // FIXME: Does not handle truncating floating point stores!
Wesley Peck527da1b2010-11-23 03:31:01 +0000310 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000311 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
312 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman13477152011-11-11 23:58:27 +0000313 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000314 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000315 }
Dan Gohmanabffc992011-05-17 22:22:52 +0000316 // Do a (aligned) store to a stack slot, then copy from the stack slot
317 // to the final destination using (unaligned) integer loads and stores.
318 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000319 MVT RegVT =
Dan Gohmanabffc992011-05-17 22:22:52 +0000320 TLI.getRegisterType(*DAG.getContext(),
321 EVT::getIntegerVT(*DAG.getContext(),
322 StoredVT.getSizeInBits()));
323 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
324 unsigned RegBytes = RegVT.getSizeInBits() / 8;
325 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
326
327 // Make sure the stack slot is also aligned for the register type.
328 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
329
330 // Perform the original store, only redirected to the stack slot.
331 SDValue Store = DAG.getTruncStore(Chain, dl,
332 Val, StackPtr, MachinePointerInfo(),
333 StoredVT, false, false, 0);
Mehdi Amini44ede332015-07-09 02:09:04 +0000334 SDValue Increment = DAG.getConstant(
335 RegBytes, dl, TLI.getPointerTy(DAG.getDataLayout(), AS));
Dan Gohmanabffc992011-05-17 22:22:52 +0000336 SmallVector<SDValue, 8> Stores;
337 unsigned Offset = 0;
338
339 // Do all but one copies using the full register width.
340 for (unsigned i = 1; i < NumRegs; i++) {
341 // Load one integer register's worth from the stack slot.
342 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
343 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000344 false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000345 // Store it to the final location. Remember the store.
346 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
347 ST->getPointerInfo().getWithOffset(Offset),
348 ST->isVolatile(), ST->isNonTemporal(),
349 MinAlign(ST->getAlignment(), Offset)));
350 // Increment the pointers.
351 Offset += RegBytes;
352 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
353 Increment);
354 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
355 }
356
357 // The last store may be partial. Do a truncating store. On big-endian
358 // machines this requires an extending load from the stack slot to ensure
359 // that the bits are in the right place.
360 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
361 8 * (StoredBytes - Offset));
362
363 // Load from the stack slot.
364 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
365 MachinePointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000366 MemVT, false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000367
368 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
369 ST->getPointerInfo()
370 .getWithOffset(Offset),
371 MemVT, ST->isVolatile(),
372 ST->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000373 MinAlign(ST->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000374 ST->getAAInfo()));
Dan Gohmanabffc992011-05-17 22:22:52 +0000375 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000376 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedman13477152011-11-11 23:58:27 +0000377 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000378 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000379 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000380 assert(ST->getMemoryVT().isInteger() &&
381 !ST->getMemoryVT().isVector() &&
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000382 "Unaligned store of unknown type.");
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000383 // Get the half-size VT
Ken Dyckdf5561d2009-12-17 20:09:43 +0000384 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands13237ac2008-06-06 12:08:01 +0000385 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000386 int IncrementSize = NumBits / 8;
387
388 // Divide the stored value in two parts.
Mehdi Amini9639d652015-07-09 02:09:20 +0000389 SDValue ShiftAmount =
390 DAG.getConstant(NumBits, dl, TLI.getShiftAmountTy(Val.getValueType(),
391 DAG.getDataLayout()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000392 SDValue Lo = Val;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000393 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000394
395 // Store the two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000396 SDValue Store1, Store2;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000397 Store1 = DAG.getTruncStore(Chain, dl,
398 DAG.getDataLayout().isLittleEndian() ? Lo : Hi,
399 Ptr, ST->getPointerInfo(), NewStoredVT,
David Greene39c6d012010-02-15 17:00:31 +0000400 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000401
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000402 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Mehdi Amini44ede332015-07-09 02:09:04 +0000403 DAG.getConstant(IncrementSize, dl,
404 TLI.getPointerTy(DAG.getDataLayout(), AS)));
Duncan Sands1826ded2007-10-28 12:59:45 +0000405 Alignment = MinAlign(Alignment, IncrementSize);
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000406 Store2 = DAG.getTruncStore(
407 Chain, dl, DAG.getDataLayout().isLittleEndian() ? Hi : Lo, Ptr,
408 ST->getPointerInfo().getWithOffset(IncrementSize), NewStoredVT,
409 ST->isVolatile(), ST->isNonTemporal(), Alignment, ST->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000410
Dan Gohman198b7ff2011-11-03 21:49:52 +0000411 SDValue Result =
412 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman13477152011-11-11 23:58:27 +0000413 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000414}
415
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000416/// Expands an unaligned load to 2 half-size loads.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000417static void
418ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
419 const TargetLowering &TLI,
420 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmand257a462011-11-16 02:43:15 +0000421 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
422 "unaligned indexed loads not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000423 SDValue Chain = LD->getChain();
424 SDValue Ptr = LD->getBasePtr();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000425 EVT VT = LD->getValueType(0);
426 EVT LoadedVT = LD->getMemoryVT();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000427 SDLoc dl(LD);
Duncan Sands13237ac2008-06-06 12:08:01 +0000428 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000429 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Roteme0f84d32012-08-09 01:56:44 +0000430 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands8f352fe2008-12-12 21:47:02 +0000431 // Expand to a (misaligned) integer load of the same size,
432 // then bitconvert to floating point or vector.
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000433 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr,
434 LD->getMemOperand());
Wesley Peck527da1b2010-11-23 03:31:01 +0000435 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Roteme0f84d32012-08-09 01:56:44 +0000436 if (LoadedVT != VT)
437 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
438 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000439
Dan Gohman198b7ff2011-11-03 21:49:52 +0000440 ValResult = Result;
Hal Finkelcaf11492015-08-04 06:29:12 +0000441 ChainResult = newLoad.getValue(1);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000442 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000443 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000444
Chris Lattner1ffcf522010-09-21 16:36:31 +0000445 // Copy the value to a (aligned) stack slot using (unaligned) integer
446 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000447 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000448 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
449 unsigned RegBytes = RegVT.getSizeInBits() / 8;
450 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
451
452 // Make sure the stack slot is also aligned for the register type.
453 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
454
Mehdi Amini44ede332015-07-09 02:09:04 +0000455 SDValue Increment =
456 DAG.getConstant(RegBytes, dl, TLI.getPointerTy(DAG.getDataLayout()));
Chris Lattner1ffcf522010-09-21 16:36:31 +0000457 SmallVector<SDValue, 8> Stores;
458 SDValue StackPtr = StackBase;
459 unsigned Offset = 0;
460
461 // Do all but one copies using the full register width.
462 for (unsigned i = 1; i < NumRegs; i++) {
463 // Load one integer register's worth from the original location.
464 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
465 LD->getPointerInfo().getWithOffset(Offset),
466 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000467 LD->isInvariant(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000468 MinAlign(LD->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000469 LD->getAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000470 // Follow the load with a store to the stack slot. Remember the store.
471 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner676c61d2010-09-21 18:41:36 +0000472 MachinePointerInfo(), false, false, 0));
Chris Lattner1ffcf522010-09-21 16:36:31 +0000473 // Increment the pointers.
474 Offset += RegBytes;
475 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
476 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
477 Increment);
478 }
479
480 // The last copy may be partial. Do an extending load.
481 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
482 8 * (LoadedBytes - Offset));
Stuart Hastings81c43062011-02-16 16:23:55 +0000483 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000484 LD->getPointerInfo().getWithOffset(Offset),
485 MemVT, LD->isVolatile(),
486 LD->isNonTemporal(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000487 LD->isInvariant(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000488 MinAlign(LD->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000489 LD->getAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000490 // Follow the load with a store to the stack slot. Remember the store.
491 // On big-endian machines this requires a truncating store to ensure
492 // that the bits end up in the right place.
493 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
494 MachinePointerInfo(), MemVT,
495 false, false, 0));
496
497 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000498 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000499
500 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastings81c43062011-02-16 16:23:55 +0000501 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Louis Gerbarg67474e32014-07-31 21:45:05 +0000502 MachinePointerInfo(), LoadedVT, false,false, false,
503 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000504
505 // Callers expect a MERGE_VALUES node.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000506 ValResult = Load;
507 ChainResult = TF;
508 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000509 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000510 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner09c03932007-11-19 21:38:03 +0000511 "Unaligned load of unsupported type.");
512
Dale Johannesenbf76a082008-02-27 22:36:00 +0000513 // Compute the new VT that is half the size of the old one. This is an
514 // integer MVT.
Duncan Sands13237ac2008-06-06 12:08:01 +0000515 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000516 EVT NewLoadedVT;
Owen Anderson117c9e82009-08-12 00:36:31 +0000517 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattner09c03932007-11-19 21:38:03 +0000518 NumBits >>= 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000519
Chris Lattner09c03932007-11-19 21:38:03 +0000520 unsigned Alignment = LD->getAlignment();
521 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000522 ISD::LoadExtType HiExtType = LD->getExtensionType();
523
524 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
525 if (HiExtType == ISD::NON_EXTLOAD)
526 HiExtType = ISD::ZEXTLOAD;
527
528 // Load the value in two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000529 SDValue Lo, Hi;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000530 if (DAG.getDataLayout().isLittleEndian()) {
Stuart Hastings81c43062011-02-16 16:23:55 +0000531 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000532 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000533 LD->isNonTemporal(), LD->isInvariant(), Alignment,
534 LD->getAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000535 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000536 DAG.getConstant(IncrementSize, dl, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000537 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000538 LD->getPointerInfo().getWithOffset(IncrementSize),
539 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000540 LD->isNonTemporal(),LD->isInvariant(),
541 MinAlign(Alignment, IncrementSize), LD->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000542 } else {
Stuart Hastings81c43062011-02-16 16:23:55 +0000543 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000544 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000545 LD->isNonTemporal(), LD->isInvariant(), Alignment,
546 LD->getAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000547 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000548 DAG.getConstant(IncrementSize, dl, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000549 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000550 LD->getPointerInfo().getWithOffset(IncrementSize),
551 NewLoadedVT, LD->isVolatile(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000552 LD->isNonTemporal(), LD->isInvariant(),
553 MinAlign(Alignment, IncrementSize), LD->getAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000554 }
555
556 // aggregate the two parts
Mehdi Amini9639d652015-07-09 02:09:20 +0000557 SDValue ShiftAmount =
558 DAG.getConstant(NumBits, dl, TLI.getShiftAmountTy(Hi.getValueType(),
559 DAG.getDataLayout()));
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000560 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
561 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000562
Owen Anderson9f944592009-08-11 20:47:22 +0000563 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000564 Hi.getValue(1));
565
Dan Gohman198b7ff2011-11-03 21:49:52 +0000566 ValResult = Result;
567 ChainResult = TF;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000568}
Evan Cheng003feb02007-01-04 21:56:39 +0000569
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000570/// Some target cannot handle a variable insertion index for the
571/// INSERT_VECTOR_ELT instruction. In this case, it
Nate Begeman6f94f612008-04-25 18:07:40 +0000572/// is necessary to spill the vector being inserted into to memory, perform
573/// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000574SDValue SelectionDAGLegalize::
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000575PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000576 SDLoc dl) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000577 SDValue Tmp1 = Vec;
578 SDValue Tmp2 = Val;
579 SDValue Tmp3 = Idx;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000580
Nate Begeman6f94f612008-04-25 18:07:40 +0000581 // If the target doesn't support this, we have to spill the input vector
582 // to a temporary stack slot, update the element, then reload it. This is
583 // badness. We could also load the value into a vector register (either
584 // with a "move to register" or "extload into register" instruction, then
585 // permute it into place, if the idx is a constant and if the idx is
586 // supported by the target.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000587 EVT VT = Tmp1.getValueType();
588 EVT EltVT = VT.getVectorElementType();
589 EVT IdxVT = Tmp3.getValueType();
Mehdi Amini44ede332015-07-09 02:09:04 +0000590 EVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000591 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman6f94f612008-04-25 18:07:40 +0000592
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000593 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
594
Nate Begeman6f94f612008-04-25 18:07:40 +0000595 // Store the vector.
Alex Lorenze40c8a22015-08-11 23:09:45 +0000596 SDValue Ch = DAG.getStore(
597 DAG.getEntryNode(), dl, Tmp1, StackPtr,
598 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SPFI), false,
599 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.
Alex Lorenze40c8a22015-08-11 23:09:45 +0000612 return DAG.getLoad(VT, dl, Ch, StackPtr, MachinePointerInfo::getFixedStack(
613 DAG.getMachineFunction(), SPFI),
614 false, false, 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.
Sanjay Patel0f9dcf82015-07-29 18:24:18 +0000730 EVT MemVT = ST->getMemoryVT();
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000731 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000732 unsigned Align = ST->getAlignment();
Sanjay Patel0f9dcf82015-07-29 18:24:18 +0000733 const DataLayout &DL = DAG.getDataLayout();
734 if (!TLI.allowsMemoryAccess(*DAG.getContext(), DL, MemVT, AS, Align))
735 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000736 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000737 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000738 case TargetLowering::Custom: {
739 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
Hal Finkelcec70132015-02-24 12:59:47 +0000740 if (Res && Res != SDValue(Node, 0))
Nadav Rotem2a148662012-07-11 11:02:16 +0000741 ReplaceNode(SDValue(Node, 0), Res);
742 return;
743 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000744 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000745 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellardb785bd72012-12-10 21:41:54 +0000746 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
747 "Can only promote stores to same size type");
748 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000749 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000750 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000751 ST->getPointerInfo(), isVolatile,
Hal Finkelcc39b672014-07-24 12:16:19 +0000752 isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000753 ReplaceNode(SDValue(Node, 0), Result);
754 break;
755 }
756 }
757 return;
758 }
759 } else {
Nadav Rotem2a148662012-07-11 11:02:16 +0000760 SDValue Value = ST->getValue();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000761
762 EVT StVT = ST->getMemoryVT();
763 unsigned StWidth = StVT.getSizeInBits();
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000764 auto &DL = DAG.getDataLayout();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000765
766 if (StWidth != StVT.getStoreSizeInBits()) {
767 // Promote to a byte-sized store with upper bits zero if not
768 // storing an integral number of bytes. For example, promote
769 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
770 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
771 StVT.getStoreSizeInBits());
Nadav Rotem2a148662012-07-11 11:02:16 +0000772 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000773 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000774 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Sanjay Patelb06441a2014-11-21 18:05:59 +0000775 NVT, isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000776 ReplaceNode(SDValue(Node, 0), Result);
777 } else if (StWidth & (StWidth - 1)) {
778 // If not storing a power-of-2 number of bits, expand as two stores.
779 assert(!StVT.isVector() && "Unsupported truncstore!");
780 unsigned RoundWidth = 1 << Log2_32(StWidth);
781 assert(RoundWidth < StWidth);
782 unsigned ExtraWidth = StWidth - RoundWidth;
783 assert(ExtraWidth < RoundWidth);
784 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
785 "Store size not an integral number of bytes!");
786 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
787 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
788 SDValue Lo, Hi;
789 unsigned IncrementSize;
790
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000791 if (DL.isLittleEndian()) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000792 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
793 // Store the bottom RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000794 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemde6fd282012-07-11 08:52:09 +0000795 RoundVT,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000796 isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000797 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000798
799 // Store the remaining ExtraWidth bits.
800 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000801 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000802 DAG.getConstant(IncrementSize, dl,
803 Ptr.getValueType()));
Mehdi Amini9639d652015-07-09 02:09:20 +0000804 Hi = DAG.getNode(
805 ISD::SRL, dl, Value.getValueType(), Value,
806 DAG.getConstant(RoundWidth, dl,
807 TLI.getShiftAmountTy(Value.getValueType(), DL)));
Nadav Rotem2a148662012-07-11 11:02:16 +0000808 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000809 ST->getPointerInfo().getWithOffset(IncrementSize),
810 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000811 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000812 } else {
813 // Big endian - avoid unaligned stores.
814 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
815 // Store the top RoundWidth bits.
Mehdi Amini9639d652015-07-09 02:09:20 +0000816 Hi = DAG.getNode(
817 ISD::SRL, dl, Value.getValueType(), Value,
818 DAG.getConstant(ExtraWidth, dl,
819 TLI.getShiftAmountTy(Value.getValueType(), DL)));
Nadav Rotem2a148662012-07-11 11:02:16 +0000820 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000821 RoundVT, isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000822 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000823
824 // Store the remaining ExtraWidth bits.
825 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000826 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000827 DAG.getConstant(IncrementSize, dl,
828 Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000829 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000830 ST->getPointerInfo().getWithOffset(IncrementSize),
831 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000832 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000833 }
834
835 // The order of the stores doesn't matter.
836 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
837 ReplaceNode(SDValue(Node, 0), Result);
838 } else {
Patrik Hagglundd7cdcf82012-12-19 08:28:51 +0000839 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
840 StVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000841 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000842 case TargetLowering::Legal: {
Sanjay Patel0f9dcf82015-07-29 18:24:18 +0000843 EVT MemVT = ST->getMemoryVT();
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000844 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000845 unsigned Align = ST->getAlignment();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000846 // If this is an unaligned store and the target doesn't support it,
847 // expand it.
Sanjay Patel0f9dcf82015-07-29 18:24:18 +0000848 if (!TLI.allowsMemoryAccess(*DAG.getContext(), DL, MemVT, AS, Align))
849 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000850 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000851 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000852 case TargetLowering::Custom: {
853 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
Hal Finkelcec70132015-02-24 12:59:47 +0000854 if (Res && Res != SDValue(Node, 0))
Nadav Rotem2a148662012-07-11 11:02:16 +0000855 ReplaceNode(SDValue(Node, 0), Res);
856 return;
857 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000858 case TargetLowering::Expand:
859 assert(!StVT.isVector() &&
860 "Vector Stores are handled in LegalizeVectorOps");
861
862 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem2a148662012-07-11 11:02:16 +0000863 assert(TLI.isTypeLegal(StVT) &&
864 "Do not know how to expand this store!");
865 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000866 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000867 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000868 isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000869 ReplaceNode(SDValue(Node, 0), Result);
870 break;
871 }
872 }
873 }
874}
875
876void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
877 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000878 SDValue Chain = LD->getChain(); // The chain.
879 SDValue Ptr = LD->getBasePtr(); // The base pointer.
880 SDValue Value; // The value returned by the load op.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000881 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000882
883 ISD::LoadExtType ExtType = LD->getExtensionType();
884 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000885 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem2a148662012-07-11 11:02:16 +0000886 SDValue RVal = SDValue(Node, 0);
887 SDValue RChain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000888
889 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
890 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000891 case TargetLowering::Legal: {
Sanjay Patel0f9dcf82015-07-29 18:24:18 +0000892 EVT MemVT = LD->getMemoryVT();
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000893 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000894 unsigned Align = LD->getAlignment();
Sanjay Patel0f9dcf82015-07-29 18:24:18 +0000895 const DataLayout &DL = DAG.getDataLayout();
Evan Chengc5735992012-09-18 01:34:40 +0000896 // If this is an unaligned load and the target doesn't support it,
897 // expand it.
Sanjay Patel0f9dcf82015-07-29 18:24:18 +0000898 if (!TLI.allowsMemoryAccess(*DAG.getContext(), DL, MemVT, AS, Align))
899 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
Evan Chengc5735992012-09-18 01:34:40 +0000900 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000901 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000902 case TargetLowering::Custom: {
Evan Chengc5735992012-09-18 01:34:40 +0000903 SDValue Res = TLI.LowerOperation(RVal, DAG);
904 if (Res.getNode()) {
905 RVal = Res;
906 RChain = Res.getValue(1);
907 }
908 break;
Nadav Rotem2a148662012-07-11 11:02:16 +0000909 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000910 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000911 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellard30e2aa52012-12-10 21:41:58 +0000912 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
913 "Can only promote loads to same size type");
Nadav Rotemde6fd282012-07-11 08:52:09 +0000914
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000915 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
Nadav Rotem2a148662012-07-11 11:02:16 +0000916 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
917 RChain = Res.getValue(1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000918 break;
919 }
920 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000921 if (RChain.getNode() != Node) {
922 assert(RVal.getNode() != Node && "Load must be completely replaced");
923 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
924 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Chandler Carruth411fb402014-07-26 05:49:40 +0000925 if (UpdatedNodes) {
926 UpdatedNodes->insert(RVal.getNode());
927 UpdatedNodes->insert(RChain.getNode());
928 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000929 ReplacedNode(Node);
930 }
931 return;
932 }
933
934 EVT SrcVT = LD->getMemoryVT();
935 unsigned SrcWidth = SrcVT.getSizeInBits();
936 unsigned Alignment = LD->getAlignment();
937 bool isVolatile = LD->isVolatile();
938 bool isNonTemporal = LD->isNonTemporal();
Louis Gerbarg67474e32014-07-31 21:45:05 +0000939 bool isInvariant = LD->isInvariant();
Hal Finkelcc39b672014-07-24 12:16:19 +0000940 AAMDNodes AAInfo = LD->getAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000941
942 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
943 // Some targets pretend to have an i1 loading operation, and actually
944 // load an i8. This trick is correct for ZEXTLOAD because the top 7
945 // bits are guaranteed to be zero; it helps the optimizers understand
946 // that these bits are zero. It is also useful for EXTLOAD, since it
947 // tells the optimizers that those bits are undefined. It would be
948 // nice to have an effective generic way of getting these benefits...
949 // Until such a way is found, don't insist on promoting i1 here.
950 (SrcVT != MVT::i1 ||
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000951 TLI.getLoadExtAction(ExtType, Node->getValueType(0), MVT::i1) ==
952 TargetLowering::Promote)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000953 // Promote to a byte-sized load if not loading an integral number of
954 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
955 unsigned NewWidth = SrcVT.getStoreSizeInBits();
956 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
957 SDValue Ch;
958
959 // The extra bits are guaranteed to be zero, since we stored them that
960 // way. A zext load from NVT thus automatically gives zext from SrcVT.
961
962 ISD::LoadExtType NewExtType =
963 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
964
965 SDValue Result =
966 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +0000967 Chain, Ptr, LD->getPointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000968 NVT, isVolatile, isNonTemporal, isInvariant, Alignment,
969 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000970
971 Ch = Result.getValue(1); // The chain.
972
973 if (ExtType == ISD::SEXTLOAD)
974 // Having the top bits zero doesn't help when sign extending.
975 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
976 Result.getValueType(),
977 Result, DAG.getValueType(SrcVT));
978 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
979 // All the top bits are guaranteed to be zero - inform the optimizers.
980 Result = DAG.getNode(ISD::AssertZext, dl,
981 Result.getValueType(), Result,
982 DAG.getValueType(SrcVT));
983
Nadav Rotem2a148662012-07-11 11:02:16 +0000984 Value = Result;
985 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +0000986 } else if (SrcWidth & (SrcWidth - 1)) {
987 // If not loading a power-of-2 number of bits, expand as two loads.
988 assert(!SrcVT.isVector() && "Unsupported extload!");
989 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
990 assert(RoundWidth < SrcWidth);
991 unsigned ExtraWidth = SrcWidth - RoundWidth;
992 assert(ExtraWidth < RoundWidth);
993 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
994 "Load size not an integral number of bytes!");
995 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
996 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
997 SDValue Lo, Hi, Ch;
998 unsigned IncrementSize;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000999 auto &DL = DAG.getDataLayout();
Nadav Rotemde6fd282012-07-11 08:52:09 +00001000
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001001 if (DL.isLittleEndian()) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001002 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1003 // Load the bottom RoundWidth bits.
1004 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +00001005 Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001006 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001007 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001008
1009 // Load the remaining ExtraWidth bits.
1010 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001011 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001012 DAG.getConstant(IncrementSize, dl,
1013 Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +00001014 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001015 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001016 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001017 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001018
1019 // Build a factor node to remember that this load is independent of
1020 // the other one.
1021 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1022 Hi.getValue(1));
1023
1024 // Move the top bits to the right place.
Mehdi Amini9639d652015-07-09 02:09:20 +00001025 Hi = DAG.getNode(
1026 ISD::SHL, dl, Hi.getValueType(), Hi,
1027 DAG.getConstant(RoundWidth, dl,
1028 TLI.getShiftAmountTy(Hi.getValueType(), DL)));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001029
1030 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001031 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001032 } else {
1033 // Big endian - avoid unaligned loads.
1034 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1035 // Load the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +00001036 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001037 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001038 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001039
1040 // Load the remaining ExtraWidth bits.
1041 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001042 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001043 DAG.getConstant(IncrementSize, dl,
1044 Ptr.getValueType()));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001045 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem2a148662012-07-11 11:02:16 +00001046 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001047 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001048 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001049 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001050
1051 // Build a factor node to remember that this load is independent of
1052 // the other one.
1053 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1054 Hi.getValue(1));
1055
1056 // Move the top bits to the right place.
Mehdi Amini9639d652015-07-09 02:09:20 +00001057 Hi = DAG.getNode(
1058 ISD::SHL, dl, Hi.getValueType(), Hi,
1059 DAG.getConstant(ExtraWidth, dl,
1060 TLI.getShiftAmountTy(Hi.getValueType(), DL)));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001061
1062 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001063 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001064 }
1065
Nadav Rotem2a148662012-07-11 11:02:16 +00001066 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001067 } else {
1068 bool isCustom = false;
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +00001069 switch (TLI.getLoadExtAction(ExtType, Node->getValueType(0),
1070 SrcVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001071 default: llvm_unreachable("This action is not supported yet!");
1072 case TargetLowering::Custom:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001073 isCustom = true;
1074 // FALLTHROUGH
Nadav Rotem2a148662012-07-11 11:02:16 +00001075 case TargetLowering::Legal: {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001076 Value = SDValue(Node, 0);
1077 Chain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001078
Matt Arsenault95b714c2014-03-11 00:01:25 +00001079 if (isCustom) {
1080 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1081 if (Res.getNode()) {
1082 Value = Res;
1083 Chain = Res.getValue(1);
1084 }
1085 } else {
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001086 // If this is an unaligned load and the target doesn't support it,
1087 // expand it.
Matt Arsenault95b714c2014-03-11 00:01:25 +00001088 EVT MemVT = LD->getMemoryVT();
1089 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001090 unsigned Align = LD->getAlignment();
Sanjay Patel0f9dcf82015-07-29 18:24:18 +00001091 const DataLayout &DL = DAG.getDataLayout();
1092 if (!TLI.allowsMemoryAccess(*DAG.getContext(), DL, MemVT, AS, Align))
1093 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, Value, Chain);
Matt Arsenault95b714c2014-03-11 00:01:25 +00001094 }
1095 break;
Nadav Rotem2a148662012-07-11 11:02:16 +00001096 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001097 case TargetLowering::Expand:
Matt Arsenaultacd68b52015-09-09 01:12:27 +00001098 EVT DestVT = Node->getValueType(0);
1099 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, DestVT, SrcVT)) {
Matt Arsenaultbd223422015-01-14 01:35:17 +00001100 // If the source type is not legal, see if there is a legal extload to
1101 // an intermediate type that we can then extend further.
1102 EVT LoadVT = TLI.getRegisterType(SrcVT.getSimpleVT());
1103 if (TLI.isTypeLegal(SrcVT) || // Same as SrcVT == LoadVT?
1104 TLI.isLoadExtLegal(ExtType, LoadVT, SrcVT)) {
1105 // If we are loading a legal type, this is a non-extload followed by a
1106 // full extend.
1107 ISD::LoadExtType MidExtType =
1108 (LoadVT == SrcVT) ? ISD::NON_EXTLOAD : ExtType;
1109
1110 SDValue Load = DAG.getExtLoad(MidExtType, dl, LoadVT, Chain, Ptr,
1111 SrcVT, LD->getMemOperand());
1112 unsigned ExtendOp =
1113 ISD::getExtForLoadExtType(SrcVT.isFloatingPoint(), ExtType);
1114 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1115 Chain = Load.getValue(1);
Matt Arsenault95b714c2014-03-11 00:01:25 +00001116 break;
Matt Arsenault95b714c2014-03-11 00:01:25 +00001117 }
Matt Arsenaultacd68b52015-09-09 01:12:27 +00001118
1119 // Handle the special case of fp16 extloads. EXTLOAD doesn't have the
1120 // normal undefined upper bits behavior to allow using an in-reg extend
1121 // with the illegal FP type, so load as an integer and do the
1122 // from-integer conversion.
1123 if (SrcVT.getScalarType() == MVT::f16) {
1124 EVT ISrcVT = SrcVT.changeTypeToInteger();
1125 EVT IDestVT = DestVT.changeTypeToInteger();
1126 EVT LoadVT = TLI.getRegisterType(IDestVT.getSimpleVT());
1127
1128 SDValue Result = DAG.getExtLoad(ISD::ZEXTLOAD, dl, LoadVT,
1129 Chain, Ptr, ISrcVT,
1130 LD->getMemOperand());
1131 Value = DAG.getNode(ISD::FP16_TO_FP, dl, DestVT, Result);
1132 Chain = Result.getValue(1);
1133 break;
1134 }
Matt Arsenault95b714c2014-03-11 00:01:25 +00001135 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001136
Matt Arsenault95b714c2014-03-11 00:01:25 +00001137 assert(!SrcVT.isVector() &&
1138 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemde6fd282012-07-11 08:52:09 +00001139
Matt Arsenault95b714c2014-03-11 00:01:25 +00001140 // FIXME: This does not work for vectors on most targets. Sign-
1141 // and zero-extend operations are currently folded into extending
1142 // loads, whether they are legal or not, and then we end up here
1143 // without any support for legalizing them.
1144 assert(ExtType != ISD::EXTLOAD &&
1145 "EXTLOAD should always be supported!");
1146 // Turn the unsupported load into an EXTLOAD followed by an
1147 // explicit zero/sign extend inreg.
1148 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl,
1149 Node->getValueType(0),
1150 Chain, Ptr, SrcVT,
1151 LD->getMemOperand());
1152 SDValue ValRes;
1153 if (ExtType == ISD::SEXTLOAD)
1154 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1155 Result.getValueType(),
1156 Result, DAG.getValueType(SrcVT));
1157 else
Sanjay Patelb06441a2014-11-21 18:05:59 +00001158 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Matt Arsenault95b714c2014-03-11 00:01:25 +00001159 Value = ValRes;
1160 Chain = Result.getValue(1);
1161 break;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001162 }
1163 }
1164
1165 // Since loads produce two values, make sure to remember that we legalized
1166 // both of them.
Nadav Rotem2a148662012-07-11 11:02:16 +00001167 if (Chain.getNode() != Node) {
1168 assert(Value.getNode() != Node && "Load must be completely replaced");
1169 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1170 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00001171 if (UpdatedNodes) {
1172 UpdatedNodes->insert(Value.getNode());
1173 UpdatedNodes->insert(Chain.getNode());
1174 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001175 ReplacedNode(Node);
1176 }
1177}
1178
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001179/// Return a legal replacement for the given operation, with all legal operands.
Dan Gohman198b7ff2011-11-03 21:49:52 +00001180void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
Chandler Carruthb1432742014-07-28 17:55:07 +00001181 DEBUG(dbgs() << "\nLegalizing: "; Node->dump(&DAG));
1182
Dan Gohman198b7ff2011-11-03 21:49:52 +00001183 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1184 return;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001185
Pete Cooperaf61ac72015-06-26 19:23:20 +00001186#ifndef NDEBUG
Eli Friedman5e0d1502009-05-24 02:46:31 +00001187 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001188 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1189 TargetLowering::TypeLegal &&
Eli Friedman5e0d1502009-05-24 02:46:31 +00001190 "Unexpected illegal type!");
1191
Pete Cooper8fc121d2015-06-26 19:08:33 +00001192 for (const SDValue &Op : Node->op_values())
Dan Gohmane49e7422011-07-15 22:39:09 +00001193 assert((TLI.getTypeAction(*DAG.getContext(),
Pete Cooper8fc121d2015-06-26 19:08:33 +00001194 Op.getValueType()) == TargetLowering::TypeLegal ||
1195 Op.getOpcode() == ISD::TargetConstant) &&
1196 "Unexpected illegal type!");
Pete Cooperaf61ac72015-06-26 19:23:20 +00001197#endif
Chris Lattnerdc750592005-01-07 07:47:09 +00001198
Eli Friedman21d349b2009-05-27 01:25:56 +00001199 // Figure out the correct action; the way to query this varies by opcode
Bill Wendlingfb4ee9b2011-01-26 22:21:35 +00001200 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman21d349b2009-05-27 01:25:56 +00001201 bool SimpleFinishLegalizing = true;
Chris Lattnerdc750592005-01-07 07:47:09 +00001202 switch (Node->getOpcode()) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001203 case ISD::INTRINSIC_W_CHAIN:
1204 case ISD::INTRINSIC_WO_CHAIN:
1205 case ISD::INTRINSIC_VOID:
Eli Friedman21d349b2009-05-27 01:25:56 +00001206 case ISD::STACKSAVE:
Owen Anderson9f944592009-08-11 20:47:22 +00001207 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman21d349b2009-05-27 01:25:56 +00001208 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00001209 case ISD::VAARG:
1210 Action = TLI.getOperationAction(Node->getOpcode(),
1211 Node->getValueType(0));
1212 if (Action != TargetLowering::Promote)
1213 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1214 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00001215 case ISD::FP_TO_FP16:
Eli Friedman21d349b2009-05-27 01:25:56 +00001216 case ISD::SINT_TO_FP:
1217 case ISD::UINT_TO_FP:
1218 case ISD::EXTRACT_VECTOR_ELT:
1219 Action = TLI.getOperationAction(Node->getOpcode(),
1220 Node->getOperand(0).getValueType());
1221 break;
1222 case ISD::FP_ROUND_INREG:
1223 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001224 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00001225 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1226 break;
1227 }
Eli Friedman342e8df2011-08-24 20:50:09 +00001228 case ISD::ATOMIC_STORE: {
1229 Action = TLI.getOperationAction(Node->getOpcode(),
1230 Node->getOperand(2).getValueType());
1231 break;
1232 }
Eli Friedmane1bc3792009-05-28 03:06:16 +00001233 case ISD::SELECT_CC:
1234 case ISD::SETCC:
1235 case ISD::BR_CC: {
1236 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1237 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1238 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001239 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedmane1bc3792009-05-28 03:06:16 +00001240 ISD::CondCode CCCode =
1241 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1242 Action = TLI.getCondCodeAction(CCCode, OpVT);
1243 if (Action == TargetLowering::Legal) {
1244 if (Node->getOpcode() == ISD::SELECT_CC)
1245 Action = TLI.getOperationAction(Node->getOpcode(),
1246 Node->getValueType(0));
1247 else
1248 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1249 }
1250 break;
1251 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001252 case ISD::LOAD:
1253 case ISD::STORE:
Eli Friedman5df72022009-05-28 03:56:57 +00001254 // FIXME: Model these properly. LOAD and STORE are complicated, and
1255 // STORE expects the unlegalized operand in some cases.
1256 SimpleFinishLegalizing = false;
1257 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001258 case ISD::CALLSEQ_START:
1259 case ISD::CALLSEQ_END:
Eli Friedman5df72022009-05-28 03:56:57 +00001260 // FIXME: This shouldn't be necessary. These nodes have special properties
1261 // dealing with the recursive nature of legalization. Removing this
1262 // special case should be done as part of making LegalizeDAG non-recursive.
1263 SimpleFinishLegalizing = false;
1264 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001265 case ISD::EXTRACT_ELEMENT:
1266 case ISD::FLT_ROUNDS_:
Eli Friedman21d349b2009-05-27 01:25:56 +00001267 case ISD::FPOWI:
1268 case ISD::MERGE_VALUES:
1269 case ISD::EH_RETURN:
1270 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00001271 case ISD::EH_SJLJ_SETJMP:
1272 case ISD::EH_SJLJ_LONGJMP:
Matthias Braun3cd00c12015-07-16 22:34:16 +00001273 case ISD::EH_SJLJ_SETUP_DISPATCH:
Eli Friedmand6f28342009-05-27 03:33:44 +00001274 // These operations lie about being legal: when they claim to be legal,
1275 // they should actually be expanded.
Eli Friedman21d349b2009-05-27 01:25:56 +00001276 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1277 if (Action == TargetLowering::Legal)
1278 Action = TargetLowering::Expand;
1279 break;
Duncan Sandsa0984362011-09-06 13:37:06 +00001280 case ISD::INIT_TRAMPOLINE:
1281 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman21d349b2009-05-27 01:25:56 +00001282 case ISD::FRAMEADDR:
1283 case ISD::RETURNADDR:
Eli Friedman2892d822009-05-27 12:20:41 +00001284 // These operations lie about being legal: when they claim to be legal,
1285 // they should actually be custom-lowered.
1286 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1287 if (Action == TargetLowering::Legal)
1288 Action = TargetLowering::Custom;
Eli Friedman21d349b2009-05-27 01:25:56 +00001289 break;
Ahmed Bougachaf9c19da2015-08-28 01:49:59 +00001290 case ISD::READCYCLECOUNTER:
1291 // READCYCLECOUNTER returns an i64, even if type legalization might have
1292 // expanded that to several smaller types.
1293 Action = TLI.getOperationAction(Node->getOpcode(), MVT::i64);
1294 break;
Renato Golinc7aea402014-05-06 16:51:25 +00001295 case ISD::READ_REGISTER:
1296 case ISD::WRITE_REGISTER:
1297 // Named register is legal in the DAG, but blocked by register name
1298 // selection if not implemented by target (to chose the correct register)
1299 // They'll be converted to Copy(To/From)Reg.
1300 Action = TargetLowering::Legal;
1301 break;
Shuxin Yangcdde0592012-10-19 20:11:16 +00001302 case ISD::DEBUGTRAP:
1303 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1304 if (Action == TargetLowering::Expand) {
1305 // replace ISD::DEBUGTRAP with ISD::TRAP
1306 SDValue NewVal;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001307 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yang1479fcd2012-10-19 23:00:20 +00001308 Node->getOperand(0));
Shuxin Yangcdde0592012-10-19 20:11:16 +00001309 ReplaceNode(Node, NewVal.getNode());
1310 LegalizeOp(NewVal.getNode());
1311 return;
1312 }
1313 break;
1314
Chris Lattnerdc750592005-01-07 07:47:09 +00001315 default:
Chris Lattner3eb86932005-05-14 06:34:48 +00001316 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001317 Action = TargetLowering::Legal;
1318 } else {
1319 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattner3eb86932005-05-14 06:34:48 +00001320 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001321 break;
1322 }
1323
1324 if (SimpleFinishLegalizing) {
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001325 SDNode *NewNode = Node;
Eli Friedman21d349b2009-05-27 01:25:56 +00001326 switch (Node->getOpcode()) {
1327 default: break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001328 case ISD::SHL:
1329 case ISD::SRL:
1330 case ISD::SRA:
1331 case ISD::ROTL:
1332 case ISD::ROTR:
1333 // Legalizing shifts/rotates requires adjusting the shift amount
1334 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001335 if (!Node->getOperand(1).getValueType().isVector()) {
1336 SDValue SAO =
1337 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1338 Node->getOperand(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001339 HandleSDNode Handle(SAO);
1340 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001341 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1342 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001343 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001344 break;
Dan Gohman4906f732009-08-18 23:36:17 +00001345 case ISD::SRL_PARTS:
1346 case ISD::SRA_PARTS:
1347 case ISD::SHL_PARTS:
1348 // Legalizing shifts/rotates requires adjusting the shift amount
1349 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001350 if (!Node->getOperand(2).getValueType().isVector()) {
1351 SDValue SAO =
1352 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1353 Node->getOperand(2));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001354 HandleSDNode Handle(SAO);
1355 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001356 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1357 Node->getOperand(1),
1358 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001359 }
Dan Gohman2fa67c92009-08-18 23:52:48 +00001360 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001361 }
1362
Dan Gohman198b7ff2011-11-03 21:49:52 +00001363 if (NewNode != Node) {
Chandler Carruth411fb402014-07-26 05:49:40 +00001364 ReplaceNode(Node, NewNode);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001365 Node = NewNode;
1366 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001367 switch (Action) {
1368 case TargetLowering::Legal:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001369 return;
Nadav Rotem2a148662012-07-11 11:02:16 +00001370 case TargetLowering::Custom: {
Eli Friedman21d349b2009-05-27 01:25:56 +00001371 // FIXME: The handling for custom lowering with multiple results is
1372 // a complete mess.
Nadav Rotem2a148662012-07-11 11:02:16 +00001373 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1374 if (Res.getNode()) {
Chandler Carruth98655fa2014-07-26 05:52:51 +00001375 if (!(Res.getNode() != Node || Res.getResNo() != 0))
1376 return;
1377
1378 if (Node->getNumValues() == 1) {
1379 // We can just directly replace this node with the lowered value.
1380 ReplaceNode(SDValue(Node, 0), Res);
1381 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001382 }
Chandler Carruth98655fa2014-07-26 05:52:51 +00001383
1384 SmallVector<SDValue, 8> ResultVals;
1385 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1386 ResultVals.push_back(Res.getValue(i));
1387 ReplaceNode(Node, ResultVals.data());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001388 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001389 }
Nadav Rotem2a148662012-07-11 11:02:16 +00001390 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001391 // FALL THROUGH
1392 case TargetLowering::Expand:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001393 ExpandNode(Node);
1394 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001395 case TargetLowering::Promote:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001396 PromoteNode(Node);
1397 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001398 }
1399 }
1400
1401 switch (Node->getOpcode()) {
1402 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001403#ifndef NDEBUG
David Greeneae4f2662010-01-05 01:24:53 +00001404 dbgs() << "NODE: ";
1405 Node->dump( &DAG);
1406 dbgs() << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001407#endif
Craig Topperee4dab52012-02-05 08:31:47 +00001408 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendlingf359fed2007-11-13 00:44:25 +00001409
Dan Gohman198b7ff2011-11-03 21:49:52 +00001410 case ISD::CALLSEQ_START:
Dan Gohman9b9c9702011-10-29 00:41:52 +00001411 case ISD::CALLSEQ_END:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001412 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001413 case ISD::LOAD: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001414 return LegalizeLoadOps(Node);
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001415 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001416 case ISD::STORE: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001417 return LegalizeStoreOps(Node);
Evan Cheng31d15fa2005-12-23 07:29:34 +00001418 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001419 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001420}
1421
Eli Friedman40afdb62009-05-23 22:37:25 +00001422SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1423 SDValue Vec = Op.getOperand(0);
1424 SDValue Idx = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001425 SDLoc dl(Op);
Hal Finkel90adf0f2014-03-30 15:10:18 +00001426
1427 // Before we generate a new store to a temporary stack slot, see if there is
1428 // already one that we can use. There often is because when we scalarize
1429 // vector operations (using SelectionDAG::UnrollVectorOp for example) a whole
1430 // series of EXTRACT_VECTOR_ELT nodes are generated, one for each element in
1431 // the vector. If all are expanded here, we don't want one store per vector
1432 // element.
1433 SDValue StackPtr, Ch;
1434 for (SDNode::use_iterator UI = Vec.getNode()->use_begin(),
1435 UE = Vec.getNode()->use_end(); UI != UE; ++UI) {
1436 SDNode *User = *UI;
1437 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(User)) {
1438 if (ST->isIndexed() || ST->isTruncatingStore() ||
1439 ST->getValue() != Vec)
1440 continue;
1441
1442 // Make sure that nothing else could have stored into the destination of
1443 // this store.
1444 if (!ST->getChain().reachesChainWithoutSideEffects(DAG.getEntryNode()))
1445 continue;
1446
1447 StackPtr = ST->getBasePtr();
1448 Ch = SDValue(ST, 0);
1449 break;
1450 }
1451 }
1452
1453 if (!Ch.getNode()) {
1454 // Store the value to a temporary stack slot, then LOAD the returned part.
1455 StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1456 Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1457 MachinePointerInfo(), false, false, 0);
1458 }
Eli Friedman40afdb62009-05-23 22:37:25 +00001459
1460 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +00001461 unsigned EltSize =
1462 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman40afdb62009-05-23 22:37:25 +00001463 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001464 DAG.getConstant(EltSize, SDLoc(Vec), Idx.getValueType()));
Eli Friedman40afdb62009-05-23 22:37:25 +00001465
Mehdi Amini44ede332015-07-09 02:09:04 +00001466 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy(DAG.getDataLayout()));
Eli Friedman40afdb62009-05-23 22:37:25 +00001467 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1468
Ahmed Bougachac8097612015-03-09 22:51:05 +00001469 SDValue NewLoad;
1470
Eli Friedman2b77eef2009-07-09 22:01:03 +00001471 if (Op.getValueType().isVector())
Ahmed Bougachac8097612015-03-09 22:51:05 +00001472 NewLoad = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,
1473 MachinePointerInfo(), false, false, false, 0);
1474 else
1475 NewLoad = DAG.getExtLoad(
1476 ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr, MachinePointerInfo(),
1477 Vec.getValueType().getVectorElementType(), false, false, false, 0);
1478
1479 // Replace the chain going out of the store, by the one out of the load.
1480 DAG.ReplaceAllUsesOfValueWith(Ch, SDValue(NewLoad.getNode(), 1));
1481
1482 // We introduced a cycle though, so update the loads operands, making sure
1483 // to use the original store's chain as an incoming chain.
1484 SmallVector<SDValue, 6> NewLoadOperands(NewLoad->op_begin(),
1485 NewLoad->op_end());
1486 NewLoadOperands[0] = Ch;
1487 NewLoad =
1488 SDValue(DAG.UpdateNodeOperands(NewLoad.getNode(), NewLoadOperands), 0);
1489 return NewLoad;
Eli Friedman40afdb62009-05-23 22:37:25 +00001490}
1491
David Greenebab5e6e2011-01-26 19:13:22 +00001492SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1493 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1494
1495 SDValue Vec = Op.getOperand(0);
1496 SDValue Part = Op.getOperand(1);
1497 SDValue Idx = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001498 SDLoc dl(Op);
David Greenebab5e6e2011-01-26 19:13:22 +00001499
1500 // Store the value to a temporary stack slot, then LOAD the returned part.
1501
1502 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1503 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Alex Lorenze40c8a22015-08-11 23:09:45 +00001504 MachinePointerInfo PtrInfo =
1505 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI);
David Greenebab5e6e2011-01-26 19:13:22 +00001506
1507 // First store the whole vector.
1508 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1509 false, false, 0);
1510
1511 // Then store the inserted part.
1512
1513 // Add the offset to the index.
1514 unsigned EltSize =
1515 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1516
1517 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001518 DAG.getConstant(EltSize, SDLoc(Vec), Idx.getValueType()));
Mehdi Amini44ede332015-07-09 02:09:04 +00001519 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy(DAG.getDataLayout()));
David Greenebab5e6e2011-01-26 19:13:22 +00001520
1521 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1522 StackPtr);
1523
1524 // Store the subvector.
Owen Andersonb5a25992014-11-18 20:50:19 +00001525 Ch = DAG.getStore(Ch, dl, Part, SubStackPtr,
David Greenebab5e6e2011-01-26 19:13:22 +00001526 MachinePointerInfo(), false, false, 0);
1527
1528 // Finally, load the updated vector.
1529 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001530 false, false, false, 0);
David Greenebab5e6e2011-01-26 19:13:22 +00001531}
1532
Eli Friedmanaee3f622009-06-06 07:04:42 +00001533SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1534 // We can't handle this case efficiently. Allocate a sufficiently
1535 // aligned object on the stack, store each element into it, then load
1536 // the result as a vector.
1537 // Create the stack frame object.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001538 EVT VT = Node->getValueType(0);
Dale Johannesenb91eba32009-11-21 00:53:23 +00001539 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001540 SDLoc dl(Node);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001541 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001542 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Alex Lorenze40c8a22015-08-11 23:09:45 +00001543 MachinePointerInfo PtrInfo =
1544 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001545
1546 // Emit a store of each element to the stack slot.
1547 SmallVector<SDValue, 8> Stores;
Dan Gohman9b80f862010-02-25 15:20:39 +00001548 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedmanaee3f622009-06-06 07:04:42 +00001549 // Store (in the right endianness) the elements to memory.
1550 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1551 // Ignore undef elements.
1552 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1553
1554 unsigned Offset = TypeByteSize*i;
1555
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001556 SDValue Idx = DAG.getConstant(Offset, dl, FIPtr.getValueType());
Eli Friedmanaee3f622009-06-06 07:04:42 +00001557 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1558
Dan Gohman2a8e3772010-02-25 20:30:49 +00001559 // If the destination vector element type is narrower than the source
1560 // element type, only store the bits necessary.
1561 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesenb91eba32009-11-21 00:53:23 +00001562 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001563 Node->getOperand(i), Idx,
1564 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001565 EltVT, false, false, 0));
Mon P Wang586d9972010-01-24 00:05:03 +00001566 } else
Jim Grosbach9b7755f2010-07-02 17:41:59 +00001567 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001568 Node->getOperand(i), Idx,
1569 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001570 false, false, 0));
Eli Friedmanaee3f622009-06-06 07:04:42 +00001571 }
1572
1573 SDValue StoreChain;
1574 if (!Stores.empty()) // Not all undef elements?
Craig Topper48d114b2014-04-26 18:35:24 +00001575 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001576 else
1577 StoreChain = DAG.getEntryNode();
1578
1579 // Result is a load from the stack slot.
Stephen Lincfe7f352013-07-08 00:37:03 +00001580 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001581 false, false, false, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001582}
1583
Matthias Braun75e668e2015-07-14 02:09:57 +00001584SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
1585 SDLoc dl(Node);
1586 SDValue Tmp1 = Node->getOperand(0);
1587 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands4c55f762010-03-12 11:45:06 +00001588
Matthias Braun75e668e2015-07-14 02:09:57 +00001589 // Get the sign bit of the RHS. First obtain a value that has the same
1590 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
1591 SDValue SignBit;
1592 EVT FloatVT = Tmp2.getValueType();
1593 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohmane49e7422011-07-15 22:39:09 +00001594 if (TLI.isTypeLegal(IVT)) {
Matthias Braun75e668e2015-07-14 02:09:57 +00001595 // Convert to an integer with the same sign bit.
1596 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
1597 } else {
1598 auto &DL = DAG.getDataLayout();
1599 // Store the float to memory, then load the sign part out as an integer.
1600 MVT LoadTy = TLI.getPointerTy(DL);
1601 // First create a temporary that is aligned for both the load and store.
1602 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1603 // Then store the float to it.
1604 SDValue Ch =
1605 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
1606 false, false, 0);
1607 if (DL.isBigEndian()) {
1608 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1609 // Load out a legal integer with the same sign bit as the float.
1610 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
1611 false, false, false, 0);
1612 } else { // Little endian
1613 SDValue LoadPtr = StackPtr;
1614 // The float may be wider than the integer we are going to load. Advance
1615 // the pointer so that the loaded integer will contain the sign bit.
1616 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1617 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1618 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(), LoadPtr,
1619 DAG.getConstant(ByteOffset, dl,
1620 LoadPtr.getValueType()));
1621 // Load a legal integer containing the sign bit.
1622 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
1623 false, false, false, 0);
1624 // Move the sign bit to the top bit of the loaded integer.
1625 unsigned BitShift = LoadTy.getSizeInBits() -
1626 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1627 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1628 if (BitShift)
1629 SignBit = DAG.getNode(
1630 ISD::SHL, dl, LoadTy, SignBit,
1631 DAG.getConstant(BitShift, dl,
1632 TLI.getShiftAmountTy(SignBit.getValueType(), DL)));
1633 }
Eli Friedman2892d822009-05-27 12:20:41 +00001634 }
Matthias Braun75e668e2015-07-14 02:09:57 +00001635 // Now get the sign bit proper, by seeing whether the value is negative.
1636 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
1637 SignBit,
1638 DAG.getConstant(0, dl, SignBit.getValueType()),
1639 ISD::SETLT);
1640 // Get the absolute value of the result.
1641 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1642 // Select between the nabs and abs value based on the sign bit of
1643 // the input.
1644 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
1645 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1646 AbsVal);
Eli Friedman2892d822009-05-27 12:20:41 +00001647}
1648
Eli Friedman2892d822009-05-27 12:20:41 +00001649void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1650 SmallVectorImpl<SDValue> &Results) {
1651 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1652 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1653 " not tell us which reg is the stack pointer!");
Andrew Trickef9de2a2013-05-25 02:42:55 +00001654 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001655 EVT VT = Node->getValueType(0);
Eli Friedman2892d822009-05-27 12:20:41 +00001656 SDValue Tmp1 = SDValue(Node, 0);
1657 SDValue Tmp2 = SDValue(Node, 1);
1658 SDValue Tmp3 = Node->getOperand(2);
1659 SDValue Chain = Tmp1.getOperand(0);
1660
1661 // Chain the dynamic stack allocation so that it doesn't modify the stack
1662 // pointer when other instructions are using the stack.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001663 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, dl, true), dl);
Eli Friedman2892d822009-05-27 12:20:41 +00001664
1665 SDValue Size = Tmp2.getOperand(1);
1666 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1667 Chain = SP.getValue(1);
1668 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Eric Christopherd9134482014-08-04 21:25:23 +00001669 unsigned StackAlign =
Eric Christopher85de8f92014-10-09 01:35:27 +00001670 DAG.getSubtarget().getFrameLowering()->getStackAlignment();
Eli Friedman2892d822009-05-27 12:20:41 +00001671 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Elena Demikhovsky82a46eb2013-10-14 07:26:51 +00001672 if (Align > StackAlign)
1673 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001674 DAG.getConstant(-(uint64_t)Align, dl, VT));
Eli Friedman2892d822009-05-27 12:20:41 +00001675 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1676
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001677 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, dl, true),
1678 DAG.getIntPtrConstant(0, dl, true), SDValue(), dl);
Eli Friedman2892d822009-05-27 12:20:41 +00001679
1680 Results.push_back(Tmp1);
1681 Results.push_back(Tmp2);
1682}
1683
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001684/// Legalize a SETCC with given LHS and RHS and condition code CC on the current
1685/// target.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001686///
Tom Stellard08690a12013-09-28 02:50:32 +00001687/// If the SETCC has been legalized using AND / OR, then the legalized node
Daniel Sandersedc071b2013-11-21 13:24:49 +00001688/// will be stored in LHS. RHS and CC will be set to SDValue(). NeedInvert
1689/// will be set to false.
1690///
Tom Stellard08690a12013-09-28 02:50:32 +00001691/// If the SETCC has been legalized by using getSetCCSwappedOperands(),
Daniel Sandersedc071b2013-11-21 13:24:49 +00001692/// then the values of LHS and RHS will be swapped, CC will be set to the
1693/// new condition, and NeedInvert will be set to false.
1694///
1695/// If the SETCC has been legalized using the inverse condcode, then LHS and
1696/// RHS will be unchanged, CC will set to the inverted condcode, and NeedInvert
1697/// will be set to true. The caller must invert the result of the SETCC with
Pete Cooper7fd1d722014-05-12 23:26:58 +00001698/// SelectionDAG::getLogicalNOT() or take equivalent action to swap the effect
1699/// of a true/false result.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001700///
Tom Stellard08690a12013-09-28 02:50:32 +00001701/// \returns true if the SetCC has been legalized, false if it hasn't.
1702bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001703 SDValue &LHS, SDValue &RHS,
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001704 SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +00001705 bool &NeedInvert,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001706 SDLoc dl) {
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001707 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001708 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
Daniel Sandersedc071b2013-11-21 13:24:49 +00001709 NeedInvert = false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001710 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topperee4dab52012-02-05 08:31:47 +00001711 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001712 case TargetLowering::Legal:
1713 // Nothing to do.
1714 break;
1715 case TargetLowering::Expand: {
Tom Stellardcd428182013-09-28 02:50:38 +00001716 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1717 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1718 std::swap(LHS, RHS);
1719 CC = DAG.getCondCode(InvCC);
1720 return true;
1721 }
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001722 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1723 unsigned Opc = 0;
1724 switch (CCCode) {
Craig Topperee4dab52012-02-05 08:31:47 +00001725 default: llvm_unreachable("Don't know how to expand this condition!");
Stephen Lincfe7f352013-07-08 00:37:03 +00001726 case ISD::SETO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001727 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1728 == TargetLowering::Legal
1729 && "If SETO is expanded, SETOEQ must be legal!");
1730 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
Stephen Lincfe7f352013-07-08 00:37:03 +00001731 case ISD::SETUO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001732 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1733 == TargetLowering::Legal
1734 && "If SETUO is expanded, SETUNE must be legal!");
1735 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1736 case ISD::SETOEQ:
1737 case ISD::SETOGT:
1738 case ISD::SETOGE:
1739 case ISD::SETOLT:
1740 case ISD::SETOLE:
Stephen Lincfe7f352013-07-08 00:37:03 +00001741 case ISD::SETONE:
1742 case ISD::SETUEQ:
1743 case ISD::SETUNE:
1744 case ISD::SETUGT:
1745 case ISD::SETUGE:
1746 case ISD::SETULT:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001747 case ISD::SETULE:
1748 // If we are floating point, assign and break, otherwise fall through.
1749 if (!OpVT.isInteger()) {
1750 // We can use the 4th bit to tell if we are the unordered
1751 // or ordered version of the opcode.
1752 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1753 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1754 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1755 break;
1756 }
1757 // Fallthrough if we are unsigned integer.
1758 case ISD::SETLE:
1759 case ISD::SETGT:
1760 case ISD::SETGE:
1761 case ISD::SETLT:
Tom Stellardcd428182013-09-28 02:50:38 +00001762 // We only support using the inverted operation, which is computed above
1763 // and not a different manner of supporting expanding these cases.
1764 llvm_unreachable("Don't know how to expand this condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00001765 case ISD::SETNE:
1766 case ISD::SETEQ:
1767 // Try inverting the result of the inverse condition.
1768 InvCC = CCCode == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ;
1769 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1770 CC = DAG.getCondCode(InvCC);
1771 NeedInvert = true;
1772 return true;
1773 }
1774 // If inverting the condition didn't work then we have no means to expand
1775 // the condition.
1776 llvm_unreachable("Don't know how to expand this condition!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001777 }
Stephen Lincfe7f352013-07-08 00:37:03 +00001778
Micah Villmow0242b9b2012-10-10 20:50:51 +00001779 SDValue SetCC1, SetCC2;
1780 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1781 // If we aren't the ordered or unorder operation,
1782 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1783 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1784 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1785 } else {
1786 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1787 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1788 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1789 }
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001790 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001791 RHS = SDValue();
1792 CC = SDValue();
Tom Stellard08690a12013-09-28 02:50:32 +00001793 return true;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001794 }
1795 }
Tom Stellard08690a12013-09-28 02:50:32 +00001796 return false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001797}
1798
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001799/// Emit a store/load combination to the stack. This stores
Chris Lattner87bc3e72008-01-16 07:45:30 +00001800/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1801/// a load from the stack slot to DestVT, extending it if needed.
1802/// The resultant code need not be legal.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001803SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001804 EVT SlotVT,
1805 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001806 SDLoc dl) {
Chris Lattner36e663d2005-12-23 00:16:34 +00001807 // Create the stack frame object.
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001808 unsigned SrcAlign = DAG.getDataLayout().getPrefTypeAlignment(
1809 SrcOp.getValueType().getTypeForEVT(*DAG.getContext()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001810 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001811
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001812 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1813 int SPFI = StackPtrFI->getIndex();
Alex Lorenze40c8a22015-08-11 23:09:45 +00001814 MachinePointerInfo PtrInfo =
1815 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SPFI);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001816
Duncan Sands13237ac2008-06-06 12:08:01 +00001817 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1818 unsigned SlotSize = SlotVT.getSizeInBits();
1819 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattner229907c2011-07-18 04:54:35 +00001820 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001821 unsigned DestAlign = DAG.getDataLayout().getPrefTypeAlignment(DestType);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001822
Chris Lattner87bc3e72008-01-16 07:45:30 +00001823 // Emit a store to the stack slot. Use a truncstore if the input value is
1824 // later than DestVT.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001825 SDValue Store;
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001826
Chris Lattner87bc3e72008-01-16 07:45:30 +00001827 if (SrcSize > SlotSize)
Dale Johannesena02e45c2009-02-02 22:12:50 +00001828 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001829 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001830 else {
1831 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesena02e45c2009-02-02 22:12:50 +00001832 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001833 PtrInfo, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001834 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001835
Chris Lattner36e663d2005-12-23 00:16:34 +00001836 // Result is a load from the stack slot.
Chris Lattner87bc3e72008-01-16 07:45:30 +00001837 if (SlotSize == DestSize)
Chris Lattner6963c1f2010-09-21 17:42:31 +00001838 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001839 false, false, false, DestAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001840
Chris Lattner87bc3e72008-01-16 07:45:30 +00001841 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastings81c43062011-02-16 16:23:55 +00001842 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001843 PtrInfo, SlotVT, false, false, false, DestAlign);
Chris Lattner36e663d2005-12-23 00:16:34 +00001844}
1845
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001846SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001847 SDLoc dl(Node);
Chris Lattner6be79822006-04-04 17:23:26 +00001848 // Create a vector sized/aligned stack slot, store the value to element #0,
1849 // then load the whole vector back out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001850 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman2d489b52008-02-06 22:27:42 +00001851
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001852 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1853 int SPFI = StackPtrFI->getIndex();
1854
Alex Lorenze40c8a22015-08-11 23:09:45 +00001855 SDValue Ch = DAG.getTruncStore(
1856 DAG.getEntryNode(), dl, Node->getOperand(0), StackPtr,
1857 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SPFI),
1858 Node->getValueType(0).getVectorElementType(), false, false, 0);
1859 return DAG.getLoad(
1860 Node->getValueType(0), dl, Ch, StackPtr,
1861 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SPFI), false,
1862 false, false, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00001863}
1864
Hal Finkelb811b6d2014-03-31 19:42:55 +00001865static bool
1866ExpandBVWithShuffles(SDNode *Node, SelectionDAG &DAG,
1867 const TargetLowering &TLI, SDValue &Res) {
1868 unsigned NumElems = Node->getNumOperands();
1869 SDLoc dl(Node);
1870 EVT VT = Node->getValueType(0);
1871
1872 // Try to group the scalars into pairs, shuffle the pairs together, then
1873 // shuffle the pairs of pairs together, etc. until the vector has
1874 // been built. This will work only if all of the necessary shuffle masks
1875 // are legal.
1876
1877 // We do this in two phases; first to check the legality of the shuffles,
1878 // and next, assuming that all shuffles are legal, to create the new nodes.
1879 for (int Phase = 0; Phase < 2; ++Phase) {
1880 SmallVector<std::pair<SDValue, SmallVector<int, 16> >, 16> IntermedVals,
1881 NewIntermedVals;
1882 for (unsigned i = 0; i < NumElems; ++i) {
1883 SDValue V = Node->getOperand(i);
1884 if (V.getOpcode() == ISD::UNDEF)
1885 continue;
1886
1887 SDValue Vec;
1888 if (Phase)
1889 Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, V);
1890 IntermedVals.push_back(std::make_pair(Vec, SmallVector<int, 16>(1, i)));
1891 }
1892
1893 while (IntermedVals.size() > 2) {
1894 NewIntermedVals.clear();
1895 for (unsigned i = 0, e = (IntermedVals.size() & ~1u); i < e; i += 2) {
1896 // This vector and the next vector are shuffled together (simply to
1897 // append the one to the other).
1898 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1899
1900 SmallVector<int, 16> FinalIndices;
1901 FinalIndices.reserve(IntermedVals[i].second.size() +
1902 IntermedVals[i+1].second.size());
1903
1904 int k = 0;
1905 for (unsigned j = 0, f = IntermedVals[i].second.size(); j != f;
1906 ++j, ++k) {
1907 ShuffleVec[k] = j;
1908 FinalIndices.push_back(IntermedVals[i].second[j]);
1909 }
1910 for (unsigned j = 0, f = IntermedVals[i+1].second.size(); j != f;
1911 ++j, ++k) {
1912 ShuffleVec[k] = NumElems + j;
1913 FinalIndices.push_back(IntermedVals[i+1].second[j]);
1914 }
1915
1916 SDValue Shuffle;
1917 if (Phase)
1918 Shuffle = DAG.getVectorShuffle(VT, dl, IntermedVals[i].first,
1919 IntermedVals[i+1].first,
1920 ShuffleVec.data());
1921 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1922 return false;
Benjamin Kramerc6cc58e2014-10-04 16:55:56 +00001923 NewIntermedVals.push_back(
1924 std::make_pair(Shuffle, std::move(FinalIndices)));
Hal Finkelb811b6d2014-03-31 19:42:55 +00001925 }
1926
1927 // If we had an odd number of defined values, then append the last
1928 // element to the array of new vectors.
1929 if ((IntermedVals.size() & 1) != 0)
1930 NewIntermedVals.push_back(IntermedVals.back());
1931
1932 IntermedVals.swap(NewIntermedVals);
1933 }
1934
1935 assert(IntermedVals.size() <= 2 && IntermedVals.size() > 0 &&
1936 "Invalid number of intermediate vectors");
1937 SDValue Vec1 = IntermedVals[0].first;
1938 SDValue Vec2;
1939 if (IntermedVals.size() > 1)
1940 Vec2 = IntermedVals[1].first;
1941 else if (Phase)
1942 Vec2 = DAG.getUNDEF(VT);
1943
1944 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1945 for (unsigned i = 0, e = IntermedVals[0].second.size(); i != e; ++i)
1946 ShuffleVec[IntermedVals[0].second[i]] = i;
1947 for (unsigned i = 0, e = IntermedVals[1].second.size(); i != e; ++i)
1948 ShuffleVec[IntermedVals[1].second[i]] = NumElems + i;
1949
1950 if (Phase)
1951 Res = DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
1952 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1953 return false;
1954 }
1955
1956 return true;
1957}
Chris Lattner6be79822006-04-04 17:23:26 +00001958
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001959/// Expand a BUILD_VECTOR node on targets that don't
Dan Gohman06c60b62007-07-16 14:29:03 +00001960/// support the operation, but do support the resultant vector type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001961SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilsonf6c21952009-04-13 20:20:30 +00001962 unsigned NumElems = Node->getNumOperands();
Eli Friedman32345872009-06-07 06:52:44 +00001963 SDValue Value1, Value2;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001964 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001965 EVT VT = Node->getValueType(0);
1966 EVT OpVT = Node->getOperand(0).getValueType();
1967 EVT EltVT = VT.getVectorElementType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001968
1969 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00001970 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001971 bool isOnlyLowElement = true;
Eli Friedman32345872009-06-07 06:52:44 +00001972 bool MoreThanTwoValues = false;
Chris Lattner77e271c2006-03-24 07:29:17 +00001973 bool isConstant = true;
Eli Friedman32345872009-06-07 06:52:44 +00001974 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001975 SDValue V = Node->getOperand(i);
Eli Friedman32345872009-06-07 06:52:44 +00001976 if (V.getOpcode() == ISD::UNDEF)
1977 continue;
1978 if (i > 0)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001979 isOnlyLowElement = false;
Eli Friedman32345872009-06-07 06:52:44 +00001980 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner77e271c2006-03-24 07:29:17 +00001981 isConstant = false;
Eli Friedman32345872009-06-07 06:52:44 +00001982
1983 if (!Value1.getNode()) {
1984 Value1 = V;
1985 } else if (!Value2.getNode()) {
1986 if (V != Value1)
1987 Value2 = V;
1988 } else if (V != Value1 && V != Value2) {
1989 MoreThanTwoValues = true;
1990 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001991 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001992
Eli Friedman32345872009-06-07 06:52:44 +00001993 if (!Value1.getNode())
1994 return DAG.getUNDEF(VT);
1995
1996 if (isOnlyLowElement)
Bob Wilsonf6c21952009-04-13 20:20:30 +00001997 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001998
Chris Lattner77e271c2006-03-24 07:29:17 +00001999 // If all elements are constants, create a load from the constant pool.
2000 if (isConstant) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00002001 SmallVector<Constant*, 16> CV;
Chris Lattner77e271c2006-03-24 07:29:17 +00002002 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00002003 if (ConstantFPSDNode *V =
Chris Lattner77e271c2006-03-24 07:29:17 +00002004 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanec270fb2008-09-12 18:08:03 +00002005 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00002006 } else if (ConstantSDNode *V =
Bob Wilsonf074ca72009-04-10 18:48:47 +00002007 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen6f7d5b22009-11-10 23:16:41 +00002008 if (OpVT==EltVT)
2009 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
2010 else {
2011 // If OpVT and EltVT don't match, EltVT is not legal and the
2012 // element values have been promoted/truncated earlier. Undo this;
2013 // we don't want a v16i8 to become a v16i32 for example.
2014 const ConstantInt *CI = V->getConstantIntValue();
2015 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
2016 CI->getZExtValue()));
2017 }
Chris Lattner77e271c2006-03-24 07:29:17 +00002018 } else {
2019 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner229907c2011-07-18 04:54:35 +00002020 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Andersonb292b8c2009-07-30 23:03:37 +00002021 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner77e271c2006-03-24 07:29:17 +00002022 }
2023 }
Owen Anderson4aa32952009-07-28 21:19:26 +00002024 Constant *CP = ConstantVector::get(CV);
Mehdi Amini44ede332015-07-09 02:09:04 +00002025 SDValue CPIdx =
2026 DAG.getConstantPool(CP, TLI.getPointerTy(DAG.getDataLayout()));
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002027 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Alex Lorenze40c8a22015-08-11 23:09:45 +00002028 return DAG.getLoad(
2029 VT, dl, DAG.getEntryNode(), CPIdx,
2030 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
2031 false, false, Alignment);
Chris Lattner77e271c2006-03-24 07:29:17 +00002032 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002033
Hal Finkel19775142014-03-31 17:48:10 +00002034 SmallSet<SDValue, 16> DefinedValues;
2035 for (unsigned i = 0; i < NumElems; ++i) {
2036 if (Node->getOperand(i).getOpcode() == ISD::UNDEF)
2037 continue;
2038 DefinedValues.insert(Node->getOperand(i));
2039 }
2040
Hal Finkelb811b6d2014-03-31 19:42:55 +00002041 if (TLI.shouldExpandBuildVectorWithShuffles(VT, DefinedValues.size())) {
2042 if (!MoreThanTwoValues) {
2043 SmallVector<int, 8> ShuffleVec(NumElems, -1);
2044 for (unsigned i = 0; i < NumElems; ++i) {
2045 SDValue V = Node->getOperand(i);
2046 if (V.getOpcode() == ISD::UNDEF)
2047 continue;
2048 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
2049 }
2050 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
2051 // Get the splatted value into the low element of a vector register.
2052 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
2053 SDValue Vec2;
2054 if (Value2.getNode())
2055 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
2056 else
2057 Vec2 = DAG.getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002058
Hal Finkelb811b6d2014-03-31 19:42:55 +00002059 // Return shuffle(LowValVec, undef, <0,0,0,0>)
2060 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
2061 }
2062 } else {
2063 SDValue Res;
2064 if (ExpandBVWithShuffles(Node, DAG, TLI, Res))
2065 return Res;
Evan Cheng1d2e9952006-03-24 01:17:21 +00002066 }
2067 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002068
Eli Friedmanaee3f622009-06-06 07:04:42 +00002069 // Otherwise, we can't handle this case efficiently.
2070 return ExpandVectorBuildThroughStack(Node);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002071}
2072
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002073// Expand a node into a call to a libcall. If the result value
Chris Lattneraac464e2005-01-21 06:05:23 +00002074// does not fit into a register, return the lo part and set the hi part to the
2075// by-reg argument. If it does fit into a single register, return the result
2076// and leave the Hi part unset.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002077SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedmanb3554152009-05-27 02:21:29 +00002078 bool isSigned) {
Chris Lattneraac464e2005-01-21 06:05:23 +00002079 TargetLowering::ArgListTy Args;
Reid Spencere63b6512006-12-31 05:55:36 +00002080 TargetLowering::ArgListEntry Entry;
Pete Cooper8fc121d2015-06-26 19:08:33 +00002081 for (const SDValue &Op : Node->op_values()) {
2082 EVT ArgVT = Op.getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002083 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Pete Cooper8fc121d2015-06-26 19:08:33 +00002084 Entry.Node = Op;
2085 Entry.Ty = ArgTy;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00002086 Entry.isSExt = isSigned;
Duncan Sands4c95dbd2008-02-14 17:28:50 +00002087 Entry.isZExt = !isSigned;
Reid Spencere63b6512006-12-31 05:55:36 +00002088 Args.push_back(Entry);
Chris Lattneraac464e2005-01-21 06:05:23 +00002089 }
Bill Wendling24c79f22008-09-16 21:48:12 +00002090 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002091 TLI.getPointerTy(DAG.getDataLayout()));
Misha Brukman835702a2005-04-21 22:36:52 +00002092
Chris Lattner229907c2011-07-18 04:54:35 +00002093 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Chengd4b08732010-11-30 23:55:39 +00002094
Evan Chengf8bad082012-04-10 01:51:00 +00002095 // By default, the input chain to this libcall is the entry node of the
2096 // function. If the libcall is going to be emitted as a tail call then
2097 // TLI.isUsedByReturnOnly will change it to the right chain if the return
2098 // node which is being folded has a non-entry input chain.
2099 SDValue InChain = DAG.getEntryNode();
2100
Evan Chengd4b08732010-11-30 23:55:39 +00002101 // isTailCall may be true since the callee does not reference caller stack
2102 // frame. Check if it's in the right position.
Evan Cheng136861d2012-04-10 03:15:18 +00002103 SDValue TCChain = InChain;
Tim Northoverf1450d82013-01-09 13:18:15 +00002104 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Cheng136861d2012-04-10 03:15:18 +00002105 if (isTailCall)
2106 InChain = TCChain;
2107
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002108 TargetLowering::CallLoweringInfo CLI(DAG);
2109 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002110 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002111 .setTailCall(isTailCall).setSExtResult(isSigned).setZExtResult(!isSigned);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002112
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002113 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Chris Lattnera5bf1032005-05-12 04:49:08 +00002114
Evan Chengd4b08732010-11-30 23:55:39 +00002115 if (!CallInfo.second.getNode())
2116 // It's a tailcall, return the chain (which is the DAG root).
2117 return DAG.getRoot();
2118
Eli Friedman4a951bf2009-05-26 08:55:52 +00002119 return CallInfo.first;
Chris Lattneraac464e2005-01-21 06:05:23 +00002120}
2121
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002122/// Generate a libcall taking the given operands as arguments
Eric Christopherbcaedb52011-04-20 01:19:45 +00002123/// and returning a result of type RetVT.
2124SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
2125 const SDValue *Ops, unsigned NumOps,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002126 bool isSigned, SDLoc dl) {
Eric Christopherbcaedb52011-04-20 01:19:45 +00002127 TargetLowering::ArgListTy Args;
2128 Args.reserve(NumOps);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002129
Eric Christopherbcaedb52011-04-20 01:19:45 +00002130 TargetLowering::ArgListEntry Entry;
2131 for (unsigned i = 0; i != NumOps; ++i) {
2132 Entry.Node = Ops[i];
2133 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
2134 Entry.isSExt = isSigned;
2135 Entry.isZExt = !isSigned;
2136 Args.push_back(Entry);
2137 }
2138 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002139 TLI.getPointerTy(DAG.getDataLayout()));
Dan Gohmanae9b1682011-05-16 22:09:53 +00002140
Chris Lattner229907c2011-07-18 04:54:35 +00002141 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002142
2143 TargetLowering::CallLoweringInfo CLI(DAG);
2144 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002145 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002146 .setSExtResult(isSigned).setZExtResult(!isSigned);
2147
Justin Holewinskiaa583972012-05-25 16:35:28 +00002148 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002149
Eric Christopherbcaedb52011-04-20 01:19:45 +00002150 return CallInfo.first;
2151}
2152
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002153// Expand a node into a call to a libcall. Similar to
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002154// ExpandLibCall except that the first operand is the in-chain.
2155std::pair<SDValue, SDValue>
2156SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
2157 SDNode *Node,
2158 bool isSigned) {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002159 SDValue InChain = Node->getOperand(0);
2160
2161 TargetLowering::ArgListTy Args;
2162 TargetLowering::ArgListEntry Entry;
2163 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
2164 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002165 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002166 Entry.Node = Node->getOperand(i);
2167 Entry.Ty = ArgTy;
2168 Entry.isSExt = isSigned;
2169 Entry.isZExt = !isSigned;
2170 Args.push_back(Entry);
2171 }
2172 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002173 TLI.getPointerTy(DAG.getDataLayout()));
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002174
Chris Lattner229907c2011-07-18 04:54:35 +00002175 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002176
2177 TargetLowering::CallLoweringInfo CLI(DAG);
2178 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002179 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002180 .setSExtResult(isSigned).setZExtResult(!isSigned);
2181
Justin Holewinskiaa583972012-05-25 16:35:28 +00002182 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002183
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002184 return CallInfo;
2185}
2186
Eli Friedmand6f28342009-05-27 03:33:44 +00002187SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
2188 RTLIB::Libcall Call_F32,
2189 RTLIB::Libcall Call_F64,
2190 RTLIB::Libcall Call_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00002191 RTLIB::Libcall Call_F128,
Eli Friedmand6f28342009-05-27 03:33:44 +00002192 RTLIB::Libcall Call_PPCF128) {
2193 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002194 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002195 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson9f944592009-08-11 20:47:22 +00002196 case MVT::f32: LC = Call_F32; break;
2197 case MVT::f64: LC = Call_F64; break;
2198 case MVT::f80: LC = Call_F80; break;
Tim Northover4bf47bc2013-01-08 17:09:59 +00002199 case MVT::f128: LC = Call_F128; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002200 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002201 }
2202 return ExpandLibCall(LC, Node, false);
2203}
2204
2205SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002206 RTLIB::Libcall Call_I8,
Eli Friedmand6f28342009-05-27 03:33:44 +00002207 RTLIB::Libcall Call_I16,
2208 RTLIB::Libcall Call_I32,
2209 RTLIB::Libcall Call_I64,
2210 RTLIB::Libcall Call_I128) {
2211 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!");
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002214 case MVT::i8: LC = Call_I8; break;
2215 case MVT::i16: LC = Call_I16; break;
2216 case MVT::i32: LC = Call_I32; break;
2217 case MVT::i64: LC = Call_I64; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002218 case MVT::i128: LC = Call_I128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002219 }
2220 return ExpandLibCall(LC, Node, isSigned);
2221}
2222
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002223/// Return true if divmod libcall is available.
Evan Chengb14ce092011-04-16 03:08:26 +00002224static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2225 const TargetLowering &TLI) {
Evan Chengbd766792011-04-01 00:42:02 +00002226 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002227 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002228 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengbd766792011-04-01 00:42:02 +00002229 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2230 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2231 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2232 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2233 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2234 }
2235
Craig Topperc0196b12014-04-14 00:51:57 +00002236 return TLI.getLibcallName(LC) != nullptr;
Evan Chengb14ce092011-04-16 03:08:26 +00002237}
Evan Chengbd766792011-04-01 00:42:02 +00002238
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002239/// Only issue divrem libcall if both quotient and remainder are needed.
Evan Cheng8c2ad812012-06-21 05:56:05 +00002240static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2241 // The other use might have been replaced with a divrem already.
2242 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Chengbd766792011-04-01 00:42:02 +00002243 unsigned OtherOpcode = 0;
Evan Chengb14ce092011-04-16 03:08:26 +00002244 if (isSigned)
Evan Chengbd766792011-04-01 00:42:02 +00002245 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002246 else
Evan Chengbd766792011-04-01 00:42:02 +00002247 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002248
Evan Chengbd766792011-04-01 00:42:02 +00002249 SDValue Op0 = Node->getOperand(0);
2250 SDValue Op1 = Node->getOperand(1);
2251 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2252 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2253 SDNode *User = *UI;
2254 if (User == Node)
2255 continue;
Evan Cheng8c2ad812012-06-21 05:56:05 +00002256 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Chengbd766792011-04-01 00:42:02 +00002257 User->getOperand(0) == Op0 &&
Evan Chengb14ce092011-04-16 03:08:26 +00002258 User->getOperand(1) == Op1)
2259 return true;
Evan Chengbd766792011-04-01 00:42:02 +00002260 }
Evan Chengb14ce092011-04-16 03:08:26 +00002261 return false;
2262}
Evan Chengbd766792011-04-01 00:42:02 +00002263
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002264/// Issue libcalls to __{u}divmod to compute div / rem pairs.
Evan Chengb14ce092011-04-16 03:08:26 +00002265void
2266SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2267 SmallVectorImpl<SDValue> &Results) {
2268 unsigned Opcode = Node->getOpcode();
2269 bool isSigned = Opcode == ISD::SDIVREM;
2270
2271 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002272 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002273 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengb14ce092011-04-16 03:08:26 +00002274 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2275 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2276 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2277 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2278 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Chengbd766792011-04-01 00:42:02 +00002279 }
2280
2281 // The input chain to this libcall is the entry node of the function.
2282 // Legalizing the call will automatically add the previous call to the
2283 // dependence.
2284 SDValue InChain = DAG.getEntryNode();
2285
2286 EVT RetVT = Node->getValueType(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002287 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002288
2289 TargetLowering::ArgListTy Args;
2290 TargetLowering::ArgListEntry Entry;
Pete Cooper8fc121d2015-06-26 19:08:33 +00002291 for (const SDValue &Op : Node->op_values()) {
2292 EVT ArgVT = Op.getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002293 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Pete Cooper8fc121d2015-06-26 19:08:33 +00002294 Entry.Node = Op;
2295 Entry.Ty = ArgTy;
Evan Chengbd766792011-04-01 00:42:02 +00002296 Entry.isSExt = isSigned;
2297 Entry.isZExt = !isSigned;
2298 Args.push_back(Entry);
2299 }
2300
2301 // Also pass the return address of the remainder.
2302 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2303 Entry.Node = FIPtr;
Micah Villmow51e72462012-10-24 17:25:11 +00002304 Entry.Ty = RetTy->getPointerTo();
Evan Chengbd766792011-04-01 00:42:02 +00002305 Entry.isSExt = isSigned;
2306 Entry.isZExt = !isSigned;
2307 Args.push_back(Entry);
2308
2309 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002310 TLI.getPointerTy(DAG.getDataLayout()));
Evan Chengbd766792011-04-01 00:42:02 +00002311
Andrew Trickef9de2a2013-05-25 02:42:55 +00002312 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002313 TargetLowering::CallLoweringInfo CLI(DAG);
2314 CLI.setDebugLoc(dl).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002315 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002316 .setSExtResult(isSigned).setZExtResult(!isSigned);
2317
Justin Holewinskiaa583972012-05-25 16:35:28 +00002318 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Chengbd766792011-04-01 00:42:02 +00002319
Evan Chengbd766792011-04-01 00:42:02 +00002320 // Remainder is loaded back from the stack frame.
Dan Gohman198b7ff2011-11-03 21:49:52 +00002321 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002322 MachinePointerInfo(), false, false, false, 0);
Evan Chengb14ce092011-04-16 03:08:26 +00002323 Results.push_back(CallInfo.first);
2324 Results.push_back(Rem);
Evan Chengbd766792011-04-01 00:42:02 +00002325}
2326
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002327/// Return true if sincos libcall is available.
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002328static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2329 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002330 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002331 default: llvm_unreachable("Unexpected request for libcall!");
2332 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2333 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2334 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2335 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2336 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2337 }
Craig Topperc0196b12014-04-14 00:51:57 +00002338 return TLI.getLibcallName(LC) != nullptr;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002339}
2340
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002341/// Return true if sincos libcall is available and can be used to combine sin
2342/// and cos.
Paul Redmondf29ddfe2013-02-15 18:45:18 +00002343static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2344 const TargetMachine &TM) {
2345 if (!isSinCosLibcallAvailable(Node, TLI))
2346 return false;
2347 // GNU sin/cos functions set errno while sincos does not. Therefore
2348 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2349 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2350 if (isGNU && !TM.Options.UnsafeFPMath)
2351 return false;
2352 return true;
2353}
2354
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002355/// Only issue sincos libcall if both sin and cos are needed.
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002356static bool useSinCos(SDNode *Node) {
2357 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2358 ? ISD::FCOS : ISD::FSIN;
Stephen Lincfe7f352013-07-08 00:37:03 +00002359
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002360 SDValue Op0 = Node->getOperand(0);
2361 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2362 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2363 SDNode *User = *UI;
2364 if (User == Node)
2365 continue;
2366 // The other user might have been turned into sincos already.
2367 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2368 return true;
2369 }
2370 return false;
2371}
2372
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002373/// Issue libcalls to sincos to compute sin / cos pairs.
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002374void
2375SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2376 SmallVectorImpl<SDValue> &Results) {
2377 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002378 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002379 default: llvm_unreachable("Unexpected request for libcall!");
2380 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2381 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2382 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2383 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2384 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2385 }
Stephen Lincfe7f352013-07-08 00:37:03 +00002386
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002387 // The input chain to this libcall is the entry node of the function.
2388 // Legalizing the call will automatically add the previous call to the
2389 // dependence.
2390 SDValue InChain = DAG.getEntryNode();
Stephen Lincfe7f352013-07-08 00:37:03 +00002391
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002392 EVT RetVT = Node->getValueType(0);
2393 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Stephen Lincfe7f352013-07-08 00:37:03 +00002394
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002395 TargetLowering::ArgListTy Args;
2396 TargetLowering::ArgListEntry Entry;
Stephen Lincfe7f352013-07-08 00:37:03 +00002397
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002398 // Pass the argument.
2399 Entry.Node = Node->getOperand(0);
2400 Entry.Ty = RetTy;
2401 Entry.isSExt = false;
2402 Entry.isZExt = false;
2403 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002404
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002405 // Pass the return address of sin.
2406 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2407 Entry.Node = SinPtr;
2408 Entry.Ty = RetTy->getPointerTo();
2409 Entry.isSExt = false;
2410 Entry.isZExt = false;
2411 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002412
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002413 // Also pass the return address of the cos.
2414 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2415 Entry.Node = CosPtr;
2416 Entry.Ty = RetTy->getPointerTo();
2417 Entry.isSExt = false;
2418 Entry.isZExt = false;
2419 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002420
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002421 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002422 TLI.getPointerTy(DAG.getDataLayout()));
Stephen Lincfe7f352013-07-08 00:37:03 +00002423
Andrew Trickef9de2a2013-05-25 02:42:55 +00002424 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002425 TargetLowering::CallLoweringInfo CLI(DAG);
2426 CLI.setDebugLoc(dl).setChain(InChain)
2427 .setCallee(TLI.getLibcallCallingConv(LC),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002428 Type::getVoidTy(*DAG.getContext()), Callee, std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002429
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002430 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2431
2432 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2433 MachinePointerInfo(), false, false, false, 0));
2434 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2435 MachinePointerInfo(), false, false, false, 0));
2436}
2437
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002438/// This function is responsible for legalizing a
Chris Lattner689bdcc2006-01-28 08:25:58 +00002439/// INT_TO_FP operation of the specified operand when the target requests that
2440/// we expand it. At this point, we know that the result and operand types are
2441/// legal for the target.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002442SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2443 SDValue Op0,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002444 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002445 SDLoc dl) {
Sanjay Patela2607012015-09-16 16:31:21 +00002446 // TODO: Should any fast-math-flags be set for the created nodes?
2447
Akira Hatanakaadb14f52012-08-28 02:12:42 +00002448 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002449 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelcf0da6c2009-02-17 22:15:04 +00002450
Chris Lattnera2c7ff32008-01-16 07:03:22 +00002451 // Get the stack frame index of a 8 byte buffer.
Owen Anderson9f944592009-08-11 20:47:22 +00002452 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002453
Chris Lattner689bdcc2006-01-28 08:25:58 +00002454 // word offset constant for Hi/Lo address computation
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002455 SDValue WordOff = DAG.getConstant(sizeof(int), dl,
2456 StackSlot.getValueType());
Chris Lattner689bdcc2006-01-28 08:25:58 +00002457 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002458 SDValue Hi = StackSlot;
Tom Stellard838e2342013-08-26 15:06:10 +00002459 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2460 StackSlot, WordOff);
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00002461 if (DAG.getDataLayout().isLittleEndian())
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00002462 std::swap(Hi, Lo);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002463
Chris Lattner689bdcc2006-01-28 08:25:58 +00002464 // if signed map to unsigned space
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002465 SDValue Op0Mapped;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002466 if (isSigned) {
2467 // constant used to invert sign bit (signed to unsigned mapping)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002468 SDValue SignBit = DAG.getConstant(0x80000000u, dl, MVT::i32);
Owen Anderson9f944592009-08-11 20:47:22 +00002469 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002470 } else {
2471 Op0Mapped = Op0;
2472 }
2473 // store the lo of the constructed double - based on integer input
Dale Johannesen8525d832009-02-02 19:03:57 +00002474 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00002475 Op0Mapped, Lo, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00002476 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002477 // initial hi portion of constructed double
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002478 SDValue InitialHi = DAG.getConstant(0x43300000u, dl, MVT::i32);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002479 // store the hi of the constructed double - biased exponent
Chris Lattner676c61d2010-09-21 18:41:36 +00002480 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2481 MachinePointerInfo(),
2482 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002483 // load the constructed double
Chris Lattner1ffcf522010-09-21 16:36:31 +00002484 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002485 MachinePointerInfo(), false, false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002486 // FP constant to bias correct the final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002487 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonf074ca72009-04-10 18:48:47 +00002488 BitsToDouble(0x4330000080000000ULL) :
2489 BitsToDouble(0x4330000000000000ULL),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002490 dl, MVT::f64);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002491 // subtract the bias
Owen Anderson9f944592009-08-11 20:47:22 +00002492 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002493 // final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002494 SDValue Result;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002495 // handle final rounding
Owen Anderson9f944592009-08-11 20:47:22 +00002496 if (DestVT == MVT::f64) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002497 // do nothing
2498 Result = Sub;
Owen Anderson9f944592009-08-11 20:47:22 +00002499 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002500 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002501 DAG.getIntPtrConstant(0, dl));
Owen Anderson9f944592009-08-11 20:47:22 +00002502 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002503 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002504 }
2505 return Result;
2506 }
2507 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002508 // Code below here assumes !isSigned without checking again.
Dan Gohman14e450f2010-03-06 00:00:55 +00002509
2510 // Implementation of unsigned i64 to f64 following the algorithm in
2511 // __floatundidf in compiler_rt. This implementation has the advantage
2512 // of performing rounding correctly, both in the default rounding mode
2513 // and in all alternate rounding modes.
2514 // TODO: Generalize this for use with other types.
2515 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2516 SDValue TwoP52 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002517 DAG.getConstant(UINT64_C(0x4330000000000000), dl, MVT::i64);
Dan Gohman14e450f2010-03-06 00:00:55 +00002518 SDValue TwoP84PlusTwoP52 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002519 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), dl,
2520 MVT::f64);
Dan Gohman14e450f2010-03-06 00:00:55 +00002521 SDValue TwoP84 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002522 DAG.getConstant(UINT64_C(0x4530000000000000), dl, MVT::i64);
Dan Gohman14e450f2010-03-06 00:00:55 +00002523
2524 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2525 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002526 DAG.getConstant(32, dl, MVT::i64));
Dan Gohman14e450f2010-03-06 00:00:55 +00002527 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2528 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peck527da1b2010-11-23 03:31:01 +00002529 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2530 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002531 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2532 TwoP84PlusTwoP52);
Dan Gohman14e450f2010-03-06 00:00:55 +00002533 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2534 }
2535
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002536 // Implementation of unsigned i64 to f32.
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002537 // TODO: Generalize this for use with other types.
2538 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002539 // For unsigned conversions, convert them to signed conversions using the
2540 // algorithm from the x86_64 __floatundidf in compiler_rt.
2541 if (!isSigned) {
2542 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peck527da1b2010-11-23 03:31:01 +00002543
Mehdi Amini9639d652015-07-09 02:09:20 +00002544 SDValue ShiftConst = DAG.getConstant(
2545 1, dl, TLI.getShiftAmountTy(Op0.getValueType(), DAG.getDataLayout()));
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002546 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002547 SDValue AndConst = DAG.getConstant(1, dl, MVT::i64);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002548 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2549 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peck527da1b2010-11-23 03:31:01 +00002550
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002551 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2552 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peck527da1b2010-11-23 03:31:01 +00002553
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002554 // TODO: This really should be implemented using a branch rather than a
Wesley Peck527da1b2010-11-23 03:31:01 +00002555 // select. We happen to get lucky and machinesink does the right
2556 // thing most of the time. This would be a good candidate for a
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002557 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault758659232013-05-18 00:21:46 +00002558 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002559 Op0, DAG.getConstant(0, dl, MVT::i64), ISD::SETLT);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002560 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002561 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002562
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002563 // Otherwise, implement the fully general conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002564
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002565 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002566 DAG.getConstant(UINT64_C(0xfffffffffffff800), dl, MVT::i64));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002567 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002568 DAG.getConstant(UINT64_C(0x800), dl, MVT::i64));
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002569 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002570 DAG.getConstant(UINT64_C(0x7ff), dl, MVT::i64));
2571 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), And2,
2572 DAG.getConstant(UINT64_C(0), dl, MVT::i64),
2573 ISD::SETNE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002574 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002575 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), Op0,
2576 DAG.getConstant(UINT64_C(0x0020000000000000), dl,
2577 MVT::i64),
2578 ISD::SETUGE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002579 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Mehdi Amini9639d652015-07-09 02:09:20 +00002580 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType(), DAG.getDataLayout());
Wesley Peck527da1b2010-11-23 03:31:01 +00002581
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002582 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002583 DAG.getConstant(32, dl, SHVT));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002584 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2585 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2586 SDValue TwoP32 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002587 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), dl,
2588 MVT::f64);
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002589 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2590 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2591 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2592 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2593 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002594 DAG.getIntPtrConstant(0, dl));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002595 }
2596
Dan Gohman998c7c22010-03-05 02:40:23 +00002597 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002598
Matt Arsenault758659232013-05-18 00:21:46 +00002599 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002600 Op0,
2601 DAG.getConstant(0, dl, Op0.getValueType()),
Dan Gohman998c7c22010-03-05 02:40:23 +00002602 ISD::SETLT);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002603 SDValue Zero = DAG.getIntPtrConstant(0, dl),
2604 Four = DAG.getIntPtrConstant(4, dl);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002605 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohman998c7c22010-03-05 02:40:23 +00002606 SignSet, Four, Zero);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002607
Dan Gohman998c7c22010-03-05 02:40:23 +00002608 // If the sign bit of the integer is set, the large number will be treated
2609 // as a negative number. To counteract this, the dynamic code adds an
2610 // offset depending on the data type.
2611 uint64_t FF;
Craig Topperd9c27832013-08-15 02:44:19 +00002612 switch (Op0.getSimpleValueType().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002613 default: llvm_unreachable("Unsupported integer type!");
Dan Gohman998c7c22010-03-05 02:40:23 +00002614 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2615 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2616 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2617 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2618 }
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00002619 if (DAG.getDataLayout().isLittleEndian())
2620 FF <<= 32;
Dan Gohman998c7c22010-03-05 02:40:23 +00002621 Constant *FudgeFactor = ConstantInt::get(
2622 Type::getInt64Ty(*DAG.getContext()), FF);
2623
Mehdi Amini44ede332015-07-09 02:09:04 +00002624 SDValue CPIdx =
2625 DAG.getConstantPool(FudgeFactor, TLI.getPointerTy(DAG.getDataLayout()));
Dan Gohman998c7c22010-03-05 02:40:23 +00002626 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Tom Stellard838e2342013-08-26 15:06:10 +00002627 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
Dan Gohman998c7c22010-03-05 02:40:23 +00002628 Alignment = std::min(Alignment, 4u);
2629 SDValue FudgeInReg;
2630 if (DestVT == MVT::f32)
Alex Lorenze40c8a22015-08-11 23:09:45 +00002631 FudgeInReg = DAG.getLoad(
2632 MVT::f32, dl, DAG.getEntryNode(), CPIdx,
2633 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
2634 false, false, Alignment);
Dan Gohman998c7c22010-03-05 02:40:23 +00002635 else {
Alex Lorenze40c8a22015-08-11 23:09:45 +00002636 SDValue Load = DAG.getExtLoad(
2637 ISD::EXTLOAD, dl, DestVT, DAG.getEntryNode(), CPIdx,
2638 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), MVT::f32,
2639 false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +00002640 HandleSDNode Handle(Load);
2641 LegalizeOp(Load.getNode());
2642 FudgeInReg = Handle.getValue();
Dan Gohman998c7c22010-03-05 02:40:23 +00002643 }
2644
2645 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002646}
2647
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002648/// This function is responsible for legalizing a
Chris Lattner689bdcc2006-01-28 08:25:58 +00002649/// *INT_TO_FP operation of the specified operand when the target requests that
2650/// we promote it. At this point, we know that the result and operand types are
2651/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2652/// operation that takes a larger input.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002653SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002654 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002655 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002656 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002657 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002658 EVT NewInTy = LegalOp.getValueType();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002659
2660 unsigned OpToUse = 0;
2661
2662 // Scan for the appropriate larger type to use.
2663 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002664 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002665 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002666
2667 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002668 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2669 OpToUse = ISD::SINT_TO_FP;
2670 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002671 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002672 if (isSigned) continue;
2673
2674 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002675 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2676 OpToUse = ISD::UINT_TO_FP;
2677 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002678 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002679
2680 // Otherwise, try a larger type.
2681 }
2682
2683 // Okay, we found the operation and type to use. Zero extend our input to the
2684 // desired type then run the operation on it.
Dale Johannesen8525d832009-02-02 19:03:57 +00002685 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner689bdcc2006-01-28 08:25:58 +00002686 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen8525d832009-02-02 19:03:57 +00002687 dl, NewInTy, LegalOp));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002688}
2689
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002690/// This function is responsible for legalizing a
Chris Lattner689bdcc2006-01-28 08:25:58 +00002691/// FP_TO_*INT operation of the specified operand when the target requests that
2692/// we promote it. At this point, we know that the result and operand types are
2693/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2694/// operation that returns a larger result.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002695SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002696 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002697 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002698 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002699 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002700 EVT NewOutTy = DestVT;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002701
2702 unsigned OpToUse = 0;
2703
2704 // Scan for the appropriate larger type to use.
2705 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002706 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002707 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002708
Tim Northover65277a22014-06-15 09:27:20 +00002709 // A larger signed type can hold all unsigned values of the requested type,
2710 // so using FP_TO_SINT is valid
Eli Friedmane1bc3792009-05-28 03:06:16 +00002711 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002712 OpToUse = ISD::FP_TO_SINT;
2713 break;
2714 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002715
Tim Northover65277a22014-06-15 09:27:20 +00002716 // However, if the value may be < 0.0, we *must* use some FP_TO_SINT.
2717 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002718 OpToUse = ISD::FP_TO_UINT;
2719 break;
2720 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002721
2722 // Otherwise, try a larger type.
2723 }
2724
Scott Michelcf0da6c2009-02-17 22:15:04 +00002725
Chris Lattnerf81d5882007-11-24 07:07:01 +00002726 // Okay, we found the operation and type to use.
Dale Johannesen8525d832009-02-02 19:03:57 +00002727 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands93e180342008-07-04 11:47:58 +00002728
Chris Lattnerf81d5882007-11-24 07:07:01 +00002729 // Truncate the result of the extended FP_TO_*INT operation to the desired
2730 // size.
Dale Johannesen8525d832009-02-02 19:03:57 +00002731 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002732}
2733
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002734/// Open code the operations for BSWAP of the specified operation.
Andrew Trickef9de2a2013-05-25 02:42:55 +00002735SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002736 EVT VT = Op.getValueType();
Mehdi Amini9639d652015-07-09 02:09:20 +00002737 EVT SHVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002738 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson9f944592009-08-11 20:47:22 +00002739 switch (VT.getSimpleVT().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002740 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson9f944592009-08-11 20:47:22 +00002741 case MVT::i16:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002742 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2743 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
Dale Johannesena02e45c2009-02-02 22:12:50 +00002744 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002745 case MVT::i32:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002746 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2747 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2748 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2749 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2750 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3,
2751 DAG.getConstant(0xFF0000, dl, VT));
2752 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, dl, VT));
Dale Johannesena02e45c2009-02-02 22:12:50 +00002753 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2754 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2755 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002756 case MVT::i64:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002757 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, dl, SHVT));
2758 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, dl, SHVT));
2759 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2760 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2761 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2762 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2763 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, dl, SHVT));
2764 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, dl, SHVT));
2765 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7,
2766 DAG.getConstant(255ULL<<48, dl, VT));
2767 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6,
2768 DAG.getConstant(255ULL<<40, dl, VT));
2769 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5,
2770 DAG.getConstant(255ULL<<32, dl, VT));
2771 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4,
2772 DAG.getConstant(255ULL<<24, dl, VT));
2773 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3,
2774 DAG.getConstant(255ULL<<16, dl, VT));
2775 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2,
2776 DAG.getConstant(255ULL<<8 , dl, VT));
Dale Johannesena02e45c2009-02-02 22:12:50 +00002777 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2778 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2779 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2780 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2781 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2782 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2783 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002784 }
2785}
2786
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002787/// Expand the specified bitcount instruction into operations.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002788SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002789 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002790 switch (Opc) {
Craig Topperee4dab52012-02-05 08:31:47 +00002791 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002792 case ISD::CTPOP: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002793 EVT VT = Op.getValueType();
Mehdi Amini9639d652015-07-09 02:09:20 +00002794 EVT ShVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout());
Benjamin Kramerfff25172011-01-15 20:30:30 +00002795 unsigned Len = VT.getSizeInBits();
2796
Benjamin Kramerbec03ea2011-01-15 21:19:37 +00002797 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2798 "CTPOP not implemented for this type.");
2799
Benjamin Kramerfff25172011-01-15 20:30:30 +00002800 // This is the "best" algorithm from
2801 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2802
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002803 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)),
2804 dl, VT);
2805 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)),
2806 dl, VT);
2807 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)),
2808 dl, VT);
2809 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)),
2810 dl, VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002811
2812 // v = v - ((v >> 1) & 0x55555555...)
2813 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2814 DAG.getNode(ISD::AND, dl, VT,
2815 DAG.getNode(ISD::SRL, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002816 DAG.getConstant(1, dl, ShVT)),
Benjamin Kramerfff25172011-01-15 20:30:30 +00002817 Mask55));
2818 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2819 Op = DAG.getNode(ISD::ADD, dl, VT,
2820 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2821 DAG.getNode(ISD::AND, dl, VT,
2822 DAG.getNode(ISD::SRL, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002823 DAG.getConstant(2, dl, ShVT)),
Benjamin Kramerfff25172011-01-15 20:30:30 +00002824 Mask33));
2825 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2826 Op = DAG.getNode(ISD::AND, dl, VT,
2827 DAG.getNode(ISD::ADD, dl, VT, Op,
2828 DAG.getNode(ISD::SRL, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002829 DAG.getConstant(4, dl, ShVT))),
Benjamin Kramerfff25172011-01-15 20:30:30 +00002830 Mask0F);
2831 // v = (v * 0x01010101...) >> (Len - 8)
2832 Op = DAG.getNode(ISD::SRL, dl, VT,
2833 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002834 DAG.getConstant(Len - 8, dl, ShVT));
Owen Andersonb2c80da2011-02-25 21:41:48 +00002835
Chris Lattner689bdcc2006-01-28 08:25:58 +00002836 return Op;
2837 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002838 case ISD::CTLZ_ZERO_UNDEF:
2839 // This trivially expands to CTLZ.
2840 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002841 case ISD::CTLZ: {
2842 // for now, we do this:
2843 // x = x | (x >> 1);
2844 // x = x | (x >> 2);
2845 // ...
2846 // x = x | (x >>16);
2847 // x = x | (x >>32); // for 64-bit input
2848 // return popcount(~x);
2849 //
Sanjay Patelbb292212014-09-15 19:47:44 +00002850 // Ref: "Hacker's Delight" by Henry Warren
Owen Anderson53aa7a92009-08-10 22:56:29 +00002851 EVT VT = Op.getValueType();
Mehdi Amini9639d652015-07-09 02:09:20 +00002852 EVT ShVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout());
Duncan Sands13237ac2008-06-06 12:08:01 +00002853 unsigned len = VT.getSizeInBits();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002854 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002855 SDValue Tmp3 = DAG.getConstant(1ULL << i, dl, ShVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002856 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesendc93bbc2009-02-06 21:55:48 +00002857 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002858 }
Dale Johannesena02e45c2009-02-02 22:12:50 +00002859 Op = DAG.getNOT(dl, Op, VT);
2860 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002861 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002862 case ISD::CTTZ_ZERO_UNDEF:
2863 // This trivially expands to CTTZ.
2864 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002865 case ISD::CTTZ: {
2866 // for now, we use: { return popcount(~x & (x - 1)); }
2867 // unless the target has ctlz but not ctpop, in which case we use:
2868 // { return 32 - nlz(~x & (x-1)); }
Sanjay Patelbb292212014-09-15 19:47:44 +00002869 // Ref: "Hacker's Delight" by Henry Warren
Owen Anderson53aa7a92009-08-10 22:56:29 +00002870 EVT VT = Op.getValueType();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002871 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2872 DAG.getNOT(dl, Op, VT),
2873 DAG.getNode(ISD::SUB, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002874 DAG.getConstant(1, dl, VT)));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002875 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman4aa18462009-01-28 17:46:25 +00002876 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2877 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesena02e45c2009-02-02 22:12:50 +00002878 return DAG.getNode(ISD::SUB, dl, VT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002879 DAG.getConstant(VT.getSizeInBits(), dl, VT),
Dale Johannesena02e45c2009-02-02 22:12:50 +00002880 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2881 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002882 }
2883 }
2884}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002885
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002886std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2887 unsigned Opc = Node->getOpcode();
2888 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
Benjamin Kramerc54c38e2015-03-05 20:04:29 +00002889 RTLIB::Libcall LC = RTLIB::getATOMIC(Opc, VT);
2890 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected atomic op or value type!");
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002891
2892 return ExpandChainLibCall(LC, Node, false);
2893}
2894
Dan Gohman198b7ff2011-11-03 21:49:52 +00002895void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2896 SmallVector<SDValue, 8> Results;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002897 SDLoc dl(Node);
Eli Friedmane1dc1932009-05-28 20:40:34 +00002898 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Daniel Sandersedc071b2013-11-21 13:24:49 +00002899 bool NeedInvert;
Eli Friedman21d349b2009-05-27 01:25:56 +00002900 switch (Node->getOpcode()) {
2901 case ISD::CTPOP:
2902 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002903 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002904 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002905 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002906 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2907 Results.push_back(Tmp1);
2908 break;
2909 case ISD::BSWAP:
Bill Wendlingef408db2009-12-23 00:28:23 +00002910 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman21d349b2009-05-27 01:25:56 +00002911 break;
2912 case ISD::FRAMEADDR:
2913 case ISD::RETURNADDR:
2914 case ISD::FRAME_TO_ARGS_OFFSET:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002915 Results.push_back(DAG.getConstant(0, dl, Node->getValueType(0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00002916 break;
2917 case ISD::FLT_ROUNDS_:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002918 Results.push_back(DAG.getConstant(1, dl, Node->getValueType(0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00002919 break;
2920 case ISD::EH_RETURN:
Eli Friedman21d349b2009-05-27 01:25:56 +00002921 case ISD::EH_LABEL:
2922 case ISD::PREFETCH:
Eli Friedman21d349b2009-05-27 01:25:56 +00002923 case ISD::VAEND:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002924 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002925 // If the target didn't expand these, there's nothing to do, so just
2926 // preserve the chain and be done.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002927 Results.push_back(Node->getOperand(0));
2928 break;
Ahmed Bougachaf9c19da2015-08-28 01:49:59 +00002929 case ISD::READCYCLECOUNTER:
2930 // If the target didn't expand this, just return 'zero' and preserve the
2931 // chain.
2932 Results.append(Node->getNumValues() - 1,
2933 DAG.getConstant(0, dl, Node->getValueType(0)));
2934 Results.push_back(Node->getOperand(0));
2935 break;
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002936 case ISD::EH_SJLJ_SETJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002937 // If the target didn't expand this, just return 'zero' and preserve the
2938 // chain.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002939 Results.push_back(DAG.getConstant(0, dl, MVT::i32));
Eli Friedman21d349b2009-05-27 01:25:56 +00002940 Results.push_back(Node->getOperand(0));
2941 break;
Tim Northovera2b53392013-04-20 12:32:17 +00002942 case ISD::ATOMIC_FENCE: {
Jim Grosbachba451e82010-06-17 02:00:53 +00002943 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman26a48482011-07-27 22:21:52 +00002944 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachba451e82010-06-17 02:00:53 +00002945 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002946
2947 TargetLowering::CallLoweringInfo CLI(DAG);
Mehdi Amini44ede332015-07-09 02:09:04 +00002948 CLI.setDebugLoc(dl)
2949 .setChain(Node->getOperand(0))
2950 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
2951 DAG.getExternalSymbol("__sync_synchronize",
2952 TLI.getPointerTy(DAG.getDataLayout())),
2953 std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002954
Justin Holewinskiaa583972012-05-25 16:35:28 +00002955 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2956
Jim Grosbachba451e82010-06-17 02:00:53 +00002957 Results.push_back(CallResult.second);
2958 break;
2959 }
Eli Friedman452aae62011-08-26 02:59:24 +00002960 case ISD::ATOMIC_LOAD: {
2961 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002962 SDValue Zero = DAG.getConstant(0, dl, Node->getValueType(0));
Tim Northover420a2162014-06-13 14:24:07 +00002963 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
2964 SDValue Swap = DAG.getAtomicCmpSwap(
2965 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
2966 Node->getOperand(0), Node->getOperand(1), Zero, Zero,
2967 cast<AtomicSDNode>(Node)->getMemOperand(),
2968 cast<AtomicSDNode>(Node)->getOrdering(),
2969 cast<AtomicSDNode>(Node)->getOrdering(),
2970 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman452aae62011-08-26 02:59:24 +00002971 Results.push_back(Swap.getValue(0));
2972 Results.push_back(Swap.getValue(1));
2973 break;
2974 }
2975 case ISD::ATOMIC_STORE: {
2976 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2977 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2978 cast<AtomicSDNode>(Node)->getMemoryVT(),
2979 Node->getOperand(0),
2980 Node->getOperand(1), Node->getOperand(2),
2981 cast<AtomicSDNode>(Node)->getMemOperand(),
2982 cast<AtomicSDNode>(Node)->getOrdering(),
2983 cast<AtomicSDNode>(Node)->getSynchScope());
2984 Results.push_back(Swap.getValue(1));
2985 break;
2986 }
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00002987 // By default, atomic intrinsics are marked Legal and lowered. Targets
2988 // which don't support them directly, however, may want libcalls, in which
2989 // case they mark them Expand, and we get here.
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00002990 case ISD::ATOMIC_SWAP:
2991 case ISD::ATOMIC_LOAD_ADD:
2992 case ISD::ATOMIC_LOAD_SUB:
2993 case ISD::ATOMIC_LOAD_AND:
2994 case ISD::ATOMIC_LOAD_OR:
2995 case ISD::ATOMIC_LOAD_XOR:
2996 case ISD::ATOMIC_LOAD_NAND:
2997 case ISD::ATOMIC_LOAD_MIN:
2998 case ISD::ATOMIC_LOAD_MAX:
2999 case ISD::ATOMIC_LOAD_UMIN:
3000 case ISD::ATOMIC_LOAD_UMAX:
Evan Chengf5d62532010-06-18 22:01:37 +00003001 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00003002 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
3003 Results.push_back(Tmp.first);
3004 Results.push_back(Tmp.second);
Jim Grosbach0ed5b462010-06-17 17:58:54 +00003005 break;
Evan Chengf5d62532010-06-18 22:01:37 +00003006 }
Tim Northover420a2162014-06-13 14:24:07 +00003007 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
3008 // Expanding an ATOMIC_CMP_SWAP_WITH_SUCCESS produces an ATOMIC_CMP_SWAP and
3009 // splits out the success value as a comparison. Expanding the resulting
3010 // ATOMIC_CMP_SWAP will produce a libcall.
3011 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3012 SDValue Res = DAG.getAtomicCmpSwap(
3013 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
3014 Node->getOperand(0), Node->getOperand(1), Node->getOperand(2),
3015 Node->getOperand(3), cast<MemSDNode>(Node)->getMemOperand(),
3016 cast<AtomicSDNode>(Node)->getSuccessOrdering(),
3017 cast<AtomicSDNode>(Node)->getFailureOrdering(),
3018 cast<AtomicSDNode>(Node)->getSynchScope());
3019
3020 SDValue Success = DAG.getSetCC(SDLoc(Node), Node->getValueType(1),
3021 Res, Node->getOperand(2), ISD::SETEQ);
3022
3023 Results.push_back(Res.getValue(0));
3024 Results.push_back(Success);
3025 Results.push_back(Res.getValue(1));
3026 break;
3027 }
Eli Friedman2892d822009-05-27 12:20:41 +00003028 case ISD::DYNAMIC_STACKALLOC:
3029 ExpandDYNAMIC_STACKALLOC(Node, Results);
3030 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003031 case ISD::MERGE_VALUES:
3032 for (unsigned i = 0; i < Node->getNumValues(); i++)
3033 Results.push_back(Node->getOperand(i));
3034 break;
3035 case ISD::UNDEF: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003036 EVT VT = Node->getValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00003037 if (VT.isInteger())
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003038 Results.push_back(DAG.getConstant(0, dl, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003039 else {
3040 assert(VT.isFloatingPoint() && "Unknown value type!");
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003041 Results.push_back(DAG.getConstantFP(0, dl, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003042 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003043 break;
3044 }
3045 case ISD::TRAP: {
3046 // If this operation is not supported, lower it to 'abort()' call
3047 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003048 TargetLowering::CallLoweringInfo CLI(DAG);
Mehdi Amini44ede332015-07-09 02:09:04 +00003049 CLI.setDebugLoc(dl)
3050 .setChain(Node->getOperand(0))
3051 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
3052 DAG.getExternalSymbol("abort",
3053 TLI.getPointerTy(DAG.getDataLayout())),
3054 std::move(Args), 0);
Justin Holewinskiaa583972012-05-25 16:35:28 +00003055 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3056
Eli Friedman21d349b2009-05-27 01:25:56 +00003057 Results.push_back(CallResult.second);
3058 break;
3059 }
3060 case ISD::FP_ROUND:
Wesley Peck527da1b2010-11-23 03:31:01 +00003061 case ISD::BITCAST:
Eli Friedman21d349b2009-05-27 01:25:56 +00003062 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3063 Node->getValueType(0), dl);
3064 Results.push_back(Tmp1);
3065 break;
3066 case ISD::FP_EXTEND:
3067 Tmp1 = EmitStackConvert(Node->getOperand(0),
3068 Node->getOperand(0).getValueType(),
3069 Node->getValueType(0), dl);
3070 Results.push_back(Tmp1);
3071 break;
3072 case ISD::SIGN_EXTEND_INREG: {
3073 // NOTE: we could fall back on load/store here too for targets without
3074 // SAR. However, it is doubtful that any exist.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003075 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman1d459e42009-12-11 21:31:27 +00003076 EVT VT = Node->getValueType(0);
Mehdi Amini9639d652015-07-09 02:09:20 +00003077 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT, DAG.getDataLayout());
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003078 if (VT.isVector())
Dan Gohman1d459e42009-12-11 21:31:27 +00003079 ShiftAmountTy = VT;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003080 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
3081 ExtraVT.getScalarType().getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003082 SDValue ShiftCst = DAG.getConstant(BitsDiff, dl, ShiftAmountTy);
Eli Friedman21d349b2009-05-27 01:25:56 +00003083 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
3084 Node->getOperand(0), ShiftCst);
Bill Wendlingef408db2009-12-23 00:28:23 +00003085 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
3086 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003087 break;
3088 }
3089 case ISD::FP_ROUND_INREG: {
3090 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003091 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman21d349b2009-05-27 01:25:56 +00003092
3093 // NOTE: there is a choice here between constantly creating new stack
3094 // slots and always reusing the same one. We currently always create
3095 // new ones, as reuse may inhibit scheduling.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003096 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00003097 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
3098 Node->getValueType(0), dl);
3099 Results.push_back(Tmp1);
3100 break;
3101 }
3102 case ISD::SINT_TO_FP:
3103 case ISD::UINT_TO_FP:
3104 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
3105 Node->getOperand(0), Node->getValueType(0), dl);
3106 Results.push_back(Tmp1);
3107 break;
Jan Veselyeca89d22014-07-10 22:40:18 +00003108 case ISD::FP_TO_SINT:
3109 if (TLI.expandFP_TO_SINT(Node, Tmp1, DAG))
3110 Results.push_back(Tmp1);
Tom Stellardaad46592014-06-17 16:53:07 +00003111 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003112 case ISD::FP_TO_UINT: {
3113 SDValue True, False;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003114 EVT VT = Node->getOperand(0).getValueType();
3115 EVT NVT = Node->getValueType(0);
Tim Northover29178a32013-01-22 09:46:31 +00003116 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
3117 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman21d349b2009-05-27 01:25:56 +00003118 APInt x = APInt::getSignBit(NVT.getSizeInBits());
3119 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003120 Tmp1 = DAG.getConstantFP(apf, dl, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003121 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman21d349b2009-05-27 01:25:56 +00003122 Node->getOperand(0),
3123 Tmp1, ISD::SETLT);
3124 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Sanjay Patela2607012015-09-16 16:31:21 +00003125 // TODO: Should any fast-math-flags be set for the FSUB?
Bill Wendlingef408db2009-12-23 00:28:23 +00003126 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
3127 DAG.getNode(ISD::FSUB, dl, VT,
3128 Node->getOperand(0), Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00003129 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003130 DAG.getConstant(x, dl, NVT));
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003131 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman21d349b2009-05-27 01:25:56 +00003132 Results.push_back(Tmp1);
3133 break;
3134 }
Charles Davis11952592015-08-25 23:27:41 +00003135 case ISD::VAARG:
3136 Results.push_back(DAG.expandVAArg(Node));
Eli Friedman3b251702009-05-27 07:58:35 +00003137 Results.push_back(Results[0].getValue(1));
3138 break;
Charles Davis11952592015-08-25 23:27:41 +00003139 case ISD::VACOPY:
3140 Results.push_back(DAG.expandVACopy(Node));
Eli Friedman21d349b2009-05-27 01:25:56 +00003141 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003142 case ISD::EXTRACT_VECTOR_ELT:
3143 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3144 // This must be an access of the only element. Return it.
Wesley Peck527da1b2010-11-23 03:31:01 +00003145 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman21d349b2009-05-27 01:25:56 +00003146 Node->getOperand(0));
3147 else
3148 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3149 Results.push_back(Tmp1);
3150 break;
3151 case ISD::EXTRACT_SUBVECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003152 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00003153 break;
David Greenebab5e6e2011-01-26 19:13:22 +00003154 case ISD::INSERT_SUBVECTOR:
3155 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3156 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003157 case ISD::CONCAT_VECTORS: {
Bill Wendlingef408db2009-12-23 00:28:23 +00003158 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman3b251702009-05-27 07:58:35 +00003159 break;
3160 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003161 case ISD::SCALAR_TO_VECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003162 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman21d349b2009-05-27 01:25:56 +00003163 break;
Eli Friedmana8f9a022009-05-27 02:16:40 +00003164 case ISD::INSERT_VECTOR_ELT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003165 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3166 Node->getOperand(1),
3167 Node->getOperand(2), dl));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003168 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003169 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00003170 SmallVector<int, 32> NewMask;
3171 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00003172
Owen Anderson53aa7a92009-08-10 22:56:29 +00003173 EVT VT = Node->getValueType(0);
3174 EVT EltVT = VT.getVectorElementType();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003175 SDValue Op0 = Node->getOperand(0);
3176 SDValue Op1 = Node->getOperand(1);
3177 if (!TLI.isTypeLegal(EltVT)) {
3178
3179 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3180
3181 // BUILD_VECTOR operands are allowed to be wider than the element type.
Jack Carter5c0af482013-11-19 23:43:22 +00003182 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept
3183 // it.
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003184 if (NewEltVT.bitsLT(EltVT)) {
3185
3186 // Convert shuffle node.
3187 // If original node was v4i64 and the new EltVT is i32,
3188 // cast operands to v8i32 and re-build the mask.
3189
3190 // Calculate new VT, the size of the new VT should be equal to original.
Jack Carter5c0af482013-11-19 23:43:22 +00003191 EVT NewVT =
3192 EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3193 VT.getSizeInBits() / NewEltVT.getSizeInBits());
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003194 assert(NewVT.bitsEq(VT));
3195
3196 // cast operands to new VT
3197 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3198 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3199
3200 // Convert the shuffle mask
Jack Carter5c0af482013-11-19 23:43:22 +00003201 unsigned int factor =
3202 NewVT.getVectorNumElements()/VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003203
3204 // EltVT gets smaller
3205 assert(factor > 0);
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003206
3207 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3208 if (Mask[i] < 0) {
3209 for (unsigned fi = 0; fi < factor; ++fi)
3210 NewMask.push_back(Mask[i]);
3211 }
3212 else {
3213 for (unsigned fi = 0; fi < factor; ++fi)
3214 NewMask.push_back(Mask[i]*factor+fi);
3215 }
3216 }
3217 Mask = NewMask;
3218 VT = NewVT;
3219 }
3220 EltVT = NewEltVT;
3221 }
Eli Friedman3b251702009-05-27 07:58:35 +00003222 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003223 SmallVector<SDValue, 16> Ops;
Eli Friedman3b251702009-05-27 07:58:35 +00003224 for (unsigned i = 0; i != NumElems; ++i) {
3225 if (Mask[i] < 0) {
3226 Ops.push_back(DAG.getUNDEF(EltVT));
3227 continue;
3228 }
3229 unsigned Idx = Mask[i];
3230 if (Idx < NumElems)
Mehdi Amini44ede332015-07-09 02:09:04 +00003231 Ops.push_back(DAG.getNode(
3232 ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Op0,
3233 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout()))));
Eli Friedman3b251702009-05-27 07:58:35 +00003234 else
Mehdi Amini44ede332015-07-09 02:09:04 +00003235 Ops.push_back(DAG.getNode(
3236 ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Op1,
3237 DAG.getConstant(Idx - NumElems, dl,
3238 TLI.getVectorIdxTy(DAG.getDataLayout()))));
Eli Friedman3b251702009-05-27 07:58:35 +00003239 }
Nadav Rotem61bdf792012-01-10 14:28:46 +00003240
Craig Topper48d114b2014-04-26 18:35:24 +00003241 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
Nadav Rotem61bdf792012-01-10 14:28:46 +00003242 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3243 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00003244 Results.push_back(Tmp1);
3245 break;
3246 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003247 case ISD::EXTRACT_ELEMENT: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003248 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman21d349b2009-05-27 01:25:56 +00003249 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3250 // 1 -> Hi
3251 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Mehdi Amini9639d652015-07-09 02:09:20 +00003252 DAG.getConstant(OpTy.getSizeInBits() / 2, dl,
3253 TLI.getShiftAmountTy(
3254 Node->getOperand(0).getValueType(),
3255 DAG.getDataLayout())));
Eli Friedman21d349b2009-05-27 01:25:56 +00003256 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3257 } else {
3258 // 0 -> Lo
3259 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3260 Node->getOperand(0));
3261 }
3262 Results.push_back(Tmp1);
3263 break;
3264 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003265 case ISD::STACKSAVE:
3266 // Expand to CopyFromReg if the target set
3267 // StackPointerRegisterToSaveRestore.
3268 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003269 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3270 Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003271 Results.push_back(Results[0].getValue(1));
3272 } else {
Bill Wendlingef408db2009-12-23 00:28:23 +00003273 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003274 Results.push_back(Node->getOperand(0));
3275 }
3276 break;
3277 case ISD::STACKRESTORE:
Bill Wendlingef408db2009-12-23 00:28:23 +00003278 // Expand to CopyToReg if the target set
3279 // StackPointerRegisterToSaveRestore.
3280 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3281 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3282 Node->getOperand(1)));
3283 } else {
3284 Results.push_back(Node->getOperand(0));
3285 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003286 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003287 case ISD::FCOPYSIGN:
Bill Wendlingef408db2009-12-23 00:28:23 +00003288 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00003289 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003290 case ISD::FNEG:
3291 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003292 Tmp1 = DAG.getConstantFP(-0.0, dl, Node->getValueType(0));
Sanjay Patela2607012015-09-16 16:31:21 +00003293 // TODO: If FNEG has fast-math-flags, propagate them to the FSUB.
Eli Friedmand6f28342009-05-27 03:33:44 +00003294 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3295 Node->getOperand(0));
3296 Results.push_back(Tmp1);
3297 break;
Matthias Braun75e668e2015-07-14 02:09:57 +00003298 case ISD::FABS: {
3299 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3300 EVT VT = Node->getValueType(0);
3301 Tmp1 = Node->getOperand(0);
3302 Tmp2 = DAG.getConstantFP(0.0, dl, VT);
3303 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
3304 Tmp1, Tmp2, ISD::SETUGT);
3305 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3306 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
3307 Results.push_back(Tmp1);
Eli Friedmand6f28342009-05-27 03:33:44 +00003308 break;
Matthias Braun75e668e2015-07-14 02:09:57 +00003309 }
James Molloy7e9776b2015-05-15 09:03:15 +00003310 case ISD::SMIN:
3311 case ISD::SMAX:
3312 case ISD::UMIN:
3313 case ISD::UMAX: {
3314 // Expand Y = MAX(A, B) -> Y = (A > B) ? A : B
3315 ISD::CondCode Pred;
3316 switch (Node->getOpcode()) {
3317 default: llvm_unreachable("How did we get here?");
3318 case ISD::SMAX: Pred = ISD::SETGT; break;
3319 case ISD::SMIN: Pred = ISD::SETLT; break;
3320 case ISD::UMAX: Pred = ISD::SETUGT; break;
3321 case ISD::UMIN: Pred = ISD::SETULT; break;
3322 }
3323 Tmp1 = Node->getOperand(0);
3324 Tmp2 = Node->getOperand(1);
3325 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp1, Tmp2, Pred);
3326 Results.push_back(Tmp1);
3327 break;
3328 }
3329
Matt Arsenault7c936902014-10-21 23:01:01 +00003330 case ISD::FMINNUM:
3331 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMIN_F32, RTLIB::FMIN_F64,
3332 RTLIB::FMIN_F80, RTLIB::FMIN_F128,
3333 RTLIB::FMIN_PPCF128));
3334 break;
3335 case ISD::FMAXNUM:
3336 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMAX_F32, RTLIB::FMAX_F64,
3337 RTLIB::FMAX_F80, RTLIB::FMAX_F128,
3338 RTLIB::FMAX_PPCF128));
3339 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003340 case ISD::FSQRT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003341 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003342 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3343 RTLIB::SQRT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003344 break;
3345 case ISD::FSIN:
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003346 case ISD::FCOS: {
3347 EVT VT = Node->getValueType(0);
3348 bool isSIN = Node->getOpcode() == ISD::FSIN;
3349 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3350 // fcos which share the same operand and both are used.
3351 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmondf29ddfe2013-02-15 18:45:18 +00003352 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003353 && useSinCos(Node)) {
3354 SDVTList VTs = DAG.getVTList(VT, VT);
3355 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3356 if (!isSIN)
3357 Tmp1 = Tmp1.getValue(1);
3358 Results.push_back(Tmp1);
3359 } else if (isSIN) {
3360 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3361 RTLIB::SIN_F80, RTLIB::SIN_F128,
3362 RTLIB::SIN_PPCF128));
3363 } else {
3364 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3365 RTLIB::COS_F80, RTLIB::COS_F128,
3366 RTLIB::COS_PPCF128));
3367 }
Eli Friedmand6f28342009-05-27 03:33:44 +00003368 break;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003369 }
3370 case ISD::FSINCOS:
3371 // Expand into sincos libcall.
3372 ExpandSinCosLibCall(Node, Results);
Eli Friedmand6f28342009-05-27 03:33:44 +00003373 break;
3374 case ISD::FLOG:
Bill Wendlingef408db2009-12-23 00:28:23 +00003375 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003376 RTLIB::LOG_F80, RTLIB::LOG_F128,
3377 RTLIB::LOG_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003378 break;
3379 case ISD::FLOG2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003380 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003381 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3382 RTLIB::LOG2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003383 break;
3384 case ISD::FLOG10:
Bill Wendlingef408db2009-12-23 00:28:23 +00003385 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003386 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3387 RTLIB::LOG10_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003388 break;
3389 case ISD::FEXP:
Bill Wendlingef408db2009-12-23 00:28:23 +00003390 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003391 RTLIB::EXP_F80, RTLIB::EXP_F128,
3392 RTLIB::EXP_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003393 break;
3394 case ISD::FEXP2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003395 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003396 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3397 RTLIB::EXP2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003398 break;
3399 case ISD::FTRUNC:
Bill Wendlingef408db2009-12-23 00:28:23 +00003400 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003401 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3402 RTLIB::TRUNC_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003403 break;
3404 case ISD::FFLOOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003405 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003406 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3407 RTLIB::FLOOR_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003408 break;
3409 case ISD::FCEIL:
Bill Wendlingef408db2009-12-23 00:28:23 +00003410 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003411 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3412 RTLIB::CEIL_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003413 break;
3414 case ISD::FRINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003415 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003416 RTLIB::RINT_F80, RTLIB::RINT_F128,
3417 RTLIB::RINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003418 break;
3419 case ISD::FNEARBYINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003420 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3421 RTLIB::NEARBYINT_F64,
3422 RTLIB::NEARBYINT_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003423 RTLIB::NEARBYINT_F128,
Bill Wendlingef408db2009-12-23 00:28:23 +00003424 RTLIB::NEARBYINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003425 break;
Hal Finkel171817e2013-08-07 22:49:12 +00003426 case ISD::FROUND:
3427 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3428 RTLIB::ROUND_F64,
3429 RTLIB::ROUND_F80,
3430 RTLIB::ROUND_F128,
3431 RTLIB::ROUND_PPCF128));
3432 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003433 case ISD::FPOWI:
Bill Wendlingef408db2009-12-23 00:28:23 +00003434 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003435 RTLIB::POWI_F80, RTLIB::POWI_F128,
3436 RTLIB::POWI_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003437 break;
3438 case ISD::FPOW:
Bill Wendlingef408db2009-12-23 00:28:23 +00003439 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003440 RTLIB::POW_F80, RTLIB::POW_F128,
3441 RTLIB::POW_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003442 break;
3443 case ISD::FDIV:
Bill Wendlingef408db2009-12-23 00:28:23 +00003444 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003445 RTLIB::DIV_F80, RTLIB::DIV_F128,
3446 RTLIB::DIV_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003447 break;
3448 case ISD::FREM:
Bill Wendlingef408db2009-12-23 00:28:23 +00003449 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003450 RTLIB::REM_F80, RTLIB::REM_F128,
3451 RTLIB::REM_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003452 break;
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003453 case ISD::FMA:
3454 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003455 RTLIB::FMA_F80, RTLIB::FMA_F128,
3456 RTLIB::FMA_PPCF128));
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003457 break;
Matt Arsenault0dc54c42015-02-20 22:10:33 +00003458 case ISD::FMAD:
3459 llvm_unreachable("Illegal fmad should never be formed");
3460
Oliver Stannard51b1d462014-08-21 12:50:31 +00003461 case ISD::FADD:
3462 Results.push_back(ExpandFPLibCall(Node, RTLIB::ADD_F32, RTLIB::ADD_F64,
3463 RTLIB::ADD_F80, RTLIB::ADD_F128,
3464 RTLIB::ADD_PPCF128));
3465 break;
3466 case ISD::FMUL:
3467 Results.push_back(ExpandFPLibCall(Node, RTLIB::MUL_F32, RTLIB::MUL_F64,
3468 RTLIB::MUL_F80, RTLIB::MUL_F128,
3469 RTLIB::MUL_PPCF128));
3470 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00003471 case ISD::FP16_TO_FP: {
3472 if (Node->getValueType(0) == MVT::f32) {
3473 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3474 break;
3475 }
3476
3477 // We can extend to types bigger than f32 in two steps without changing the
3478 // result. Since "f16 -> f32" is much more commonly available, give CodeGen
3479 // the option of emitting that before resorting to a libcall.
3480 SDValue Res =
3481 DAG.getNode(ISD::FP16_TO_FP, dl, MVT::f32, Node->getOperand(0));
3482 Results.push_back(
3483 DAG.getNode(ISD::FP_EXTEND, dl, Node->getValueType(0), Res));
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003484 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00003485 }
Tim Northover84ce0a62014-07-17 11:12:12 +00003486 case ISD::FP_TO_FP16: {
Eric Christopher824f42f2015-05-12 01:26:05 +00003487 if (!TLI.useSoftFloat() && TM.Options.UnsafeFPMath) {
Andrea Di Biagioaf3f3972015-02-23 22:59:02 +00003488 SDValue Op = Node->getOperand(0);
3489 MVT SVT = Op.getSimpleValueType();
3490 if ((SVT == MVT::f64 || SVT == MVT::f80) &&
3491 TLI.isOperationLegalOrCustom(ISD::FP_TO_FP16, MVT::f32)) {
3492 // Under fastmath, we can expand this node into a fround followed by
3493 // a float-half conversion.
3494 SDValue FloatVal = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003495 DAG.getIntPtrConstant(0, dl));
Andrea Di Biagioaf3f3972015-02-23 22:59:02 +00003496 Results.push_back(
3497 DAG.getNode(ISD::FP_TO_FP16, dl, MVT::i16, FloatVal));
3498 break;
3499 }
3500 }
3501
Tim Northover84ce0a62014-07-17 11:12:12 +00003502 RTLIB::Libcall LC =
3503 RTLIB::getFPROUND(Node->getOperand(0).getValueType(), MVT::f16);
3504 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unable to expand fp_to_fp16");
3505 Results.push_back(ExpandLibCall(LC, Node, false));
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003506 break;
Tim Northover84ce0a62014-07-17 11:12:12 +00003507 }
Eli Friedman0e494312009-05-27 07:32:27 +00003508 case ISD::ConstantFP: {
3509 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendlingef408db2009-12-23 00:28:23 +00003510 // Check to see if this FP immediate is already legal.
3511 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman198b7ff2011-11-03 21:49:52 +00003512 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3513 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedman0e494312009-05-27 07:32:27 +00003514 break;
3515 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003516 case ISD::FSUB: {
3517 EVT VT = Node->getValueType(0);
Oliver Stannard51b1d462014-08-21 12:50:31 +00003518 if (TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3519 TLI.isOperationLegalOrCustom(ISD::FNEG, VT)) {
Sanjay Patela2607012015-09-16 16:31:21 +00003520 const SDNodeFlags *Flags = &cast<BinaryWithFlagsSDNode>(Node)->Flags;
Oliver Stannard51b1d462014-08-21 12:50:31 +00003521 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
Sanjay Patela2607012015-09-16 16:31:21 +00003522 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1, Flags);
Oliver Stannard51b1d462014-08-21 12:50:31 +00003523 Results.push_back(Tmp1);
3524 } else {
3525 Results.push_back(ExpandFPLibCall(Node, RTLIB::SUB_F32, RTLIB::SUB_F64,
3526 RTLIB::SUB_F80, RTLIB::SUB_F128,
3527 RTLIB::SUB_PPCF128));
3528 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003529 break;
3530 }
Eli Friedman56883962009-05-27 07:05:37 +00003531 case ISD::SUB: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003532 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003533 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3534 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3535 "Don't know how to expand this subtraction!");
3536 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003537 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), dl,
3538 VT));
3539 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, dl, VT));
Bill Wendlingef408db2009-12-23 00:28:23 +00003540 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman56883962009-05-27 07:05:37 +00003541 break;
3542 }
Eli Friedman0e494312009-05-27 07:32:27 +00003543 case ISD::UREM:
3544 case ISD::SREM: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003545 EVT VT = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003546 bool isSigned = Node->getOpcode() == ISD::SREM;
3547 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3548 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3549 Tmp2 = Node->getOperand(0);
3550 Tmp3 = Node->getOperand(1);
Evan Chengb14ce092011-04-16 03:08:26 +00003551 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3552 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng21c4adc2012-10-12 01:15:47 +00003553 // If div is legal, it's better to do the normal expansion
3554 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003555 useDivRem(Node, isSigned, false))) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003556 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmane1bc3792009-05-28 03:06:16 +00003557 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3558 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedman0e494312009-05-27 07:32:27 +00003559 // X % Y -> X-X/Y*Y
3560 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3561 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3562 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Chengb14ce092011-04-16 03:08:26 +00003563 } else if (isSigned)
3564 Tmp1 = ExpandIntLibCall(Node, true,
3565 RTLIB::SREM_I8,
3566 RTLIB::SREM_I16, RTLIB::SREM_I32,
3567 RTLIB::SREM_I64, RTLIB::SREM_I128);
3568 else
3569 Tmp1 = ExpandIntLibCall(Node, false,
3570 RTLIB::UREM_I8,
3571 RTLIB::UREM_I16, RTLIB::UREM_I32,
3572 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003573 Results.push_back(Tmp1);
3574 break;
3575 }
Eli Friedman0e494312009-05-27 07:32:27 +00003576 case ISD::UDIV:
3577 case ISD::SDIV: {
3578 bool isSigned = Node->getOpcode() == ISD::SDIV;
3579 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003580 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003581 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Chengb14ce092011-04-16 03:08:26 +00003582 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3583 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003584 useDivRem(Node, isSigned, true)))
Eli Friedman0e494312009-05-27 07:32:27 +00003585 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3586 Node->getOperand(1));
Evan Chengb14ce092011-04-16 03:08:26 +00003587 else if (isSigned)
3588 Tmp1 = ExpandIntLibCall(Node, true,
3589 RTLIB::SDIV_I8,
3590 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3591 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3592 else
3593 Tmp1 = ExpandIntLibCall(Node, false,
3594 RTLIB::UDIV_I8,
3595 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3596 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003597 Results.push_back(Tmp1);
3598 break;
3599 }
3600 case ISD::MULHU:
3601 case ISD::MULHS: {
3602 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3603 ISD::SMUL_LOHI;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003604 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003605 SDVTList VTs = DAG.getVTList(VT, VT);
3606 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3607 "If this wasn't legal, it shouldn't have been created!");
3608 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3609 Node->getOperand(1));
3610 Results.push_back(Tmp1.getValue(1));
3611 break;
3612 }
Evan Chengb14ce092011-04-16 03:08:26 +00003613 case ISD::SDIVREM:
3614 case ISD::UDIVREM:
3615 // Expand into divrem libcall
3616 ExpandDivRemLibCall(Node, Results);
3617 break;
Eli Friedman56883962009-05-27 07:05:37 +00003618 case ISD::MUL: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003619 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003620 SDVTList VTs = DAG.getVTList(VT, VT);
3621 // See if multiply or divide can be lowered using two-result operations.
3622 // We just need the low half of the multiply; try both the signed
3623 // and unsigned forms. If the target supports both SMUL_LOHI and
3624 // UMUL_LOHI, form a preference by checking which forms of plain
3625 // MULH it supports.
3626 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3627 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3628 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3629 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3630 unsigned OpToUse = 0;
3631 if (HasSMUL_LOHI && !HasMULHS) {
3632 OpToUse = ISD::SMUL_LOHI;
3633 } else if (HasUMUL_LOHI && !HasMULHU) {
3634 OpToUse = ISD::UMUL_LOHI;
3635 } else if (HasSMUL_LOHI) {
3636 OpToUse = ISD::SMUL_LOHI;
3637 } else if (HasUMUL_LOHI) {
3638 OpToUse = ISD::UMUL_LOHI;
3639 }
3640 if (OpToUse) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003641 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3642 Node->getOperand(1)));
Eli Friedman56883962009-05-27 07:05:37 +00003643 break;
3644 }
Tom Stellarda1a5d9a2014-04-11 16:12:01 +00003645
3646 SDValue Lo, Hi;
3647 EVT HalfType = VT.getHalfSizedIntegerVT(*DAG.getContext());
3648 if (TLI.isOperationLegalOrCustom(ISD::ZERO_EXTEND, VT) &&
3649 TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND, VT) &&
3650 TLI.isOperationLegalOrCustom(ISD::SHL, VT) &&
3651 TLI.isOperationLegalOrCustom(ISD::OR, VT) &&
3652 TLI.expandMUL(Node, Lo, Hi, HalfType, DAG)) {
3653 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Lo);
3654 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, VT, Hi);
Mehdi Amini9639d652015-07-09 02:09:20 +00003655 SDValue Shift =
3656 DAG.getConstant(HalfType.getSizeInBits(), dl,
3657 TLI.getShiftAmountTy(HalfType, DAG.getDataLayout()));
Tom Stellarda1a5d9a2014-04-11 16:12:01 +00003658 Hi = DAG.getNode(ISD::SHL, dl, VT, Hi, Shift);
3659 Results.push_back(DAG.getNode(ISD::OR, dl, VT, Lo, Hi));
3660 break;
3661 }
3662
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00003663 Tmp1 = ExpandIntLibCall(Node, false,
3664 RTLIB::MUL_I8,
3665 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman56883962009-05-27 07:05:37 +00003666 RTLIB::MUL_I64, RTLIB::MUL_I128);
3667 Results.push_back(Tmp1);
3668 break;
3669 }
Eli Friedman2892d822009-05-27 12:20:41 +00003670 case ISD::SADDO:
3671 case ISD::SSUBO: {
3672 SDValue LHS = Node->getOperand(0);
3673 SDValue RHS = Node->getOperand(1);
3674 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3675 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3676 LHS, RHS);
3677 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003678 EVT ResultType = Node->getValueType(1);
3679 EVT OType = getSetCCResultType(Node->getValueType(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003680
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003681 SDValue Zero = DAG.getConstant(0, dl, LHS.getValueType());
Eli Friedman2892d822009-05-27 12:20:41 +00003682
3683 // LHSSign -> LHS >= 0
3684 // RHSSign -> RHS >= 0
3685 // SumSign -> Sum >= 0
3686 //
3687 // Add:
3688 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3689 // Sub:
3690 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3691 //
3692 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3693 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3694 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3695 Node->getOpcode() == ISD::SADDO ?
3696 ISD::SETEQ : ISD::SETNE);
3697
3698 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3699 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3700
3701 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003702 Results.push_back(DAG.getBoolExtOrTrunc(Cmp, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003703 break;
3704 }
3705 case ISD::UADDO:
3706 case ISD::USUBO: {
3707 SDValue LHS = Node->getOperand(0);
3708 SDValue RHS = Node->getOperand(1);
3709 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3710 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3711 LHS, RHS);
3712 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003713
3714 EVT ResultType = Node->getValueType(1);
3715 EVT SetCCType = getSetCCResultType(Node->getValueType(0));
3716 ISD::CondCode CC
3717 = Node->getOpcode() == ISD::UADDO ? ISD::SETULT : ISD::SETUGT;
3718 SDValue SetCC = DAG.getSetCC(dl, SetCCType, Sum, LHS, CC);
3719
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003720 Results.push_back(DAG.getBoolExtOrTrunc(SetCC, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003721 break;
3722 }
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003723 case ISD::UMULO:
3724 case ISD::SMULO: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003725 EVT VT = Node->getValueType(0);
Eric Christopherbcaedb52011-04-20 01:19:45 +00003726 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003727 SDValue LHS = Node->getOperand(0);
3728 SDValue RHS = Node->getOperand(1);
3729 SDValue BottomHalf;
3730 SDValue TopHalf;
Nuno Lopes129819d2009-12-23 17:48:10 +00003731 static const unsigned Ops[2][3] =
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003732 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3733 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3734 bool isSigned = Node->getOpcode() == ISD::SMULO;
3735 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3736 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3737 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3738 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3739 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3740 RHS);
3741 TopHalf = BottomHalf.getValue(1);
Eric Christopher83dd2fa2014-04-28 22:24:57 +00003742 } else if (TLI.isTypeLegal(WideVT)) {
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003743 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3744 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3745 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3746 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003747 DAG.getIntPtrConstant(0, dl));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003748 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003749 DAG.getIntPtrConstant(1, dl));
Eric Christopherbb14f652011-01-20 00:29:24 +00003750 } else {
3751 // We can fall back to a libcall with an illegal type for the MUL if we
3752 // have a libcall big enough.
3753 // Also, we can fall back to a division in some cases, but that's a big
3754 // performance hit in the general case.
Eric Christopherbb14f652011-01-20 00:29:24 +00003755 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3756 if (WideVT == MVT::i16)
3757 LC = RTLIB::MUL_I16;
3758 else if (WideVT == MVT::i32)
3759 LC = RTLIB::MUL_I32;
3760 else if (WideVT == MVT::i64)
3761 LC = RTLIB::MUL_I64;
3762 else if (WideVT == MVT::i128)
3763 LC = RTLIB::MUL_I128;
3764 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanae9b1682011-05-16 22:09:53 +00003765
3766 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherbcaedb52011-04-20 01:19:45 +00003767 // part.
3768 unsigned LoSize = VT.getSizeInBits();
Mehdi Amini44ede332015-07-09 02:09:04 +00003769 SDValue HiLHS =
3770 DAG.getNode(ISD::SRA, dl, VT, RHS,
3771 DAG.getConstant(LoSize - 1, dl,
3772 TLI.getPointerTy(DAG.getDataLayout())));
3773 SDValue HiRHS =
3774 DAG.getNode(ISD::SRA, dl, VT, LHS,
3775 DAG.getConstant(LoSize - 1, dl,
3776 TLI.getPointerTy(DAG.getDataLayout())));
Owen Andersonb2c80da2011-02-25 21:41:48 +00003777
Eric Christopherbcaedb52011-04-20 01:19:45 +00003778 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3779 // pre-lowered to the correct types. This all depends upon WideVT not
3780 // being a legal type for the architecture and thus has to be split to
3781 // two arguments.
3782 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3783 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3784 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003785 DAG.getIntPtrConstant(0, dl));
Eric Christopherbcaedb52011-04-20 01:19:45 +00003786 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003787 DAG.getIntPtrConstant(1, dl));
Dan Gohman198b7ff2011-11-03 21:49:52 +00003788 // Ret is a node with an illegal type. Because such things are not
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00003789 // generally permitted during this phase of legalization, make sure the
3790 // node has no more uses. The above EXTRACT_ELEMENT nodes should have been
3791 // folded.
3792 assert(Ret->use_empty() &&
3793 "Unexpected uses of illegally type from expanded lib call.");
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003794 }
Dan Gohmanae9b1682011-05-16 22:09:53 +00003795
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003796 if (isSigned) {
Mehdi Amini9639d652015-07-09 02:09:20 +00003797 Tmp1 = DAG.getConstant(
3798 VT.getSizeInBits() - 1, dl,
3799 TLI.getShiftAmountTy(BottomHalf.getValueType(), DAG.getDataLayout()));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003800 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault758659232013-05-18 00:21:46 +00003801 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003802 ISD::SETNE);
3803 } else {
Matt Arsenault758659232013-05-18 00:21:46 +00003804 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003805 DAG.getConstant(0, dl, VT), ISD::SETNE);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003806 }
3807 Results.push_back(BottomHalf);
3808 Results.push_back(TopHalf);
3809 break;
3810 }
Eli Friedman0e494312009-05-27 07:32:27 +00003811 case ISD::BUILD_PAIR: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003812 EVT PairTy = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003813 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3814 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Mehdi Amini9639d652015-07-09 02:09:20 +00003815 Tmp2 = DAG.getNode(
3816 ISD::SHL, dl, PairTy, Tmp2,
3817 DAG.getConstant(PairTy.getSizeInBits() / 2, dl,
3818 TLI.getShiftAmountTy(PairTy, DAG.getDataLayout())));
Bill Wendlingef408db2009-12-23 00:28:23 +00003819 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedman0e494312009-05-27 07:32:27 +00003820 break;
3821 }
Eli Friedman3b251702009-05-27 07:58:35 +00003822 case ISD::SELECT:
3823 Tmp1 = Node->getOperand(0);
3824 Tmp2 = Node->getOperand(1);
3825 Tmp3 = Node->getOperand(2);
Bill Wendlingef408db2009-12-23 00:28:23 +00003826 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman3b251702009-05-27 07:58:35 +00003827 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3828 Tmp2, Tmp3,
3829 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendlingef408db2009-12-23 00:28:23 +00003830 } else {
Eli Friedman3b251702009-05-27 07:58:35 +00003831 Tmp1 = DAG.getSelectCC(dl, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003832 DAG.getConstant(0, dl, Tmp1.getValueType()),
Eli Friedman3b251702009-05-27 07:58:35 +00003833 Tmp2, Tmp3, ISD::SETNE);
Bill Wendlingef408db2009-12-23 00:28:23 +00003834 }
Eli Friedman3b251702009-05-27 07:58:35 +00003835 Results.push_back(Tmp1);
3836 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003837 case ISD::BR_JT: {
3838 SDValue Chain = Node->getOperand(0);
3839 SDValue Table = Node->getOperand(1);
3840 SDValue Index = Node->getOperand(2);
3841
Mehdi Amini44ede332015-07-09 02:09:04 +00003842 EVT PTy = TLI.getPointerTy(DAG.getDataLayout());
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003843
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00003844 const DataLayout &TD = DAG.getDataLayout();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003845 unsigned EntrySize =
3846 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00003847
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003848 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(), Index,
3849 DAG.getConstant(EntrySize, dl, Index.getValueType()));
Tom Stellard838e2342013-08-26 15:06:10 +00003850 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3851 Index, Table);
Eli Friedman2892d822009-05-27 12:20:41 +00003852
Owen Anderson117c9e82009-08-12 00:36:31 +00003853 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Alex Lorenze40c8a22015-08-11 23:09:45 +00003854 SDValue LD = DAG.getExtLoad(
3855 ISD::SEXTLOAD, dl, PTy, Chain, Addr,
3856 MachinePointerInfo::getJumpTable(DAG.getMachineFunction()), MemVT,
3857 false, false, false, 0);
Eli Friedman2892d822009-05-27 12:20:41 +00003858 Addr = LD;
Dan Gohmanc3349602010-04-19 19:05:59 +00003859 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman2892d822009-05-27 12:20:41 +00003860 // For PIC, the sequence is:
Bill Wendlingef408db2009-12-23 00:28:23 +00003861 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman2892d822009-05-27 12:20:41 +00003862 // RelocBase can be JumpTable, GOT or some sort of global base.
3863 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3864 TLI.getPICJumpTableRelocBase(Table, DAG));
3865 }
Owen Anderson9f944592009-08-11 20:47:22 +00003866 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman2892d822009-05-27 12:20:41 +00003867 Results.push_back(Tmp1);
3868 break;
3869 }
Eli Friedman0e494312009-05-27 07:32:27 +00003870 case ISD::BRCOND:
3871 // Expand brcond's setcc into its constituent parts and create a BR_CC
3872 // Node.
3873 Tmp1 = Node->getOperand(0);
3874 Tmp2 = Node->getOperand(1);
Bill Wendlingef408db2009-12-23 00:28:23 +00003875 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson9f944592009-08-11 20:47:22 +00003876 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedman0e494312009-05-27 07:32:27 +00003877 Tmp1, Tmp2.getOperand(2),
3878 Tmp2.getOperand(0), Tmp2.getOperand(1),
3879 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003880 } else {
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003881 // We test only the i1 bit. Skip the AND if UNDEF.
3882 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3883 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003884 DAG.getConstant(1, dl, Tmp2.getValueType()));
Owen Anderson9f944592009-08-11 20:47:22 +00003885 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003886 DAG.getCondCode(ISD::SETNE), Tmp3,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003887 DAG.getConstant(0, dl, Tmp3.getValueType()),
Eli Friedman0e494312009-05-27 07:32:27 +00003888 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003889 }
Eli Friedman0e494312009-05-27 07:32:27 +00003890 Results.push_back(Tmp1);
3891 break;
Eli Friedman5df72022009-05-28 03:56:57 +00003892 case ISD::SETCC: {
3893 Tmp1 = Node->getOperand(0);
3894 Tmp2 = Node->getOperand(1);
3895 Tmp3 = Node->getOperand(2);
Tom Stellard08690a12013-09-28 02:50:32 +00003896 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
Daniel Sandersedc071b2013-11-21 13:24:49 +00003897 Tmp3, NeedInvert, dl);
Eli Friedman5df72022009-05-28 03:56:57 +00003898
Tom Stellard08690a12013-09-28 02:50:32 +00003899 if (Legalized) {
Daniel Sandersedc071b2013-11-21 13:24:49 +00003900 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3901 // condition code, create a new SETCC node.
Tom Stellard08690a12013-09-28 02:50:32 +00003902 if (Tmp3.getNode())
3903 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3904 Tmp1, Tmp2, Tmp3);
3905
Daniel Sandersedc071b2013-11-21 13:24:49 +00003906 // If we expanded the SETCC by inverting the condition code, then wrap
3907 // the existing SETCC in a NOT to restore the intended condition.
3908 if (NeedInvert)
Pete Cooper7fd1d722014-05-12 23:26:58 +00003909 Tmp1 = DAG.getLogicalNOT(dl, Tmp1, Tmp1->getValueType(0));
Daniel Sandersedc071b2013-11-21 13:24:49 +00003910
Eli Friedman5df72022009-05-28 03:56:57 +00003911 Results.push_back(Tmp1);
3912 break;
3913 }
3914
3915 // Otherwise, SETCC for the given comparison type must be completely
3916 // illegal; expand it into a SELECT_CC.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003917 EVT VT = Node->getValueType(0);
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003918 int TrueValue;
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003919 switch (TLI.getBooleanContents(Tmp1->getValueType(0))) {
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003920 case TargetLowering::ZeroOrOneBooleanContent:
3921 case TargetLowering::UndefinedBooleanContent:
3922 TrueValue = 1;
3923 break;
3924 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3925 TrueValue = -1;
3926 break;
3927 }
Eli Friedman5df72022009-05-28 03:56:57 +00003928 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003929 DAG.getConstant(TrueValue, dl, VT),
3930 DAG.getConstant(0, dl, VT),
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003931 Tmp3);
Eli Friedman5df72022009-05-28 03:56:57 +00003932 Results.push_back(Tmp1);
3933 break;
3934 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00003935 case ISD::SELECT_CC: {
3936 Tmp1 = Node->getOperand(0); // LHS
3937 Tmp2 = Node->getOperand(1); // RHS
3938 Tmp3 = Node->getOperand(2); // True
3939 Tmp4 = Node->getOperand(3); // False
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003940 EVT VT = Node->getValueType(0);
Eli Friedmane1dc1932009-05-28 20:40:34 +00003941 SDValue CC = Node->getOperand(4);
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003942 ISD::CondCode CCOp = cast<CondCodeSDNode>(CC)->get();
Eli Friedmane1dc1932009-05-28 20:40:34 +00003943
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003944 if (TLI.isCondCodeLegal(CCOp, Tmp1.getSimpleValueType())) {
3945 // If the condition code is legal, then we need to expand this
3946 // node using SETCC and SELECT.
3947 EVT CmpVT = Tmp1.getValueType();
3948 assert(!TLI.isOperationExpand(ISD::SELECT, VT) &&
3949 "Cannot expand ISD::SELECT_CC when ISD::SELECT also needs to be "
3950 "expanded.");
Mehdi Amini44ede332015-07-09 02:09:04 +00003951 EVT CCVT =
3952 TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), CmpVT);
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003953 SDValue Cond = DAG.getNode(ISD::SETCC, dl, CCVT, Tmp1, Tmp2, CC);
3954 Results.push_back(DAG.getSelect(dl, VT, Cond, Tmp3, Tmp4));
3955 break;
3956 }
3957
3958 // SELECT_CC is legal, so the condition code must not be.
Tom Stellard5694d302013-09-28 02:50:43 +00003959 bool Legalized = false;
3960 // Try to legalize by inverting the condition. This is for targets that
3961 // might support an ordered version of a condition, but not the unordered
3962 // version (or vice versa).
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003963 ISD::CondCode InvCC = ISD::getSetCCInverse(CCOp,
Tom Stellard5694d302013-09-28 02:50:43 +00003964 Tmp1.getValueType().isInteger());
3965 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
3966 // Use the new condition code and swap true and false
3967 Legalized = true;
3968 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
Tom Stellard08690a12013-09-28 02:50:32 +00003969 } else {
Tom Stellard5694d302013-09-28 02:50:43 +00003970 // If The inverse is not legal, then try to swap the arguments using
3971 // the inverse condition code.
3972 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
3973 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
3974 // The swapped inverse condition is legal, so swap true and false,
3975 // lhs and rhs.
3976 Legalized = true;
3977 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
3978 }
3979 }
3980
3981 if (!Legalized) {
3982 Legalized = LegalizeSetCCCondCode(
Daniel Sandersedc071b2013-11-21 13:24:49 +00003983 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, NeedInvert,
3984 dl);
Tom Stellard5694d302013-09-28 02:50:43 +00003985
3986 assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00003987
3988 // If we expanded the SETCC by inverting the condition code, then swap
3989 // the True/False operands to match.
3990 if (NeedInvert)
3991 std::swap(Tmp3, Tmp4);
3992
3993 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3994 // condition code, create a new SELECT_CC node.
Tom Stellard5694d302013-09-28 02:50:43 +00003995 if (CC.getNode()) {
3996 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
3997 Tmp1, Tmp2, Tmp3, Tmp4, CC);
3998 } else {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003999 Tmp2 = DAG.getConstant(0, dl, Tmp1.getValueType());
Tom Stellard5694d302013-09-28 02:50:43 +00004000 CC = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004001 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1,
4002 Tmp2, Tmp3, Tmp4, CC);
Tom Stellard5694d302013-09-28 02:50:43 +00004003 }
Tom Stellard08690a12013-09-28 02:50:32 +00004004 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004005 Results.push_back(Tmp1);
4006 break;
4007 }
4008 case ISD::BR_CC: {
4009 Tmp1 = Node->getOperand(0); // Chain
4010 Tmp2 = Node->getOperand(2); // LHS
4011 Tmp3 = Node->getOperand(3); // RHS
4012 Tmp4 = Node->getOperand(1); // CC
4013
Tom Stellard08690a12013-09-28 02:50:32 +00004014 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004015 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, NeedInvert, dl);
Tom Stellard45015d92013-09-28 03:10:17 +00004016 (void)Legalized;
Tom Stellard08690a12013-09-28 02:50:32 +00004017 assert(Legalized && "Can't legalize BR_CC with legal condition!");
Eli Friedmane1dc1932009-05-28 20:40:34 +00004018
Daniel Sandersedc071b2013-11-21 13:24:49 +00004019 // If we expanded the SETCC by inverting the condition code, then wrap
4020 // the existing SETCC in a NOT to restore the intended condition.
4021 if (NeedInvert)
4022 Tmp4 = DAG.getNOT(dl, Tmp4, Tmp4->getValueType(0));
4023
4024 // If we expanded the SETCC by swapping LHS and RHS, create a new BR_CC
Tom Stellard08690a12013-09-28 02:50:32 +00004025 // node.
4026 if (Tmp4.getNode()) {
4027 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
4028 Tmp4, Tmp2, Tmp3, Node->getOperand(4));
4029 } else {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004030 Tmp3 = DAG.getConstant(0, dl, Tmp2.getValueType());
Tom Stellard08690a12013-09-28 02:50:32 +00004031 Tmp4 = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004032 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4,
4033 Tmp2, Tmp3, Node->getOperand(4));
Tom Stellard08690a12013-09-28 02:50:32 +00004034 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004035 Results.push_back(Tmp1);
4036 break;
4037 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004038 case ISD::BUILD_VECTOR:
4039 Results.push_back(ExpandBUILD_VECTOR(Node));
4040 break;
4041 case ISD::SRA:
4042 case ISD::SRL:
4043 case ISD::SHL: {
4044 // Scalarize vector SRA/SRL/SHL.
4045 EVT VT = Node->getValueType(0);
4046 assert(VT.isVector() && "Unable to legalize non-vector shift");
4047 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
4048 unsigned NumElem = VT.getVectorNumElements();
4049
4050 SmallVector<SDValue, 8> Scalars;
4051 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
Mehdi Amini44ede332015-07-09 02:09:04 +00004052 SDValue Ex = DAG.getNode(
4053 ISD::EXTRACT_VECTOR_ELT, dl, VT.getScalarType(), Node->getOperand(0),
4054 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
4055 SDValue Sh = DAG.getNode(
4056 ISD::EXTRACT_VECTOR_ELT, dl, VT.getScalarType(), Node->getOperand(1),
4057 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004058 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
4059 VT.getScalarType(), Ex, Sh));
4060 }
4061 SDValue Result =
Craig Topper48d114b2014-04-26 18:35:24 +00004062 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0), Scalars);
Eli Friedman13477152011-11-11 23:58:27 +00004063 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +00004064 break;
4065 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00004066 case ISD::GLOBAL_OFFSET_TABLE:
4067 case ISD::GlobalAddress:
4068 case ISD::GlobalTLSAddress:
4069 case ISD::ExternalSymbol:
4070 case ISD::ConstantPool:
4071 case ISD::JumpTable:
4072 case ISD::INTRINSIC_W_CHAIN:
4073 case ISD::INTRINSIC_WO_CHAIN:
4074 case ISD::INTRINSIC_VOID:
4075 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedmana8f9a022009-05-27 02:16:40 +00004076 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00004077 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004078
4079 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004080 if (!Results.empty())
4081 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004082}
Dan Gohman198b7ff2011-11-03 21:49:52 +00004083
4084void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
4085 SmallVector<SDValue, 8> Results;
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004086 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00004087 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedman97f3f962009-07-17 05:16:04 +00004088 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendlingef408db2009-12-23 00:28:23 +00004089 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004090 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendlingef408db2009-12-23 00:28:23 +00004091 }
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004092 if (Node->getOpcode() == ISD::BR_CC)
4093 OVT = Node->getOperand(2).getSimpleValueType();
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004094 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004095 SDLoc dl(Node);
Eli Friedman3b251702009-05-27 07:58:35 +00004096 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman21d349b2009-05-27 01:25:56 +00004097 switch (Node->getOpcode()) {
4098 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004099 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004100 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004101 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004102 case ISD::CTPOP:
4103 // Zero extend the argument.
4104 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004105 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
4106 // already the correct result.
Jakob Stoklund Olesen6b9f63c2009-07-12 17:43:20 +00004107 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004108 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004109 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault758659232013-05-18 00:21:46 +00004110 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004111 Tmp1, DAG.getConstant(NVT.getSizeInBits(), dl, NVT),
Eli Friedman21d349b2009-05-27 01:25:56 +00004112 ISD::SETEQ);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004113 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004114 DAG.getConstant(OVT.getSizeInBits(), dl, NVT), Tmp1);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004115 } else if (Node->getOpcode() == ISD::CTLZ ||
4116 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman21d349b2009-05-27 01:25:56 +00004117 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4118 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
4119 DAG.getConstant(NVT.getSizeInBits() -
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004120 OVT.getSizeInBits(), dl, NVT));
Eli Friedman21d349b2009-05-27 01:25:56 +00004121 }
Bill Wendlingef408db2009-12-23 00:28:23 +00004122 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00004123 break;
4124 case ISD::BSWAP: {
4125 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling70794592009-12-22 22:53:39 +00004126 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004127 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
Mehdi Amini9639d652015-07-09 02:09:20 +00004128 Tmp1 = DAG.getNode(
4129 ISD::SRL, dl, NVT, Tmp1,
4130 DAG.getConstant(DiffBits, dl,
4131 TLI.getShiftAmountTy(NVT, DAG.getDataLayout())));
Bill Wendlingef408db2009-12-23 00:28:23 +00004132 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004133 break;
4134 }
4135 case ISD::FP_TO_UINT:
4136 case ISD::FP_TO_SINT:
4137 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
4138 Node->getOpcode() == ISD::FP_TO_SINT, dl);
4139 Results.push_back(Tmp1);
4140 break;
4141 case ISD::UINT_TO_FP:
4142 case ISD::SINT_TO_FP:
4143 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
4144 Node->getOpcode() == ISD::SINT_TO_FP, dl);
4145 Results.push_back(Tmp1);
4146 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00004147 case ISD::VAARG: {
4148 SDValue Chain = Node->getOperand(0); // Get the chain.
4149 SDValue Ptr = Node->getOperand(1); // Get the pointer.
4150
4151 unsigned TruncOp;
4152 if (OVT.isVector()) {
4153 TruncOp = ISD::BITCAST;
4154 } else {
4155 assert(OVT.isInteger()
4156 && "VAARG promotion is supported only for vectors or integer types");
4157 TruncOp = ISD::TRUNCATE;
4158 }
4159
4160 // Perform the larger operation, then convert back
4161 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
4162 Node->getConstantOperandVal(3));
4163 Chain = Tmp1.getValue(1);
4164
4165 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
4166
4167 // Modified the chain result - switch anything that used the old chain to
4168 // use the new one.
4169 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
4170 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00004171 if (UpdatedNodes) {
4172 UpdatedNodes->insert(Tmp2.getNode());
4173 UpdatedNodes->insert(Chain.getNode());
4174 }
Hal Finkel71c2ba32012-03-24 03:53:52 +00004175 ReplacedNode(Node);
4176 break;
4177 }
Eli Friedmand6f28342009-05-27 03:33:44 +00004178 case ISD::AND:
4179 case ISD::OR:
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004180 case ISD::XOR: {
4181 unsigned ExtOp, TruncOp;
4182 if (OVT.isVector()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004183 ExtOp = ISD::BITCAST;
4184 TruncOp = ISD::BITCAST;
Chris Lattnercd927182010-04-07 23:47:51 +00004185 } else {
4186 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004187 ExtOp = ISD::ANY_EXTEND;
4188 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004189 }
4190 // Promote each of the values to the new type.
4191 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4192 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4193 // Perform the larger operation, then convert back
Bill Wendlingef408db2009-12-23 00:28:23 +00004194 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
4195 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmand6f28342009-05-27 03:33:44 +00004196 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004197 }
4198 case ISD::SELECT: {
Eli Friedman3b251702009-05-27 07:58:35 +00004199 unsigned ExtOp, TruncOp;
Tom Stellardc9a67a22014-03-24 16:07:28 +00004200 if (Node->getValueType(0).isVector() ||
4201 Node->getValueType(0).getSizeInBits() == NVT.getSizeInBits()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004202 ExtOp = ISD::BITCAST;
4203 TruncOp = ISD::BITCAST;
Eli Friedman2892d822009-05-27 12:20:41 +00004204 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman3b251702009-05-27 07:58:35 +00004205 ExtOp = ISD::ANY_EXTEND;
4206 TruncOp = ISD::TRUNCATE;
4207 } else {
4208 ExtOp = ISD::FP_EXTEND;
4209 TruncOp = ISD::FP_ROUND;
4210 }
4211 Tmp1 = Node->getOperand(0);
4212 // Promote each of the values to the new type.
4213 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4214 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4215 // Perform the larger operation, then round down.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004216 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman3b251702009-05-27 07:58:35 +00004217 if (TruncOp != ISD::FP_ROUND)
Bill Wendlingef408db2009-12-23 00:28:23 +00004218 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004219 else
Bill Wendlingef408db2009-12-23 00:28:23 +00004220 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004221 DAG.getIntPtrConstant(0, dl));
Bill Wendlingef408db2009-12-23 00:28:23 +00004222 Results.push_back(Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004223 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004224 }
Eli Friedman3b251702009-05-27 07:58:35 +00004225 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00004226 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00004227
4228 // Cast the two input vectors.
Wesley Peck527da1b2010-11-23 03:31:01 +00004229 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
4230 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman3b251702009-05-27 07:58:35 +00004231
4232 // Convert the shuffle mask to the right # elements.
Bill Wendlingef408db2009-12-23 00:28:23 +00004233 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peck527da1b2010-11-23 03:31:01 +00004234 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004235 Results.push_back(Tmp1);
4236 break;
4237 }
Eli Friedman5df72022009-05-28 03:56:57 +00004238 case ISD::SETCC: {
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004239 unsigned ExtOp = ISD::FP_EXTEND;
4240 if (NVT.isInteger()) {
4241 ISD::CondCode CCCode =
4242 cast<CondCodeSDNode>(Node->getOperand(2))->get();
4243 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedman5df72022009-05-28 03:56:57 +00004244 }
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004245 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4246 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedman5df72022009-05-28 03:56:57 +00004247 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
4248 Tmp1, Tmp2, Node->getOperand(2)));
4249 break;
4250 }
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004251 case ISD::BR_CC: {
4252 unsigned ExtOp = ISD::FP_EXTEND;
4253 if (NVT.isInteger()) {
4254 ISD::CondCode CCCode =
4255 cast<CondCodeSDNode>(Node->getOperand(1))->get();
4256 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
4257 }
4258 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4259 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(3));
4260 Results.push_back(DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0),
4261 Node->getOperand(0), Node->getOperand(1),
4262 Tmp1, Tmp2, Node->getOperand(4)));
4263 break;
4264 }
Oliver Stannardf5469be2014-08-18 14:22:39 +00004265 case ISD::FADD:
4266 case ISD::FSUB:
4267 case ISD::FMUL:
Pete Coopere69be6d2012-03-19 23:38:12 +00004268 case ISD::FDIV:
Pete Cooper8a3dc0e2012-04-04 19:36:31 +00004269 case ISD::FREM:
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004270 case ISD::FMINNUM:
4271 case ISD::FMAXNUM:
Pete Cooper99415fe2012-01-12 21:46:18 +00004272 case ISD::FPOW: {
4273 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4274 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Sanjay Patela2607012015-09-16 16:31:21 +00004275 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2,
4276 Node->getFlags());
Pete Cooper99415fe2012-01-12 21:46:18 +00004277 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004278 Tmp3, DAG.getIntPtrConstant(0, dl)));
Pete Cooper99415fe2012-01-12 21:46:18 +00004279 break;
4280 }
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004281 case ISD::FMA: {
4282 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4283 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
4284 Tmp3 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(2));
4285 Results.push_back(
4286 DAG.getNode(ISD::FP_ROUND, dl, OVT,
4287 DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2, Tmp3),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004288 DAG.getIntPtrConstant(0, dl)));
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004289 break;
4290 }
Ahmed Bougacha40ded502015-08-13 01:09:43 +00004291 case ISD::FCOPYSIGN:
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004292 case ISD::FPOWI: {
4293 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4294 Tmp2 = Node->getOperand(1);
4295 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Ahmed Bougachaa1966612015-08-13 01:32:30 +00004296
4297 // fcopysign doesn't change anything but the sign bit, so
4298 // (fp_round (fcopysign (fpext a), b))
4299 // is as precise as
4300 // (fp_round (fpext a))
4301 // which is a no-op. Mark it as a TRUNCating FP_ROUND.
4302 const bool isTrunc = (Node->getOpcode() == ISD::FCOPYSIGN);
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004303 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
Ahmed Bougachaa1966612015-08-13 01:32:30 +00004304 Tmp3, DAG.getIntPtrConstant(isTrunc, dl)));
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004305 break;
4306 }
4307 case ISD::FFLOOR:
4308 case ISD::FCEIL:
4309 case ISD::FRINT:
4310 case ISD::FNEARBYINT:
4311 case ISD::FROUND:
4312 case ISD::FTRUNC:
4313 case ISD::FNEG:
4314 case ISD::FSQRT:
4315 case ISD::FSIN:
4316 case ISD::FCOS:
Pete Cooper99415fe2012-01-12 21:46:18 +00004317 case ISD::FLOG:
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004318 case ISD::FLOG2:
4319 case ISD::FLOG10:
4320 case ISD::FABS:
4321 case ISD::FEXP:
4322 case ISD::FEXP2: {
Pete Cooper99415fe2012-01-12 21:46:18 +00004323 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4324 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4325 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004326 Tmp2, DAG.getIntPtrConstant(0, dl)));
Pete Cooper99415fe2012-01-12 21:46:18 +00004327 break;
4328 }
Eli Friedman21d349b2009-05-27 01:25:56 +00004329 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004330
4331 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004332 if (!Results.empty())
4333 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004334}
4335
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00004336/// This is the entry point for the file.
Dan Gohmand282f462011-05-16 22:19:54 +00004337void SelectionDAG::Legalize() {
Chandler Carruth411fb402014-07-26 05:49:40 +00004338 AssignTopologicalOrder();
4339
Chandler Carruth411fb402014-07-26 05:49:40 +00004340 SmallPtrSet<SDNode *, 16> LegalizedNodes;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004341 SelectionDAGLegalize Legalizer(*this, LegalizedNodes);
Chandler Carruth411fb402014-07-26 05:49:40 +00004342
4343 // Visit all the nodes. We start in topological order, so that we see
4344 // nodes with their original operands intact. Legalization can produce
4345 // new nodes which may themselves need to be legalized. Iterate until all
4346 // nodes have been legalized.
4347 for (;;) {
4348 bool AnyLegalized = false;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004349 for (auto NI = allnodes_end(); NI != allnodes_begin();) {
4350 --NI;
Chandler Carruth411fb402014-07-26 05:49:40 +00004351
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004352 SDNode *N = NI;
4353 if (N->use_empty() && N != getRoot().getNode()) {
4354 ++NI;
4355 DeleteNode(N);
4356 continue;
4357 }
4358
David Blaikie70573dc2014-11-19 07:49:26 +00004359 if (LegalizedNodes.insert(N).second) {
Chandler Carruth411fb402014-07-26 05:49:40 +00004360 AnyLegalized = true;
4361 Legalizer.LegalizeOp(N);
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004362
4363 if (N->use_empty() && N != getRoot().getNode()) {
4364 ++NI;
4365 DeleteNode(N);
4366 }
Chandler Carruth411fb402014-07-26 05:49:40 +00004367 }
4368 }
4369 if (!AnyLegalized)
4370 break;
4371
4372 }
4373
4374 // Remove dead nodes now.
4375 RemoveDeadNodes();
4376}
4377
4378bool SelectionDAG::LegalizeOp(SDNode *N,
4379 SmallSetVector<SDNode *, 16> &UpdatedNodes) {
Chandler Carruth411fb402014-07-26 05:49:40 +00004380 SmallPtrSet<SDNode *, 16> LegalizedNodes;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004381 SelectionDAGLegalize Legalizer(*this, LegalizedNodes, &UpdatedNodes);
Chandler Carruth411fb402014-07-26 05:49:40 +00004382
4383 // Directly insert the node in question, and legalize it. This will recurse
4384 // as needed through operands.
4385 LegalizedNodes.insert(N);
4386 Legalizer.LegalizeOp(N);
4387
4388 return LegalizedNodes.count(N);
Chris Lattnerdc750592005-01-07 07:47:09 +00004389}