blob: 533efbd8aab6b36fb272fb2f23a289b8ac9a157c [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///
54namespace {
Chandler Carruth1f52b3d2014-08-01 19:49:59 +000055class SelectionDAGLegalize {
Dan Gohmanc3349602010-04-19 19:05:59 +000056 const TargetMachine &TM;
Dan Gohman21cea8a2010-04-17 15:26:15 +000057 const TargetLowering &TLI;
Chris Lattnerdc750592005-01-07 07:47:09 +000058 SelectionDAG &DAG;
59
Chandler Carruth411fb402014-07-26 05:49:40 +000060 /// \brief The set of nodes which have already been legalized. We hold a
61 /// reference to it in order to update as necessary on node deletion.
62 SmallPtrSetImpl<SDNode *> &LegalizedNodes;
63
64 /// \brief A set of all the nodes updated during legalization.
65 SmallSetVector<SDNode *, 16> *UpdatedNodes;
Dan Gohman198b7ff2011-11-03 21:49:52 +000066
Matt Arsenault758659232013-05-18 00:21:46 +000067 EVT getSetCCResultType(EVT VT) const {
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);
133 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000134 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000135 SDLoc dl);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000136 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000137 SDLoc dl);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000138 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000139 SDLoc dl);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000140
Andrew Trickef9de2a2013-05-25 02:42:55 +0000141 SDValue ExpandBSWAP(SDValue Op, SDLoc dl);
142 SDValue ExpandBitCount(unsigned Opc, SDValue Op, SDLoc dl);
Chris Lattnera5bf1032005-05-12 04:49:08 +0000143
Eli Friedman40afdb62009-05-23 22:37:25 +0000144 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenebab5e6e2011-01-26 19:13:22 +0000145 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000146 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman21d349b2009-05-27 01:25:56 +0000147
Dan Gohman198b7ff2011-11-03 21:49:52 +0000148 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
149
Jim Grosbachd64dfc12010-06-18 21:43:38 +0000150 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
151
Dan Gohman198b7ff2011-11-03 21:49:52 +0000152 void ExpandNode(SDNode *Node);
153 void PromoteNode(SDNode *Node);
154
Eli Friedman13477152011-11-11 23:58:27 +0000155public:
Eli Friedman13477152011-11-11 23:58:27 +0000156 // Node replacement helpers
157 void ReplacedNode(SDNode *N) {
Chandler Carruth1f52b3d2014-08-01 19:49:59 +0000158 LegalizedNodes.erase(N);
Chandler Carruth74ec9e12014-08-27 11:22:16 +0000159 if (UpdatedNodes)
160 UpdatedNodes->insert(N);
Eli Friedman13477152011-11-11 23:58:27 +0000161 }
162 void ReplaceNode(SDNode *Old, SDNode *New) {
Chandler Carruthb1432742014-07-28 17:55:07 +0000163 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG);
164 dbgs() << " with: "; New->dump(&DAG));
165
Chandler Carruth5a85c7b2014-07-26 05:53:16 +0000166 assert(Old->getNumValues() == New->getNumValues() &&
167 "Replacing one node with another that produces a different number "
168 "of values!");
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000169 DAG.ReplaceAllUsesWith(Old, New);
Chandler Carruth411fb402014-07-26 05:49:40 +0000170 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i)
171 DAG.TransferDbgValues(SDValue(Old, i), SDValue(New, i));
172 if (UpdatedNodes)
173 UpdatedNodes->insert(New);
Eli Friedman13477152011-11-11 23:58:27 +0000174 ReplacedNode(Old);
175 }
176 void ReplaceNode(SDValue Old, SDValue New) {
Chandler Carruthb1432742014-07-28 17:55:07 +0000177 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG);
178 dbgs() << " with: "; New->dump(&DAG));
179
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000180 DAG.ReplaceAllUsesWith(Old, New);
Chandler Carruth411fb402014-07-26 05:49:40 +0000181 DAG.TransferDbgValues(Old, New);
182 if (UpdatedNodes)
183 UpdatedNodes->insert(New.getNode());
Eli Friedman13477152011-11-11 23:58:27 +0000184 ReplacedNode(Old.getNode());
185 }
186 void ReplaceNode(SDNode *Old, const SDValue *New) {
Chandler Carruthb1432742014-07-28 17:55:07 +0000187 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG));
188
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000189 DAG.ReplaceAllUsesWith(Old, New);
Chandler Carruthb1432742014-07-28 17:55:07 +0000190 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i) {
191 DEBUG(dbgs() << (i == 0 ? " with: "
192 : " and: ");
193 New[i]->dump(&DAG));
Chandler Carruth411fb402014-07-26 05:49:40 +0000194 DAG.TransferDbgValues(SDValue(Old, i), New[i]);
Chandler Carruthb1432742014-07-28 17:55:07 +0000195 if (UpdatedNodes)
196 UpdatedNodes->insert(New[i].getNode());
197 }
Eli Friedman13477152011-11-11 23:58:27 +0000198 ReplacedNode(Old);
199 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000200};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000201}
Chris Lattnerdc750592005-01-07 07:47:09 +0000202
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000203/// Return a vector shuffle operation which
Nate Begeman5f829d82009-04-29 05:20:52 +0000204/// performs the same shuffe in terms of order or result bytes, but on a type
205/// whose vector element type is narrower than the original shuffle type.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000206/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000207SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +0000208SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Nate Begeman5f829d82009-04-29 05:20:52 +0000209 SDValue N1, SDValue N2,
Benjamin Kramer339ced42012-01-15 13:16:05 +0000210 ArrayRef<int> Mask) const {
Nate Begeman5f829d82009-04-29 05:20:52 +0000211 unsigned NumMaskElts = VT.getVectorNumElements();
212 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000213 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner6be79822006-04-04 17:23:26 +0000214
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000215 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
216
217 if (NumEltsGrowth == 1)
218 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000219
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000220 SmallVector<int, 8> NewMask;
Nate Begeman5f829d82009-04-29 05:20:52 +0000221 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000222 int Idx = Mask[i];
223 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000224 if (Idx < 0)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000225 NewMask.push_back(-1);
226 else
227 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner6be79822006-04-04 17:23:26 +0000228 }
Chris Lattner6be79822006-04-04 17:23:26 +0000229 }
Nate Begeman5f829d82009-04-29 05:20:52 +0000230 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000231 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
232 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner6be79822006-04-04 17:23:26 +0000233}
234
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000235/// Expands the ConstantFP node to an integer constant or
Evan Cheng22cf8992006-12-13 20:57:08 +0000236/// a load from the constant pool.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000237SDValue
238SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng47833a12006-12-12 21:32:44 +0000239 bool Extend = false;
Andrew Trickef9de2a2013-05-25 02:42:55 +0000240 SDLoc dl(CFP);
Evan Cheng47833a12006-12-12 21:32:44 +0000241
242 // If a FP immediate is precise when represented as a float and if the
243 // target can do an extending load from float to double, we put it into
244 // the constant pool as a float, even if it's is statically typed as a
Chris Lattner3dc38992008-03-05 06:46:58 +0000245 // double. This shrinks FP constants and canonicalizes them for targets where
246 // an FP extending load is the same cost as a normal load (such as on the x87
247 // fp stack or PPC FP unit).
Owen Anderson53aa7a92009-08-10 22:56:29 +0000248 EVT VT = CFP->getValueType(0);
Dan Gohmanec270fb2008-09-12 18:08:03 +0000249 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng22cf8992006-12-13 20:57:08 +0000250 if (!UseCP) {
Owen Anderson9f944592009-08-11 20:47:22 +0000251 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000252 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(), dl,
Owen Anderson9f944592009-08-11 20:47:22 +0000253 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng3766fc602006-12-12 22:19:28 +0000254 }
255
Owen Anderson53aa7a92009-08-10 22:56:29 +0000256 EVT OrigVT = VT;
257 EVT SVT = VT;
Oliver Stannard6eda6ff2014-07-11 13:33:46 +0000258 while (SVT != MVT::f32 && SVT != MVT::f16) {
Owen Anderson9f944592009-08-11 20:47:22 +0000259 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman35b6f9a2010-06-18 14:01:07 +0000260 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Cheng38caf772008-03-04 08:05:30 +0000261 // Only do this if the target has a native EXTLOAD instruction from
262 // smaller type.
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000263 TLI.isLoadExtLegal(ISD::EXTLOAD, OrigVT, SVT) &&
Chris Lattner3dc38992008-03-05 06:46:58 +0000264 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattner229907c2011-07-18 04:54:35 +0000265 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Anderson487375e2009-07-29 18:55:55 +0000266 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Cheng38caf772008-03-04 08:05:30 +0000267 VT = SVT;
268 Extend = true;
269 }
Evan Cheng47833a12006-12-12 21:32:44 +0000270 }
271
Mehdi Amini44ede332015-07-09 02:09:04 +0000272 SDValue CPIdx =
273 DAG.getConstantPool(LLVMC, TLI.getPointerTy(DAG.getDataLayout()));
Evan Cheng1fb8aed2009-03-13 07:51:59 +0000274 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman198b7ff2011-11-03 21:49:52 +0000275 if (Extend) {
276 SDValue Result =
277 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
278 DAG.getEntryNode(),
279 CPIdx, MachinePointerInfo::getConstantPool(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000280 VT, false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000281 return Result;
282 }
283 SDValue Result =
284 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000285 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman198b7ff2011-11-03 21:49:52 +0000286 Alignment);
287 return Result;
Evan Cheng47833a12006-12-12 21:32:44 +0000288}
289
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000290/// Expands an unaligned store to 2 half-size stores.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000291static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
292 const TargetLowering &TLI,
Eli Friedman13477152011-11-11 23:58:27 +0000293 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmand257a462011-11-16 02:43:15 +0000294 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
295 "unaligned indexed stores not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000296 SDValue Chain = ST->getChain();
297 SDValue Ptr = ST->getBasePtr();
298 SDValue Val = ST->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000299 EVT VT = Val.getValueType();
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000300 int Alignment = ST->getAlignment();
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000301 unsigned AS = ST->getAddressSpace();
302
Andrew Trickef9de2a2013-05-25 02:42:55 +0000303 SDLoc dl(ST);
Duncan Sands13237ac2008-06-06 12:08:01 +0000304 if (ST->getMemoryVT().isFloatingPoint() ||
305 ST->getMemoryVT().isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000306 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands8f352fe2008-12-12 21:47:02 +0000307 if (TLI.isTypeLegal(intVT)) {
308 // Expand to a bitconvert of the value to the integer type of the
309 // same size, then a (misaligned) int store.
310 // FIXME: Does not handle truncating floating point stores!
Wesley Peck527da1b2010-11-23 03:31:01 +0000311 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000312 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
313 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman13477152011-11-11 23:58:27 +0000314 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000315 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000316 }
Dan Gohmanabffc992011-05-17 22:22:52 +0000317 // Do a (aligned) store to a stack slot, then copy from the stack slot
318 // to the final destination using (unaligned) integer loads and stores.
319 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000320 MVT RegVT =
Dan Gohmanabffc992011-05-17 22:22:52 +0000321 TLI.getRegisterType(*DAG.getContext(),
322 EVT::getIntegerVT(*DAG.getContext(),
323 StoredVT.getSizeInBits()));
324 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
325 unsigned RegBytes = RegVT.getSizeInBits() / 8;
326 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
327
328 // Make sure the stack slot is also aligned for the register type.
329 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
330
331 // Perform the original store, only redirected to the stack slot.
332 SDValue Store = DAG.getTruncStore(Chain, dl,
333 Val, StackPtr, MachinePointerInfo(),
334 StoredVT, false, false, 0);
Mehdi Amini44ede332015-07-09 02:09:04 +0000335 SDValue Increment = DAG.getConstant(
336 RegBytes, dl, TLI.getPointerTy(DAG.getDataLayout(), AS));
Dan Gohmanabffc992011-05-17 22:22:52 +0000337 SmallVector<SDValue, 8> Stores;
338 unsigned Offset = 0;
339
340 // Do all but one copies using the full register width.
341 for (unsigned i = 1; i < NumRegs; i++) {
342 // Load one integer register's worth from the stack slot.
343 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
344 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000345 false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000346 // Store it to the final location. Remember the store.
347 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
348 ST->getPointerInfo().getWithOffset(Offset),
349 ST->isVolatile(), ST->isNonTemporal(),
350 MinAlign(ST->getAlignment(), Offset)));
351 // Increment the pointers.
352 Offset += RegBytes;
353 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
354 Increment);
355 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
356 }
357
358 // The last store may be partial. Do a truncating store. On big-endian
359 // machines this requires an extending load from the stack slot to ensure
360 // that the bits are in the right place.
361 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
362 8 * (StoredBytes - Offset));
363
364 // Load from the stack slot.
365 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
366 MachinePointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000367 MemVT, false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000368
369 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
370 ST->getPointerInfo()
371 .getWithOffset(Offset),
372 MemVT, ST->isVolatile(),
373 ST->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000374 MinAlign(ST->getAlignment(), Offset),
Hal Finkelcc39b672014-07-24 12:16:19 +0000375 ST->getAAInfo()));
Dan Gohmanabffc992011-05-17 22:22:52 +0000376 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000377 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedman13477152011-11-11 23:58:27 +0000378 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000379 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000380 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000381 assert(ST->getMemoryVT().isInteger() &&
382 !ST->getMemoryVT().isVector() &&
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000383 "Unaligned store of unknown type.");
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000384 // Get the half-size VT
Ken Dyckdf5561d2009-12-17 20:09:43 +0000385 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands13237ac2008-06-06 12:08:01 +0000386 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000387 int IncrementSize = NumBits / 8;
388
389 // Divide the stored value in two parts.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000390 SDValue ShiftAmount = DAG.getConstant(NumBits, dl,
Owen Andersonb2c80da2011-02-25 21:41:48 +0000391 TLI.getShiftAmountTy(Val.getValueType()));
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;
441 ChainResult = Chain;
442 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
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000557 SDValue ShiftAmount = DAG.getConstant(NumBits, dl,
Owen Andersonb2c80da2011-02-25 21:41:48 +0000558 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000559 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
560 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000561
Owen Anderson9f944592009-08-11 20:47:22 +0000562 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000563 Hi.getValue(1));
564
Dan Gohman198b7ff2011-11-03 21:49:52 +0000565 ValResult = Result;
566 ChainResult = TF;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000567}
Evan Cheng003feb02007-01-04 21:56:39 +0000568
Sanjay Pateleb4a4d52014-11-21 18:58:38 +0000569/// Some target cannot handle a variable insertion index for the
570/// INSERT_VECTOR_ELT instruction. In this case, it
Nate Begeman6f94f612008-04-25 18:07:40 +0000571/// is necessary to spill the vector being inserted into to memory, perform
572/// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000573SDValue SelectionDAGLegalize::
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000574PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000575 SDLoc dl) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000576 SDValue Tmp1 = Vec;
577 SDValue Tmp2 = Val;
578 SDValue Tmp3 = Idx;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000579
Nate Begeman6f94f612008-04-25 18:07:40 +0000580 // If the target doesn't support this, we have to spill the input vector
581 // to a temporary stack slot, update the element, then reload it. This is
582 // badness. We could also load the value into a vector register (either
583 // with a "move to register" or "extload into register" instruction, then
584 // permute it into place, if the idx is a constant and if the idx is
585 // supported by the target.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000586 EVT VT = Tmp1.getValueType();
587 EVT EltVT = VT.getVectorElementType();
588 EVT IdxVT = Tmp3.getValueType();
Mehdi Amini44ede332015-07-09 02:09:04 +0000589 EVT PtrVT = TLI.getPointerTy(DAG.getDataLayout());
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000590 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman6f94f612008-04-25 18:07:40 +0000591
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000592 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
593
Nate Begeman6f94f612008-04-25 18:07:40 +0000594 // Store the vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000595 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +0000596 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +0000597 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000598
599 // Truncate or zero extend offset to target pointer type.
Duncan Sands11dd4242008-06-08 20:54:56 +0000600 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000601 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman6f94f612008-04-25 18:07:40 +0000602 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +0000603 unsigned EltSize = EltVT.getSizeInBits()/8;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000604 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,
605 DAG.getConstant(EltSize, dl, IdxVT));
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000606 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman6f94f612008-04-25 18:07:40 +0000607 // Store the scalar value.
Chris Lattnera35499e2010-09-21 07:32:19 +0000608 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene39c6d012010-02-15 17:00:31 +0000609 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000610 // Load the updated vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000611 return DAG.getLoad(VT, dl, Ch, StackPtr,
Stephen Lincfe7f352013-07-08 00:37:03 +0000612 MachinePointerInfo::getFixedStack(SPFI), false, false,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000613 false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000614}
615
Mon P Wang4dd832d2008-12-09 05:46:39 +0000616
Eli Friedmana8f9a022009-05-27 02:16:40 +0000617SDValue SelectionDAGLegalize::
Andrew Trickef9de2a2013-05-25 02:42:55 +0000618ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) {
Eli Friedmana8f9a022009-05-27 02:16:40 +0000619 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
620 // SCALAR_TO_VECTOR requires that the type of the value being inserted
621 // match the element type of the vector being created, except for
622 // integers in which case the inserted value can be over width.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000623 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedmana8f9a022009-05-27 02:16:40 +0000624 if (Val.getValueType() == EltVT ||
625 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
626 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
627 Vec.getValueType(), Val);
628
629 unsigned NumElts = Vec.getValueType().getVectorNumElements();
630 // We generate a shuffle of InVec and ScVec, so the shuffle mask
631 // should be 0,1,2,3,4,5... with the appropriate element replaced with
632 // elt 0 of the RHS.
633 SmallVector<int, 8> ShufOps;
634 for (unsigned i = 0; i != NumElts; ++i)
635 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
636
637 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
638 &ShufOps[0]);
639 }
640 }
641 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
642}
643
Eli Friedmanaee3f622009-06-06 07:04:42 +0000644SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
645 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
646 // FIXME: We shouldn't do this for TargetConstantFP's.
647 // FIXME: move this to the DAG Combiner! Note that we can't regress due
648 // to phase ordering between legalized code and the dag combiner. This
649 // probably means that we need to integrate dag combiner and legalizer
650 // together.
651 // We generally can't do this one for long doubles.
Nadav Rotem2a148662012-07-11 11:02:16 +0000652 SDValue Chain = ST->getChain();
653 SDValue Ptr = ST->getBasePtr();
Eli Friedmanaee3f622009-06-06 07:04:42 +0000654 unsigned Alignment = ST->getAlignment();
655 bool isVolatile = ST->isVolatile();
David Greene39c6d012010-02-15 17:00:31 +0000656 bool isNonTemporal = ST->isNonTemporal();
Hal Finkelcc39b672014-07-24 12:16:19 +0000657 AAMDNodes AAInfo = ST->getAAInfo();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000658 SDLoc dl(ST);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000659 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson9f944592009-08-11 20:47:22 +0000660 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohmane49e7422011-07-15 22:39:09 +0000661 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000662 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedmanaee3f622009-06-06 07:04:42 +0000663 bitcastToAPInt().zextOrTrunc(32),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000664 SDLoc(CFP), MVT::i32);
Nadav Rotem2a148662012-07-11 11:02:16 +0000665 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000666 isVolatile, isNonTemporal, Alignment, AAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000667 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000668
Chris Lattner6963c1f2010-09-21 17:42:31 +0000669 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000670 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohmane49e7422011-07-15 22:39:09 +0000671 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000672 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000673 zextOrTrunc(64), SDLoc(CFP), MVT::i64);
Nadav Rotem2a148662012-07-11 11:02:16 +0000674 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000675 isVolatile, isNonTemporal, Alignment, AAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000676 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000677
Dan Gohmane49e7422011-07-15 22:39:09 +0000678 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000679 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
680 // stores. If the target supports neither 32- nor 64-bits, this
681 // xform is certainly not worth it.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000682 const APInt &IntVal = CFP->getValueAPF().bitcastToAPInt();
683 SDValue Lo = DAG.getConstant(IntVal.trunc(32), dl, MVT::i32);
684 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), dl, MVT::i32);
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000685 if (DAG.getDataLayout().isBigEndian())
686 std::swap(Lo, Hi);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000687
Nadav Rotem2a148662012-07-11 11:02:16 +0000688 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Hal Finkelcc39b672014-07-24 12:16:19 +0000689 isNonTemporal, Alignment, AAInfo);
Nadav Rotem2a148662012-07-11 11:02:16 +0000690 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000691 DAG.getConstant(4, dl, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000692 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000693 ST->getPointerInfo().getWithOffset(4),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000694 isVolatile, isNonTemporal, MinAlign(Alignment, 4U),
Hal Finkelcc39b672014-07-24 12:16:19 +0000695 AAInfo);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000696
Owen Anderson9f944592009-08-11 20:47:22 +0000697 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000698 }
699 }
700 }
Craig Topperc0196b12014-04-14 00:51:57 +0000701 return SDValue(nullptr, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000702}
703
Nadav Rotemde6fd282012-07-11 08:52:09 +0000704void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
705 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000706 SDValue Chain = ST->getChain();
707 SDValue Ptr = ST->getBasePtr();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000708 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000709
710 unsigned Alignment = ST->getAlignment();
711 bool isVolatile = ST->isVolatile();
712 bool isNonTemporal = ST->isNonTemporal();
Hal Finkelcc39b672014-07-24 12:16:19 +0000713 AAMDNodes AAInfo = ST->getAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000714
715 if (!ST->isTruncatingStore()) {
716 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
717 ReplaceNode(ST, OptStore);
718 return;
719 }
720
721 {
Nadav Rotem2a148662012-07-11 11:02:16 +0000722 SDValue Value = ST->getValue();
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000723 MVT VT = Value.getSimpleValueType();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000724 switch (TLI.getOperationAction(ISD::STORE, VT)) {
725 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000726 case TargetLowering::Legal: {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000727 // If this is an unaligned store and the target doesn't support it,
728 // expand it.
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000729 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000730 unsigned Align = ST->getAlignment();
731 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000732 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000733 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000734 if (Align < ABIAlignment)
Sanjay Patelb06441a2014-11-21 18:05:59 +0000735 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000736 }
737 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000738 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000739 case TargetLowering::Custom: {
740 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
Hal Finkelcec70132015-02-24 12:59:47 +0000741 if (Res && Res != SDValue(Node, 0))
Nadav Rotem2a148662012-07-11 11:02:16 +0000742 ReplaceNode(SDValue(Node, 0), Res);
743 return;
744 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000745 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000746 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellardb785bd72012-12-10 21:41:54 +0000747 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
748 "Can only promote stores to same size type");
749 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000750 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000751 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000752 ST->getPointerInfo(), isVolatile,
Hal Finkelcc39b672014-07-24 12:16:19 +0000753 isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000754 ReplaceNode(SDValue(Node, 0), Result);
755 break;
756 }
757 }
758 return;
759 }
760 } else {
Nadav Rotem2a148662012-07-11 11:02:16 +0000761 SDValue Value = ST->getValue();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000762
763 EVT StVT = ST->getMemoryVT();
764 unsigned StWidth = StVT.getSizeInBits();
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000765 auto &DL = DAG.getDataLayout();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000766
767 if (StWidth != StVT.getStoreSizeInBits()) {
768 // Promote to a byte-sized store with upper bits zero if not
769 // storing an integral number of bytes. For example, promote
770 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
771 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
772 StVT.getStoreSizeInBits());
Nadav Rotem2a148662012-07-11 11:02:16 +0000773 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000774 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000775 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Sanjay Patelb06441a2014-11-21 18:05:59 +0000776 NVT, isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000777 ReplaceNode(SDValue(Node, 0), Result);
778 } else if (StWidth & (StWidth - 1)) {
779 // If not storing a power-of-2 number of bits, expand as two stores.
780 assert(!StVT.isVector() && "Unsupported truncstore!");
781 unsigned RoundWidth = 1 << Log2_32(StWidth);
782 assert(RoundWidth < StWidth);
783 unsigned ExtraWidth = StWidth - RoundWidth;
784 assert(ExtraWidth < RoundWidth);
785 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
786 "Store size not an integral number of bytes!");
787 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
788 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
789 SDValue Lo, Hi;
790 unsigned IncrementSize;
791
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000792 if (DL.isLittleEndian()) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000793 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
794 // Store the bottom RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000795 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemde6fd282012-07-11 08:52:09 +0000796 RoundVT,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000797 isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000798 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000799
800 // Store the remaining ExtraWidth bits.
801 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000802 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000803 DAG.getConstant(IncrementSize, dl,
804 Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000805 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000806 DAG.getConstant(RoundWidth, dl,
Jack Carter5c0af482013-11-19 23:43:22 +0000807 TLI.getShiftAmountTy(Value.getValueType())));
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.
Nadav Rotem2a148662012-07-11 11:02:16 +0000816 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000817 DAG.getConstant(ExtraWidth, dl,
Jack Carter5c0af482013-11-19 23:43:22 +0000818 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000819 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000820 RoundVT, isVolatile, isNonTemporal, Alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000821 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000822
823 // Store the remaining ExtraWidth bits.
824 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000825 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000826 DAG.getConstant(IncrementSize, dl,
827 Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000828 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000829 ST->getPointerInfo().getWithOffset(IncrementSize),
830 ExtraVT, isVolatile, isNonTemporal,
Hal Finkelcc39b672014-07-24 12:16:19 +0000831 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000832 }
833
834 // The order of the stores doesn't matter.
835 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
836 ReplaceNode(SDValue(Node, 0), Result);
837 } else {
Patrik Hagglundd7cdcf82012-12-19 08:28:51 +0000838 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
839 StVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000840 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000841 case TargetLowering::Legal: {
842 unsigned AS = ST->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000843 unsigned Align = ST->getAlignment();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000844 // If this is an unaligned store and the target doesn't support it,
845 // expand it.
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000846 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000847 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000848 unsigned ABIAlignment = DL.getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000849 if (Align < ABIAlignment)
Nadav Rotemde6fd282012-07-11 08:52:09 +0000850 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
851 }
852 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000853 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000854 case TargetLowering::Custom: {
855 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
Hal Finkelcec70132015-02-24 12:59:47 +0000856 if (Res && Res != SDValue(Node, 0))
Nadav Rotem2a148662012-07-11 11:02:16 +0000857 ReplaceNode(SDValue(Node, 0), Res);
858 return;
859 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000860 case TargetLowering::Expand:
861 assert(!StVT.isVector() &&
862 "Vector Stores are handled in LegalizeVectorOps");
863
864 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem2a148662012-07-11 11:02:16 +0000865 assert(TLI.isTypeLegal(StVT) &&
866 "Do not know how to expand this store!");
867 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000868 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000869 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Hal Finkelcc39b672014-07-24 12:16:19 +0000870 isVolatile, isNonTemporal, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000871 ReplaceNode(SDValue(Node, 0), Result);
872 break;
873 }
874 }
875 }
876}
877
878void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
879 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000880 SDValue Chain = LD->getChain(); // The chain.
881 SDValue Ptr = LD->getBasePtr(); // The base pointer.
882 SDValue Value; // The value returned by the load op.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000883 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000884
885 ISD::LoadExtType ExtType = LD->getExtensionType();
886 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000887 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem2a148662012-07-11 11:02:16 +0000888 SDValue RVal = SDValue(Node, 0);
889 SDValue RChain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000890
891 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
892 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000893 case TargetLowering::Legal: {
894 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000895 unsigned Align = LD->getAlignment();
Evan Chengc5735992012-09-18 01:34:40 +0000896 // If this is an unaligned load and the target doesn't support it,
897 // expand it.
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000898 if (!TLI.allowsMisalignedMemoryAccesses(LD->getMemoryVT(), AS, Align)) {
Evan Chengc5735992012-09-18 01:34:40 +0000899 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +0000900 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000901 if (Align < ABIAlignment){
Evan Chengc5735992012-09-18 01:34:40 +0000902 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
903 }
904 }
905 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000906 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000907 case TargetLowering::Custom: {
Evan Chengc5735992012-09-18 01:34:40 +0000908 SDValue Res = TLI.LowerOperation(RVal, DAG);
909 if (Res.getNode()) {
910 RVal = Res;
911 RChain = Res.getValue(1);
912 }
913 break;
Nadav Rotem2a148662012-07-11 11:02:16 +0000914 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000915 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000916 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellard30e2aa52012-12-10 21:41:58 +0000917 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
918 "Can only promote loads to same size type");
Nadav Rotemde6fd282012-07-11 08:52:09 +0000919
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000920 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
Nadav Rotem2a148662012-07-11 11:02:16 +0000921 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
922 RChain = Res.getValue(1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000923 break;
924 }
925 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000926 if (RChain.getNode() != Node) {
927 assert(RVal.getNode() != Node && "Load must be completely replaced");
928 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
929 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Chandler Carruth411fb402014-07-26 05:49:40 +0000930 if (UpdatedNodes) {
931 UpdatedNodes->insert(RVal.getNode());
932 UpdatedNodes->insert(RChain.getNode());
933 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000934 ReplacedNode(Node);
935 }
936 return;
937 }
938
939 EVT SrcVT = LD->getMemoryVT();
940 unsigned SrcWidth = SrcVT.getSizeInBits();
941 unsigned Alignment = LD->getAlignment();
942 bool isVolatile = LD->isVolatile();
943 bool isNonTemporal = LD->isNonTemporal();
Louis Gerbarg67474e32014-07-31 21:45:05 +0000944 bool isInvariant = LD->isInvariant();
Hal Finkelcc39b672014-07-24 12:16:19 +0000945 AAMDNodes AAInfo = LD->getAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000946
947 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
948 // Some targets pretend to have an i1 loading operation, and actually
949 // load an i8. This trick is correct for ZEXTLOAD because the top 7
950 // bits are guaranteed to be zero; it helps the optimizers understand
951 // that these bits are zero. It is also useful for EXTLOAD, since it
952 // tells the optimizers that those bits are undefined. It would be
953 // nice to have an effective generic way of getting these benefits...
954 // Until such a way is found, don't insist on promoting i1 here.
955 (SrcVT != MVT::i1 ||
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000956 TLI.getLoadExtAction(ExtType, Node->getValueType(0), MVT::i1) ==
957 TargetLowering::Promote)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000958 // Promote to a byte-sized load if not loading an integral number of
959 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
960 unsigned NewWidth = SrcVT.getStoreSizeInBits();
961 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
962 SDValue Ch;
963
964 // The extra bits are guaranteed to be zero, since we stored them that
965 // way. A zext load from NVT thus automatically gives zext from SrcVT.
966
967 ISD::LoadExtType NewExtType =
968 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
969
970 SDValue Result =
971 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +0000972 Chain, Ptr, LD->getPointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000973 NVT, isVolatile, isNonTemporal, isInvariant, Alignment,
974 AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000975
976 Ch = Result.getValue(1); // The chain.
977
978 if (ExtType == ISD::SEXTLOAD)
979 // Having the top bits zero doesn't help when sign extending.
980 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
981 Result.getValueType(),
982 Result, DAG.getValueType(SrcVT));
983 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
984 // All the top bits are guaranteed to be zero - inform the optimizers.
985 Result = DAG.getNode(ISD::AssertZext, dl,
986 Result.getValueType(), Result,
987 DAG.getValueType(SrcVT));
988
Nadav Rotem2a148662012-07-11 11:02:16 +0000989 Value = Result;
990 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +0000991 } else if (SrcWidth & (SrcWidth - 1)) {
992 // If not loading a power-of-2 number of bits, expand as two loads.
993 assert(!SrcVT.isVector() && "Unsupported extload!");
994 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
995 assert(RoundWidth < SrcWidth);
996 unsigned ExtraWidth = SrcWidth - RoundWidth;
997 assert(ExtraWidth < RoundWidth);
998 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
999 "Load size not an integral number of bytes!");
1000 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
1001 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
1002 SDValue Lo, Hi, Ch;
1003 unsigned IncrementSize;
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001004 auto &DL = DAG.getDataLayout();
Nadav Rotemde6fd282012-07-11 08:52:09 +00001005
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001006 if (DL.isLittleEndian()) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001007 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1008 // Load the bottom RoundWidth bits.
1009 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +00001010 Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001011 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001012 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001013
1014 // Load the remaining ExtraWidth bits.
1015 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001016 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001017 DAG.getConstant(IncrementSize, dl,
1018 Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +00001019 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001020 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001021 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001022 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001023
1024 // Build a factor node to remember that this load is independent of
1025 // the other one.
1026 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1027 Hi.getValue(1));
1028
1029 // Move the top bits to the right place.
1030 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001031 DAG.getConstant(RoundWidth, dl,
Jack Carter5c0af482013-11-19 23:43:22 +00001032 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001033
1034 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001035 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001036 } else {
1037 // Big endian - avoid unaligned loads.
1038 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1039 // Load the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +00001040 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001041 LD->getPointerInfo(), RoundVT, isVolatile,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001042 isNonTemporal, isInvariant, Alignment, AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001043
1044 // Load the remaining ExtraWidth bits.
1045 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001046 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001047 DAG.getConstant(IncrementSize, dl,
1048 Ptr.getValueType()));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001049 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem2a148662012-07-11 11:02:16 +00001050 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001051 LD->getPointerInfo().getWithOffset(IncrementSize),
Louis Gerbarg67474e32014-07-31 21:45:05 +00001052 ExtraVT, isVolatile, isNonTemporal, isInvariant,
Hal Finkelcc39b672014-07-24 12:16:19 +00001053 MinAlign(Alignment, IncrementSize), AAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001054
1055 // Build a factor node to remember that this load is independent of
1056 // the other one.
1057 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1058 Hi.getValue(1));
1059
1060 // Move the top bits to the right place.
1061 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001062 DAG.getConstant(ExtraWidth, dl,
Jack Carter5c0af482013-11-19 23:43:22 +00001063 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001064
1065 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001066 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001067 }
1068
Nadav Rotem2a148662012-07-11 11:02:16 +00001069 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001070 } else {
1071 bool isCustom = false;
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +00001072 switch (TLI.getLoadExtAction(ExtType, Node->getValueType(0),
1073 SrcVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001074 default: llvm_unreachable("This action is not supported yet!");
1075 case TargetLowering::Custom:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001076 isCustom = true;
1077 // FALLTHROUGH
Nadav Rotem2a148662012-07-11 11:02:16 +00001078 case TargetLowering::Legal: {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001079 Value = SDValue(Node, 0);
1080 Chain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001081
Matt Arsenault95b714c2014-03-11 00:01:25 +00001082 if (isCustom) {
1083 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1084 if (Res.getNode()) {
1085 Value = Res;
1086 Chain = Res.getValue(1);
1087 }
1088 } else {
1089 // If this is an unaligned load and the target doesn't support
1090 // it, expand it.
1091 EVT MemVT = LD->getMemoryVT();
1092 unsigned AS = LD->getAddressSpace();
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001093 unsigned Align = LD->getAlignment();
1094 if (!TLI.allowsMisalignedMemoryAccesses(MemVT, AS, Align)) {
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001095 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001096 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty);
Matt Arsenault6f2a5262014-07-27 17:46:40 +00001097 if (Align < ABIAlignment){
Sanjay Patelb06441a2014-11-21 18:05:59 +00001098 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, Value, Chain);
Matt Arsenault95b714c2014-03-11 00:01:25 +00001099 }
1100 }
1101 }
1102 break;
Nadav Rotem2a148662012-07-11 11:02:16 +00001103 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001104 case TargetLowering::Expand:
Matt Arsenaultbd223422015-01-14 01:35:17 +00001105 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, Node->getValueType(0), SrcVT)) {
1106 // If the source type is not legal, see if there is a legal extload to
1107 // an intermediate type that we can then extend further.
1108 EVT LoadVT = TLI.getRegisterType(SrcVT.getSimpleVT());
1109 if (TLI.isTypeLegal(SrcVT) || // Same as SrcVT == LoadVT?
1110 TLI.isLoadExtLegal(ExtType, LoadVT, SrcVT)) {
1111 // If we are loading a legal type, this is a non-extload followed by a
1112 // full extend.
1113 ISD::LoadExtType MidExtType =
1114 (LoadVT == SrcVT) ? ISD::NON_EXTLOAD : ExtType;
1115
1116 SDValue Load = DAG.getExtLoad(MidExtType, dl, LoadVT, Chain, Ptr,
1117 SrcVT, LD->getMemOperand());
1118 unsigned ExtendOp =
1119 ISD::getExtForLoadExtType(SrcVT.isFloatingPoint(), ExtType);
1120 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1121 Chain = Load.getValue(1);
Matt Arsenault95b714c2014-03-11 00:01:25 +00001122 break;
Matt Arsenault95b714c2014-03-11 00:01:25 +00001123 }
Matt Arsenault95b714c2014-03-11 00:01:25 +00001124 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001125
Matt Arsenault95b714c2014-03-11 00:01:25 +00001126 assert(!SrcVT.isVector() &&
1127 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemde6fd282012-07-11 08:52:09 +00001128
Matt Arsenault95b714c2014-03-11 00:01:25 +00001129 // FIXME: This does not work for vectors on most targets. Sign-
1130 // and zero-extend operations are currently folded into extending
1131 // loads, whether they are legal or not, and then we end up here
1132 // without any support for legalizing them.
1133 assert(ExtType != ISD::EXTLOAD &&
1134 "EXTLOAD should always be supported!");
1135 // Turn the unsupported load into an EXTLOAD followed by an
1136 // explicit zero/sign extend inreg.
1137 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl,
1138 Node->getValueType(0),
1139 Chain, Ptr, SrcVT,
1140 LD->getMemOperand());
1141 SDValue ValRes;
1142 if (ExtType == ISD::SEXTLOAD)
1143 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1144 Result.getValueType(),
1145 Result, DAG.getValueType(SrcVT));
1146 else
Sanjay Patelb06441a2014-11-21 18:05:59 +00001147 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Matt Arsenault95b714c2014-03-11 00:01:25 +00001148 Value = ValRes;
1149 Chain = Result.getValue(1);
1150 break;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001151 }
1152 }
1153
1154 // Since loads produce two values, make sure to remember that we legalized
1155 // both of them.
Nadav Rotem2a148662012-07-11 11:02:16 +00001156 if (Chain.getNode() != Node) {
1157 assert(Value.getNode() != Node && "Load must be completely replaced");
1158 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1159 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00001160 if (UpdatedNodes) {
1161 UpdatedNodes->insert(Value.getNode());
1162 UpdatedNodes->insert(Chain.getNode());
1163 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001164 ReplacedNode(Node);
1165 }
1166}
1167
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001168/// Return a legal replacement for the given operation, with all legal operands.
Dan Gohman198b7ff2011-11-03 21:49:52 +00001169void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
Chandler Carruthb1432742014-07-28 17:55:07 +00001170 DEBUG(dbgs() << "\nLegalizing: "; Node->dump(&DAG));
1171
Dan Gohman198b7ff2011-11-03 21:49:52 +00001172 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1173 return;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001174
Pete Cooperaf61ac72015-06-26 19:23:20 +00001175#ifndef NDEBUG
Eli Friedman5e0d1502009-05-24 02:46:31 +00001176 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001177 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1178 TargetLowering::TypeLegal &&
Eli Friedman5e0d1502009-05-24 02:46:31 +00001179 "Unexpected illegal type!");
1180
Pete Cooper8fc121d2015-06-26 19:08:33 +00001181 for (const SDValue &Op : Node->op_values())
Dan Gohmane49e7422011-07-15 22:39:09 +00001182 assert((TLI.getTypeAction(*DAG.getContext(),
Pete Cooper8fc121d2015-06-26 19:08:33 +00001183 Op.getValueType()) == TargetLowering::TypeLegal ||
1184 Op.getOpcode() == ISD::TargetConstant) &&
1185 "Unexpected illegal type!");
Pete Cooperaf61ac72015-06-26 19:23:20 +00001186#endif
Chris Lattnerdc750592005-01-07 07:47:09 +00001187
Eli Friedman21d349b2009-05-27 01:25:56 +00001188 // Figure out the correct action; the way to query this varies by opcode
Bill Wendlingfb4ee9b2011-01-26 22:21:35 +00001189 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman21d349b2009-05-27 01:25:56 +00001190 bool SimpleFinishLegalizing = true;
Chris Lattnerdc750592005-01-07 07:47:09 +00001191 switch (Node->getOpcode()) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001192 case ISD::INTRINSIC_W_CHAIN:
1193 case ISD::INTRINSIC_WO_CHAIN:
1194 case ISD::INTRINSIC_VOID:
Eli Friedman21d349b2009-05-27 01:25:56 +00001195 case ISD::STACKSAVE:
Owen Anderson9f944592009-08-11 20:47:22 +00001196 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman21d349b2009-05-27 01:25:56 +00001197 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00001198 case ISD::VAARG:
1199 Action = TLI.getOperationAction(Node->getOpcode(),
1200 Node->getValueType(0));
1201 if (Action != TargetLowering::Promote)
1202 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1203 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00001204 case ISD::FP_TO_FP16:
Eli Friedman21d349b2009-05-27 01:25:56 +00001205 case ISD::SINT_TO_FP:
1206 case ISD::UINT_TO_FP:
1207 case ISD::EXTRACT_VECTOR_ELT:
1208 Action = TLI.getOperationAction(Node->getOpcode(),
1209 Node->getOperand(0).getValueType());
1210 break;
1211 case ISD::FP_ROUND_INREG:
1212 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001213 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00001214 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1215 break;
1216 }
Eli Friedman342e8df2011-08-24 20:50:09 +00001217 case ISD::ATOMIC_STORE: {
1218 Action = TLI.getOperationAction(Node->getOpcode(),
1219 Node->getOperand(2).getValueType());
1220 break;
1221 }
Eli Friedmane1bc3792009-05-28 03:06:16 +00001222 case ISD::SELECT_CC:
1223 case ISD::SETCC:
1224 case ISD::BR_CC: {
1225 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1226 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1227 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001228 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedmane1bc3792009-05-28 03:06:16 +00001229 ISD::CondCode CCCode =
1230 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1231 Action = TLI.getCondCodeAction(CCCode, OpVT);
1232 if (Action == TargetLowering::Legal) {
1233 if (Node->getOpcode() == ISD::SELECT_CC)
1234 Action = TLI.getOperationAction(Node->getOpcode(),
1235 Node->getValueType(0));
1236 else
1237 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1238 }
1239 break;
1240 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001241 case ISD::LOAD:
1242 case ISD::STORE:
Eli Friedman5df72022009-05-28 03:56:57 +00001243 // FIXME: Model these properly. LOAD and STORE are complicated, and
1244 // STORE expects the unlegalized operand in some cases.
1245 SimpleFinishLegalizing = false;
1246 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001247 case ISD::CALLSEQ_START:
1248 case ISD::CALLSEQ_END:
Eli Friedman5df72022009-05-28 03:56:57 +00001249 // FIXME: This shouldn't be necessary. These nodes have special properties
1250 // dealing with the recursive nature of legalization. Removing this
1251 // special case should be done as part of making LegalizeDAG non-recursive.
1252 SimpleFinishLegalizing = false;
1253 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001254 case ISD::EXTRACT_ELEMENT:
1255 case ISD::FLT_ROUNDS_:
Eli Friedman21d349b2009-05-27 01:25:56 +00001256 case ISD::FPOWI:
1257 case ISD::MERGE_VALUES:
1258 case ISD::EH_RETURN:
1259 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00001260 case ISD::EH_SJLJ_SETJMP:
1261 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmand6f28342009-05-27 03:33:44 +00001262 // These operations lie about being legal: when they claim to be legal,
1263 // they should actually be expanded.
Eli Friedman21d349b2009-05-27 01:25:56 +00001264 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1265 if (Action == TargetLowering::Legal)
1266 Action = TargetLowering::Expand;
1267 break;
Duncan Sandsa0984362011-09-06 13:37:06 +00001268 case ISD::INIT_TRAMPOLINE:
1269 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman21d349b2009-05-27 01:25:56 +00001270 case ISD::FRAMEADDR:
1271 case ISD::RETURNADDR:
Eli Friedman2892d822009-05-27 12:20:41 +00001272 // These operations lie about being legal: when they claim to be legal,
1273 // they should actually be custom-lowered.
1274 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1275 if (Action == TargetLowering::Legal)
1276 Action = TargetLowering::Custom;
Eli Friedman21d349b2009-05-27 01:25:56 +00001277 break;
Renato Golinc7aea402014-05-06 16:51:25 +00001278 case ISD::READ_REGISTER:
1279 case ISD::WRITE_REGISTER:
1280 // Named register is legal in the DAG, but blocked by register name
1281 // selection if not implemented by target (to chose the correct register)
1282 // They'll be converted to Copy(To/From)Reg.
1283 Action = TargetLowering::Legal;
1284 break;
Shuxin Yangcdde0592012-10-19 20:11:16 +00001285 case ISD::DEBUGTRAP:
1286 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1287 if (Action == TargetLowering::Expand) {
1288 // replace ISD::DEBUGTRAP with ISD::TRAP
1289 SDValue NewVal;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001290 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yang1479fcd2012-10-19 23:00:20 +00001291 Node->getOperand(0));
Shuxin Yangcdde0592012-10-19 20:11:16 +00001292 ReplaceNode(Node, NewVal.getNode());
1293 LegalizeOp(NewVal.getNode());
1294 return;
1295 }
1296 break;
1297
Chris Lattnerdc750592005-01-07 07:47:09 +00001298 default:
Chris Lattner3eb86932005-05-14 06:34:48 +00001299 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001300 Action = TargetLowering::Legal;
1301 } else {
1302 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattner3eb86932005-05-14 06:34:48 +00001303 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001304 break;
1305 }
1306
1307 if (SimpleFinishLegalizing) {
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001308 SDNode *NewNode = Node;
Eli Friedman21d349b2009-05-27 01:25:56 +00001309 switch (Node->getOpcode()) {
1310 default: break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001311 case ISD::SHL:
1312 case ISD::SRL:
1313 case ISD::SRA:
1314 case ISD::ROTL:
1315 case ISD::ROTR:
1316 // Legalizing shifts/rotates requires adjusting the shift amount
1317 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001318 if (!Node->getOperand(1).getValueType().isVector()) {
1319 SDValue SAO =
1320 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1321 Node->getOperand(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001322 HandleSDNode Handle(SAO);
1323 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001324 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1325 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001326 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001327 break;
Dan Gohman4906f732009-08-18 23:36:17 +00001328 case ISD::SRL_PARTS:
1329 case ISD::SRA_PARTS:
1330 case ISD::SHL_PARTS:
1331 // Legalizing shifts/rotates requires adjusting the shift amount
1332 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001333 if (!Node->getOperand(2).getValueType().isVector()) {
1334 SDValue SAO =
1335 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1336 Node->getOperand(2));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001337 HandleSDNode Handle(SAO);
1338 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001339 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1340 Node->getOperand(1),
1341 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001342 }
Dan Gohman2fa67c92009-08-18 23:52:48 +00001343 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001344 }
1345
Dan Gohman198b7ff2011-11-03 21:49:52 +00001346 if (NewNode != Node) {
Chandler Carruth411fb402014-07-26 05:49:40 +00001347 ReplaceNode(Node, NewNode);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001348 Node = NewNode;
1349 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001350 switch (Action) {
1351 case TargetLowering::Legal:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001352 return;
Nadav Rotem2a148662012-07-11 11:02:16 +00001353 case TargetLowering::Custom: {
Eli Friedman21d349b2009-05-27 01:25:56 +00001354 // FIXME: The handling for custom lowering with multiple results is
1355 // a complete mess.
Nadav Rotem2a148662012-07-11 11:02:16 +00001356 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1357 if (Res.getNode()) {
Chandler Carruth98655fa2014-07-26 05:52:51 +00001358 if (!(Res.getNode() != Node || Res.getResNo() != 0))
1359 return;
1360
1361 if (Node->getNumValues() == 1) {
1362 // We can just directly replace this node with the lowered value.
1363 ReplaceNode(SDValue(Node, 0), Res);
1364 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001365 }
Chandler Carruth98655fa2014-07-26 05:52:51 +00001366
1367 SmallVector<SDValue, 8> ResultVals;
1368 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1369 ResultVals.push_back(Res.getValue(i));
1370 ReplaceNode(Node, ResultVals.data());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001371 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001372 }
Nadav Rotem2a148662012-07-11 11:02:16 +00001373 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001374 // FALL THROUGH
1375 case TargetLowering::Expand:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001376 ExpandNode(Node);
1377 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001378 case TargetLowering::Promote:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001379 PromoteNode(Node);
1380 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001381 }
1382 }
1383
1384 switch (Node->getOpcode()) {
1385 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001386#ifndef NDEBUG
David Greeneae4f2662010-01-05 01:24:53 +00001387 dbgs() << "NODE: ";
1388 Node->dump( &DAG);
1389 dbgs() << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001390#endif
Craig Topperee4dab52012-02-05 08:31:47 +00001391 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendlingf359fed2007-11-13 00:44:25 +00001392
Dan Gohman198b7ff2011-11-03 21:49:52 +00001393 case ISD::CALLSEQ_START:
Dan Gohman9b9c9702011-10-29 00:41:52 +00001394 case ISD::CALLSEQ_END:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001395 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001396 case ISD::LOAD: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001397 return LegalizeLoadOps(Node);
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001398 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001399 case ISD::STORE: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001400 return LegalizeStoreOps(Node);
Evan Cheng31d15fa2005-12-23 07:29:34 +00001401 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001402 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001403}
1404
Eli Friedman40afdb62009-05-23 22:37:25 +00001405SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1406 SDValue Vec = Op.getOperand(0);
1407 SDValue Idx = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001408 SDLoc dl(Op);
Hal Finkel90adf0f2014-03-30 15:10:18 +00001409
1410 // Before we generate a new store to a temporary stack slot, see if there is
1411 // already one that we can use. There often is because when we scalarize
1412 // vector operations (using SelectionDAG::UnrollVectorOp for example) a whole
1413 // series of EXTRACT_VECTOR_ELT nodes are generated, one for each element in
1414 // the vector. If all are expanded here, we don't want one store per vector
1415 // element.
1416 SDValue StackPtr, Ch;
1417 for (SDNode::use_iterator UI = Vec.getNode()->use_begin(),
1418 UE = Vec.getNode()->use_end(); UI != UE; ++UI) {
1419 SDNode *User = *UI;
1420 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(User)) {
1421 if (ST->isIndexed() || ST->isTruncatingStore() ||
1422 ST->getValue() != Vec)
1423 continue;
1424
1425 // Make sure that nothing else could have stored into the destination of
1426 // this store.
1427 if (!ST->getChain().reachesChainWithoutSideEffects(DAG.getEntryNode()))
1428 continue;
1429
1430 StackPtr = ST->getBasePtr();
1431 Ch = SDValue(ST, 0);
1432 break;
1433 }
1434 }
1435
1436 if (!Ch.getNode()) {
1437 // Store the value to a temporary stack slot, then LOAD the returned part.
1438 StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1439 Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1440 MachinePointerInfo(), false, false, 0);
1441 }
Eli Friedman40afdb62009-05-23 22:37:25 +00001442
1443 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +00001444 unsigned EltSize =
1445 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman40afdb62009-05-23 22:37:25 +00001446 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001447 DAG.getConstant(EltSize, SDLoc(Vec), Idx.getValueType()));
Eli Friedman40afdb62009-05-23 22:37:25 +00001448
Mehdi Amini44ede332015-07-09 02:09:04 +00001449 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy(DAG.getDataLayout()));
Eli Friedman40afdb62009-05-23 22:37:25 +00001450 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1451
Ahmed Bougachac8097612015-03-09 22:51:05 +00001452 SDValue NewLoad;
1453
Eli Friedman2b77eef2009-07-09 22:01:03 +00001454 if (Op.getValueType().isVector())
Ahmed Bougachac8097612015-03-09 22:51:05 +00001455 NewLoad = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,
1456 MachinePointerInfo(), false, false, false, 0);
1457 else
1458 NewLoad = DAG.getExtLoad(
1459 ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr, MachinePointerInfo(),
1460 Vec.getValueType().getVectorElementType(), false, false, false, 0);
1461
1462 // Replace the chain going out of the store, by the one out of the load.
1463 DAG.ReplaceAllUsesOfValueWith(Ch, SDValue(NewLoad.getNode(), 1));
1464
1465 // We introduced a cycle though, so update the loads operands, making sure
1466 // to use the original store's chain as an incoming chain.
1467 SmallVector<SDValue, 6> NewLoadOperands(NewLoad->op_begin(),
1468 NewLoad->op_end());
1469 NewLoadOperands[0] = Ch;
1470 NewLoad =
1471 SDValue(DAG.UpdateNodeOperands(NewLoad.getNode(), NewLoadOperands), 0);
1472 return NewLoad;
Eli Friedman40afdb62009-05-23 22:37:25 +00001473}
1474
David Greenebab5e6e2011-01-26 19:13:22 +00001475SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1476 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1477
1478 SDValue Vec = Op.getOperand(0);
1479 SDValue Part = Op.getOperand(1);
1480 SDValue Idx = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001481 SDLoc dl(Op);
David Greenebab5e6e2011-01-26 19:13:22 +00001482
1483 // Store the value to a temporary stack slot, then LOAD the returned part.
1484
1485 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1486 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1487 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1488
1489 // First store the whole vector.
1490 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1491 false, false, 0);
1492
1493 // Then store the inserted part.
1494
1495 // Add the offset to the index.
1496 unsigned EltSize =
1497 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1498
1499 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001500 DAG.getConstant(EltSize, SDLoc(Vec), Idx.getValueType()));
Mehdi Amini44ede332015-07-09 02:09:04 +00001501 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy(DAG.getDataLayout()));
David Greenebab5e6e2011-01-26 19:13:22 +00001502
1503 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1504 StackPtr);
1505
1506 // Store the subvector.
Owen Andersonb5a25992014-11-18 20:50:19 +00001507 Ch = DAG.getStore(Ch, dl, Part, SubStackPtr,
David Greenebab5e6e2011-01-26 19:13:22 +00001508 MachinePointerInfo(), false, false, 0);
1509
1510 // Finally, load the updated vector.
1511 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001512 false, false, false, 0);
David Greenebab5e6e2011-01-26 19:13:22 +00001513}
1514
Eli Friedmanaee3f622009-06-06 07:04:42 +00001515SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1516 // We can't handle this case efficiently. Allocate a sufficiently
1517 // aligned object on the stack, store each element into it, then load
1518 // the result as a vector.
1519 // Create the stack frame object.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001520 EVT VT = Node->getValueType(0);
Dale Johannesenb91eba32009-11-21 00:53:23 +00001521 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001522 SDLoc dl(Node);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001523 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001524 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattner1ffcf522010-09-21 16:36:31 +00001525 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001526
1527 // Emit a store of each element to the stack slot.
1528 SmallVector<SDValue, 8> Stores;
Dan Gohman9b80f862010-02-25 15:20:39 +00001529 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedmanaee3f622009-06-06 07:04:42 +00001530 // Store (in the right endianness) the elements to memory.
1531 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1532 // Ignore undef elements.
1533 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1534
1535 unsigned Offset = TypeByteSize*i;
1536
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001537 SDValue Idx = DAG.getConstant(Offset, dl, FIPtr.getValueType());
Eli Friedmanaee3f622009-06-06 07:04:42 +00001538 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1539
Dan Gohman2a8e3772010-02-25 20:30:49 +00001540 // If the destination vector element type is narrower than the source
1541 // element type, only store the bits necessary.
1542 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesenb91eba32009-11-21 00:53:23 +00001543 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001544 Node->getOperand(i), Idx,
1545 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001546 EltVT, false, false, 0));
Mon P Wang586d9972010-01-24 00:05:03 +00001547 } else
Jim Grosbach9b7755f2010-07-02 17:41:59 +00001548 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001549 Node->getOperand(i), Idx,
1550 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001551 false, false, 0));
Eli Friedmanaee3f622009-06-06 07:04:42 +00001552 }
1553
1554 SDValue StoreChain;
1555 if (!Stores.empty()) // Not all undef elements?
Craig Topper48d114b2014-04-26 18:35:24 +00001556 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001557 else
1558 StoreChain = DAG.getEntryNode();
1559
1560 // Result is a load from the stack slot.
Stephen Lincfe7f352013-07-08 00:37:03 +00001561 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001562 false, false, false, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001563}
1564
Eli Friedman2892d822009-05-27 12:20:41 +00001565SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001566 SDLoc dl(Node);
Eli Friedman2892d822009-05-27 12:20:41 +00001567 SDValue Tmp1 = Node->getOperand(0);
1568 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands4c55f762010-03-12 11:45:06 +00001569
1570 // Get the sign bit of the RHS. First obtain a value that has the same
1571 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman2892d822009-05-27 12:20:41 +00001572 SDValue SignBit;
Duncan Sands4c55f762010-03-12 11:45:06 +00001573 EVT FloatVT = Tmp2.getValueType();
1574 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohmane49e7422011-07-15 22:39:09 +00001575 if (TLI.isTypeLegal(IVT)) {
Duncan Sands4c55f762010-03-12 11:45:06 +00001576 // Convert to an integer with the same sign bit.
Wesley Peck527da1b2010-11-23 03:31:01 +00001577 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman2892d822009-05-27 12:20:41 +00001578 } else {
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001579 auto &DL = DAG.getDataLayout();
Duncan Sands4c55f762010-03-12 11:45:06 +00001580 // Store the float to memory, then load the sign part out as an integer.
Mehdi Amini44ede332015-07-09 02:09:04 +00001581 MVT LoadTy = TLI.getPointerTy(DL);
Duncan Sands4c55f762010-03-12 11:45:06 +00001582 // First create a temporary that is aligned for both the load and store.
1583 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1584 // Then store the float to it.
Eli Friedman2892d822009-05-27 12:20:41 +00001585 SDValue Ch =
Chris Lattner676c61d2010-09-21 18:41:36 +00001586 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00001587 false, false, 0);
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001588 if (DL.isBigEndian()) {
Duncan Sands4c55f762010-03-12 11:45:06 +00001589 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1590 // Load out a legal integer with the same sign bit as the float.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001591 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001592 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001593 } else { // Little endian
1594 SDValue LoadPtr = StackPtr;
1595 // The float may be wider than the integer we are going to load. Advance
1596 // the pointer so that the loaded integer will contain the sign bit.
1597 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1598 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
Jack Carter5c0af482013-11-19 23:43:22 +00001599 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(), LoadPtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001600 DAG.getConstant(ByteOffset, dl,
1601 LoadPtr.getValueType()));
Duncan Sands4c55f762010-03-12 11:45:06 +00001602 // Load a legal integer containing the sign bit.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001603 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001604 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001605 // Move the sign bit to the top bit of the loaded integer.
1606 unsigned BitShift = LoadTy.getSizeInBits() -
1607 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1608 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1609 if (BitShift)
1610 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001611 DAG.getConstant(BitShift, dl,
Owen Andersonb2c80da2011-02-25 21:41:48 +00001612 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands4c55f762010-03-12 11:45:06 +00001613 }
Eli Friedman2892d822009-05-27 12:20:41 +00001614 }
Duncan Sands4c55f762010-03-12 11:45:06 +00001615 // Now get the sign bit proper, by seeing whether the value is negative.
Matt Arsenault758659232013-05-18 00:21:46 +00001616 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001617 SignBit,
1618 DAG.getConstant(0, dl, SignBit.getValueType()),
Duncan Sands4c55f762010-03-12 11:45:06 +00001619 ISD::SETLT);
Eli Friedman2892d822009-05-27 12:20:41 +00001620 // Get the absolute value of the result.
1621 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1622 // Select between the nabs and abs value based on the sign bit of
1623 // the input.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00001624 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
Jack Carter5c0af482013-11-19 23:43:22 +00001625 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1626 AbsVal);
Eli Friedman2892d822009-05-27 12:20:41 +00001627}
1628
Eli Friedman2892d822009-05-27 12:20:41 +00001629void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1630 SmallVectorImpl<SDValue> &Results) {
1631 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1632 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1633 " not tell us which reg is the stack pointer!");
Andrew Trickef9de2a2013-05-25 02:42:55 +00001634 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001635 EVT VT = Node->getValueType(0);
Eli Friedman2892d822009-05-27 12:20:41 +00001636 SDValue Tmp1 = SDValue(Node, 0);
1637 SDValue Tmp2 = SDValue(Node, 1);
1638 SDValue Tmp3 = Node->getOperand(2);
1639 SDValue Chain = Tmp1.getOperand(0);
1640
1641 // Chain the dynamic stack allocation so that it doesn't modify the stack
1642 // pointer when other instructions are using the stack.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001643 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, dl, true), dl);
Eli Friedman2892d822009-05-27 12:20:41 +00001644
1645 SDValue Size = Tmp2.getOperand(1);
1646 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1647 Chain = SP.getValue(1);
1648 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Eric Christopherd9134482014-08-04 21:25:23 +00001649 unsigned StackAlign =
Eric Christopher85de8f92014-10-09 01:35:27 +00001650 DAG.getSubtarget().getFrameLowering()->getStackAlignment();
Eli Friedman2892d822009-05-27 12:20:41 +00001651 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Elena Demikhovsky82a46eb2013-10-14 07:26:51 +00001652 if (Align > StackAlign)
1653 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001654 DAG.getConstant(-(uint64_t)Align, dl, VT));
Eli Friedman2892d822009-05-27 12:20:41 +00001655 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1656
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001657 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, dl, true),
1658 DAG.getIntPtrConstant(0, dl, true), SDValue(), dl);
Eli Friedman2892d822009-05-27 12:20:41 +00001659
1660 Results.push_back(Tmp1);
1661 Results.push_back(Tmp2);
1662}
1663
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001664/// Legalize a SETCC with given LHS and RHS and condition code CC on the current
1665/// target.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001666///
Tom Stellard08690a12013-09-28 02:50:32 +00001667/// If the SETCC has been legalized using AND / OR, then the legalized node
Daniel Sandersedc071b2013-11-21 13:24:49 +00001668/// will be stored in LHS. RHS and CC will be set to SDValue(). NeedInvert
1669/// will be set to false.
1670///
Tom Stellard08690a12013-09-28 02:50:32 +00001671/// If the SETCC has been legalized by using getSetCCSwappedOperands(),
Daniel Sandersedc071b2013-11-21 13:24:49 +00001672/// then the values of LHS and RHS will be swapped, CC will be set to the
1673/// new condition, and NeedInvert will be set to false.
1674///
1675/// If the SETCC has been legalized using the inverse condcode, then LHS and
1676/// RHS will be unchanged, CC will set to the inverted condcode, and NeedInvert
1677/// will be set to true. The caller must invert the result of the SETCC with
Pete Cooper7fd1d722014-05-12 23:26:58 +00001678/// SelectionDAG::getLogicalNOT() or take equivalent action to swap the effect
1679/// of a true/false result.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001680///
Tom Stellard08690a12013-09-28 02:50:32 +00001681/// \returns true if the SetCC has been legalized, false if it hasn't.
1682bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001683 SDValue &LHS, SDValue &RHS,
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001684 SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +00001685 bool &NeedInvert,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001686 SDLoc dl) {
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001687 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001688 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
Daniel Sandersedc071b2013-11-21 13:24:49 +00001689 NeedInvert = false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001690 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topperee4dab52012-02-05 08:31:47 +00001691 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001692 case TargetLowering::Legal:
1693 // Nothing to do.
1694 break;
1695 case TargetLowering::Expand: {
Tom Stellardcd428182013-09-28 02:50:38 +00001696 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1697 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1698 std::swap(LHS, RHS);
1699 CC = DAG.getCondCode(InvCC);
1700 return true;
1701 }
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001702 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1703 unsigned Opc = 0;
1704 switch (CCCode) {
Craig Topperee4dab52012-02-05 08:31:47 +00001705 default: llvm_unreachable("Don't know how to expand this condition!");
Stephen Lincfe7f352013-07-08 00:37:03 +00001706 case ISD::SETO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001707 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1708 == TargetLowering::Legal
1709 && "If SETO is expanded, SETOEQ must be legal!");
1710 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
Stephen Lincfe7f352013-07-08 00:37:03 +00001711 case ISD::SETUO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001712 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1713 == TargetLowering::Legal
1714 && "If SETUO is expanded, SETUNE must be legal!");
1715 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1716 case ISD::SETOEQ:
1717 case ISD::SETOGT:
1718 case ISD::SETOGE:
1719 case ISD::SETOLT:
1720 case ISD::SETOLE:
Stephen Lincfe7f352013-07-08 00:37:03 +00001721 case ISD::SETONE:
1722 case ISD::SETUEQ:
1723 case ISD::SETUNE:
1724 case ISD::SETUGT:
1725 case ISD::SETUGE:
1726 case ISD::SETULT:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001727 case ISD::SETULE:
1728 // If we are floating point, assign and break, otherwise fall through.
1729 if (!OpVT.isInteger()) {
1730 // We can use the 4th bit to tell if we are the unordered
1731 // or ordered version of the opcode.
1732 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1733 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1734 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1735 break;
1736 }
1737 // Fallthrough if we are unsigned integer.
1738 case ISD::SETLE:
1739 case ISD::SETGT:
1740 case ISD::SETGE:
1741 case ISD::SETLT:
Tom Stellardcd428182013-09-28 02:50:38 +00001742 // We only support using the inverted operation, which is computed above
1743 // and not a different manner of supporting expanding these cases.
1744 llvm_unreachable("Don't know how to expand this condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00001745 case ISD::SETNE:
1746 case ISD::SETEQ:
1747 // Try inverting the result of the inverse condition.
1748 InvCC = CCCode == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ;
1749 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1750 CC = DAG.getCondCode(InvCC);
1751 NeedInvert = true;
1752 return true;
1753 }
1754 // If inverting the condition didn't work then we have no means to expand
1755 // the condition.
1756 llvm_unreachable("Don't know how to expand this condition!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001757 }
Stephen Lincfe7f352013-07-08 00:37:03 +00001758
Micah Villmow0242b9b2012-10-10 20:50:51 +00001759 SDValue SetCC1, SetCC2;
1760 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1761 // If we aren't the ordered or unorder operation,
1762 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1763 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1764 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1765 } else {
1766 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1767 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1768 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1769 }
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001770 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001771 RHS = SDValue();
1772 CC = SDValue();
Tom Stellard08690a12013-09-28 02:50:32 +00001773 return true;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001774 }
1775 }
Tom Stellard08690a12013-09-28 02:50:32 +00001776 return false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001777}
1778
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001779/// Emit a store/load combination to the stack. This stores
Chris Lattner87bc3e72008-01-16 07:45:30 +00001780/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1781/// a load from the stack slot to DestVT, extending it if needed.
1782/// The resultant code need not be legal.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001783SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001784 EVT SlotVT,
1785 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001786 SDLoc dl) {
Chris Lattner36e663d2005-12-23 00:16:34 +00001787 // Create the stack frame object.
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001788 unsigned SrcAlign = DAG.getDataLayout().getPrefTypeAlignment(
1789 SrcOp.getValueType().getTypeForEVT(*DAG.getContext()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001790 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001791
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001792 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1793 int SPFI = StackPtrFI->getIndex();
Chris Lattner6963c1f2010-09-21 17:42:31 +00001794 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001795
Duncan Sands13237ac2008-06-06 12:08:01 +00001796 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1797 unsigned SlotSize = SlotVT.getSizeInBits();
1798 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattner229907c2011-07-18 04:54:35 +00001799 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00001800 unsigned DestAlign = DAG.getDataLayout().getPrefTypeAlignment(DestType);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001801
Chris Lattner87bc3e72008-01-16 07:45:30 +00001802 // Emit a store to the stack slot. Use a truncstore if the input value is
1803 // later than DestVT.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001804 SDValue Store;
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001805
Chris Lattner87bc3e72008-01-16 07:45:30 +00001806 if (SrcSize > SlotSize)
Dale Johannesena02e45c2009-02-02 22:12:50 +00001807 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001808 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001809 else {
1810 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesena02e45c2009-02-02 22:12:50 +00001811 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001812 PtrInfo, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001813 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001814
Chris Lattner36e663d2005-12-23 00:16:34 +00001815 // Result is a load from the stack slot.
Chris Lattner87bc3e72008-01-16 07:45:30 +00001816 if (SlotSize == DestSize)
Chris Lattner6963c1f2010-09-21 17:42:31 +00001817 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001818 false, false, false, DestAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001819
Chris Lattner87bc3e72008-01-16 07:45:30 +00001820 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastings81c43062011-02-16 16:23:55 +00001821 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Louis Gerbarg67474e32014-07-31 21:45:05 +00001822 PtrInfo, SlotVT, false, false, false, DestAlign);
Chris Lattner36e663d2005-12-23 00:16:34 +00001823}
1824
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001825SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001826 SDLoc dl(Node);
Chris Lattner6be79822006-04-04 17:23:26 +00001827 // Create a vector sized/aligned stack slot, store the value to element #0,
1828 // then load the whole vector back out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001829 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman2d489b52008-02-06 22:27:42 +00001830
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001831 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1832 int SPFI = StackPtrFI->getIndex();
1833
Duncan Sandse4ff21b2009-04-18 20:16:54 +00001834 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1835 StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001836 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +00001837 Node->getValueType(0).getVectorElementType(),
1838 false, false, 0);
Dale Johannesena02e45c2009-02-02 22:12:50 +00001839 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001840 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001841 false, false, false, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00001842}
1843
Hal Finkelb811b6d2014-03-31 19:42:55 +00001844static bool
1845ExpandBVWithShuffles(SDNode *Node, SelectionDAG &DAG,
1846 const TargetLowering &TLI, SDValue &Res) {
1847 unsigned NumElems = Node->getNumOperands();
1848 SDLoc dl(Node);
1849 EVT VT = Node->getValueType(0);
1850
1851 // Try to group the scalars into pairs, shuffle the pairs together, then
1852 // shuffle the pairs of pairs together, etc. until the vector has
1853 // been built. This will work only if all of the necessary shuffle masks
1854 // are legal.
1855
1856 // We do this in two phases; first to check the legality of the shuffles,
1857 // and next, assuming that all shuffles are legal, to create the new nodes.
1858 for (int Phase = 0; Phase < 2; ++Phase) {
1859 SmallVector<std::pair<SDValue, SmallVector<int, 16> >, 16> IntermedVals,
1860 NewIntermedVals;
1861 for (unsigned i = 0; i < NumElems; ++i) {
1862 SDValue V = Node->getOperand(i);
1863 if (V.getOpcode() == ISD::UNDEF)
1864 continue;
1865
1866 SDValue Vec;
1867 if (Phase)
1868 Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, V);
1869 IntermedVals.push_back(std::make_pair(Vec, SmallVector<int, 16>(1, i)));
1870 }
1871
1872 while (IntermedVals.size() > 2) {
1873 NewIntermedVals.clear();
1874 for (unsigned i = 0, e = (IntermedVals.size() & ~1u); i < e; i += 2) {
1875 // This vector and the next vector are shuffled together (simply to
1876 // append the one to the other).
1877 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1878
1879 SmallVector<int, 16> FinalIndices;
1880 FinalIndices.reserve(IntermedVals[i].second.size() +
1881 IntermedVals[i+1].second.size());
1882
1883 int k = 0;
1884 for (unsigned j = 0, f = IntermedVals[i].second.size(); j != f;
1885 ++j, ++k) {
1886 ShuffleVec[k] = j;
1887 FinalIndices.push_back(IntermedVals[i].second[j]);
1888 }
1889 for (unsigned j = 0, f = IntermedVals[i+1].second.size(); j != f;
1890 ++j, ++k) {
1891 ShuffleVec[k] = NumElems + j;
1892 FinalIndices.push_back(IntermedVals[i+1].second[j]);
1893 }
1894
1895 SDValue Shuffle;
1896 if (Phase)
1897 Shuffle = DAG.getVectorShuffle(VT, dl, IntermedVals[i].first,
1898 IntermedVals[i+1].first,
1899 ShuffleVec.data());
1900 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1901 return false;
Benjamin Kramerc6cc58e2014-10-04 16:55:56 +00001902 NewIntermedVals.push_back(
1903 std::make_pair(Shuffle, std::move(FinalIndices)));
Hal Finkelb811b6d2014-03-31 19:42:55 +00001904 }
1905
1906 // If we had an odd number of defined values, then append the last
1907 // element to the array of new vectors.
1908 if ((IntermedVals.size() & 1) != 0)
1909 NewIntermedVals.push_back(IntermedVals.back());
1910
1911 IntermedVals.swap(NewIntermedVals);
1912 }
1913
1914 assert(IntermedVals.size() <= 2 && IntermedVals.size() > 0 &&
1915 "Invalid number of intermediate vectors");
1916 SDValue Vec1 = IntermedVals[0].first;
1917 SDValue Vec2;
1918 if (IntermedVals.size() > 1)
1919 Vec2 = IntermedVals[1].first;
1920 else if (Phase)
1921 Vec2 = DAG.getUNDEF(VT);
1922
1923 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1924 for (unsigned i = 0, e = IntermedVals[0].second.size(); i != e; ++i)
1925 ShuffleVec[IntermedVals[0].second[i]] = i;
1926 for (unsigned i = 0, e = IntermedVals[1].second.size(); i != e; ++i)
1927 ShuffleVec[IntermedVals[1].second[i]] = NumElems + i;
1928
1929 if (Phase)
1930 Res = DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
1931 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1932 return false;
1933 }
1934
1935 return true;
1936}
Chris Lattner6be79822006-04-04 17:23:26 +00001937
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00001938/// Expand a BUILD_VECTOR node on targets that don't
Dan Gohman06c60b62007-07-16 14:29:03 +00001939/// support the operation, but do support the resultant vector type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001940SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilsonf6c21952009-04-13 20:20:30 +00001941 unsigned NumElems = Node->getNumOperands();
Eli Friedman32345872009-06-07 06:52:44 +00001942 SDValue Value1, Value2;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001943 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001944 EVT VT = Node->getValueType(0);
1945 EVT OpVT = Node->getOperand(0).getValueType();
1946 EVT EltVT = VT.getVectorElementType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001947
1948 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00001949 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001950 bool isOnlyLowElement = true;
Eli Friedman32345872009-06-07 06:52:44 +00001951 bool MoreThanTwoValues = false;
Chris Lattner77e271c2006-03-24 07:29:17 +00001952 bool isConstant = true;
Eli Friedman32345872009-06-07 06:52:44 +00001953 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001954 SDValue V = Node->getOperand(i);
Eli Friedman32345872009-06-07 06:52:44 +00001955 if (V.getOpcode() == ISD::UNDEF)
1956 continue;
1957 if (i > 0)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001958 isOnlyLowElement = false;
Eli Friedman32345872009-06-07 06:52:44 +00001959 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner77e271c2006-03-24 07:29:17 +00001960 isConstant = false;
Eli Friedman32345872009-06-07 06:52:44 +00001961
1962 if (!Value1.getNode()) {
1963 Value1 = V;
1964 } else if (!Value2.getNode()) {
1965 if (V != Value1)
1966 Value2 = V;
1967 } else if (V != Value1 && V != Value2) {
1968 MoreThanTwoValues = true;
1969 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001970 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001971
Eli Friedman32345872009-06-07 06:52:44 +00001972 if (!Value1.getNode())
1973 return DAG.getUNDEF(VT);
1974
1975 if (isOnlyLowElement)
Bob Wilsonf6c21952009-04-13 20:20:30 +00001976 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001977
Chris Lattner77e271c2006-03-24 07:29:17 +00001978 // If all elements are constants, create a load from the constant pool.
1979 if (isConstant) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001980 SmallVector<Constant*, 16> CV;
Chris Lattner77e271c2006-03-24 07:29:17 +00001981 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00001982 if (ConstantFPSDNode *V =
Chris Lattner77e271c2006-03-24 07:29:17 +00001983 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanec270fb2008-09-12 18:08:03 +00001984 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001985 } else if (ConstantSDNode *V =
Bob Wilsonf074ca72009-04-10 18:48:47 +00001986 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen6f7d5b22009-11-10 23:16:41 +00001987 if (OpVT==EltVT)
1988 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1989 else {
1990 // If OpVT and EltVT don't match, EltVT is not legal and the
1991 // element values have been promoted/truncated earlier. Undo this;
1992 // we don't want a v16i8 to become a v16i32 for example.
1993 const ConstantInt *CI = V->getConstantIntValue();
1994 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1995 CI->getZExtValue()));
1996 }
Chris Lattner77e271c2006-03-24 07:29:17 +00001997 } else {
1998 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner229907c2011-07-18 04:54:35 +00001999 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Andersonb292b8c2009-07-30 23:03:37 +00002000 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner77e271c2006-03-24 07:29:17 +00002001 }
2002 }
Owen Anderson4aa32952009-07-28 21:19:26 +00002003 Constant *CP = ConstantVector::get(CV);
Mehdi Amini44ede332015-07-09 02:09:04 +00002004 SDValue CPIdx =
2005 DAG.getConstantPool(CP, TLI.getPointerTy(DAG.getDataLayout()));
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002006 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002007 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00002008 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002009 false, false, false, Alignment);
Chris Lattner77e271c2006-03-24 07:29:17 +00002010 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002011
Hal Finkel19775142014-03-31 17:48:10 +00002012 SmallSet<SDValue, 16> DefinedValues;
2013 for (unsigned i = 0; i < NumElems; ++i) {
2014 if (Node->getOperand(i).getOpcode() == ISD::UNDEF)
2015 continue;
2016 DefinedValues.insert(Node->getOperand(i));
2017 }
2018
Hal Finkelb811b6d2014-03-31 19:42:55 +00002019 if (TLI.shouldExpandBuildVectorWithShuffles(VT, DefinedValues.size())) {
2020 if (!MoreThanTwoValues) {
2021 SmallVector<int, 8> ShuffleVec(NumElems, -1);
2022 for (unsigned i = 0; i < NumElems; ++i) {
2023 SDValue V = Node->getOperand(i);
2024 if (V.getOpcode() == ISD::UNDEF)
2025 continue;
2026 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
2027 }
2028 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
2029 // Get the splatted value into the low element of a vector register.
2030 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
2031 SDValue Vec2;
2032 if (Value2.getNode())
2033 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
2034 else
2035 Vec2 = DAG.getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002036
Hal Finkelb811b6d2014-03-31 19:42:55 +00002037 // Return shuffle(LowValVec, undef, <0,0,0,0>)
2038 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
2039 }
2040 } else {
2041 SDValue Res;
2042 if (ExpandBVWithShuffles(Node, DAG, TLI, Res))
2043 return Res;
Evan Cheng1d2e9952006-03-24 01:17:21 +00002044 }
2045 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002046
Eli Friedmanaee3f622009-06-06 07:04:42 +00002047 // Otherwise, we can't handle this case efficiently.
2048 return ExpandVectorBuildThroughStack(Node);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002049}
2050
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002051// Expand a node into a call to a libcall. If the result value
Chris Lattneraac464e2005-01-21 06:05:23 +00002052// does not fit into a register, return the lo part and set the hi part to the
2053// by-reg argument. If it does fit into a single register, return the result
2054// and leave the Hi part unset.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002055SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedmanb3554152009-05-27 02:21:29 +00002056 bool isSigned) {
Chris Lattneraac464e2005-01-21 06:05:23 +00002057 TargetLowering::ArgListTy Args;
Reid Spencere63b6512006-12-31 05:55:36 +00002058 TargetLowering::ArgListEntry Entry;
Pete Cooper8fc121d2015-06-26 19:08:33 +00002059 for (const SDValue &Op : Node->op_values()) {
2060 EVT ArgVT = Op.getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002061 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Pete Cooper8fc121d2015-06-26 19:08:33 +00002062 Entry.Node = Op;
2063 Entry.Ty = ArgTy;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00002064 Entry.isSExt = isSigned;
Duncan Sands4c95dbd2008-02-14 17:28:50 +00002065 Entry.isZExt = !isSigned;
Reid Spencere63b6512006-12-31 05:55:36 +00002066 Args.push_back(Entry);
Chris Lattneraac464e2005-01-21 06:05:23 +00002067 }
Bill Wendling24c79f22008-09-16 21:48:12 +00002068 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002069 TLI.getPointerTy(DAG.getDataLayout()));
Misha Brukman835702a2005-04-21 22:36:52 +00002070
Chris Lattner229907c2011-07-18 04:54:35 +00002071 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Chengd4b08732010-11-30 23:55:39 +00002072
Evan Chengf8bad082012-04-10 01:51:00 +00002073 // By default, the input chain to this libcall is the entry node of the
2074 // function. If the libcall is going to be emitted as a tail call then
2075 // TLI.isUsedByReturnOnly will change it to the right chain if the return
2076 // node which is being folded has a non-entry input chain.
2077 SDValue InChain = DAG.getEntryNode();
2078
Evan Chengd4b08732010-11-30 23:55:39 +00002079 // isTailCall may be true since the callee does not reference caller stack
2080 // frame. Check if it's in the right position.
Evan Cheng136861d2012-04-10 03:15:18 +00002081 SDValue TCChain = InChain;
Tim Northoverf1450d82013-01-09 13:18:15 +00002082 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Cheng136861d2012-04-10 03:15:18 +00002083 if (isTailCall)
2084 InChain = TCChain;
2085
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002086 TargetLowering::CallLoweringInfo CLI(DAG);
2087 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002088 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002089 .setTailCall(isTailCall).setSExtResult(isSigned).setZExtResult(!isSigned);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002090
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002091 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Chris Lattnera5bf1032005-05-12 04:49:08 +00002092
Evan Chengd4b08732010-11-30 23:55:39 +00002093 if (!CallInfo.second.getNode())
2094 // It's a tailcall, return the chain (which is the DAG root).
2095 return DAG.getRoot();
2096
Eli Friedman4a951bf2009-05-26 08:55:52 +00002097 return CallInfo.first;
Chris Lattneraac464e2005-01-21 06:05:23 +00002098}
2099
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002100/// Generate a libcall taking the given operands as arguments
Eric Christopherbcaedb52011-04-20 01:19:45 +00002101/// and returning a result of type RetVT.
2102SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
2103 const SDValue *Ops, unsigned NumOps,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002104 bool isSigned, SDLoc dl) {
Eric Christopherbcaedb52011-04-20 01:19:45 +00002105 TargetLowering::ArgListTy Args;
2106 Args.reserve(NumOps);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002107
Eric Christopherbcaedb52011-04-20 01:19:45 +00002108 TargetLowering::ArgListEntry Entry;
2109 for (unsigned i = 0; i != NumOps; ++i) {
2110 Entry.Node = Ops[i];
2111 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
2112 Entry.isSExt = isSigned;
2113 Entry.isZExt = !isSigned;
2114 Args.push_back(Entry);
2115 }
2116 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002117 TLI.getPointerTy(DAG.getDataLayout()));
Dan Gohmanae9b1682011-05-16 22:09:53 +00002118
Chris Lattner229907c2011-07-18 04:54:35 +00002119 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002120
2121 TargetLowering::CallLoweringInfo CLI(DAG);
2122 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002123 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002124 .setSExtResult(isSigned).setZExtResult(!isSigned);
2125
Justin Holewinskiaa583972012-05-25 16:35:28 +00002126 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002127
Eric Christopherbcaedb52011-04-20 01:19:45 +00002128 return CallInfo.first;
2129}
2130
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002131// Expand a node into a call to a libcall. Similar to
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002132// ExpandLibCall except that the first operand is the in-chain.
2133std::pair<SDValue, SDValue>
2134SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
2135 SDNode *Node,
2136 bool isSigned) {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002137 SDValue InChain = Node->getOperand(0);
2138
2139 TargetLowering::ArgListTy Args;
2140 TargetLowering::ArgListEntry Entry;
2141 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
2142 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002143 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002144 Entry.Node = Node->getOperand(i);
2145 Entry.Ty = ArgTy;
2146 Entry.isSExt = isSigned;
2147 Entry.isZExt = !isSigned;
2148 Args.push_back(Entry);
2149 }
2150 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002151 TLI.getPointerTy(DAG.getDataLayout()));
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002152
Chris Lattner229907c2011-07-18 04:54:35 +00002153 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002154
2155 TargetLowering::CallLoweringInfo CLI(DAG);
2156 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002157 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002158 .setSExtResult(isSigned).setZExtResult(!isSigned);
2159
Justin Holewinskiaa583972012-05-25 16:35:28 +00002160 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002161
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002162 return CallInfo;
2163}
2164
Eli Friedmand6f28342009-05-27 03:33:44 +00002165SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
2166 RTLIB::Libcall Call_F32,
2167 RTLIB::Libcall Call_F64,
2168 RTLIB::Libcall Call_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00002169 RTLIB::Libcall Call_F128,
Eli Friedmand6f28342009-05-27 03:33:44 +00002170 RTLIB::Libcall Call_PPCF128) {
2171 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002172 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002173 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson9f944592009-08-11 20:47:22 +00002174 case MVT::f32: LC = Call_F32; break;
2175 case MVT::f64: LC = Call_F64; break;
2176 case MVT::f80: LC = Call_F80; break;
Tim Northover4bf47bc2013-01-08 17:09:59 +00002177 case MVT::f128: LC = Call_F128; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002178 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002179 }
2180 return ExpandLibCall(LC, Node, false);
2181}
2182
2183SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002184 RTLIB::Libcall Call_I8,
Eli Friedmand6f28342009-05-27 03:33:44 +00002185 RTLIB::Libcall Call_I16,
2186 RTLIB::Libcall Call_I32,
2187 RTLIB::Libcall Call_I64,
2188 RTLIB::Libcall Call_I128) {
2189 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002190 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002191 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002192 case MVT::i8: LC = Call_I8; break;
2193 case MVT::i16: LC = Call_I16; break;
2194 case MVT::i32: LC = Call_I32; break;
2195 case MVT::i64: LC = Call_I64; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002196 case MVT::i128: LC = Call_I128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002197 }
2198 return ExpandLibCall(LC, Node, isSigned);
2199}
2200
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002201/// Return true if divmod libcall is available.
Evan Chengb14ce092011-04-16 03:08:26 +00002202static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2203 const TargetLowering &TLI) {
Evan Chengbd766792011-04-01 00:42:02 +00002204 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002205 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002206 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengbd766792011-04-01 00:42:02 +00002207 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2208 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2209 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2210 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2211 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2212 }
2213
Craig Topperc0196b12014-04-14 00:51:57 +00002214 return TLI.getLibcallName(LC) != nullptr;
Evan Chengb14ce092011-04-16 03:08:26 +00002215}
Evan Chengbd766792011-04-01 00:42:02 +00002216
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002217/// Only issue divrem libcall if both quotient and remainder are needed.
Evan Cheng8c2ad812012-06-21 05:56:05 +00002218static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2219 // The other use might have been replaced with a divrem already.
2220 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Chengbd766792011-04-01 00:42:02 +00002221 unsigned OtherOpcode = 0;
Evan Chengb14ce092011-04-16 03:08:26 +00002222 if (isSigned)
Evan Chengbd766792011-04-01 00:42:02 +00002223 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002224 else
Evan Chengbd766792011-04-01 00:42:02 +00002225 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002226
Evan Chengbd766792011-04-01 00:42:02 +00002227 SDValue Op0 = Node->getOperand(0);
2228 SDValue Op1 = Node->getOperand(1);
2229 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2230 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2231 SDNode *User = *UI;
2232 if (User == Node)
2233 continue;
Evan Cheng8c2ad812012-06-21 05:56:05 +00002234 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Chengbd766792011-04-01 00:42:02 +00002235 User->getOperand(0) == Op0 &&
Evan Chengb14ce092011-04-16 03:08:26 +00002236 User->getOperand(1) == Op1)
2237 return true;
Evan Chengbd766792011-04-01 00:42:02 +00002238 }
Evan Chengb14ce092011-04-16 03:08:26 +00002239 return false;
2240}
Evan Chengbd766792011-04-01 00:42:02 +00002241
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002242/// Issue libcalls to __{u}divmod to compute div / rem pairs.
Evan Chengb14ce092011-04-16 03:08:26 +00002243void
2244SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2245 SmallVectorImpl<SDValue> &Results) {
2246 unsigned Opcode = Node->getOpcode();
2247 bool isSigned = Opcode == ISD::SDIVREM;
2248
2249 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002250 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002251 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengb14ce092011-04-16 03:08:26 +00002252 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2253 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2254 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2255 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2256 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Chengbd766792011-04-01 00:42:02 +00002257 }
2258
2259 // The input chain to this libcall is the entry node of the function.
2260 // Legalizing the call will automatically add the previous call to the
2261 // dependence.
2262 SDValue InChain = DAG.getEntryNode();
2263
2264 EVT RetVT = Node->getValueType(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002265 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002266
2267 TargetLowering::ArgListTy Args;
2268 TargetLowering::ArgListEntry Entry;
Pete Cooper8fc121d2015-06-26 19:08:33 +00002269 for (const SDValue &Op : Node->op_values()) {
2270 EVT ArgVT = Op.getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002271 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Pete Cooper8fc121d2015-06-26 19:08:33 +00002272 Entry.Node = Op;
2273 Entry.Ty = ArgTy;
Evan Chengbd766792011-04-01 00:42:02 +00002274 Entry.isSExt = isSigned;
2275 Entry.isZExt = !isSigned;
2276 Args.push_back(Entry);
2277 }
2278
2279 // Also pass the return address of the remainder.
2280 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2281 Entry.Node = FIPtr;
Micah Villmow51e72462012-10-24 17:25:11 +00002282 Entry.Ty = RetTy->getPointerTo();
Evan Chengbd766792011-04-01 00:42:02 +00002283 Entry.isSExt = isSigned;
2284 Entry.isZExt = !isSigned;
2285 Args.push_back(Entry);
2286
2287 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002288 TLI.getPointerTy(DAG.getDataLayout()));
Evan Chengbd766792011-04-01 00:42:02 +00002289
Andrew Trickef9de2a2013-05-25 02:42:55 +00002290 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002291 TargetLowering::CallLoweringInfo CLI(DAG);
2292 CLI.setDebugLoc(dl).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002293 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002294 .setSExtResult(isSigned).setZExtResult(!isSigned);
2295
Justin Holewinskiaa583972012-05-25 16:35:28 +00002296 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Chengbd766792011-04-01 00:42:02 +00002297
Evan Chengbd766792011-04-01 00:42:02 +00002298 // Remainder is loaded back from the stack frame.
Dan Gohman198b7ff2011-11-03 21:49:52 +00002299 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002300 MachinePointerInfo(), false, false, false, 0);
Evan Chengb14ce092011-04-16 03:08:26 +00002301 Results.push_back(CallInfo.first);
2302 Results.push_back(Rem);
Evan Chengbd766792011-04-01 00:42:02 +00002303}
2304
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002305/// Return true if sincos libcall is available.
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002306static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2307 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002308 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002309 default: llvm_unreachable("Unexpected request for libcall!");
2310 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2311 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2312 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2313 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2314 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2315 }
Craig Topperc0196b12014-04-14 00:51:57 +00002316 return TLI.getLibcallName(LC) != nullptr;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002317}
2318
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002319/// Return true if sincos libcall is available and can be used to combine sin
2320/// and cos.
Paul Redmondf29ddfe2013-02-15 18:45:18 +00002321static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2322 const TargetMachine &TM) {
2323 if (!isSinCosLibcallAvailable(Node, TLI))
2324 return false;
2325 // GNU sin/cos functions set errno while sincos does not. Therefore
2326 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2327 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2328 if (isGNU && !TM.Options.UnsafeFPMath)
2329 return false;
2330 return true;
2331}
2332
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002333/// Only issue sincos libcall if both sin and cos are needed.
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002334static bool useSinCos(SDNode *Node) {
2335 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2336 ? ISD::FCOS : ISD::FSIN;
Stephen Lincfe7f352013-07-08 00:37:03 +00002337
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002338 SDValue Op0 = Node->getOperand(0);
2339 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2340 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2341 SDNode *User = *UI;
2342 if (User == Node)
2343 continue;
2344 // The other user might have been turned into sincos already.
2345 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2346 return true;
2347 }
2348 return false;
2349}
2350
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002351/// Issue libcalls to sincos to compute sin / cos pairs.
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002352void
2353SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2354 SmallVectorImpl<SDValue> &Results) {
2355 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002356 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002357 default: llvm_unreachable("Unexpected request for libcall!");
2358 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2359 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2360 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2361 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2362 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2363 }
Stephen Lincfe7f352013-07-08 00:37:03 +00002364
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002365 // The input chain to this libcall is the entry node of the function.
2366 // Legalizing the call will automatically add the previous call to the
2367 // dependence.
2368 SDValue InChain = DAG.getEntryNode();
Stephen Lincfe7f352013-07-08 00:37:03 +00002369
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002370 EVT RetVT = Node->getValueType(0);
2371 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Stephen Lincfe7f352013-07-08 00:37:03 +00002372
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002373 TargetLowering::ArgListTy Args;
2374 TargetLowering::ArgListEntry Entry;
Stephen Lincfe7f352013-07-08 00:37:03 +00002375
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002376 // Pass the argument.
2377 Entry.Node = Node->getOperand(0);
2378 Entry.Ty = RetTy;
2379 Entry.isSExt = false;
2380 Entry.isZExt = false;
2381 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002382
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002383 // Pass the return address of sin.
2384 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2385 Entry.Node = SinPtr;
2386 Entry.Ty = RetTy->getPointerTo();
2387 Entry.isSExt = false;
2388 Entry.isZExt = false;
2389 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002390
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002391 // Also pass the return address of the cos.
2392 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2393 Entry.Node = CosPtr;
2394 Entry.Ty = RetTy->getPointerTo();
2395 Entry.isSExt = false;
2396 Entry.isZExt = false;
2397 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002398
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002399 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +00002400 TLI.getPointerTy(DAG.getDataLayout()));
Stephen Lincfe7f352013-07-08 00:37:03 +00002401
Andrew Trickef9de2a2013-05-25 02:42:55 +00002402 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002403 TargetLowering::CallLoweringInfo CLI(DAG);
2404 CLI.setDebugLoc(dl).setChain(InChain)
2405 .setCallee(TLI.getLibcallCallingConv(LC),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002406 Type::getVoidTy(*DAG.getContext()), Callee, std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002407
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002408 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2409
2410 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2411 MachinePointerInfo(), false, false, false, 0));
2412 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2413 MachinePointerInfo(), false, false, false, 0));
2414}
2415
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002416/// This function is responsible for legalizing a
Chris Lattner689bdcc2006-01-28 08:25:58 +00002417/// INT_TO_FP operation of the specified operand when the target requests that
2418/// we expand it. At this point, we know that the result and operand types are
2419/// legal for the target.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002420SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2421 SDValue Op0,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002422 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002423 SDLoc dl) {
Akira Hatanakaadb14f52012-08-28 02:12:42 +00002424 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002425 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelcf0da6c2009-02-17 22:15:04 +00002426
Chris Lattnera2c7ff32008-01-16 07:03:22 +00002427 // Get the stack frame index of a 8 byte buffer.
Owen Anderson9f944592009-08-11 20:47:22 +00002428 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002429
Chris Lattner689bdcc2006-01-28 08:25:58 +00002430 // word offset constant for Hi/Lo address computation
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002431 SDValue WordOff = DAG.getConstant(sizeof(int), dl,
2432 StackSlot.getValueType());
Chris Lattner689bdcc2006-01-28 08:25:58 +00002433 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002434 SDValue Hi = StackSlot;
Tom Stellard838e2342013-08-26 15:06:10 +00002435 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2436 StackSlot, WordOff);
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00002437 if (DAG.getDataLayout().isLittleEndian())
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00002438 std::swap(Hi, Lo);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002439
Chris Lattner689bdcc2006-01-28 08:25:58 +00002440 // if signed map to unsigned space
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002441 SDValue Op0Mapped;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002442 if (isSigned) {
2443 // constant used to invert sign bit (signed to unsigned mapping)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002444 SDValue SignBit = DAG.getConstant(0x80000000u, dl, MVT::i32);
Owen Anderson9f944592009-08-11 20:47:22 +00002445 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002446 } else {
2447 Op0Mapped = Op0;
2448 }
2449 // store the lo of the constructed double - based on integer input
Dale Johannesen8525d832009-02-02 19:03:57 +00002450 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00002451 Op0Mapped, Lo, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00002452 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002453 // initial hi portion of constructed double
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002454 SDValue InitialHi = DAG.getConstant(0x43300000u, dl, MVT::i32);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002455 // store the hi of the constructed double - biased exponent
Chris Lattner676c61d2010-09-21 18:41:36 +00002456 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2457 MachinePointerInfo(),
2458 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002459 // load the constructed double
Chris Lattner1ffcf522010-09-21 16:36:31 +00002460 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002461 MachinePointerInfo(), false, false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002462 // FP constant to bias correct the final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002463 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonf074ca72009-04-10 18:48:47 +00002464 BitsToDouble(0x4330000080000000ULL) :
2465 BitsToDouble(0x4330000000000000ULL),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002466 dl, MVT::f64);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002467 // subtract the bias
Owen Anderson9f944592009-08-11 20:47:22 +00002468 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002469 // final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002470 SDValue Result;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002471 // handle final rounding
Owen Anderson9f944592009-08-11 20:47:22 +00002472 if (DestVT == MVT::f64) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002473 // do nothing
2474 Result = Sub;
Owen Anderson9f944592009-08-11 20:47:22 +00002475 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002476 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002477 DAG.getIntPtrConstant(0, dl));
Owen Anderson9f944592009-08-11 20:47:22 +00002478 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002479 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002480 }
2481 return Result;
2482 }
2483 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002484 // Code below here assumes !isSigned without checking again.
Dan Gohman14e450f2010-03-06 00:00:55 +00002485
2486 // Implementation of unsigned i64 to f64 following the algorithm in
2487 // __floatundidf in compiler_rt. This implementation has the advantage
2488 // of performing rounding correctly, both in the default rounding mode
2489 // and in all alternate rounding modes.
2490 // TODO: Generalize this for use with other types.
2491 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2492 SDValue TwoP52 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002493 DAG.getConstant(UINT64_C(0x4330000000000000), dl, MVT::i64);
Dan Gohman14e450f2010-03-06 00:00:55 +00002494 SDValue TwoP84PlusTwoP52 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002495 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), dl,
2496 MVT::f64);
Dan Gohman14e450f2010-03-06 00:00:55 +00002497 SDValue TwoP84 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002498 DAG.getConstant(UINT64_C(0x4530000000000000), dl, MVT::i64);
Dan Gohman14e450f2010-03-06 00:00:55 +00002499
2500 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2501 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002502 DAG.getConstant(32, dl, MVT::i64));
Dan Gohman14e450f2010-03-06 00:00:55 +00002503 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2504 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peck527da1b2010-11-23 03:31:01 +00002505 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2506 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002507 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2508 TwoP84PlusTwoP52);
Dan Gohman14e450f2010-03-06 00:00:55 +00002509 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2510 }
2511
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002512 // Implementation of unsigned i64 to f32.
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002513 // TODO: Generalize this for use with other types.
2514 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002515 // For unsigned conversions, convert them to signed conversions using the
2516 // algorithm from the x86_64 __floatundidf in compiler_rt.
2517 if (!isSigned) {
2518 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peck527da1b2010-11-23 03:31:01 +00002519
Owen Andersonb2c80da2011-02-25 21:41:48 +00002520 SDValue ShiftConst =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002521 DAG.getConstant(1, dl, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002522 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002523 SDValue AndConst = DAG.getConstant(1, dl, MVT::i64);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002524 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2525 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peck527da1b2010-11-23 03:31:01 +00002526
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002527 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2528 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peck527da1b2010-11-23 03:31:01 +00002529
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002530 // TODO: This really should be implemented using a branch rather than a
Wesley Peck527da1b2010-11-23 03:31:01 +00002531 // select. We happen to get lucky and machinesink does the right
2532 // thing most of the time. This would be a good candidate for a
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002533 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault758659232013-05-18 00:21:46 +00002534 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002535 Op0, DAG.getConstant(0, dl, MVT::i64), ISD::SETLT);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002536 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002537 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002538
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002539 // Otherwise, implement the fully general conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002540
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002541 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002542 DAG.getConstant(UINT64_C(0xfffffffffffff800), dl, MVT::i64));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002543 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002544 DAG.getConstant(UINT64_C(0x800), dl, MVT::i64));
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002545 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002546 DAG.getConstant(UINT64_C(0x7ff), dl, MVT::i64));
2547 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), And2,
2548 DAG.getConstant(UINT64_C(0), dl, MVT::i64),
2549 ISD::SETNE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002550 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002551 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), Op0,
2552 DAG.getConstant(UINT64_C(0x0020000000000000), dl,
2553 MVT::i64),
2554 ISD::SETUGE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002555 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00002556 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peck527da1b2010-11-23 03:31:01 +00002557
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002558 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002559 DAG.getConstant(32, dl, SHVT));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002560 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2561 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2562 SDValue TwoP32 =
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002563 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), dl,
2564 MVT::f64);
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002565 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2566 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2567 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2568 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2569 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002570 DAG.getIntPtrConstant(0, dl));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002571 }
2572
Dan Gohman998c7c22010-03-05 02:40:23 +00002573 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002574
Matt Arsenault758659232013-05-18 00:21:46 +00002575 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002576 Op0,
2577 DAG.getConstant(0, dl, Op0.getValueType()),
Dan Gohman998c7c22010-03-05 02:40:23 +00002578 ISD::SETLT);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002579 SDValue Zero = DAG.getIntPtrConstant(0, dl),
2580 Four = DAG.getIntPtrConstant(4, dl);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002581 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohman998c7c22010-03-05 02:40:23 +00002582 SignSet, Four, Zero);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002583
Dan Gohman998c7c22010-03-05 02:40:23 +00002584 // If the sign bit of the integer is set, the large number will be treated
2585 // as a negative number. To counteract this, the dynamic code adds an
2586 // offset depending on the data type.
2587 uint64_t FF;
Craig Topperd9c27832013-08-15 02:44:19 +00002588 switch (Op0.getSimpleValueType().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002589 default: llvm_unreachable("Unsupported integer type!");
Dan Gohman998c7c22010-03-05 02:40:23 +00002590 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2591 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2592 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2593 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2594 }
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00002595 if (DAG.getDataLayout().isLittleEndian())
2596 FF <<= 32;
Dan Gohman998c7c22010-03-05 02:40:23 +00002597 Constant *FudgeFactor = ConstantInt::get(
2598 Type::getInt64Ty(*DAG.getContext()), FF);
2599
Mehdi Amini44ede332015-07-09 02:09:04 +00002600 SDValue CPIdx =
2601 DAG.getConstantPool(FudgeFactor, TLI.getPointerTy(DAG.getDataLayout()));
Dan Gohman998c7c22010-03-05 02:40:23 +00002602 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Tom Stellard838e2342013-08-26 15:06:10 +00002603 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
Dan Gohman998c7c22010-03-05 02:40:23 +00002604 Alignment = std::min(Alignment, 4u);
2605 SDValue FudgeInReg;
2606 if (DestVT == MVT::f32)
2607 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00002608 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002609 false, false, false, Alignment);
Dan Gohman998c7c22010-03-05 02:40:23 +00002610 else {
Dan Gohman198b7ff2011-11-03 21:49:52 +00002611 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2612 DAG.getEntryNode(), CPIdx,
2613 MachinePointerInfo::getConstantPool(),
Louis Gerbarg67474e32014-07-31 21:45:05 +00002614 MVT::f32, false, false, false, Alignment);
Dan Gohman198b7ff2011-11-03 21:49:52 +00002615 HandleSDNode Handle(Load);
2616 LegalizeOp(Load.getNode());
2617 FudgeInReg = Handle.getValue();
Dan Gohman998c7c22010-03-05 02:40:23 +00002618 }
2619
2620 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002621}
2622
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002623/// This function is responsible for legalizing a
Chris Lattner689bdcc2006-01-28 08:25:58 +00002624/// *INT_TO_FP operation of the specified operand when the target requests that
2625/// we promote it. At this point, we know that the result and operand types are
2626/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2627/// operation that takes a larger input.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002628SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002629 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002630 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002631 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002632 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002633 EVT NewInTy = LegalOp.getValueType();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002634
2635 unsigned OpToUse = 0;
2636
2637 // Scan for the appropriate larger type to use.
2638 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002639 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002640 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002641
2642 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002643 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2644 OpToUse = ISD::SINT_TO_FP;
2645 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002646 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002647 if (isSigned) continue;
2648
2649 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002650 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2651 OpToUse = ISD::UINT_TO_FP;
2652 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002653 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002654
2655 // Otherwise, try a larger type.
2656 }
2657
2658 // Okay, we found the operation and type to use. Zero extend our input to the
2659 // desired type then run the operation on it.
Dale Johannesen8525d832009-02-02 19:03:57 +00002660 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner689bdcc2006-01-28 08:25:58 +00002661 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen8525d832009-02-02 19:03:57 +00002662 dl, NewInTy, LegalOp));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002663}
2664
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002665/// This function is responsible for legalizing a
Chris Lattner689bdcc2006-01-28 08:25:58 +00002666/// FP_TO_*INT operation of the specified operand when the target requests that
2667/// we promote it. At this point, we know that the result and operand types are
2668/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2669/// operation that returns a larger result.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002670SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002671 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002672 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002673 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002674 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002675 EVT NewOutTy = DestVT;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002676
2677 unsigned OpToUse = 0;
2678
2679 // Scan for the appropriate larger type to use.
2680 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002681 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002682 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002683
Tim Northover65277a22014-06-15 09:27:20 +00002684 // A larger signed type can hold all unsigned values of the requested type,
2685 // so using FP_TO_SINT is valid
Eli Friedmane1bc3792009-05-28 03:06:16 +00002686 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002687 OpToUse = ISD::FP_TO_SINT;
2688 break;
2689 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002690
Tim Northover65277a22014-06-15 09:27:20 +00002691 // However, if the value may be < 0.0, we *must* use some FP_TO_SINT.
2692 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002693 OpToUse = ISD::FP_TO_UINT;
2694 break;
2695 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002696
2697 // Otherwise, try a larger type.
2698 }
2699
Scott Michelcf0da6c2009-02-17 22:15:04 +00002700
Chris Lattnerf81d5882007-11-24 07:07:01 +00002701 // Okay, we found the operation and type to use.
Dale Johannesen8525d832009-02-02 19:03:57 +00002702 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands93e180342008-07-04 11:47:58 +00002703
Chris Lattnerf81d5882007-11-24 07:07:01 +00002704 // Truncate the result of the extended FP_TO_*INT operation to the desired
2705 // size.
Dale Johannesen8525d832009-02-02 19:03:57 +00002706 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002707}
2708
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002709/// Open code the operations for BSWAP of the specified operation.
Andrew Trickef9de2a2013-05-25 02:42:55 +00002710SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002711 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002712 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002713 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson9f944592009-08-11 20:47:22 +00002714 switch (VT.getSimpleVT().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002715 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson9f944592009-08-11 20:47:22 +00002716 case MVT::i16:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002717 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2718 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
Dale Johannesena02e45c2009-02-02 22:12:50 +00002719 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002720 case MVT::i32:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002721 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2722 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2723 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2724 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2725 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3,
2726 DAG.getConstant(0xFF0000, dl, VT));
2727 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, dl, VT));
Dale Johannesena02e45c2009-02-02 22:12:50 +00002728 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2729 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2730 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002731 case MVT::i64:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002732 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, dl, SHVT));
2733 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, dl, SHVT));
2734 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2735 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2736 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT));
2737 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, dl, SHVT));
2738 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, dl, SHVT));
2739 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, dl, SHVT));
2740 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7,
2741 DAG.getConstant(255ULL<<48, dl, VT));
2742 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6,
2743 DAG.getConstant(255ULL<<40, dl, VT));
2744 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5,
2745 DAG.getConstant(255ULL<<32, dl, VT));
2746 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4,
2747 DAG.getConstant(255ULL<<24, dl, VT));
2748 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3,
2749 DAG.getConstant(255ULL<<16, dl, VT));
2750 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2,
2751 DAG.getConstant(255ULL<<8 , dl, VT));
Dale Johannesena02e45c2009-02-02 22:12:50 +00002752 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2753 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2754 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2755 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2756 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2757 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2758 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002759 }
2760}
2761
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00002762/// Expand the specified bitcount instruction into operations.
Scott Michelcf0da6c2009-02-17 22:15:04 +00002763SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002764 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002765 switch (Opc) {
Craig Topperee4dab52012-02-05 08:31:47 +00002766 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002767 case ISD::CTPOP: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002768 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002769 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002770 unsigned Len = VT.getSizeInBits();
2771
Benjamin Kramerbec03ea2011-01-15 21:19:37 +00002772 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2773 "CTPOP not implemented for this type.");
2774
Benjamin Kramerfff25172011-01-15 20:30:30 +00002775 // This is the "best" algorithm from
2776 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2777
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002778 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)),
2779 dl, VT);
2780 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)),
2781 dl, VT);
2782 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)),
2783 dl, VT);
2784 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)),
2785 dl, VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002786
2787 // v = v - ((v >> 1) & 0x55555555...)
2788 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2789 DAG.getNode(ISD::AND, dl, VT,
2790 DAG.getNode(ISD::SRL, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002791 DAG.getConstant(1, dl, ShVT)),
Benjamin Kramerfff25172011-01-15 20:30:30 +00002792 Mask55));
2793 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2794 Op = DAG.getNode(ISD::ADD, dl, VT,
2795 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2796 DAG.getNode(ISD::AND, dl, VT,
2797 DAG.getNode(ISD::SRL, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002798 DAG.getConstant(2, dl, ShVT)),
Benjamin Kramerfff25172011-01-15 20:30:30 +00002799 Mask33));
2800 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2801 Op = DAG.getNode(ISD::AND, dl, VT,
2802 DAG.getNode(ISD::ADD, dl, VT, Op,
2803 DAG.getNode(ISD::SRL, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002804 DAG.getConstant(4, dl, ShVT))),
Benjamin Kramerfff25172011-01-15 20:30:30 +00002805 Mask0F);
2806 // v = (v * 0x01010101...) >> (Len - 8)
2807 Op = DAG.getNode(ISD::SRL, dl, VT,
2808 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002809 DAG.getConstant(Len - 8, dl, ShVT));
Owen Andersonb2c80da2011-02-25 21:41:48 +00002810
Chris Lattner689bdcc2006-01-28 08:25:58 +00002811 return Op;
2812 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002813 case ISD::CTLZ_ZERO_UNDEF:
2814 // This trivially expands to CTLZ.
2815 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002816 case ISD::CTLZ: {
2817 // for now, we do this:
2818 // x = x | (x >> 1);
2819 // x = x | (x >> 2);
2820 // ...
2821 // x = x | (x >>16);
2822 // x = x | (x >>32); // for 64-bit input
2823 // return popcount(~x);
2824 //
Sanjay Patelbb292212014-09-15 19:47:44 +00002825 // Ref: "Hacker's Delight" by Henry Warren
Owen Anderson53aa7a92009-08-10 22:56:29 +00002826 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002827 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands13237ac2008-06-06 12:08:01 +00002828 unsigned len = VT.getSizeInBits();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002829 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002830 SDValue Tmp3 = DAG.getConstant(1ULL << i, dl, ShVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002831 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesendc93bbc2009-02-06 21:55:48 +00002832 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002833 }
Dale Johannesena02e45c2009-02-02 22:12:50 +00002834 Op = DAG.getNOT(dl, Op, VT);
2835 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002836 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002837 case ISD::CTTZ_ZERO_UNDEF:
2838 // This trivially expands to CTTZ.
2839 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002840 case ISD::CTTZ: {
2841 // for now, we use: { return popcount(~x & (x - 1)); }
2842 // unless the target has ctlz but not ctpop, in which case we use:
2843 // { return 32 - nlz(~x & (x-1)); }
Sanjay Patelbb292212014-09-15 19:47:44 +00002844 // Ref: "Hacker's Delight" by Henry Warren
Owen Anderson53aa7a92009-08-10 22:56:29 +00002845 EVT VT = Op.getValueType();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002846 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2847 DAG.getNOT(dl, Op, VT),
2848 DAG.getNode(ISD::SUB, dl, VT, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002849 DAG.getConstant(1, dl, VT)));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002850 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman4aa18462009-01-28 17:46:25 +00002851 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2852 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesena02e45c2009-02-02 22:12:50 +00002853 return DAG.getNode(ISD::SUB, dl, VT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002854 DAG.getConstant(VT.getSizeInBits(), dl, VT),
Dale Johannesena02e45c2009-02-02 22:12:50 +00002855 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2856 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002857 }
2858 }
2859}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002860
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002861std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2862 unsigned Opc = Node->getOpcode();
2863 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
Benjamin Kramerc54c38e2015-03-05 20:04:29 +00002864 RTLIB::Libcall LC = RTLIB::getATOMIC(Opc, VT);
2865 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected atomic op or value type!");
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002866
2867 return ExpandChainLibCall(LC, Node, false);
2868}
2869
Dan Gohman198b7ff2011-11-03 21:49:52 +00002870void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2871 SmallVector<SDValue, 8> Results;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002872 SDLoc dl(Node);
Eli Friedmane1dc1932009-05-28 20:40:34 +00002873 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Daniel Sandersedc071b2013-11-21 13:24:49 +00002874 bool NeedInvert;
Eli Friedman21d349b2009-05-27 01:25:56 +00002875 switch (Node->getOpcode()) {
2876 case ISD::CTPOP:
2877 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002878 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002879 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002880 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002881 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2882 Results.push_back(Tmp1);
2883 break;
2884 case ISD::BSWAP:
Bill Wendlingef408db2009-12-23 00:28:23 +00002885 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman21d349b2009-05-27 01:25:56 +00002886 break;
2887 case ISD::FRAMEADDR:
2888 case ISD::RETURNADDR:
2889 case ISD::FRAME_TO_ARGS_OFFSET:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002890 Results.push_back(DAG.getConstant(0, dl, Node->getValueType(0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00002891 break;
2892 case ISD::FLT_ROUNDS_:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002893 Results.push_back(DAG.getConstant(1, dl, Node->getValueType(0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00002894 break;
2895 case ISD::EH_RETURN:
Eli Friedman21d349b2009-05-27 01:25:56 +00002896 case ISD::EH_LABEL:
2897 case ISD::PREFETCH:
Eli Friedman21d349b2009-05-27 01:25:56 +00002898 case ISD::VAEND:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002899 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002900 // If the target didn't expand these, there's nothing to do, so just
2901 // preserve the chain and be done.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002902 Results.push_back(Node->getOperand(0));
2903 break;
2904 case ISD::EH_SJLJ_SETJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002905 // If the target didn't expand this, just return 'zero' and preserve the
2906 // chain.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002907 Results.push_back(DAG.getConstant(0, dl, MVT::i32));
Eli Friedman21d349b2009-05-27 01:25:56 +00002908 Results.push_back(Node->getOperand(0));
2909 break;
Tim Northovera2b53392013-04-20 12:32:17 +00002910 case ISD::ATOMIC_FENCE: {
Jim Grosbachba451e82010-06-17 02:00:53 +00002911 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman26a48482011-07-27 22:21:52 +00002912 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachba451e82010-06-17 02:00:53 +00002913 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002914
2915 TargetLowering::CallLoweringInfo CLI(DAG);
Mehdi Amini44ede332015-07-09 02:09:04 +00002916 CLI.setDebugLoc(dl)
2917 .setChain(Node->getOperand(0))
2918 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
2919 DAG.getExternalSymbol("__sync_synchronize",
2920 TLI.getPointerTy(DAG.getDataLayout())),
2921 std::move(Args), 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002922
Justin Holewinskiaa583972012-05-25 16:35:28 +00002923 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2924
Jim Grosbachba451e82010-06-17 02:00:53 +00002925 Results.push_back(CallResult.second);
2926 break;
2927 }
Eli Friedman452aae62011-08-26 02:59:24 +00002928 case ISD::ATOMIC_LOAD: {
2929 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002930 SDValue Zero = DAG.getConstant(0, dl, Node->getValueType(0));
Tim Northover420a2162014-06-13 14:24:07 +00002931 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
2932 SDValue Swap = DAG.getAtomicCmpSwap(
2933 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
2934 Node->getOperand(0), Node->getOperand(1), Zero, Zero,
2935 cast<AtomicSDNode>(Node)->getMemOperand(),
2936 cast<AtomicSDNode>(Node)->getOrdering(),
2937 cast<AtomicSDNode>(Node)->getOrdering(),
2938 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman452aae62011-08-26 02:59:24 +00002939 Results.push_back(Swap.getValue(0));
2940 Results.push_back(Swap.getValue(1));
2941 break;
2942 }
2943 case ISD::ATOMIC_STORE: {
2944 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2945 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2946 cast<AtomicSDNode>(Node)->getMemoryVT(),
2947 Node->getOperand(0),
2948 Node->getOperand(1), Node->getOperand(2),
2949 cast<AtomicSDNode>(Node)->getMemOperand(),
2950 cast<AtomicSDNode>(Node)->getOrdering(),
2951 cast<AtomicSDNode>(Node)->getSynchScope());
2952 Results.push_back(Swap.getValue(1));
2953 break;
2954 }
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00002955 // By default, atomic intrinsics are marked Legal and lowered. Targets
2956 // which don't support them directly, however, may want libcalls, in which
2957 // case they mark them Expand, and we get here.
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00002958 case ISD::ATOMIC_SWAP:
2959 case ISD::ATOMIC_LOAD_ADD:
2960 case ISD::ATOMIC_LOAD_SUB:
2961 case ISD::ATOMIC_LOAD_AND:
2962 case ISD::ATOMIC_LOAD_OR:
2963 case ISD::ATOMIC_LOAD_XOR:
2964 case ISD::ATOMIC_LOAD_NAND:
2965 case ISD::ATOMIC_LOAD_MIN:
2966 case ISD::ATOMIC_LOAD_MAX:
2967 case ISD::ATOMIC_LOAD_UMIN:
2968 case ISD::ATOMIC_LOAD_UMAX:
Evan Chengf5d62532010-06-18 22:01:37 +00002969 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002970 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2971 Results.push_back(Tmp.first);
2972 Results.push_back(Tmp.second);
Jim Grosbach0ed5b462010-06-17 17:58:54 +00002973 break;
Evan Chengf5d62532010-06-18 22:01:37 +00002974 }
Tim Northover420a2162014-06-13 14:24:07 +00002975 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
2976 // Expanding an ATOMIC_CMP_SWAP_WITH_SUCCESS produces an ATOMIC_CMP_SWAP and
2977 // splits out the success value as a comparison. Expanding the resulting
2978 // ATOMIC_CMP_SWAP will produce a libcall.
2979 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
2980 SDValue Res = DAG.getAtomicCmpSwap(
2981 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
2982 Node->getOperand(0), Node->getOperand(1), Node->getOperand(2),
2983 Node->getOperand(3), cast<MemSDNode>(Node)->getMemOperand(),
2984 cast<AtomicSDNode>(Node)->getSuccessOrdering(),
2985 cast<AtomicSDNode>(Node)->getFailureOrdering(),
2986 cast<AtomicSDNode>(Node)->getSynchScope());
2987
2988 SDValue Success = DAG.getSetCC(SDLoc(Node), Node->getValueType(1),
2989 Res, Node->getOperand(2), ISD::SETEQ);
2990
2991 Results.push_back(Res.getValue(0));
2992 Results.push_back(Success);
2993 Results.push_back(Res.getValue(1));
2994 break;
2995 }
Eli Friedman2892d822009-05-27 12:20:41 +00002996 case ISD::DYNAMIC_STACKALLOC:
2997 ExpandDYNAMIC_STACKALLOC(Node, Results);
2998 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00002999 case ISD::MERGE_VALUES:
3000 for (unsigned i = 0; i < Node->getNumValues(); i++)
3001 Results.push_back(Node->getOperand(i));
3002 break;
3003 case ISD::UNDEF: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003004 EVT VT = Node->getValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00003005 if (VT.isInteger())
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003006 Results.push_back(DAG.getConstant(0, dl, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003007 else {
3008 assert(VT.isFloatingPoint() && "Unknown value type!");
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003009 Results.push_back(DAG.getConstantFP(0, dl, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003010 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003011 break;
3012 }
3013 case ISD::TRAP: {
3014 // If this operation is not supported, lower it to 'abort()' call
3015 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003016 TargetLowering::CallLoweringInfo CLI(DAG);
Mehdi Amini44ede332015-07-09 02:09:04 +00003017 CLI.setDebugLoc(dl)
3018 .setChain(Node->getOperand(0))
3019 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
3020 DAG.getExternalSymbol("abort",
3021 TLI.getPointerTy(DAG.getDataLayout())),
3022 std::move(Args), 0);
Justin Holewinskiaa583972012-05-25 16:35:28 +00003023 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3024
Eli Friedman21d349b2009-05-27 01:25:56 +00003025 Results.push_back(CallResult.second);
3026 break;
3027 }
3028 case ISD::FP_ROUND:
Wesley Peck527da1b2010-11-23 03:31:01 +00003029 case ISD::BITCAST:
Eli Friedman21d349b2009-05-27 01:25:56 +00003030 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3031 Node->getValueType(0), dl);
3032 Results.push_back(Tmp1);
3033 break;
3034 case ISD::FP_EXTEND:
3035 Tmp1 = EmitStackConvert(Node->getOperand(0),
3036 Node->getOperand(0).getValueType(),
3037 Node->getValueType(0), dl);
3038 Results.push_back(Tmp1);
3039 break;
3040 case ISD::SIGN_EXTEND_INREG: {
3041 // NOTE: we could fall back on load/store here too for targets without
3042 // SAR. However, it is doubtful that any exist.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003043 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman1d459e42009-12-11 21:31:27 +00003044 EVT VT = Node->getValueType(0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00003045 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003046 if (VT.isVector())
Dan Gohman1d459e42009-12-11 21:31:27 +00003047 ShiftAmountTy = VT;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003048 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
3049 ExtraVT.getScalarType().getSizeInBits();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003050 SDValue ShiftCst = DAG.getConstant(BitsDiff, dl, ShiftAmountTy);
Eli Friedman21d349b2009-05-27 01:25:56 +00003051 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
3052 Node->getOperand(0), ShiftCst);
Bill Wendlingef408db2009-12-23 00:28:23 +00003053 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
3054 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003055 break;
3056 }
3057 case ISD::FP_ROUND_INREG: {
3058 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003059 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman21d349b2009-05-27 01:25:56 +00003060
3061 // NOTE: there is a choice here between constantly creating new stack
3062 // slots and always reusing the same one. We currently always create
3063 // new ones, as reuse may inhibit scheduling.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003064 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00003065 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
3066 Node->getValueType(0), dl);
3067 Results.push_back(Tmp1);
3068 break;
3069 }
3070 case ISD::SINT_TO_FP:
3071 case ISD::UINT_TO_FP:
3072 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
3073 Node->getOperand(0), Node->getValueType(0), dl);
3074 Results.push_back(Tmp1);
3075 break;
Jan Veselyeca89d22014-07-10 22:40:18 +00003076 case ISD::FP_TO_SINT:
3077 if (TLI.expandFP_TO_SINT(Node, Tmp1, DAG))
3078 Results.push_back(Tmp1);
Tom Stellardaad46592014-06-17 16:53:07 +00003079 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003080 case ISD::FP_TO_UINT: {
3081 SDValue True, False;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003082 EVT VT = Node->getOperand(0).getValueType();
3083 EVT NVT = Node->getValueType(0);
Tim Northover29178a32013-01-22 09:46:31 +00003084 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
3085 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman21d349b2009-05-27 01:25:56 +00003086 APInt x = APInt::getSignBit(NVT.getSizeInBits());
3087 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003088 Tmp1 = DAG.getConstantFP(apf, dl, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003089 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman21d349b2009-05-27 01:25:56 +00003090 Node->getOperand(0),
3091 Tmp1, ISD::SETLT);
3092 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003093 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
3094 DAG.getNode(ISD::FSUB, dl, VT,
3095 Node->getOperand(0), Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00003096 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003097 DAG.getConstant(x, dl, NVT));
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003098 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman21d349b2009-05-27 01:25:56 +00003099 Results.push_back(Tmp1);
3100 break;
3101 }
Eli Friedman3b251702009-05-27 07:58:35 +00003102 case ISD::VAARG: {
3103 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003104 EVT VT = Node->getValueType(0);
Eli Friedman3b251702009-05-27 07:58:35 +00003105 Tmp1 = Node->getOperand(0);
3106 Tmp2 = Node->getOperand(1);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003107 unsigned Align = Node->getConstantOperandVal(3);
3108
Mehdi Amini44ede332015-07-09 02:09:04 +00003109 SDValue VAListLoad =
3110 DAG.getLoad(TLI.getPointerTy(DAG.getDataLayout()), dl, Tmp1, Tmp2,
3111 MachinePointerInfo(V), false, false, false, 0);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003112 SDValue VAList = VAListLoad;
3113
Rafael Espindolaa76eccf2010-07-11 04:01:49 +00003114 if (Align > TLI.getMinStackArgumentAlignment()) {
3115 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
3116
Tom Stellard838e2342013-08-26 15:06:10 +00003117 VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003118 DAG.getConstant(Align - 1, dl,
Tom Stellard838e2342013-08-26 15:06:10 +00003119 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003120
Tom Stellard838e2342013-08-26 15:06:10 +00003121 VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003122 DAG.getConstant(-(int64_t)Align, dl,
Tom Stellard838e2342013-08-26 15:06:10 +00003123 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003124 }
3125
Eli Friedman3b251702009-05-27 07:58:35 +00003126 // Increment the pointer, VAList, to the next vaarg
Tom Stellard838e2342013-08-26 15:06:10 +00003127 Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00003128 DAG.getConstant(DAG.getDataLayout().getTypeAllocSize(
3129 VT.getTypeForEVT(*DAG.getContext())),
3130 dl, VAList.getValueType()));
Eli Friedman3b251702009-05-27 07:58:35 +00003131 // Store the incremented VAList to the legalized pointer
Chris Lattner676c61d2010-09-21 18:41:36 +00003132 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
3133 MachinePointerInfo(V), false, false, 0);
Eli Friedman3b251702009-05-27 07:58:35 +00003134 // Load the actual argument out of the pointer VAList
Chris Lattner1ffcf522010-09-21 16:36:31 +00003135 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003136 false, false, false, 0));
Eli Friedman3b251702009-05-27 07:58:35 +00003137 Results.push_back(Results[0].getValue(1));
3138 break;
3139 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003140 case ISD::VACOPY: {
3141 // This defaults to loading a pointer from the input and storing it to the
3142 // output, returning the chain.
3143 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3144 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Mehdi Amini44ede332015-07-09 02:09:04 +00003145 Tmp1 = DAG.getLoad(TLI.getPointerTy(DAG.getDataLayout()), dl,
3146 Node->getOperand(0), Node->getOperand(2),
3147 MachinePointerInfo(VS), false, false, false, 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +00003148 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
3149 MachinePointerInfo(VD), false, false, 0);
Bill Wendlingef408db2009-12-23 00:28:23 +00003150 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003151 break;
3152 }
3153 case ISD::EXTRACT_VECTOR_ELT:
3154 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3155 // This must be an access of the only element. Return it.
Wesley Peck527da1b2010-11-23 03:31:01 +00003156 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman21d349b2009-05-27 01:25:56 +00003157 Node->getOperand(0));
3158 else
3159 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3160 Results.push_back(Tmp1);
3161 break;
3162 case ISD::EXTRACT_SUBVECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003163 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00003164 break;
David Greenebab5e6e2011-01-26 19:13:22 +00003165 case ISD::INSERT_SUBVECTOR:
3166 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3167 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003168 case ISD::CONCAT_VECTORS: {
Bill Wendlingef408db2009-12-23 00:28:23 +00003169 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman3b251702009-05-27 07:58:35 +00003170 break;
3171 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003172 case ISD::SCALAR_TO_VECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003173 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman21d349b2009-05-27 01:25:56 +00003174 break;
Eli Friedmana8f9a022009-05-27 02:16:40 +00003175 case ISD::INSERT_VECTOR_ELT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003176 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3177 Node->getOperand(1),
3178 Node->getOperand(2), dl));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003179 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003180 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00003181 SmallVector<int, 32> NewMask;
3182 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00003183
Owen Anderson53aa7a92009-08-10 22:56:29 +00003184 EVT VT = Node->getValueType(0);
3185 EVT EltVT = VT.getVectorElementType();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003186 SDValue Op0 = Node->getOperand(0);
3187 SDValue Op1 = Node->getOperand(1);
3188 if (!TLI.isTypeLegal(EltVT)) {
3189
3190 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3191
3192 // BUILD_VECTOR operands are allowed to be wider than the element type.
Jack Carter5c0af482013-11-19 23:43:22 +00003193 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept
3194 // it.
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003195 if (NewEltVT.bitsLT(EltVT)) {
3196
3197 // Convert shuffle node.
3198 // If original node was v4i64 and the new EltVT is i32,
3199 // cast operands to v8i32 and re-build the mask.
3200
3201 // Calculate new VT, the size of the new VT should be equal to original.
Jack Carter5c0af482013-11-19 23:43:22 +00003202 EVT NewVT =
3203 EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3204 VT.getSizeInBits() / NewEltVT.getSizeInBits());
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003205 assert(NewVT.bitsEq(VT));
3206
3207 // cast operands to new VT
3208 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3209 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3210
3211 // Convert the shuffle mask
Jack Carter5c0af482013-11-19 23:43:22 +00003212 unsigned int factor =
3213 NewVT.getVectorNumElements()/VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003214
3215 // EltVT gets smaller
3216 assert(factor > 0);
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003217
3218 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3219 if (Mask[i] < 0) {
3220 for (unsigned fi = 0; fi < factor; ++fi)
3221 NewMask.push_back(Mask[i]);
3222 }
3223 else {
3224 for (unsigned fi = 0; fi < factor; ++fi)
3225 NewMask.push_back(Mask[i]*factor+fi);
3226 }
3227 }
3228 Mask = NewMask;
3229 VT = NewVT;
3230 }
3231 EltVT = NewEltVT;
3232 }
Eli Friedman3b251702009-05-27 07:58:35 +00003233 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003234 SmallVector<SDValue, 16> Ops;
Eli Friedman3b251702009-05-27 07:58:35 +00003235 for (unsigned i = 0; i != NumElems; ++i) {
3236 if (Mask[i] < 0) {
3237 Ops.push_back(DAG.getUNDEF(EltVT));
3238 continue;
3239 }
3240 unsigned Idx = Mask[i];
3241 if (Idx < NumElems)
Mehdi Amini44ede332015-07-09 02:09:04 +00003242 Ops.push_back(DAG.getNode(
3243 ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Op0,
3244 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout()))));
Eli Friedman3b251702009-05-27 07:58:35 +00003245 else
Mehdi Amini44ede332015-07-09 02:09:04 +00003246 Ops.push_back(DAG.getNode(
3247 ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Op1,
3248 DAG.getConstant(Idx - NumElems, dl,
3249 TLI.getVectorIdxTy(DAG.getDataLayout()))));
Eli Friedman3b251702009-05-27 07:58:35 +00003250 }
Nadav Rotem61bdf792012-01-10 14:28:46 +00003251
Craig Topper48d114b2014-04-26 18:35:24 +00003252 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
Nadav Rotem61bdf792012-01-10 14:28:46 +00003253 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3254 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00003255 Results.push_back(Tmp1);
3256 break;
3257 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003258 case ISD::EXTRACT_ELEMENT: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003259 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman21d349b2009-05-27 01:25:56 +00003260 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3261 // 1 -> Hi
3262 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003263 DAG.getConstant(OpTy.getSizeInBits()/2, dl,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003264 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman21d349b2009-05-27 01:25:56 +00003265 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3266 } else {
3267 // 0 -> Lo
3268 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3269 Node->getOperand(0));
3270 }
3271 Results.push_back(Tmp1);
3272 break;
3273 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003274 case ISD::STACKSAVE:
3275 // Expand to CopyFromReg if the target set
3276 // StackPointerRegisterToSaveRestore.
3277 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003278 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3279 Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003280 Results.push_back(Results[0].getValue(1));
3281 } else {
Bill Wendlingef408db2009-12-23 00:28:23 +00003282 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003283 Results.push_back(Node->getOperand(0));
3284 }
3285 break;
3286 case ISD::STACKRESTORE:
Bill Wendlingef408db2009-12-23 00:28:23 +00003287 // Expand to CopyToReg if the target set
3288 // StackPointerRegisterToSaveRestore.
3289 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3290 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3291 Node->getOperand(1)));
3292 } else {
3293 Results.push_back(Node->getOperand(0));
3294 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003295 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003296 case ISD::FCOPYSIGN:
Bill Wendlingef408db2009-12-23 00:28:23 +00003297 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00003298 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003299 case ISD::FNEG:
3300 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003301 Tmp1 = DAG.getConstantFP(-0.0, dl, Node->getValueType(0));
Eli Friedmand6f28342009-05-27 03:33:44 +00003302 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3303 Node->getOperand(0));
3304 Results.push_back(Tmp1);
3305 break;
3306 case ISD::FABS: {
3307 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Anderson53aa7a92009-08-10 22:56:29 +00003308 EVT VT = Node->getValueType(0);
Eli Friedmand6f28342009-05-27 03:33:44 +00003309 Tmp1 = Node->getOperand(0);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003310 Tmp2 = DAG.getConstantFP(0.0, dl, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003311 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
Eli Friedmand6f28342009-05-27 03:33:44 +00003312 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendlingef408db2009-12-23 00:28:23 +00003313 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003314 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmand6f28342009-05-27 03:33:44 +00003315 Results.push_back(Tmp1);
3316 break;
3317 }
James Molloy7e9776b2015-05-15 09:03:15 +00003318 case ISD::SMIN:
3319 case ISD::SMAX:
3320 case ISD::UMIN:
3321 case ISD::UMAX: {
3322 // Expand Y = MAX(A, B) -> Y = (A > B) ? A : B
3323 ISD::CondCode Pred;
3324 switch (Node->getOpcode()) {
3325 default: llvm_unreachable("How did we get here?");
3326 case ISD::SMAX: Pred = ISD::SETGT; break;
3327 case ISD::SMIN: Pred = ISD::SETLT; break;
3328 case ISD::UMAX: Pred = ISD::SETUGT; break;
3329 case ISD::UMIN: Pred = ISD::SETULT; break;
3330 }
3331 Tmp1 = Node->getOperand(0);
3332 Tmp2 = Node->getOperand(1);
3333 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp1, Tmp2, Pred);
3334 Results.push_back(Tmp1);
3335 break;
3336 }
3337
Matt Arsenault7c936902014-10-21 23:01:01 +00003338 case ISD::FMINNUM:
3339 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMIN_F32, RTLIB::FMIN_F64,
3340 RTLIB::FMIN_F80, RTLIB::FMIN_F128,
3341 RTLIB::FMIN_PPCF128));
3342 break;
3343 case ISD::FMAXNUM:
3344 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMAX_F32, RTLIB::FMAX_F64,
3345 RTLIB::FMAX_F80, RTLIB::FMAX_F128,
3346 RTLIB::FMAX_PPCF128));
3347 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003348 case ISD::FSQRT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003349 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003350 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3351 RTLIB::SQRT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003352 break;
3353 case ISD::FSIN:
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003354 case ISD::FCOS: {
3355 EVT VT = Node->getValueType(0);
3356 bool isSIN = Node->getOpcode() == ISD::FSIN;
3357 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3358 // fcos which share the same operand and both are used.
3359 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmondf29ddfe2013-02-15 18:45:18 +00003360 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003361 && useSinCos(Node)) {
3362 SDVTList VTs = DAG.getVTList(VT, VT);
3363 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3364 if (!isSIN)
3365 Tmp1 = Tmp1.getValue(1);
3366 Results.push_back(Tmp1);
3367 } else if (isSIN) {
3368 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3369 RTLIB::SIN_F80, RTLIB::SIN_F128,
3370 RTLIB::SIN_PPCF128));
3371 } else {
3372 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3373 RTLIB::COS_F80, RTLIB::COS_F128,
3374 RTLIB::COS_PPCF128));
3375 }
Eli Friedmand6f28342009-05-27 03:33:44 +00003376 break;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003377 }
3378 case ISD::FSINCOS:
3379 // Expand into sincos libcall.
3380 ExpandSinCosLibCall(Node, Results);
Eli Friedmand6f28342009-05-27 03:33:44 +00003381 break;
3382 case ISD::FLOG:
Bill Wendlingef408db2009-12-23 00:28:23 +00003383 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003384 RTLIB::LOG_F80, RTLIB::LOG_F128,
3385 RTLIB::LOG_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003386 break;
3387 case ISD::FLOG2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003388 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003389 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3390 RTLIB::LOG2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003391 break;
3392 case ISD::FLOG10:
Bill Wendlingef408db2009-12-23 00:28:23 +00003393 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003394 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3395 RTLIB::LOG10_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003396 break;
3397 case ISD::FEXP:
Bill Wendlingef408db2009-12-23 00:28:23 +00003398 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003399 RTLIB::EXP_F80, RTLIB::EXP_F128,
3400 RTLIB::EXP_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003401 break;
3402 case ISD::FEXP2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003403 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003404 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3405 RTLIB::EXP2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003406 break;
3407 case ISD::FTRUNC:
Bill Wendlingef408db2009-12-23 00:28:23 +00003408 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003409 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3410 RTLIB::TRUNC_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003411 break;
3412 case ISD::FFLOOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003413 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003414 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3415 RTLIB::FLOOR_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003416 break;
3417 case ISD::FCEIL:
Bill Wendlingef408db2009-12-23 00:28:23 +00003418 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003419 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3420 RTLIB::CEIL_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003421 break;
3422 case ISD::FRINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003423 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003424 RTLIB::RINT_F80, RTLIB::RINT_F128,
3425 RTLIB::RINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003426 break;
3427 case ISD::FNEARBYINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003428 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3429 RTLIB::NEARBYINT_F64,
3430 RTLIB::NEARBYINT_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003431 RTLIB::NEARBYINT_F128,
Bill Wendlingef408db2009-12-23 00:28:23 +00003432 RTLIB::NEARBYINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003433 break;
Hal Finkel171817e2013-08-07 22:49:12 +00003434 case ISD::FROUND:
3435 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3436 RTLIB::ROUND_F64,
3437 RTLIB::ROUND_F80,
3438 RTLIB::ROUND_F128,
3439 RTLIB::ROUND_PPCF128));
3440 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003441 case ISD::FPOWI:
Bill Wendlingef408db2009-12-23 00:28:23 +00003442 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003443 RTLIB::POWI_F80, RTLIB::POWI_F128,
3444 RTLIB::POWI_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003445 break;
3446 case ISD::FPOW:
Bill Wendlingef408db2009-12-23 00:28:23 +00003447 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003448 RTLIB::POW_F80, RTLIB::POW_F128,
3449 RTLIB::POW_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003450 break;
3451 case ISD::FDIV:
Bill Wendlingef408db2009-12-23 00:28:23 +00003452 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003453 RTLIB::DIV_F80, RTLIB::DIV_F128,
3454 RTLIB::DIV_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003455 break;
3456 case ISD::FREM:
Bill Wendlingef408db2009-12-23 00:28:23 +00003457 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003458 RTLIB::REM_F80, RTLIB::REM_F128,
3459 RTLIB::REM_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003460 break;
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003461 case ISD::FMA:
3462 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003463 RTLIB::FMA_F80, RTLIB::FMA_F128,
3464 RTLIB::FMA_PPCF128));
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003465 break;
Matt Arsenault0dc54c42015-02-20 22:10:33 +00003466 case ISD::FMAD:
3467 llvm_unreachable("Illegal fmad should never be formed");
3468
Oliver Stannard51b1d462014-08-21 12:50:31 +00003469 case ISD::FADD:
3470 Results.push_back(ExpandFPLibCall(Node, RTLIB::ADD_F32, RTLIB::ADD_F64,
3471 RTLIB::ADD_F80, RTLIB::ADD_F128,
3472 RTLIB::ADD_PPCF128));
3473 break;
3474 case ISD::FMUL:
3475 Results.push_back(ExpandFPLibCall(Node, RTLIB::MUL_F32, RTLIB::MUL_F64,
3476 RTLIB::MUL_F80, RTLIB::MUL_F128,
3477 RTLIB::MUL_PPCF128));
3478 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00003479 case ISD::FP16_TO_FP: {
3480 if (Node->getValueType(0) == MVT::f32) {
3481 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3482 break;
3483 }
3484
3485 // We can extend to types bigger than f32 in two steps without changing the
3486 // result. Since "f16 -> f32" is much more commonly available, give CodeGen
3487 // the option of emitting that before resorting to a libcall.
3488 SDValue Res =
3489 DAG.getNode(ISD::FP16_TO_FP, dl, MVT::f32, Node->getOperand(0));
3490 Results.push_back(
3491 DAG.getNode(ISD::FP_EXTEND, dl, Node->getValueType(0), Res));
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003492 break;
Tim Northoverfd7e4242014-07-17 10:51:23 +00003493 }
Tim Northover84ce0a62014-07-17 11:12:12 +00003494 case ISD::FP_TO_FP16: {
Eric Christopher824f42f2015-05-12 01:26:05 +00003495 if (!TLI.useSoftFloat() && TM.Options.UnsafeFPMath) {
Andrea Di Biagioaf3f3972015-02-23 22:59:02 +00003496 SDValue Op = Node->getOperand(0);
3497 MVT SVT = Op.getSimpleValueType();
3498 if ((SVT == MVT::f64 || SVT == MVT::f80) &&
3499 TLI.isOperationLegalOrCustom(ISD::FP_TO_FP16, MVT::f32)) {
3500 // Under fastmath, we can expand this node into a fround followed by
3501 // a float-half conversion.
3502 SDValue FloatVal = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003503 DAG.getIntPtrConstant(0, dl));
Andrea Di Biagioaf3f3972015-02-23 22:59:02 +00003504 Results.push_back(
3505 DAG.getNode(ISD::FP_TO_FP16, dl, MVT::i16, FloatVal));
3506 break;
3507 }
3508 }
3509
Tim Northover84ce0a62014-07-17 11:12:12 +00003510 RTLIB::Libcall LC =
3511 RTLIB::getFPROUND(Node->getOperand(0).getValueType(), MVT::f16);
3512 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unable to expand fp_to_fp16");
3513 Results.push_back(ExpandLibCall(LC, Node, false));
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003514 break;
Tim Northover84ce0a62014-07-17 11:12:12 +00003515 }
Eli Friedman0e494312009-05-27 07:32:27 +00003516 case ISD::ConstantFP: {
3517 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendlingef408db2009-12-23 00:28:23 +00003518 // Check to see if this FP immediate is already legal.
3519 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman198b7ff2011-11-03 21:49:52 +00003520 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3521 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedman0e494312009-05-27 07:32:27 +00003522 break;
3523 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003524 case ISD::FSUB: {
3525 EVT VT = Node->getValueType(0);
Oliver Stannard51b1d462014-08-21 12:50:31 +00003526 if (TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3527 TLI.isOperationLegalOrCustom(ISD::FNEG, VT)) {
3528 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3529 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3530 Results.push_back(Tmp1);
3531 } else {
3532 Results.push_back(ExpandFPLibCall(Node, RTLIB::SUB_F32, RTLIB::SUB_F64,
3533 RTLIB::SUB_F80, RTLIB::SUB_F128,
3534 RTLIB::SUB_PPCF128));
3535 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003536 break;
3537 }
Eli Friedman56883962009-05-27 07:05:37 +00003538 case ISD::SUB: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003539 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003540 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3541 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3542 "Don't know how to expand this subtraction!");
3543 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003544 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), dl,
3545 VT));
3546 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, dl, VT));
Bill Wendlingef408db2009-12-23 00:28:23 +00003547 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman56883962009-05-27 07:05:37 +00003548 break;
3549 }
Eli Friedman0e494312009-05-27 07:32:27 +00003550 case ISD::UREM:
3551 case ISD::SREM: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003552 EVT VT = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003553 bool isSigned = Node->getOpcode() == ISD::SREM;
3554 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3555 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3556 Tmp2 = Node->getOperand(0);
3557 Tmp3 = Node->getOperand(1);
Evan Chengb14ce092011-04-16 03:08:26 +00003558 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3559 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng21c4adc2012-10-12 01:15:47 +00003560 // If div is legal, it's better to do the normal expansion
3561 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003562 useDivRem(Node, isSigned, false))) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003563 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmane1bc3792009-05-28 03:06:16 +00003564 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3565 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedman0e494312009-05-27 07:32:27 +00003566 // X % Y -> X-X/Y*Y
3567 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3568 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3569 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Chengb14ce092011-04-16 03:08:26 +00003570 } else if (isSigned)
3571 Tmp1 = ExpandIntLibCall(Node, true,
3572 RTLIB::SREM_I8,
3573 RTLIB::SREM_I16, RTLIB::SREM_I32,
3574 RTLIB::SREM_I64, RTLIB::SREM_I128);
3575 else
3576 Tmp1 = ExpandIntLibCall(Node, false,
3577 RTLIB::UREM_I8,
3578 RTLIB::UREM_I16, RTLIB::UREM_I32,
3579 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003580 Results.push_back(Tmp1);
3581 break;
3582 }
Eli Friedman0e494312009-05-27 07:32:27 +00003583 case ISD::UDIV:
3584 case ISD::SDIV: {
3585 bool isSigned = Node->getOpcode() == ISD::SDIV;
3586 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003587 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003588 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Chengb14ce092011-04-16 03:08:26 +00003589 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3590 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003591 useDivRem(Node, isSigned, true)))
Eli Friedman0e494312009-05-27 07:32:27 +00003592 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3593 Node->getOperand(1));
Evan Chengb14ce092011-04-16 03:08:26 +00003594 else if (isSigned)
3595 Tmp1 = ExpandIntLibCall(Node, true,
3596 RTLIB::SDIV_I8,
3597 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3598 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3599 else
3600 Tmp1 = ExpandIntLibCall(Node, false,
3601 RTLIB::UDIV_I8,
3602 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3603 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003604 Results.push_back(Tmp1);
3605 break;
3606 }
3607 case ISD::MULHU:
3608 case ISD::MULHS: {
3609 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3610 ISD::SMUL_LOHI;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003611 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003612 SDVTList VTs = DAG.getVTList(VT, VT);
3613 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3614 "If this wasn't legal, it shouldn't have been created!");
3615 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3616 Node->getOperand(1));
3617 Results.push_back(Tmp1.getValue(1));
3618 break;
3619 }
Evan Chengb14ce092011-04-16 03:08:26 +00003620 case ISD::SDIVREM:
3621 case ISD::UDIVREM:
3622 // Expand into divrem libcall
3623 ExpandDivRemLibCall(Node, Results);
3624 break;
Eli Friedman56883962009-05-27 07:05:37 +00003625 case ISD::MUL: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003626 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003627 SDVTList VTs = DAG.getVTList(VT, VT);
3628 // See if multiply or divide can be lowered using two-result operations.
3629 // We just need the low half of the multiply; try both the signed
3630 // and unsigned forms. If the target supports both SMUL_LOHI and
3631 // UMUL_LOHI, form a preference by checking which forms of plain
3632 // MULH it supports.
3633 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3634 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3635 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3636 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3637 unsigned OpToUse = 0;
3638 if (HasSMUL_LOHI && !HasMULHS) {
3639 OpToUse = ISD::SMUL_LOHI;
3640 } else if (HasUMUL_LOHI && !HasMULHU) {
3641 OpToUse = ISD::UMUL_LOHI;
3642 } else if (HasSMUL_LOHI) {
3643 OpToUse = ISD::SMUL_LOHI;
3644 } else if (HasUMUL_LOHI) {
3645 OpToUse = ISD::UMUL_LOHI;
3646 }
3647 if (OpToUse) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003648 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3649 Node->getOperand(1)));
Eli Friedman56883962009-05-27 07:05:37 +00003650 break;
3651 }
Tom Stellarda1a5d9a2014-04-11 16:12:01 +00003652
3653 SDValue Lo, Hi;
3654 EVT HalfType = VT.getHalfSizedIntegerVT(*DAG.getContext());
3655 if (TLI.isOperationLegalOrCustom(ISD::ZERO_EXTEND, VT) &&
3656 TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND, VT) &&
3657 TLI.isOperationLegalOrCustom(ISD::SHL, VT) &&
3658 TLI.isOperationLegalOrCustom(ISD::OR, VT) &&
3659 TLI.expandMUL(Node, Lo, Hi, HalfType, DAG)) {
3660 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Lo);
3661 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, VT, Hi);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003662 SDValue Shift = DAG.getConstant(HalfType.getSizeInBits(), dl,
Tom Stellarda1a5d9a2014-04-11 16:12:01 +00003663 TLI.getShiftAmountTy(HalfType));
3664 Hi = DAG.getNode(ISD::SHL, dl, VT, Hi, Shift);
3665 Results.push_back(DAG.getNode(ISD::OR, dl, VT, Lo, Hi));
3666 break;
3667 }
3668
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00003669 Tmp1 = ExpandIntLibCall(Node, false,
3670 RTLIB::MUL_I8,
3671 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman56883962009-05-27 07:05:37 +00003672 RTLIB::MUL_I64, RTLIB::MUL_I128);
3673 Results.push_back(Tmp1);
3674 break;
3675 }
Eli Friedman2892d822009-05-27 12:20:41 +00003676 case ISD::SADDO:
3677 case ISD::SSUBO: {
3678 SDValue LHS = Node->getOperand(0);
3679 SDValue RHS = Node->getOperand(1);
3680 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3681 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3682 LHS, RHS);
3683 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003684 EVT ResultType = Node->getValueType(1);
3685 EVT OType = getSetCCResultType(Node->getValueType(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003686
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003687 SDValue Zero = DAG.getConstant(0, dl, LHS.getValueType());
Eli Friedman2892d822009-05-27 12:20:41 +00003688
3689 // LHSSign -> LHS >= 0
3690 // RHSSign -> RHS >= 0
3691 // SumSign -> Sum >= 0
3692 //
3693 // Add:
3694 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3695 // Sub:
3696 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3697 //
3698 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3699 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3700 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3701 Node->getOpcode() == ISD::SADDO ?
3702 ISD::SETEQ : ISD::SETNE);
3703
3704 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3705 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3706
3707 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003708 Results.push_back(DAG.getBoolExtOrTrunc(Cmp, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003709 break;
3710 }
3711 case ISD::UADDO:
3712 case ISD::USUBO: {
3713 SDValue LHS = Node->getOperand(0);
3714 SDValue RHS = Node->getOperand(1);
3715 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3716 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3717 LHS, RHS);
3718 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003719
3720 EVT ResultType = Node->getValueType(1);
3721 EVT SetCCType = getSetCCResultType(Node->getValueType(0));
3722 ISD::CondCode CC
3723 = Node->getOpcode() == ISD::UADDO ? ISD::SETULT : ISD::SETUGT;
3724 SDValue SetCC = DAG.getSetCC(dl, SetCCType, Sum, LHS, CC);
3725
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003726 Results.push_back(DAG.getBoolExtOrTrunc(SetCC, dl, ResultType, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003727 break;
3728 }
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003729 case ISD::UMULO:
3730 case ISD::SMULO: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003731 EVT VT = Node->getValueType(0);
Eric Christopherbcaedb52011-04-20 01:19:45 +00003732 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003733 SDValue LHS = Node->getOperand(0);
3734 SDValue RHS = Node->getOperand(1);
3735 SDValue BottomHalf;
3736 SDValue TopHalf;
Nuno Lopes129819d2009-12-23 17:48:10 +00003737 static const unsigned Ops[2][3] =
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003738 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3739 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3740 bool isSigned = Node->getOpcode() == ISD::SMULO;
3741 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3742 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3743 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3744 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3745 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3746 RHS);
3747 TopHalf = BottomHalf.getValue(1);
Eric Christopher83dd2fa2014-04-28 22:24:57 +00003748 } else if (TLI.isTypeLegal(WideVT)) {
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003749 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3750 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3751 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3752 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003753 DAG.getIntPtrConstant(0, dl));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003754 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003755 DAG.getIntPtrConstant(1, dl));
Eric Christopherbb14f652011-01-20 00:29:24 +00003756 } else {
3757 // We can fall back to a libcall with an illegal type for the MUL if we
3758 // have a libcall big enough.
3759 // Also, we can fall back to a division in some cases, but that's a big
3760 // performance hit in the general case.
Eric Christopherbb14f652011-01-20 00:29:24 +00003761 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3762 if (WideVT == MVT::i16)
3763 LC = RTLIB::MUL_I16;
3764 else if (WideVT == MVT::i32)
3765 LC = RTLIB::MUL_I32;
3766 else if (WideVT == MVT::i64)
3767 LC = RTLIB::MUL_I64;
3768 else if (WideVT == MVT::i128)
3769 LC = RTLIB::MUL_I128;
3770 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanae9b1682011-05-16 22:09:53 +00003771
3772 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherbcaedb52011-04-20 01:19:45 +00003773 // part.
3774 unsigned LoSize = VT.getSizeInBits();
Mehdi Amini44ede332015-07-09 02:09:04 +00003775 SDValue HiLHS =
3776 DAG.getNode(ISD::SRA, dl, VT, RHS,
3777 DAG.getConstant(LoSize - 1, dl,
3778 TLI.getPointerTy(DAG.getDataLayout())));
3779 SDValue HiRHS =
3780 DAG.getNode(ISD::SRA, dl, VT, LHS,
3781 DAG.getConstant(LoSize - 1, dl,
3782 TLI.getPointerTy(DAG.getDataLayout())));
Owen Andersonb2c80da2011-02-25 21:41:48 +00003783
Eric Christopherbcaedb52011-04-20 01:19:45 +00003784 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3785 // pre-lowered to the correct types. This all depends upon WideVT not
3786 // being a legal type for the architecture and thus has to be split to
3787 // two arguments.
3788 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3789 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3790 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003791 DAG.getIntPtrConstant(0, dl));
Eric Christopherbcaedb52011-04-20 01:19:45 +00003792 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003793 DAG.getIntPtrConstant(1, dl));
Dan Gohman198b7ff2011-11-03 21:49:52 +00003794 // Ret is a node with an illegal type. Because such things are not
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00003795 // generally permitted during this phase of legalization, make sure the
3796 // node has no more uses. The above EXTRACT_ELEMENT nodes should have been
3797 // folded.
3798 assert(Ret->use_empty() &&
3799 "Unexpected uses of illegally type from expanded lib call.");
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003800 }
Dan Gohmanae9b1682011-05-16 22:09:53 +00003801
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003802 if (isSigned) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003803 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1, dl,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003804 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003805 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault758659232013-05-18 00:21:46 +00003806 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003807 ISD::SETNE);
3808 } else {
Matt Arsenault758659232013-05-18 00:21:46 +00003809 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003810 DAG.getConstant(0, dl, VT), ISD::SETNE);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003811 }
3812 Results.push_back(BottomHalf);
3813 Results.push_back(TopHalf);
3814 break;
3815 }
Eli Friedman0e494312009-05-27 07:32:27 +00003816 case ISD::BUILD_PAIR: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003817 EVT PairTy = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003818 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3819 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendlingef408db2009-12-23 00:28:23 +00003820 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003821 DAG.getConstant(PairTy.getSizeInBits()/2, dl,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003822 TLI.getShiftAmountTy(PairTy)));
Bill Wendlingef408db2009-12-23 00:28:23 +00003823 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedman0e494312009-05-27 07:32:27 +00003824 break;
3825 }
Eli Friedman3b251702009-05-27 07:58:35 +00003826 case ISD::SELECT:
3827 Tmp1 = Node->getOperand(0);
3828 Tmp2 = Node->getOperand(1);
3829 Tmp3 = Node->getOperand(2);
Bill Wendlingef408db2009-12-23 00:28:23 +00003830 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman3b251702009-05-27 07:58:35 +00003831 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3832 Tmp2, Tmp3,
3833 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendlingef408db2009-12-23 00:28:23 +00003834 } else {
Eli Friedman3b251702009-05-27 07:58:35 +00003835 Tmp1 = DAG.getSelectCC(dl, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003836 DAG.getConstant(0, dl, Tmp1.getValueType()),
Eli Friedman3b251702009-05-27 07:58:35 +00003837 Tmp2, Tmp3, ISD::SETNE);
Bill Wendlingef408db2009-12-23 00:28:23 +00003838 }
Eli Friedman3b251702009-05-27 07:58:35 +00003839 Results.push_back(Tmp1);
3840 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003841 case ISD::BR_JT: {
3842 SDValue Chain = Node->getOperand(0);
3843 SDValue Table = Node->getOperand(1);
3844 SDValue Index = Node->getOperand(2);
3845
Mehdi Amini44ede332015-07-09 02:09:04 +00003846 EVT PTy = TLI.getPointerTy(DAG.getDataLayout());
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003847
Mehdi Amini8ac7a9d2015-07-07 19:07:19 +00003848 const DataLayout &TD = DAG.getDataLayout();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003849 unsigned EntrySize =
3850 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00003851
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003852 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(), Index,
3853 DAG.getConstant(EntrySize, dl, Index.getValueType()));
Tom Stellard838e2342013-08-26 15:06:10 +00003854 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3855 Index, Table);
Eli Friedman2892d822009-05-27 12:20:41 +00003856
Owen Anderson117c9e82009-08-12 00:36:31 +00003857 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastings81c43062011-02-16 16:23:55 +00003858 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattnera35499e2010-09-21 07:32:19 +00003859 MachinePointerInfo::getJumpTable(), MemVT,
Louis Gerbarg67474e32014-07-31 21:45:05 +00003860 false, false, false, 0);
Eli Friedman2892d822009-05-27 12:20:41 +00003861 Addr = LD;
Dan Gohmanc3349602010-04-19 19:05:59 +00003862 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman2892d822009-05-27 12:20:41 +00003863 // For PIC, the sequence is:
Bill Wendlingef408db2009-12-23 00:28:23 +00003864 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman2892d822009-05-27 12:20:41 +00003865 // RelocBase can be JumpTable, GOT or some sort of global base.
3866 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3867 TLI.getPICJumpTableRelocBase(Table, DAG));
3868 }
Owen Anderson9f944592009-08-11 20:47:22 +00003869 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman2892d822009-05-27 12:20:41 +00003870 Results.push_back(Tmp1);
3871 break;
3872 }
Eli Friedman0e494312009-05-27 07:32:27 +00003873 case ISD::BRCOND:
3874 // Expand brcond's setcc into its constituent parts and create a BR_CC
3875 // Node.
3876 Tmp1 = Node->getOperand(0);
3877 Tmp2 = Node->getOperand(1);
Bill Wendlingef408db2009-12-23 00:28:23 +00003878 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson9f944592009-08-11 20:47:22 +00003879 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedman0e494312009-05-27 07:32:27 +00003880 Tmp1, Tmp2.getOperand(2),
3881 Tmp2.getOperand(0), Tmp2.getOperand(1),
3882 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003883 } else {
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003884 // We test only the i1 bit. Skip the AND if UNDEF.
3885 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3886 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003887 DAG.getConstant(1, dl, Tmp2.getValueType()));
Owen Anderson9f944592009-08-11 20:47:22 +00003888 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003889 DAG.getCondCode(ISD::SETNE), Tmp3,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003890 DAG.getConstant(0, dl, Tmp3.getValueType()),
Eli Friedman0e494312009-05-27 07:32:27 +00003891 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003892 }
Eli Friedman0e494312009-05-27 07:32:27 +00003893 Results.push_back(Tmp1);
3894 break;
Eli Friedman5df72022009-05-28 03:56:57 +00003895 case ISD::SETCC: {
3896 Tmp1 = Node->getOperand(0);
3897 Tmp2 = Node->getOperand(1);
3898 Tmp3 = Node->getOperand(2);
Tom Stellard08690a12013-09-28 02:50:32 +00003899 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
Daniel Sandersedc071b2013-11-21 13:24:49 +00003900 Tmp3, NeedInvert, dl);
Eli Friedman5df72022009-05-28 03:56:57 +00003901
Tom Stellard08690a12013-09-28 02:50:32 +00003902 if (Legalized) {
Daniel Sandersedc071b2013-11-21 13:24:49 +00003903 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3904 // condition code, create a new SETCC node.
Tom Stellard08690a12013-09-28 02:50:32 +00003905 if (Tmp3.getNode())
3906 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3907 Tmp1, Tmp2, Tmp3);
3908
Daniel Sandersedc071b2013-11-21 13:24:49 +00003909 // If we expanded the SETCC by inverting the condition code, then wrap
3910 // the existing SETCC in a NOT to restore the intended condition.
3911 if (NeedInvert)
Pete Cooper7fd1d722014-05-12 23:26:58 +00003912 Tmp1 = DAG.getLogicalNOT(dl, Tmp1, Tmp1->getValueType(0));
Daniel Sandersedc071b2013-11-21 13:24:49 +00003913
Eli Friedman5df72022009-05-28 03:56:57 +00003914 Results.push_back(Tmp1);
3915 break;
3916 }
3917
3918 // Otherwise, SETCC for the given comparison type must be completely
3919 // illegal; expand it into a SELECT_CC.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003920 EVT VT = Node->getValueType(0);
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003921 int TrueValue;
Daniel Sanderscbd44c52014-07-10 10:18:12 +00003922 switch (TLI.getBooleanContents(Tmp1->getValueType(0))) {
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003923 case TargetLowering::ZeroOrOneBooleanContent:
3924 case TargetLowering::UndefinedBooleanContent:
3925 TrueValue = 1;
3926 break;
3927 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3928 TrueValue = -1;
3929 break;
3930 }
Eli Friedman5df72022009-05-28 03:56:57 +00003931 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003932 DAG.getConstant(TrueValue, dl, VT),
3933 DAG.getConstant(0, dl, VT),
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003934 Tmp3);
Eli Friedman5df72022009-05-28 03:56:57 +00003935 Results.push_back(Tmp1);
3936 break;
3937 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00003938 case ISD::SELECT_CC: {
3939 Tmp1 = Node->getOperand(0); // LHS
3940 Tmp2 = Node->getOperand(1); // RHS
3941 Tmp3 = Node->getOperand(2); // True
3942 Tmp4 = Node->getOperand(3); // False
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003943 EVT VT = Node->getValueType(0);
Eli Friedmane1dc1932009-05-28 20:40:34 +00003944 SDValue CC = Node->getOperand(4);
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003945 ISD::CondCode CCOp = cast<CondCodeSDNode>(CC)->get();
Eli Friedmane1dc1932009-05-28 20:40:34 +00003946
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003947 if (TLI.isCondCodeLegal(CCOp, Tmp1.getSimpleValueType())) {
3948 // If the condition code is legal, then we need to expand this
3949 // node using SETCC and SELECT.
3950 EVT CmpVT = Tmp1.getValueType();
3951 assert(!TLI.isOperationExpand(ISD::SELECT, VT) &&
3952 "Cannot expand ISD::SELECT_CC when ISD::SELECT also needs to be "
3953 "expanded.");
Mehdi Amini44ede332015-07-09 02:09:04 +00003954 EVT CCVT =
3955 TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), CmpVT);
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003956 SDValue Cond = DAG.getNode(ISD::SETCC, dl, CCVT, Tmp1, Tmp2, CC);
3957 Results.push_back(DAG.getSelect(dl, VT, Cond, Tmp3, Tmp4));
3958 break;
3959 }
3960
3961 // SELECT_CC is legal, so the condition code must not be.
Tom Stellard5694d302013-09-28 02:50:43 +00003962 bool Legalized = false;
3963 // Try to legalize by inverting the condition. This is for targets that
3964 // might support an ordered version of a condition, but not the unordered
3965 // version (or vice versa).
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003966 ISD::CondCode InvCC = ISD::getSetCCInverse(CCOp,
Tom Stellard5694d302013-09-28 02:50:43 +00003967 Tmp1.getValueType().isInteger());
3968 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
3969 // Use the new condition code and swap true and false
3970 Legalized = true;
3971 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
Tom Stellard08690a12013-09-28 02:50:32 +00003972 } else {
Tom Stellard5694d302013-09-28 02:50:43 +00003973 // If The inverse is not legal, then try to swap the arguments using
3974 // the inverse condition code.
3975 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
3976 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
3977 // The swapped inverse condition is legal, so swap true and false,
3978 // lhs and rhs.
3979 Legalized = true;
3980 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
3981 }
3982 }
3983
3984 if (!Legalized) {
3985 Legalized = LegalizeSetCCCondCode(
Daniel Sandersedc071b2013-11-21 13:24:49 +00003986 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, NeedInvert,
3987 dl);
Tom Stellard5694d302013-09-28 02:50:43 +00003988
3989 assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00003990
3991 // If we expanded the SETCC by inverting the condition code, then swap
3992 // the True/False operands to match.
3993 if (NeedInvert)
3994 std::swap(Tmp3, Tmp4);
3995
3996 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3997 // condition code, create a new SELECT_CC node.
Tom Stellard5694d302013-09-28 02:50:43 +00003998 if (CC.getNode()) {
3999 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
4000 Tmp1, Tmp2, Tmp3, Tmp4, CC);
4001 } else {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004002 Tmp2 = DAG.getConstant(0, dl, Tmp1.getValueType());
Tom Stellard5694d302013-09-28 02:50:43 +00004003 CC = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004004 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1,
4005 Tmp2, Tmp3, Tmp4, CC);
Tom Stellard5694d302013-09-28 02:50:43 +00004006 }
Tom Stellard08690a12013-09-28 02:50:32 +00004007 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004008 Results.push_back(Tmp1);
4009 break;
4010 }
4011 case ISD::BR_CC: {
4012 Tmp1 = Node->getOperand(0); // Chain
4013 Tmp2 = Node->getOperand(2); // LHS
4014 Tmp3 = Node->getOperand(3); // RHS
4015 Tmp4 = Node->getOperand(1); // CC
4016
Tom Stellard08690a12013-09-28 02:50:32 +00004017 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004018 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, NeedInvert, dl);
Tom Stellard45015d92013-09-28 03:10:17 +00004019 (void)Legalized;
Tom Stellard08690a12013-09-28 02:50:32 +00004020 assert(Legalized && "Can't legalize BR_CC with legal condition!");
Eli Friedmane1dc1932009-05-28 20:40:34 +00004021
Daniel Sandersedc071b2013-11-21 13:24:49 +00004022 // If we expanded the SETCC by inverting the condition code, then wrap
4023 // the existing SETCC in a NOT to restore the intended condition.
4024 if (NeedInvert)
4025 Tmp4 = DAG.getNOT(dl, Tmp4, Tmp4->getValueType(0));
4026
4027 // If we expanded the SETCC by swapping LHS and RHS, create a new BR_CC
Tom Stellard08690a12013-09-28 02:50:32 +00004028 // node.
4029 if (Tmp4.getNode()) {
4030 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
4031 Tmp4, Tmp2, Tmp3, Node->getOperand(4));
4032 } else {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004033 Tmp3 = DAG.getConstant(0, dl, Tmp2.getValueType());
Tom Stellard08690a12013-09-28 02:50:32 +00004034 Tmp4 = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004035 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4,
4036 Tmp2, Tmp3, Node->getOperand(4));
Tom Stellard08690a12013-09-28 02:50:32 +00004037 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004038 Results.push_back(Tmp1);
4039 break;
4040 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004041 case ISD::BUILD_VECTOR:
4042 Results.push_back(ExpandBUILD_VECTOR(Node));
4043 break;
4044 case ISD::SRA:
4045 case ISD::SRL:
4046 case ISD::SHL: {
4047 // Scalarize vector SRA/SRL/SHL.
4048 EVT VT = Node->getValueType(0);
4049 assert(VT.isVector() && "Unable to legalize non-vector shift");
4050 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
4051 unsigned NumElem = VT.getVectorNumElements();
4052
4053 SmallVector<SDValue, 8> Scalars;
4054 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
Mehdi Amini44ede332015-07-09 02:09:04 +00004055 SDValue Ex = DAG.getNode(
4056 ISD::EXTRACT_VECTOR_ELT, dl, VT.getScalarType(), Node->getOperand(0),
4057 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
4058 SDValue Sh = DAG.getNode(
4059 ISD::EXTRACT_VECTOR_ELT, dl, VT.getScalarType(), Node->getOperand(1),
4060 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout())));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004061 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
4062 VT.getScalarType(), Ex, Sh));
4063 }
4064 SDValue Result =
Craig Topper48d114b2014-04-26 18:35:24 +00004065 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0), Scalars);
Eli Friedman13477152011-11-11 23:58:27 +00004066 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +00004067 break;
4068 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00004069 case ISD::GLOBAL_OFFSET_TABLE:
4070 case ISD::GlobalAddress:
4071 case ISD::GlobalTLSAddress:
4072 case ISD::ExternalSymbol:
4073 case ISD::ConstantPool:
4074 case ISD::JumpTable:
4075 case ISD::INTRINSIC_W_CHAIN:
4076 case ISD::INTRINSIC_WO_CHAIN:
4077 case ISD::INTRINSIC_VOID:
4078 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedmana8f9a022009-05-27 02:16:40 +00004079 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00004080 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004081
4082 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004083 if (!Results.empty())
4084 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004085}
Dan Gohman198b7ff2011-11-03 21:49:52 +00004086
4087void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
4088 SmallVector<SDValue, 8> Results;
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004089 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00004090 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedman97f3f962009-07-17 05:16:04 +00004091 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendlingef408db2009-12-23 00:28:23 +00004092 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004093 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendlingef408db2009-12-23 00:28:23 +00004094 }
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004095 if (Node->getOpcode() == ISD::BR_CC)
4096 OVT = Node->getOperand(2).getSimpleValueType();
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004097 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004098 SDLoc dl(Node);
Eli Friedman3b251702009-05-27 07:58:35 +00004099 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman21d349b2009-05-27 01:25:56 +00004100 switch (Node->getOpcode()) {
4101 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004102 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004103 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004104 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004105 case ISD::CTPOP:
4106 // Zero extend the argument.
4107 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004108 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
4109 // already the correct result.
Jakob Stoklund Olesen6b9f63c2009-07-12 17:43:20 +00004110 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004111 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004112 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault758659232013-05-18 00:21:46 +00004113 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004114 Tmp1, DAG.getConstant(NVT.getSizeInBits(), dl, NVT),
Eli Friedman21d349b2009-05-27 01:25:56 +00004115 ISD::SETEQ);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004116 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004117 DAG.getConstant(OVT.getSizeInBits(), dl, NVT), Tmp1);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004118 } else if (Node->getOpcode() == ISD::CTLZ ||
4119 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman21d349b2009-05-27 01:25:56 +00004120 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4121 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
4122 DAG.getConstant(NVT.getSizeInBits() -
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004123 OVT.getSizeInBits(), dl, NVT));
Eli Friedman21d349b2009-05-27 01:25:56 +00004124 }
Bill Wendlingef408db2009-12-23 00:28:23 +00004125 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00004126 break;
4127 case ISD::BSWAP: {
4128 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling70794592009-12-22 22:53:39 +00004129 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004130 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4131 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004132 DAG.getConstant(DiffBits, dl,
4133 TLI.getShiftAmountTy(NVT)));
Bill Wendlingef408db2009-12-23 00:28:23 +00004134 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004135 break;
4136 }
4137 case ISD::FP_TO_UINT:
4138 case ISD::FP_TO_SINT:
4139 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
4140 Node->getOpcode() == ISD::FP_TO_SINT, dl);
4141 Results.push_back(Tmp1);
4142 break;
4143 case ISD::UINT_TO_FP:
4144 case ISD::SINT_TO_FP:
4145 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
4146 Node->getOpcode() == ISD::SINT_TO_FP, dl);
4147 Results.push_back(Tmp1);
4148 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00004149 case ISD::VAARG: {
4150 SDValue Chain = Node->getOperand(0); // Get the chain.
4151 SDValue Ptr = Node->getOperand(1); // Get the pointer.
4152
4153 unsigned TruncOp;
4154 if (OVT.isVector()) {
4155 TruncOp = ISD::BITCAST;
4156 } else {
4157 assert(OVT.isInteger()
4158 && "VAARG promotion is supported only for vectors or integer types");
4159 TruncOp = ISD::TRUNCATE;
4160 }
4161
4162 // Perform the larger operation, then convert back
4163 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
4164 Node->getConstantOperandVal(3));
4165 Chain = Tmp1.getValue(1);
4166
4167 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
4168
4169 // Modified the chain result - switch anything that used the old chain to
4170 // use the new one.
4171 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
4172 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Chandler Carruth411fb402014-07-26 05:49:40 +00004173 if (UpdatedNodes) {
4174 UpdatedNodes->insert(Tmp2.getNode());
4175 UpdatedNodes->insert(Chain.getNode());
4176 }
Hal Finkel71c2ba32012-03-24 03:53:52 +00004177 ReplacedNode(Node);
4178 break;
4179 }
Eli Friedmand6f28342009-05-27 03:33:44 +00004180 case ISD::AND:
4181 case ISD::OR:
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004182 case ISD::XOR: {
4183 unsigned ExtOp, TruncOp;
4184 if (OVT.isVector()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004185 ExtOp = ISD::BITCAST;
4186 TruncOp = ISD::BITCAST;
Chris Lattnercd927182010-04-07 23:47:51 +00004187 } else {
4188 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004189 ExtOp = ISD::ANY_EXTEND;
4190 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004191 }
4192 // Promote each of the values to the new type.
4193 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4194 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4195 // Perform the larger operation, then convert back
Bill Wendlingef408db2009-12-23 00:28:23 +00004196 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
4197 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmand6f28342009-05-27 03:33:44 +00004198 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004199 }
4200 case ISD::SELECT: {
Eli Friedman3b251702009-05-27 07:58:35 +00004201 unsigned ExtOp, TruncOp;
Tom Stellardc9a67a22014-03-24 16:07:28 +00004202 if (Node->getValueType(0).isVector() ||
4203 Node->getValueType(0).getSizeInBits() == NVT.getSizeInBits()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004204 ExtOp = ISD::BITCAST;
4205 TruncOp = ISD::BITCAST;
Eli Friedman2892d822009-05-27 12:20:41 +00004206 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman3b251702009-05-27 07:58:35 +00004207 ExtOp = ISD::ANY_EXTEND;
4208 TruncOp = ISD::TRUNCATE;
4209 } else {
4210 ExtOp = ISD::FP_EXTEND;
4211 TruncOp = ISD::FP_ROUND;
4212 }
4213 Tmp1 = Node->getOperand(0);
4214 // Promote each of the values to the new type.
4215 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4216 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4217 // Perform the larger operation, then round down.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004218 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman3b251702009-05-27 07:58:35 +00004219 if (TruncOp != ISD::FP_ROUND)
Bill Wendlingef408db2009-12-23 00:28:23 +00004220 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004221 else
Bill Wendlingef408db2009-12-23 00:28:23 +00004222 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004223 DAG.getIntPtrConstant(0, dl));
Bill Wendlingef408db2009-12-23 00:28:23 +00004224 Results.push_back(Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004225 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004226 }
Eli Friedman3b251702009-05-27 07:58:35 +00004227 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00004228 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00004229
4230 // Cast the two input vectors.
Wesley Peck527da1b2010-11-23 03:31:01 +00004231 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
4232 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman3b251702009-05-27 07:58:35 +00004233
4234 // Convert the shuffle mask to the right # elements.
Bill Wendlingef408db2009-12-23 00:28:23 +00004235 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peck527da1b2010-11-23 03:31:01 +00004236 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004237 Results.push_back(Tmp1);
4238 break;
4239 }
Eli Friedman5df72022009-05-28 03:56:57 +00004240 case ISD::SETCC: {
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004241 unsigned ExtOp = ISD::FP_EXTEND;
4242 if (NVT.isInteger()) {
4243 ISD::CondCode CCCode =
4244 cast<CondCodeSDNode>(Node->getOperand(2))->get();
4245 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedman5df72022009-05-28 03:56:57 +00004246 }
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004247 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4248 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedman5df72022009-05-28 03:56:57 +00004249 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
4250 Tmp1, Tmp2, Node->getOperand(2)));
4251 break;
4252 }
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004253 case ISD::BR_CC: {
4254 unsigned ExtOp = ISD::FP_EXTEND;
4255 if (NVT.isInteger()) {
4256 ISD::CondCode CCCode =
4257 cast<CondCodeSDNode>(Node->getOperand(1))->get();
4258 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
4259 }
4260 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4261 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(3));
4262 Results.push_back(DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0),
4263 Node->getOperand(0), Node->getOperand(1),
4264 Tmp1, Tmp2, Node->getOperand(4)));
4265 break;
4266 }
Oliver Stannardf5469be2014-08-18 14:22:39 +00004267 case ISD::FADD:
4268 case ISD::FSUB:
4269 case ISD::FMUL:
Pete Coopere69be6d2012-03-19 23:38:12 +00004270 case ISD::FDIV:
Pete Cooper8a3dc0e2012-04-04 19:36:31 +00004271 case ISD::FREM:
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004272 case ISD::FMINNUM:
4273 case ISD::FMAXNUM:
4274 case ISD::FCOPYSIGN:
Pete Cooper99415fe2012-01-12 21:46:18 +00004275 case ISD::FPOW: {
4276 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4277 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopere69be6d2012-03-19 23:38:12 +00004278 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooper99415fe2012-01-12 21:46:18 +00004279 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004280 Tmp3, DAG.getIntPtrConstant(0, dl)));
Pete Cooper99415fe2012-01-12 21:46:18 +00004281 break;
4282 }
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004283 case ISD::FMA: {
4284 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4285 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
4286 Tmp3 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(2));
4287 Results.push_back(
4288 DAG.getNode(ISD::FP_ROUND, dl, OVT,
4289 DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2, Tmp3),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004290 DAG.getIntPtrConstant(0, dl)));
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004291 break;
4292 }
4293 case ISD::FPOWI: {
4294 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4295 Tmp2 = Node->getOperand(1);
4296 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
4297 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004298 Tmp3, DAG.getIntPtrConstant(0, dl)));
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004299 break;
4300 }
4301 case ISD::FFLOOR:
4302 case ISD::FCEIL:
4303 case ISD::FRINT:
4304 case ISD::FNEARBYINT:
4305 case ISD::FROUND:
4306 case ISD::FTRUNC:
4307 case ISD::FNEG:
4308 case ISD::FSQRT:
4309 case ISD::FSIN:
4310 case ISD::FCOS:
Pete Cooper99415fe2012-01-12 21:46:18 +00004311 case ISD::FLOG:
Ahmed Bougacha1ffe7c72015-04-10 00:08:48 +00004312 case ISD::FLOG2:
4313 case ISD::FLOG10:
4314 case ISD::FABS:
4315 case ISD::FEXP:
4316 case ISD::FEXP2: {
Pete Cooper99415fe2012-01-12 21:46:18 +00004317 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4318 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4319 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004320 Tmp2, DAG.getIntPtrConstant(0, dl)));
Pete Cooper99415fe2012-01-12 21:46:18 +00004321 break;
4322 }
Eli Friedman21d349b2009-05-27 01:25:56 +00004323 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004324
4325 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004326 if (!Results.empty())
4327 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004328}
4329
Sanjay Pateleb4a4d52014-11-21 18:58:38 +00004330/// This is the entry point for the file.
Dan Gohmand282f462011-05-16 22:19:54 +00004331void SelectionDAG::Legalize() {
Chandler Carruth411fb402014-07-26 05:49:40 +00004332 AssignTopologicalOrder();
4333
Chandler Carruth411fb402014-07-26 05:49:40 +00004334 SmallPtrSet<SDNode *, 16> LegalizedNodes;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004335 SelectionDAGLegalize Legalizer(*this, LegalizedNodes);
Chandler Carruth411fb402014-07-26 05:49:40 +00004336
4337 // Visit all the nodes. We start in topological order, so that we see
4338 // nodes with their original operands intact. Legalization can produce
4339 // new nodes which may themselves need to be legalized. Iterate until all
4340 // nodes have been legalized.
4341 for (;;) {
4342 bool AnyLegalized = false;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004343 for (auto NI = allnodes_end(); NI != allnodes_begin();) {
4344 --NI;
Chandler Carruth411fb402014-07-26 05:49:40 +00004345
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004346 SDNode *N = NI;
4347 if (N->use_empty() && N != getRoot().getNode()) {
4348 ++NI;
4349 DeleteNode(N);
4350 continue;
4351 }
4352
David Blaikie70573dc2014-11-19 07:49:26 +00004353 if (LegalizedNodes.insert(N).second) {
Chandler Carruth411fb402014-07-26 05:49:40 +00004354 AnyLegalized = true;
4355 Legalizer.LegalizeOp(N);
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004356
4357 if (N->use_empty() && N != getRoot().getNode()) {
4358 ++NI;
4359 DeleteNode(N);
4360 }
Chandler Carruth411fb402014-07-26 05:49:40 +00004361 }
4362 }
4363 if (!AnyLegalized)
4364 break;
4365
4366 }
4367
4368 // Remove dead nodes now.
4369 RemoveDeadNodes();
4370}
4371
4372bool SelectionDAG::LegalizeOp(SDNode *N,
4373 SmallSetVector<SDNode *, 16> &UpdatedNodes) {
Chandler Carruth411fb402014-07-26 05:49:40 +00004374 SmallPtrSet<SDNode *, 16> LegalizedNodes;
Chandler Carruth1f52b3d2014-08-01 19:49:59 +00004375 SelectionDAGLegalize Legalizer(*this, LegalizedNodes, &UpdatedNodes);
Chandler Carruth411fb402014-07-26 05:49:40 +00004376
4377 // Directly insert the node in question, and legalize it. This will recurse
4378 // as needed through operands.
4379 LegalizedNodes.insert(N);
4380 Legalizer.LegalizeOp(N);
4381
4382 return LegalizedNodes.count(N);
Chris Lattnerdc750592005-01-07 07:47:09 +00004383}