blob: 2dcfbb5b27dda5e5383a71896c0c552fb853dfdd [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 Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
16#include "llvm/ADT/SmallVector.h"
Paul Redmondf29ddfe2013-02-15 18:45:18 +000017#include "llvm/ADT/Triple.h"
Evan Chengd4b08732010-11-30 23:55:39 +000018#include "llvm/CodeGen/Analysis.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000019#include "llvm/CodeGen/MachineFunction.h"
Jim Laskey70323a82006-12-14 19:17:33 +000020#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/CallingConv.h"
22#include "llvm/IR/Constants.h"
23#include "llvm/IR/DataLayout.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000024#include "llvm/IR/DebugInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/DerivedTypes.h"
Chandler Carrutha7c44e62013-01-08 05:11:57 +000026#include "llvm/IR/Function.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/LLVMContext.h"
David Greeneae4f2662010-01-05 01:24:53 +000028#include "llvm/Support/Debug.h"
Jim Grosbachd64dfc12010-06-18 21:43:38 +000029#include "llvm/Support/ErrorHandling.h"
Duncan Sands1826ded2007-10-28 12:59:45 +000030#include "llvm/Support/MathExtras.h"
Chris Lattner13626022009-08-23 06:03:38 +000031#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/Target/TargetFrameLowering.h"
33#include "llvm/Target/TargetLowering.h"
34#include "llvm/Target/TargetMachine.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000035using namespace llvm;
36
37//===----------------------------------------------------------------------===//
38/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
39/// hacks on it until the target machine can handle it. This involves
40/// eliminating value sizes the machine cannot handle (promoting small sizes to
41/// large sizes or splitting up large values into small values) as well as
42/// eliminating operations the machine cannot handle.
43///
44/// This code also does a small amount of optimization and recognition of idioms
45/// as part of its processing. For example, if a target does not support a
46/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
47/// will attempt merge setcc and brc instructions into brcc's.
48///
49namespace {
Dan Gohman198b7ff2011-11-03 21:49:52 +000050class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
Dan Gohmanc3349602010-04-19 19:05:59 +000051 const TargetMachine &TM;
Dan Gohman21cea8a2010-04-17 15:26:15 +000052 const TargetLowering &TLI;
Chris Lattnerdc750592005-01-07 07:47:09 +000053 SelectionDAG &DAG;
54
Dan Gohman198b7ff2011-11-03 21:49:52 +000055 /// LegalizePosition - The iterator for walking through the node list.
56 SelectionDAG::allnodes_iterator LegalizePosition;
57
58 /// LegalizedNodes - The set of nodes which have already been legalized.
59 SmallPtrSet<SDNode *, 16> LegalizedNodes;
60
Matt Arsenault758659232013-05-18 00:21:46 +000061 EVT getSetCCResultType(EVT VT) const {
62 return TLI.getSetCCResultType(*DAG.getContext(), VT);
63 }
64
Chris Lattner462505f2006-02-13 09:18:02 +000065 // Libcall insertion helpers.
Scott Michelcf0da6c2009-02-17 22:15:04 +000066
Chris Lattnerdc750592005-01-07 07:47:09 +000067public:
Dan Gohmand282f462011-05-16 22:19:54 +000068 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattnerdc750592005-01-07 07:47:09 +000069
Chris Lattnerdc750592005-01-07 07:47:09 +000070 void LegalizeDAG();
71
Chris Lattner9dcce6d2006-01-28 07:39:30 +000072private:
Dan Gohman198b7ff2011-11-03 21:49:52 +000073 /// LegalizeOp - Legalizes the given operation.
74 void LegalizeOp(SDNode *Node);
Scott Michelcf0da6c2009-02-17 22:15:04 +000075
Eli Friedmanaee3f622009-06-06 07:04:42 +000076 SDValue OptimizeFloatStore(StoreSDNode *ST);
77
Nadav Rotemde6fd282012-07-11 08:52:09 +000078 void LegalizeLoadOps(SDNode *Node);
79 void LegalizeStoreOps(SDNode *Node);
80
Nate Begeman6f94f612008-04-25 18:07:40 +000081 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
82 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
83 /// is necessary to spill the vector being inserted into to memory, perform
84 /// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000085 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Andrew Trickef9de2a2013-05-25 02:42:55 +000086 SDValue Idx, SDLoc dl);
Eli Friedmana8f9a022009-05-27 02:16:40 +000087 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
Andrew Trickef9de2a2013-05-25 02:42:55 +000088 SDValue Idx, SDLoc dl);
Dan Gohman2a7de412007-10-11 23:57:53 +000089
Nate Begeman5f829d82009-04-29 05:20:52 +000090 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
91 /// performs the same shuffe in terms of order or result bytes, but on a type
92 /// whose vector element type is narrower than the original shuffle type.
93 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Andrew Trickef9de2a2013-05-25 02:42:55 +000094 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Jim Grosbach9b7755f2010-07-02 17:41:59 +000095 SDValue N1, SDValue N2,
Benjamin Kramer339ced42012-01-15 13:16:05 +000096 ArrayRef<int> Mask) const;
Scott Michelcf0da6c2009-02-17 22:15:04 +000097
Tom Stellard08690a12013-09-28 02:50:32 +000098 bool LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +000099 bool &NeedInvert, SDLoc dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000100
Eli Friedmanb3554152009-05-27 02:21:29 +0000101 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherbcaedb52011-04-20 01:19:45 +0000102 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000103 unsigned NumOps, bool isSigned, SDLoc dl);
Eric Christopherbcaedb52011-04-20 01:19:45 +0000104
Jim Grosbachd64dfc12010-06-18 21:43:38 +0000105 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
106 SDNode *Node, bool isSigned);
Eli Friedmand6f28342009-05-27 03:33:44 +0000107 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
108 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000109 RTLIB::Libcall Call_F128,
110 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikovf93bb392009-11-07 17:14:39 +0000111 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
112 RTLIB::Libcall Call_I8,
113 RTLIB::Libcall Call_I16,
114 RTLIB::Libcall Call_I32,
115 RTLIB::Libcall Call_I64,
Eli Friedmand6f28342009-05-27 03:33:44 +0000116 RTLIB::Libcall Call_I128);
Evan Chengb14ce092011-04-16 03:08:26 +0000117 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000118 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnere3e847b2005-07-16 00:19:57 +0000119
Andrew Trickef9de2a2013-05-25 02:42:55 +0000120 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, SDLoc dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000121 SDValue ExpandBUILD_VECTOR(SDNode *Node);
122 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman2892d822009-05-27 12:20:41 +0000123 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
124 SmallVectorImpl<SDValue> &Results);
125 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000126 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000127 SDLoc dl);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000128 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000129 SDLoc dl);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000130 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000131 SDLoc dl);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000132
Andrew Trickef9de2a2013-05-25 02:42:55 +0000133 SDValue ExpandBSWAP(SDValue Op, SDLoc dl);
134 SDValue ExpandBitCount(unsigned Opc, SDValue Op, SDLoc dl);
Chris Lattnera5bf1032005-05-12 04:49:08 +0000135
Eli Friedman40afdb62009-05-23 22:37:25 +0000136 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenebab5e6e2011-01-26 19:13:22 +0000137 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000138 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman21d349b2009-05-27 01:25:56 +0000139
Dan Gohman198b7ff2011-11-03 21:49:52 +0000140 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
141
Jim Grosbachd64dfc12010-06-18 21:43:38 +0000142 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
143
Dan Gohman198b7ff2011-11-03 21:49:52 +0000144 void ExpandNode(SDNode *Node);
145 void PromoteNode(SDNode *Node);
146
Eli Friedman13477152011-11-11 23:58:27 +0000147 void ForgetNode(SDNode *N) {
Dan Gohman198b7ff2011-11-03 21:49:52 +0000148 LegalizedNodes.erase(N);
149 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
150 ++LegalizePosition;
151 }
152
Eli Friedman13477152011-11-11 23:58:27 +0000153public:
154 // DAGUpdateListener implementation.
Craig Topper7b883b32014-03-08 06:31:39 +0000155 void NodeDeleted(SDNode *N, SDNode *E) override {
Eli Friedman13477152011-11-11 23:58:27 +0000156 ForgetNode(N);
157 }
Craig Topper7b883b32014-03-08 06:31:39 +0000158 void NodeUpdated(SDNode *N) override {}
Eli Friedman13477152011-11-11 23:58:27 +0000159
160 // Node replacement helpers
161 void ReplacedNode(SDNode *N) {
162 if (N->use_empty()) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000163 DAG.RemoveDeadNode(N);
Eli Friedman13477152011-11-11 23:58:27 +0000164 } else {
165 ForgetNode(N);
166 }
167 }
168 void ReplaceNode(SDNode *Old, SDNode *New) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000169 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman13477152011-11-11 23:58:27 +0000170 ReplacedNode(Old);
171 }
172 void ReplaceNode(SDValue Old, SDValue New) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000173 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman13477152011-11-11 23:58:27 +0000174 ReplacedNode(Old.getNode());
175 }
176 void ReplaceNode(SDNode *Old, const SDValue *New) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000177 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman13477152011-11-11 23:58:27 +0000178 ReplacedNode(Old);
179 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000180};
181}
182
Nate Begeman5f829d82009-04-29 05:20:52 +0000183/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
184/// performs the same shuffe in terms of order or result bytes, but on a type
185/// whose vector element type is narrower than the original shuffle type.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000186/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000187SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +0000188SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Nate Begeman5f829d82009-04-29 05:20:52 +0000189 SDValue N1, SDValue N2,
Benjamin Kramer339ced42012-01-15 13:16:05 +0000190 ArrayRef<int> Mask) const {
Nate Begeman5f829d82009-04-29 05:20:52 +0000191 unsigned NumMaskElts = VT.getVectorNumElements();
192 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000193 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner6be79822006-04-04 17:23:26 +0000194
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000195 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
196
197 if (NumEltsGrowth == 1)
198 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000199
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000200 SmallVector<int, 8> NewMask;
Nate Begeman5f829d82009-04-29 05:20:52 +0000201 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000202 int Idx = Mask[i];
203 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000204 if (Idx < 0)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000205 NewMask.push_back(-1);
206 else
207 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner6be79822006-04-04 17:23:26 +0000208 }
Chris Lattner6be79822006-04-04 17:23:26 +0000209 }
Nate Begeman5f829d82009-04-29 05:20:52 +0000210 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000211 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
212 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner6be79822006-04-04 17:23:26 +0000213}
214
Dan Gohmand282f462011-05-16 22:19:54 +0000215SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000216 : SelectionDAG::DAGUpdateListener(dag),
217 TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
Dan Gohman8c5ca642011-07-15 22:19:02 +0000218 DAG(dag) {
Chris Lattnerdc750592005-01-07 07:47:09 +0000219}
220
Chris Lattnerdc750592005-01-07 07:47:09 +0000221void SelectionDAGLegalize::LegalizeDAG() {
Dan Gohman86aa16a2008-09-30 18:30:35 +0000222 DAG.AssignTopologicalOrder();
Dan Gohman4db3f7d2011-10-28 01:29:32 +0000223
Dan Gohman198b7ff2011-11-03 21:49:52 +0000224 // Visit all the nodes. We start in topological order, so that we see
225 // nodes with their original operands intact. Legalization can produce
226 // new nodes which may themselves need to be legalized. Iterate until all
227 // nodes have been legalized.
228 for (;;) {
229 bool AnyLegalized = false;
230 for (LegalizePosition = DAG.allnodes_end();
231 LegalizePosition != DAG.allnodes_begin(); ) {
232 --LegalizePosition;
Chris Lattnerdc750592005-01-07 07:47:09 +0000233
Dan Gohman198b7ff2011-11-03 21:49:52 +0000234 SDNode *N = LegalizePosition;
235 if (LegalizedNodes.insert(N)) {
236 AnyLegalized = true;
237 LegalizeOp(N);
238 }
239 }
240 if (!AnyLegalized)
241 break;
242
243 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000244
245 // Remove dead nodes now.
Chris Lattner8927c872006-08-04 17:45:20 +0000246 DAG.RemoveDeadNodes();
Chris Lattnerdc750592005-01-07 07:47:09 +0000247}
248
Evan Cheng22cf8992006-12-13 20:57:08 +0000249/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
250/// a load from the constant pool.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000251SDValue
252SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng47833a12006-12-12 21:32:44 +0000253 bool Extend = false;
Andrew Trickef9de2a2013-05-25 02:42:55 +0000254 SDLoc dl(CFP);
Evan Cheng47833a12006-12-12 21:32:44 +0000255
256 // If a FP immediate is precise when represented as a float and if the
257 // target can do an extending load from float to double, we put it into
258 // the constant pool as a float, even if it's is statically typed as a
Chris Lattner3dc38992008-03-05 06:46:58 +0000259 // double. This shrinks FP constants and canonicalizes them for targets where
260 // an FP extending load is the same cost as a normal load (such as on the x87
261 // fp stack or PPC FP unit).
Owen Anderson53aa7a92009-08-10 22:56:29 +0000262 EVT VT = CFP->getValueType(0);
Dan Gohmanec270fb2008-09-12 18:08:03 +0000263 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng22cf8992006-12-13 20:57:08 +0000264 if (!UseCP) {
Owen Anderson9f944592009-08-11 20:47:22 +0000265 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen54306fe2008-10-09 18:53:47 +0000266 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson9f944592009-08-11 20:47:22 +0000267 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng3766fc602006-12-12 22:19:28 +0000268 }
269
Owen Anderson53aa7a92009-08-10 22:56:29 +0000270 EVT OrigVT = VT;
271 EVT SVT = VT;
Owen Anderson9f944592009-08-11 20:47:22 +0000272 while (SVT != MVT::f32) {
273 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman35b6f9a2010-06-18 14:01:07 +0000274 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Cheng38caf772008-03-04 08:05:30 +0000275 // Only do this if the target has a native EXTLOAD instruction from
276 // smaller type.
Evan Cheng07d53b12008-10-14 21:26:46 +0000277 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattner3dc38992008-03-05 06:46:58 +0000278 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattner229907c2011-07-18 04:54:35 +0000279 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Anderson487375e2009-07-29 18:55:55 +0000280 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Cheng38caf772008-03-04 08:05:30 +0000281 VT = SVT;
282 Extend = true;
283 }
Evan Cheng47833a12006-12-12 21:32:44 +0000284 }
285
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000286 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1fb8aed2009-03-13 07:51:59 +0000287 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman198b7ff2011-11-03 21:49:52 +0000288 if (Extend) {
289 SDValue Result =
290 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
291 DAG.getEntryNode(),
292 CPIdx, MachinePointerInfo::getConstantPool(),
293 VT, false, false, Alignment);
294 return Result;
295 }
296 SDValue Result =
297 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000298 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman198b7ff2011-11-03 21:49:52 +0000299 Alignment);
300 return Result;
Evan Cheng47833a12006-12-12 21:32:44 +0000301}
302
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000303/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000304static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
305 const TargetLowering &TLI,
Eli Friedman13477152011-11-11 23:58:27 +0000306 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmand257a462011-11-16 02:43:15 +0000307 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
308 "unaligned indexed stores not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000309 SDValue Chain = ST->getChain();
310 SDValue Ptr = ST->getBasePtr();
311 SDValue Val = ST->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000312 EVT VT = Val.getValueType();
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000313 int Alignment = ST->getAlignment();
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000314 unsigned AS = ST->getAddressSpace();
315
Andrew Trickef9de2a2013-05-25 02:42:55 +0000316 SDLoc dl(ST);
Duncan Sands13237ac2008-06-06 12:08:01 +0000317 if (ST->getMemoryVT().isFloatingPoint() ||
318 ST->getMemoryVT().isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000319 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands8f352fe2008-12-12 21:47:02 +0000320 if (TLI.isTypeLegal(intVT)) {
321 // Expand to a bitconvert of the value to the integer type of the
322 // same size, then a (misaligned) int store.
323 // FIXME: Does not handle truncating floating point stores!
Wesley Peck527da1b2010-11-23 03:31:01 +0000324 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000325 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
326 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman13477152011-11-11 23:58:27 +0000327 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000328 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000329 }
Dan Gohmanabffc992011-05-17 22:22:52 +0000330 // Do a (aligned) store to a stack slot, then copy from the stack slot
331 // to the final destination using (unaligned) integer loads and stores.
332 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000333 MVT RegVT =
Dan Gohmanabffc992011-05-17 22:22:52 +0000334 TLI.getRegisterType(*DAG.getContext(),
335 EVT::getIntegerVT(*DAG.getContext(),
336 StoredVT.getSizeInBits()));
337 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
338 unsigned RegBytes = RegVT.getSizeInBits() / 8;
339 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
340
341 // Make sure the stack slot is also aligned for the register type.
342 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
343
344 // Perform the original store, only redirected to the stack slot.
345 SDValue Store = DAG.getTruncStore(Chain, dl,
346 Val, StackPtr, MachinePointerInfo(),
347 StoredVT, false, false, 0);
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000348 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy(AS));
Dan Gohmanabffc992011-05-17 22:22:52 +0000349 SmallVector<SDValue, 8> Stores;
350 unsigned Offset = 0;
351
352 // Do all but one copies using the full register width.
353 for (unsigned i = 1; i < NumRegs; i++) {
354 // Load one integer register's worth from the stack slot.
355 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
356 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000357 false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000358 // Store it to the final location. Remember the store.
359 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
360 ST->getPointerInfo().getWithOffset(Offset),
361 ST->isVolatile(), ST->isNonTemporal(),
362 MinAlign(ST->getAlignment(), Offset)));
363 // Increment the pointers.
364 Offset += RegBytes;
365 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
366 Increment);
367 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
368 }
369
370 // The last store may be partial. Do a truncating store. On big-endian
371 // machines this requires an extending load from the stack slot to ensure
372 // that the bits are in the right place.
373 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
374 8 * (StoredBytes - Offset));
375
376 // Load from the stack slot.
377 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
378 MachinePointerInfo(),
379 MemVT, false, false, 0);
380
381 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
382 ST->getPointerInfo()
383 .getWithOffset(Offset),
384 MemVT, ST->isVolatile(),
385 ST->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000386 MinAlign(ST->getAlignment(), Offset),
387 ST->getTBAAInfo()));
Dan Gohmanabffc992011-05-17 22:22:52 +0000388 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000389 SDValue Result =
390 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
391 Stores.size());
Eli Friedman13477152011-11-11 23:58:27 +0000392 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000393 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000394 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000395 assert(ST->getMemoryVT().isInteger() &&
396 !ST->getMemoryVT().isVector() &&
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000397 "Unaligned store of unknown type.");
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000398 // Get the half-size VT
Ken Dyckdf5561d2009-12-17 20:09:43 +0000399 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands13237ac2008-06-06 12:08:01 +0000400 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000401 int IncrementSize = NumBits / 8;
402
403 // Divide the stored value in two parts.
Owen Andersonb2c80da2011-02-25 21:41:48 +0000404 SDValue ShiftAmount = DAG.getConstant(NumBits,
405 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000406 SDValue Lo = Val;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000407 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000408
409 // Store the two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000410 SDValue Store1, Store2;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000411 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000412 ST->getPointerInfo(), NewStoredVT,
David Greene39c6d012010-02-15 17:00:31 +0000413 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000414
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000415 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000416 DAG.getConstant(IncrementSize, TLI.getPointerTy(AS)));
Duncan Sands1826ded2007-10-28 12:59:45 +0000417 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000418 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000419 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene39c6d012010-02-15 17:00:31 +0000420 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000421 Alignment, ST->getTBAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000422
Dan Gohman198b7ff2011-11-03 21:49:52 +0000423 SDValue Result =
424 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman13477152011-11-11 23:58:27 +0000425 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000426}
427
428/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000429static void
430ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
431 const TargetLowering &TLI,
432 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmand257a462011-11-16 02:43:15 +0000433 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
434 "unaligned indexed loads not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000435 SDValue Chain = LD->getChain();
436 SDValue Ptr = LD->getBasePtr();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000437 EVT VT = LD->getValueType(0);
438 EVT LoadedVT = LD->getMemoryVT();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000439 SDLoc dl(LD);
Duncan Sands13237ac2008-06-06 12:08:01 +0000440 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000441 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Roteme0f84d32012-08-09 01:56:44 +0000442 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands8f352fe2008-12-12 21:47:02 +0000443 // Expand to a (misaligned) integer load of the same size,
444 // then bitconvert to floating point or vector.
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000445 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr,
446 LD->getMemOperand());
Wesley Peck527da1b2010-11-23 03:31:01 +0000447 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Roteme0f84d32012-08-09 01:56:44 +0000448 if (LoadedVT != VT)
449 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
450 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000451
Dan Gohman198b7ff2011-11-03 21:49:52 +0000452 ValResult = Result;
453 ChainResult = Chain;
454 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000455 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000456
Chris Lattner1ffcf522010-09-21 16:36:31 +0000457 // Copy the value to a (aligned) stack slot using (unaligned) integer
458 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000459 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000460 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
461 unsigned RegBytes = RegVT.getSizeInBits() / 8;
462 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
463
464 // Make sure the stack slot is also aligned for the register type.
465 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
466
467 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
468 SmallVector<SDValue, 8> Stores;
469 SDValue StackPtr = StackBase;
470 unsigned Offset = 0;
471
472 // Do all but one copies using the full register width.
473 for (unsigned i = 1; i < NumRegs; i++) {
474 // Load one integer register's worth from the original location.
475 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
476 LD->getPointerInfo().getWithOffset(Offset),
477 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000478 LD->isInvariant(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000479 MinAlign(LD->getAlignment(), Offset),
480 LD->getTBAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000481 // Follow the load with a store to the stack slot. Remember the store.
482 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner676c61d2010-09-21 18:41:36 +0000483 MachinePointerInfo(), false, false, 0));
Chris Lattner1ffcf522010-09-21 16:36:31 +0000484 // Increment the pointers.
485 Offset += RegBytes;
486 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
487 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
488 Increment);
489 }
490
491 // The last copy may be partial. Do an extending load.
492 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
493 8 * (LoadedBytes - Offset));
Stuart Hastings81c43062011-02-16 16:23:55 +0000494 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000495 LD->getPointerInfo().getWithOffset(Offset),
496 MemVT, LD->isVolatile(),
497 LD->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000498 MinAlign(LD->getAlignment(), Offset),
499 LD->getTBAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000500 // Follow the load with a store to the stack slot. Remember the store.
501 // On big-endian machines this requires a truncating store to ensure
502 // that the bits end up in the right place.
503 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
504 MachinePointerInfo(), MemVT,
505 false, false, 0));
506
507 // The order of the stores doesn't matter - say it with a TokenFactor.
508 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
509 Stores.size());
510
511 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastings81c43062011-02-16 16:23:55 +0000512 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000513 MachinePointerInfo(), LoadedVT, false, false, 0);
514
515 // Callers expect a MERGE_VALUES node.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000516 ValResult = Load;
517 ChainResult = TF;
518 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000519 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000520 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner09c03932007-11-19 21:38:03 +0000521 "Unaligned load of unsupported type.");
522
Dale Johannesenbf76a082008-02-27 22:36:00 +0000523 // Compute the new VT that is half the size of the old one. This is an
524 // integer MVT.
Duncan Sands13237ac2008-06-06 12:08:01 +0000525 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000526 EVT NewLoadedVT;
Owen Anderson117c9e82009-08-12 00:36:31 +0000527 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattner09c03932007-11-19 21:38:03 +0000528 NumBits >>= 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000529
Chris Lattner09c03932007-11-19 21:38:03 +0000530 unsigned Alignment = LD->getAlignment();
531 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000532 ISD::LoadExtType HiExtType = LD->getExtensionType();
533
534 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
535 if (HiExtType == ISD::NON_EXTLOAD)
536 HiExtType = ISD::ZEXTLOAD;
537
538 // Load the value in two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000539 SDValue Lo, Hi;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000540 if (TLI.isLittleEndian()) {
Stuart Hastings81c43062011-02-16 16:23:55 +0000541 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000542 NewLoadedVT, LD->isVolatile(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000543 LD->isNonTemporal(), Alignment, LD->getTBAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000544 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000545 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000546 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000547 LD->getPointerInfo().getWithOffset(IncrementSize),
548 NewLoadedVT, LD->isVolatile(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000549 LD->isNonTemporal(), MinAlign(Alignment, IncrementSize),
550 LD->getTBAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000551 } else {
Stuart Hastings81c43062011-02-16 16:23:55 +0000552 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000553 NewLoadedVT, LD->isVolatile(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000554 LD->isNonTemporal(), Alignment, LD->getTBAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000555 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000556 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000557 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000558 LD->getPointerInfo().getWithOffset(IncrementSize),
559 NewLoadedVT, LD->isVolatile(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000560 LD->isNonTemporal(), MinAlign(Alignment, IncrementSize),
561 LD->getTBAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000562 }
563
564 // aggregate the two parts
Owen Andersonb2c80da2011-02-25 21:41:48 +0000565 SDValue ShiftAmount = DAG.getConstant(NumBits,
566 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000567 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
568 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000569
Owen Anderson9f944592009-08-11 20:47:22 +0000570 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000571 Hi.getValue(1));
572
Dan Gohman198b7ff2011-11-03 21:49:52 +0000573 ValResult = Result;
574 ChainResult = TF;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000575}
Evan Cheng003feb02007-01-04 21:56:39 +0000576
Nate Begeman6f94f612008-04-25 18:07:40 +0000577/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
578/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
579/// is necessary to spill the vector being inserted into to memory, perform
580/// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000581SDValue SelectionDAGLegalize::
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000582PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000583 SDLoc dl) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000584 SDValue Tmp1 = Vec;
585 SDValue Tmp2 = Val;
586 SDValue Tmp3 = Idx;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000587
Nate Begeman6f94f612008-04-25 18:07:40 +0000588 // If the target doesn't support this, we have to spill the input vector
589 // to a temporary stack slot, update the element, then reload it. This is
590 // badness. We could also load the value into a vector register (either
591 // with a "move to register" or "extload into register" instruction, then
592 // permute it into place, if the idx is a constant and if the idx is
593 // supported by the target.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000594 EVT VT = Tmp1.getValueType();
595 EVT EltVT = VT.getVectorElementType();
596 EVT IdxVT = Tmp3.getValueType();
597 EVT PtrVT = TLI.getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000598 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman6f94f612008-04-25 18:07:40 +0000599
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000600 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
601
Nate Begeman6f94f612008-04-25 18:07:40 +0000602 // Store the vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000603 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +0000604 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +0000605 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000606
607 // Truncate or zero extend offset to target pointer type.
Duncan Sands11dd4242008-06-08 20:54:56 +0000608 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000609 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman6f94f612008-04-25 18:07:40 +0000610 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +0000611 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000612 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
613 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman6f94f612008-04-25 18:07:40 +0000614 // Store the scalar value.
Chris Lattnera35499e2010-09-21 07:32:19 +0000615 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene39c6d012010-02-15 17:00:31 +0000616 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000617 // Load the updated vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000618 return DAG.getLoad(VT, dl, Ch, StackPtr,
Stephen Lincfe7f352013-07-08 00:37:03 +0000619 MachinePointerInfo::getFixedStack(SPFI), false, false,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000620 false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000621}
622
Mon P Wang4dd832d2008-12-09 05:46:39 +0000623
Eli Friedmana8f9a022009-05-27 02:16:40 +0000624SDValue SelectionDAGLegalize::
Andrew Trickef9de2a2013-05-25 02:42:55 +0000625ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) {
Eli Friedmana8f9a022009-05-27 02:16:40 +0000626 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
627 // SCALAR_TO_VECTOR requires that the type of the value being inserted
628 // match the element type of the vector being created, except for
629 // integers in which case the inserted value can be over width.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000630 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedmana8f9a022009-05-27 02:16:40 +0000631 if (Val.getValueType() == EltVT ||
632 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
633 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
634 Vec.getValueType(), Val);
635
636 unsigned NumElts = Vec.getValueType().getVectorNumElements();
637 // We generate a shuffle of InVec and ScVec, so the shuffle mask
638 // should be 0,1,2,3,4,5... with the appropriate element replaced with
639 // elt 0 of the RHS.
640 SmallVector<int, 8> ShufOps;
641 for (unsigned i = 0; i != NumElts; ++i)
642 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
643
644 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
645 &ShufOps[0]);
646 }
647 }
648 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
649}
650
Eli Friedmanaee3f622009-06-06 07:04:42 +0000651SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
652 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
653 // FIXME: We shouldn't do this for TargetConstantFP's.
654 // FIXME: move this to the DAG Combiner! Note that we can't regress due
655 // to phase ordering between legalized code and the dag combiner. This
656 // probably means that we need to integrate dag combiner and legalizer
657 // together.
658 // We generally can't do this one for long doubles.
Nadav Rotem2a148662012-07-11 11:02:16 +0000659 SDValue Chain = ST->getChain();
660 SDValue Ptr = ST->getBasePtr();
Eli Friedmanaee3f622009-06-06 07:04:42 +0000661 unsigned Alignment = ST->getAlignment();
662 bool isVolatile = ST->isVolatile();
David Greene39c6d012010-02-15 17:00:31 +0000663 bool isNonTemporal = ST->isNonTemporal();
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000664 const MDNode *TBAAInfo = ST->getTBAAInfo();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000665 SDLoc dl(ST);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000666 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson9f944592009-08-11 20:47:22 +0000667 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohmane49e7422011-07-15 22:39:09 +0000668 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000669 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedmanaee3f622009-06-06 07:04:42 +0000670 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson9f944592009-08-11 20:47:22 +0000671 MVT::i32);
Nadav Rotem2a148662012-07-11 11:02:16 +0000672 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000673 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000674 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000675
Chris Lattner6963c1f2010-09-21 17:42:31 +0000676 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000677 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohmane49e7422011-07-15 22:39:09 +0000678 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000679 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson9f944592009-08-11 20:47:22 +0000680 zextOrTrunc(64), MVT::i64);
Nadav Rotem2a148662012-07-11 11:02:16 +0000681 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000682 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000683 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000684
Dan Gohmane49e7422011-07-15 22:39:09 +0000685 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000686 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
687 // stores. If the target supports neither 32- nor 64-bits, this
688 // xform is certainly not worth it.
689 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad583abbc2010-12-07 08:25:19 +0000690 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson9f944592009-08-11 20:47:22 +0000691 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000692 if (TLI.isBigEndian()) std::swap(Lo, Hi);
693
Nadav Rotem2a148662012-07-11 11:02:16 +0000694 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000695 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotem2a148662012-07-11 11:02:16 +0000696 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000697 DAG.getConstant(4, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000698 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000699 ST->getPointerInfo().getWithOffset(4),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000700 isVolatile, isNonTemporal, MinAlign(Alignment, 4U),
701 TBAAInfo);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000702
Owen Anderson9f944592009-08-11 20:47:22 +0000703 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000704 }
705 }
706 }
Evan Chengbd766792011-04-01 00:42:02 +0000707 return SDValue(0, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000708}
709
Nadav Rotemde6fd282012-07-11 08:52:09 +0000710void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
711 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000712 SDValue Chain = ST->getChain();
713 SDValue Ptr = ST->getBasePtr();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000714 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000715
716 unsigned Alignment = ST->getAlignment();
717 bool isVolatile = ST->isVolatile();
718 bool isNonTemporal = ST->isNonTemporal();
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000719 const MDNode *TBAAInfo = ST->getTBAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000720
721 if (!ST->isTruncatingStore()) {
722 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
723 ReplaceNode(ST, OptStore);
724 return;
725 }
726
727 {
Nadav Rotem2a148662012-07-11 11:02:16 +0000728 SDValue Value = ST->getValue();
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000729 MVT VT = Value.getSimpleValueType();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000730 switch (TLI.getOperationAction(ISD::STORE, VT)) {
731 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000732 case TargetLowering::Legal: {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000733 // If this is an unaligned store and the target doesn't support it,
734 // expand it.
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000735 unsigned AS = ST->getAddressSpace();
736 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT(), AS)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000737 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000738 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000739 if (ST->getAlignment() < ABIAlignment)
740 ExpandUnalignedStore(cast<StoreSDNode>(Node),
741 DAG, TLI, this);
742 }
743 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000744 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000745 case TargetLowering::Custom: {
746 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
747 if (Res.getNode())
748 ReplaceNode(SDValue(Node, 0), Res);
749 return;
750 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000751 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000752 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellardb785bd72012-12-10 21:41:54 +0000753 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
754 "Can only promote stores to same size type");
755 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000756 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000757 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000758 ST->getPointerInfo(), isVolatile,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000759 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000760 ReplaceNode(SDValue(Node, 0), Result);
761 break;
762 }
763 }
764 return;
765 }
766 } else {
Nadav Rotem2a148662012-07-11 11:02:16 +0000767 SDValue Value = ST->getValue();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000768
769 EVT StVT = ST->getMemoryVT();
770 unsigned StWidth = StVT.getSizeInBits();
771
772 if (StWidth != StVT.getStoreSizeInBits()) {
773 // Promote to a byte-sized store with upper bits zero if not
774 // storing an integral number of bytes. For example, promote
775 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
776 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
777 StVT.getStoreSizeInBits());
Nadav Rotem2a148662012-07-11 11:02:16 +0000778 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000779 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000780 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000781 NVT, isVolatile, isNonTemporal, Alignment,
782 TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000783 ReplaceNode(SDValue(Node, 0), Result);
784 } else if (StWidth & (StWidth - 1)) {
785 // If not storing a power-of-2 number of bits, expand as two stores.
786 assert(!StVT.isVector() && "Unsupported truncstore!");
787 unsigned RoundWidth = 1 << Log2_32(StWidth);
788 assert(RoundWidth < StWidth);
789 unsigned ExtraWidth = StWidth - RoundWidth;
790 assert(ExtraWidth < RoundWidth);
791 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
792 "Store size not an integral number of bytes!");
793 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
794 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
795 SDValue Lo, Hi;
796 unsigned IncrementSize;
797
798 if (TLI.isLittleEndian()) {
799 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
800 // Store the bottom RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000801 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemde6fd282012-07-11 08:52:09 +0000802 RoundVT,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000803 isVolatile, isNonTemporal, Alignment,
804 TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000805
806 // Store the remaining ExtraWidth bits.
807 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000808 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000809 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000810 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000811 DAG.getConstant(RoundWidth,
Jack Carter5c0af482013-11-19 23:43:22 +0000812 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000813 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000814 ST->getPointerInfo().getWithOffset(IncrementSize),
815 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000816 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000817 } else {
818 // Big endian - avoid unaligned stores.
819 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
820 // Store the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000821 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000822 DAG.getConstant(ExtraWidth,
Jack Carter5c0af482013-11-19 23:43:22 +0000823 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000824 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000825 RoundVT, isVolatile, isNonTemporal, Alignment,
826 TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000827
828 // Store the remaining ExtraWidth bits.
829 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000830 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Jack Carter5c0af482013-11-19 23:43:22 +0000831 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000832 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000833 ST->getPointerInfo().getWithOffset(IncrementSize),
834 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000835 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000836 }
837
838 // The order of the stores doesn't matter.
839 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
840 ReplaceNode(SDValue(Node, 0), Result);
841 } else {
Patrik Hagglundd7cdcf82012-12-19 08:28:51 +0000842 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
843 StVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000844 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000845 case TargetLowering::Legal: {
846 unsigned AS = ST->getAddressSpace();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000847 // If this is an unaligned store and the target doesn't support it,
848 // expand it.
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000849 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT(), AS)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000850 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000851 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000852 if (ST->getAlignment() < ABIAlignment)
853 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
854 }
855 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000856 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000857 case TargetLowering::Custom: {
858 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
859 if (Res.getNode())
860 ReplaceNode(SDValue(Node, 0), Res);
861 return;
862 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000863 case TargetLowering::Expand:
864 assert(!StVT.isVector() &&
865 "Vector Stores are handled in LegalizeVectorOps");
866
867 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem2a148662012-07-11 11:02:16 +0000868 assert(TLI.isTypeLegal(StVT) &&
869 "Do not know how to expand this store!");
870 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000871 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000872 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000873 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000874 ReplaceNode(SDValue(Node, 0), Result);
875 break;
876 }
877 }
878 }
879}
880
881void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
882 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000883 SDValue Chain = LD->getChain(); // The chain.
884 SDValue Ptr = LD->getBasePtr(); // The base pointer.
885 SDValue Value; // The value returned by the load op.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000886 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000887
888 ISD::LoadExtType ExtType = LD->getExtensionType();
889 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000890 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem2a148662012-07-11 11:02:16 +0000891 SDValue RVal = SDValue(Node, 0);
892 SDValue RChain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000893
894 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
895 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000896 case TargetLowering::Legal: {
897 unsigned AS = LD->getAddressSpace();
Evan Chengc5735992012-09-18 01:34:40 +0000898 // If this is an unaligned load and the target doesn't support it,
899 // expand it.
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000900 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT(), AS)) {
Evan Chengc5735992012-09-18 01:34:40 +0000901 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
902 unsigned ABIAlignment =
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000903 TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Chengc5735992012-09-18 01:34:40 +0000904 if (LD->getAlignment() < ABIAlignment){
905 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
906 }
907 }
908 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000909 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000910 case TargetLowering::Custom: {
Evan Chengc5735992012-09-18 01:34:40 +0000911 SDValue Res = TLI.LowerOperation(RVal, DAG);
912 if (Res.getNode()) {
913 RVal = Res;
914 RChain = Res.getValue(1);
915 }
916 break;
Nadav Rotem2a148662012-07-11 11:02:16 +0000917 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000918 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000919 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellard30e2aa52012-12-10 21:41:58 +0000920 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
921 "Can only promote loads to same size type");
Nadav Rotemde6fd282012-07-11 08:52:09 +0000922
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000923 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
Nadav Rotem2a148662012-07-11 11:02:16 +0000924 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
925 RChain = Res.getValue(1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000926 break;
927 }
928 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000929 if (RChain.getNode() != Node) {
930 assert(RVal.getNode() != Node && "Load must be completely replaced");
931 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
932 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000933 ReplacedNode(Node);
934 }
935 return;
936 }
937
938 EVT SrcVT = LD->getMemoryVT();
939 unsigned SrcWidth = SrcVT.getSizeInBits();
940 unsigned Alignment = LD->getAlignment();
941 bool isVolatile = LD->isVolatile();
942 bool isNonTemporal = LD->isNonTemporal();
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000943 const MDNode *TBAAInfo = LD->getTBAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000944
945 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
946 // Some targets pretend to have an i1 loading operation, and actually
947 // load an i8. This trick is correct for ZEXTLOAD because the top 7
948 // bits are guaranteed to be zero; it helps the optimizers understand
949 // that these bits are zero. It is also useful for EXTLOAD, since it
950 // tells the optimizers that those bits are undefined. It would be
951 // nice to have an effective generic way of getting these benefits...
952 // Until such a way is found, don't insist on promoting i1 here.
953 (SrcVT != MVT::i1 ||
954 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
955 // Promote to a byte-sized load if not loading an integral number of
956 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
957 unsigned NewWidth = SrcVT.getStoreSizeInBits();
958 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
959 SDValue Ch;
960
961 // The extra bits are guaranteed to be zero, since we stored them that
962 // way. A zext load from NVT thus automatically gives zext from SrcVT.
963
964 ISD::LoadExtType NewExtType =
965 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
966
967 SDValue Result =
968 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +0000969 Chain, Ptr, LD->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000970 NVT, isVolatile, isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000971
972 Ch = Result.getValue(1); // The chain.
973
974 if (ExtType == ISD::SEXTLOAD)
975 // Having the top bits zero doesn't help when sign extending.
976 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
977 Result.getValueType(),
978 Result, DAG.getValueType(SrcVT));
979 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
980 // All the top bits are guaranteed to be zero - inform the optimizers.
981 Result = DAG.getNode(ISD::AssertZext, dl,
982 Result.getValueType(), Result,
983 DAG.getValueType(SrcVT));
984
Nadav Rotem2a148662012-07-11 11:02:16 +0000985 Value = Result;
986 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +0000987 } else if (SrcWidth & (SrcWidth - 1)) {
988 // If not loading a power-of-2 number of bits, expand as two loads.
989 assert(!SrcVT.isVector() && "Unsupported extload!");
990 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
991 assert(RoundWidth < SrcWidth);
992 unsigned ExtraWidth = SrcWidth - RoundWidth;
993 assert(ExtraWidth < RoundWidth);
994 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
995 "Load size not an integral number of bytes!");
996 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
997 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
998 SDValue Lo, Hi, Ch;
999 unsigned IncrementSize;
1000
1001 if (TLI.isLittleEndian()) {
1002 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1003 // Load the bottom RoundWidth bits.
1004 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +00001005 Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001006 LD->getPointerInfo(), RoundVT, isVolatile,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00001007 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001008
1009 // Load the remaining ExtraWidth bits.
1010 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001011 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +00001012 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +00001013 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001014 LD->getPointerInfo().getWithOffset(IncrementSize),
1015 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00001016 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001017
1018 // Build a factor node to remember that this load is independent of
1019 // the other one.
1020 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1021 Hi.getValue(1));
1022
1023 // Move the top bits to the right place.
1024 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1025 DAG.getConstant(RoundWidth,
Jack Carter5c0af482013-11-19 23:43:22 +00001026 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001027
1028 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001029 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001030 } else {
1031 // Big endian - avoid unaligned loads.
1032 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1033 // Load the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +00001034 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001035 LD->getPointerInfo(), RoundVT, isVolatile,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00001036 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001037
1038 // Load the remaining ExtraWidth bits.
1039 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001040 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +00001041 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001042 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem2a148662012-07-11 11:02:16 +00001043 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001044 LD->getPointerInfo().getWithOffset(IncrementSize),
1045 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00001046 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001047
1048 // Build a factor node to remember that this load is independent of
1049 // the other one.
1050 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1051 Hi.getValue(1));
1052
1053 // Move the top bits to the right place.
1054 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1055 DAG.getConstant(ExtraWidth,
Jack Carter5c0af482013-11-19 23:43:22 +00001056 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001057
1058 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001059 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001060 }
1061
Nadav Rotem2a148662012-07-11 11:02:16 +00001062 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001063 } else {
1064 bool isCustom = false;
Patrik Hagglund55d6f472012-12-14 09:05:13 +00001065 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001066 default: llvm_unreachable("This action is not supported yet!");
1067 case TargetLowering::Custom:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001068 isCustom = true;
1069 // FALLTHROUGH
Nadav Rotem2a148662012-07-11 11:02:16 +00001070 case TargetLowering::Legal: {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001071 Value = SDValue(Node, 0);
1072 Chain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001073
Matt Arsenault95b714c2014-03-11 00:01:25 +00001074 if (isCustom) {
1075 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1076 if (Res.getNode()) {
1077 Value = Res;
1078 Chain = Res.getValue(1);
1079 }
1080 } else {
1081 // If this is an unaligned load and the target doesn't support
1082 // it, expand it.
1083 EVT MemVT = LD->getMemoryVT();
1084 unsigned AS = LD->getAddressSpace();
1085 if (!TLI.allowsUnalignedMemoryAccesses(MemVT, AS)) {
1086 Type *Ty =
1087 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1088 unsigned ABIAlignment =
1089 TLI.getDataLayout()->getABITypeAlignment(Ty);
1090 if (LD->getAlignment() < ABIAlignment){
1091 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
1092 DAG, TLI, Value, Chain);
1093 }
1094 }
1095 }
1096 break;
Nadav Rotem2a148662012-07-11 11:02:16 +00001097 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001098 case TargetLowering::Expand:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001099 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) &&
1100 TLI.isTypeLegal(SrcVT)) {
1101 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
1102 LD->getMemOperand());
1103 unsigned ExtendOp;
1104 switch (ExtType) {
1105 case ISD::EXTLOAD:
1106 ExtendOp = (SrcVT.isFloatingPoint() ?
1107 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1108 break;
1109 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1110 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1111 default: llvm_unreachable("Unexpected extend load type!");
1112 }
1113 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1114 Chain = Load.getValue(1);
1115 break;
1116 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001117
Matt Arsenault95b714c2014-03-11 00:01:25 +00001118 assert(!SrcVT.isVector() &&
1119 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemde6fd282012-07-11 08:52:09 +00001120
Matt Arsenault95b714c2014-03-11 00:01:25 +00001121 // FIXME: This does not work for vectors on most targets. Sign-
1122 // and zero-extend operations are currently folded into extending
1123 // loads, whether they are legal or not, and then we end up here
1124 // without any support for legalizing them.
1125 assert(ExtType != ISD::EXTLOAD &&
1126 "EXTLOAD should always be supported!");
1127 // Turn the unsupported load into an EXTLOAD followed by an
1128 // explicit zero/sign extend inreg.
1129 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl,
1130 Node->getValueType(0),
1131 Chain, Ptr, SrcVT,
1132 LD->getMemOperand());
1133 SDValue ValRes;
1134 if (ExtType == ISD::SEXTLOAD)
1135 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1136 Result.getValueType(),
1137 Result, DAG.getValueType(SrcVT));
1138 else
1139 ValRes = DAG.getZeroExtendInReg(Result, dl,
1140 SrcVT.getScalarType());
1141 Value = ValRes;
1142 Chain = Result.getValue(1);
1143 break;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001144 }
1145 }
1146
1147 // Since loads produce two values, make sure to remember that we legalized
1148 // both of them.
Nadav Rotem2a148662012-07-11 11:02:16 +00001149 if (Chain.getNode() != Node) {
1150 assert(Value.getNode() != Node && "Load must be completely replaced");
1151 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1152 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001153 ReplacedNode(Node);
1154 }
1155}
1156
Dan Gohmanad946082011-07-15 21:42:20 +00001157/// LegalizeOp - Return a legal replacement for the given operation, with
1158/// all legal operands.
Dan Gohman198b7ff2011-11-03 21:49:52 +00001159void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1160 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1161 return;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001162
Eli Friedman5e0d1502009-05-24 02:46:31 +00001163 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001164 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1165 TargetLowering::TypeLegal &&
Eli Friedman5e0d1502009-05-24 02:46:31 +00001166 "Unexpected illegal type!");
1167
1168 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001169 assert((TLI.getTypeAction(*DAG.getContext(),
1170 Node->getOperand(i).getValueType()) ==
1171 TargetLowering::TypeLegal ||
Eli Friedman5e0d1502009-05-24 02:46:31 +00001172 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1173 "Unexpected illegal type!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001174
Eli Friedman21d349b2009-05-27 01:25:56 +00001175 // Figure out the correct action; the way to query this varies by opcode
Bill Wendlingfb4ee9b2011-01-26 22:21:35 +00001176 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman21d349b2009-05-27 01:25:56 +00001177 bool SimpleFinishLegalizing = true;
Chris Lattnerdc750592005-01-07 07:47:09 +00001178 switch (Node->getOpcode()) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001179 case ISD::INTRINSIC_W_CHAIN:
1180 case ISD::INTRINSIC_WO_CHAIN:
1181 case ISD::INTRINSIC_VOID:
Eli Friedman21d349b2009-05-27 01:25:56 +00001182 case ISD::STACKSAVE:
Owen Anderson9f944592009-08-11 20:47:22 +00001183 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman21d349b2009-05-27 01:25:56 +00001184 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00001185 case ISD::VAARG:
1186 Action = TLI.getOperationAction(Node->getOpcode(),
1187 Node->getValueType(0));
1188 if (Action != TargetLowering::Promote)
1189 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1190 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001191 case ISD::SINT_TO_FP:
1192 case ISD::UINT_TO_FP:
1193 case ISD::EXTRACT_VECTOR_ELT:
1194 Action = TLI.getOperationAction(Node->getOpcode(),
1195 Node->getOperand(0).getValueType());
1196 break;
1197 case ISD::FP_ROUND_INREG:
1198 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001199 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00001200 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1201 break;
1202 }
Eli Friedman342e8df2011-08-24 20:50:09 +00001203 case ISD::ATOMIC_STORE: {
1204 Action = TLI.getOperationAction(Node->getOpcode(),
1205 Node->getOperand(2).getValueType());
1206 break;
1207 }
Eli Friedmane1bc3792009-05-28 03:06:16 +00001208 case ISD::SELECT_CC:
1209 case ISD::SETCC:
1210 case ISD::BR_CC: {
1211 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1212 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1213 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001214 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedmane1bc3792009-05-28 03:06:16 +00001215 ISD::CondCode CCCode =
1216 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1217 Action = TLI.getCondCodeAction(CCCode, OpVT);
1218 if (Action == TargetLowering::Legal) {
1219 if (Node->getOpcode() == ISD::SELECT_CC)
1220 Action = TLI.getOperationAction(Node->getOpcode(),
1221 Node->getValueType(0));
1222 else
1223 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1224 }
1225 break;
1226 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001227 case ISD::LOAD:
1228 case ISD::STORE:
Eli Friedman5df72022009-05-28 03:56:57 +00001229 // FIXME: Model these properly. LOAD and STORE are complicated, and
1230 // STORE expects the unlegalized operand in some cases.
1231 SimpleFinishLegalizing = false;
1232 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001233 case ISD::CALLSEQ_START:
1234 case ISD::CALLSEQ_END:
Eli Friedman5df72022009-05-28 03:56:57 +00001235 // FIXME: This shouldn't be necessary. These nodes have special properties
1236 // dealing with the recursive nature of legalization. Removing this
1237 // special case should be done as part of making LegalizeDAG non-recursive.
1238 SimpleFinishLegalizing = false;
1239 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001240 case ISD::EXTRACT_ELEMENT:
1241 case ISD::FLT_ROUNDS_:
1242 case ISD::SADDO:
1243 case ISD::SSUBO:
1244 case ISD::UADDO:
1245 case ISD::USUBO:
1246 case ISD::SMULO:
1247 case ISD::UMULO:
1248 case ISD::FPOWI:
1249 case ISD::MERGE_VALUES:
1250 case ISD::EH_RETURN:
1251 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00001252 case ISD::EH_SJLJ_SETJMP:
1253 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmand6f28342009-05-27 03:33:44 +00001254 // These operations lie about being legal: when they claim to be legal,
1255 // they should actually be expanded.
Eli Friedman21d349b2009-05-27 01:25:56 +00001256 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1257 if (Action == TargetLowering::Legal)
1258 Action = TargetLowering::Expand;
1259 break;
Duncan Sandsa0984362011-09-06 13:37:06 +00001260 case ISD::INIT_TRAMPOLINE:
1261 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman21d349b2009-05-27 01:25:56 +00001262 case ISD::FRAMEADDR:
1263 case ISD::RETURNADDR:
Eli Friedman2892d822009-05-27 12:20:41 +00001264 // These operations lie about being legal: when they claim to be legal,
1265 // they should actually be custom-lowered.
1266 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1267 if (Action == TargetLowering::Legal)
1268 Action = TargetLowering::Custom;
Eli Friedman21d349b2009-05-27 01:25:56 +00001269 break;
Shuxin Yangcdde0592012-10-19 20:11:16 +00001270 case ISD::DEBUGTRAP:
1271 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1272 if (Action == TargetLowering::Expand) {
1273 // replace ISD::DEBUGTRAP with ISD::TRAP
1274 SDValue NewVal;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001275 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yang1479fcd2012-10-19 23:00:20 +00001276 Node->getOperand(0));
Shuxin Yangcdde0592012-10-19 20:11:16 +00001277 ReplaceNode(Node, NewVal.getNode());
1278 LegalizeOp(NewVal.getNode());
1279 return;
1280 }
1281 break;
1282
Chris Lattnerdc750592005-01-07 07:47:09 +00001283 default:
Chris Lattner3eb86932005-05-14 06:34:48 +00001284 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001285 Action = TargetLowering::Legal;
1286 } else {
1287 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattner3eb86932005-05-14 06:34:48 +00001288 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001289 break;
1290 }
1291
1292 if (SimpleFinishLegalizing) {
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001293 SDNode *NewNode = Node;
Eli Friedman21d349b2009-05-27 01:25:56 +00001294 switch (Node->getOpcode()) {
1295 default: break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001296 case ISD::SHL:
1297 case ISD::SRL:
1298 case ISD::SRA:
1299 case ISD::ROTL:
1300 case ISD::ROTR:
1301 // Legalizing shifts/rotates requires adjusting the shift amount
1302 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001303 if (!Node->getOperand(1).getValueType().isVector()) {
1304 SDValue SAO =
1305 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1306 Node->getOperand(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001307 HandleSDNode Handle(SAO);
1308 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001309 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1310 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001311 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001312 break;
Dan Gohman4906f732009-08-18 23:36:17 +00001313 case ISD::SRL_PARTS:
1314 case ISD::SRA_PARTS:
1315 case ISD::SHL_PARTS:
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(2).getValueType().isVector()) {
1319 SDValue SAO =
1320 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1321 Node->getOperand(2));
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 Node->getOperand(1),
1326 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001327 }
Dan Gohman2fa67c92009-08-18 23:52:48 +00001328 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001329 }
1330
Dan Gohman198b7ff2011-11-03 21:49:52 +00001331 if (NewNode != Node) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00001332 DAG.ReplaceAllUsesWith(Node, NewNode);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001333 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1334 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman13477152011-11-11 23:58:27 +00001335 ReplacedNode(Node);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001336 Node = NewNode;
1337 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001338 switch (Action) {
1339 case TargetLowering::Legal:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001340 return;
Nadav Rotem2a148662012-07-11 11:02:16 +00001341 case TargetLowering::Custom: {
Eli Friedman21d349b2009-05-27 01:25:56 +00001342 // FIXME: The handling for custom lowering with multiple results is
1343 // a complete mess.
Nadav Rotem2a148662012-07-11 11:02:16 +00001344 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1345 if (Res.getNode()) {
Dan Gohman198b7ff2011-11-03 21:49:52 +00001346 SmallVector<SDValue, 8> ResultVals;
Eli Friedman21d349b2009-05-27 01:25:56 +00001347 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1348 if (e == 1)
Nadav Rotem2a148662012-07-11 11:02:16 +00001349 ResultVals.push_back(Res);
Eli Friedman21d349b2009-05-27 01:25:56 +00001350 else
Nadav Rotem2a148662012-07-11 11:02:16 +00001351 ResultVals.push_back(Res.getValue(i));
Eli Friedman21d349b2009-05-27 01:25:56 +00001352 }
Nadav Rotem2a148662012-07-11 11:02:16 +00001353 if (Res.getNode() != Node || Res.getResNo() != 0) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00001354 DAG.ReplaceAllUsesWith(Node, ResultVals.data());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001355 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1356 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman13477152011-11-11 23:58:27 +00001357 ReplacedNode(Node);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001358 }
1359 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001360 }
Nadav Rotem2a148662012-07-11 11:02:16 +00001361 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001362 // FALL THROUGH
1363 case TargetLowering::Expand:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001364 ExpandNode(Node);
1365 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001366 case TargetLowering::Promote:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001367 PromoteNode(Node);
1368 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001369 }
1370 }
1371
1372 switch (Node->getOpcode()) {
1373 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001374#ifndef NDEBUG
David Greeneae4f2662010-01-05 01:24:53 +00001375 dbgs() << "NODE: ";
1376 Node->dump( &DAG);
1377 dbgs() << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001378#endif
Craig Topperee4dab52012-02-05 08:31:47 +00001379 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendlingf359fed2007-11-13 00:44:25 +00001380
Dan Gohman198b7ff2011-11-03 21:49:52 +00001381 case ISD::CALLSEQ_START:
Dan Gohman9b9c9702011-10-29 00:41:52 +00001382 case ISD::CALLSEQ_END:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001383 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001384 case ISD::LOAD: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001385 return LegalizeLoadOps(Node);
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001386 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001387 case ISD::STORE: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001388 return LegalizeStoreOps(Node);
Evan Cheng31d15fa2005-12-23 07:29:34 +00001389 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001390 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001391}
1392
Eli Friedman40afdb62009-05-23 22:37:25 +00001393SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1394 SDValue Vec = Op.getOperand(0);
1395 SDValue Idx = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001396 SDLoc dl(Op);
Eli Friedman40afdb62009-05-23 22:37:25 +00001397 // Store the value to a temporary stack slot, then LOAD the returned part.
1398 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Chris Lattner676c61d2010-09-21 18:41:36 +00001399 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1400 MachinePointerInfo(), false, false, 0);
Eli Friedman40afdb62009-05-23 22:37:25 +00001401
1402 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +00001403 unsigned EltSize =
1404 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman40afdb62009-05-23 22:37:25 +00001405 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1406 DAG.getConstant(EltSize, Idx.getValueType()));
1407
Matt Arsenault873bb3e2013-11-17 02:24:21 +00001408 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
Eli Friedman40afdb62009-05-23 22:37:25 +00001409 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1410
Eli Friedman2b77eef2009-07-09 22:01:03 +00001411 if (Op.getValueType().isVector())
Chris Lattner1ffcf522010-09-21 16:36:31 +00001412 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001413 false, false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +00001414 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d178ed2010-09-21 17:04:51 +00001415 MachinePointerInfo(),
1416 Vec.getValueType().getVectorElementType(),
1417 false, false, 0);
Eli Friedman40afdb62009-05-23 22:37:25 +00001418}
1419
David Greenebab5e6e2011-01-26 19:13:22 +00001420SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1421 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1422
1423 SDValue Vec = Op.getOperand(0);
1424 SDValue Part = Op.getOperand(1);
1425 SDValue Idx = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001426 SDLoc dl(Op);
David Greenebab5e6e2011-01-26 19:13:22 +00001427
1428 // Store the value to a temporary stack slot, then LOAD the returned part.
1429
1430 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1431 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1432 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1433
1434 // First store the whole vector.
1435 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1436 false, false, 0);
1437
1438 // Then store the inserted part.
1439
1440 // Add the offset to the index.
1441 unsigned EltSize =
1442 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1443
1444 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1445 DAG.getConstant(EltSize, Idx.getValueType()));
Matt Arsenault64283bd2013-11-17 02:31:26 +00001446 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
David Greenebab5e6e2011-01-26 19:13:22 +00001447
1448 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1449 StackPtr);
1450
1451 // Store the subvector.
1452 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1453 MachinePointerInfo(), false, false, 0);
1454
1455 // Finally, load the updated vector.
1456 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001457 false, false, false, 0);
David Greenebab5e6e2011-01-26 19:13:22 +00001458}
1459
Eli Friedmanaee3f622009-06-06 07:04:42 +00001460SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1461 // We can't handle this case efficiently. Allocate a sufficiently
1462 // aligned object on the stack, store each element into it, then load
1463 // the result as a vector.
1464 // Create the stack frame object.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001465 EVT VT = Node->getValueType(0);
Dale Johannesenb91eba32009-11-21 00:53:23 +00001466 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001467 SDLoc dl(Node);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001468 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001469 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattner1ffcf522010-09-21 16:36:31 +00001470 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001471
1472 // Emit a store of each element to the stack slot.
1473 SmallVector<SDValue, 8> Stores;
Dan Gohman9b80f862010-02-25 15:20:39 +00001474 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedmanaee3f622009-06-06 07:04:42 +00001475 // Store (in the right endianness) the elements to memory.
1476 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1477 // Ignore undef elements.
1478 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1479
1480 unsigned Offset = TypeByteSize*i;
1481
1482 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1483 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1484
Dan Gohman2a8e3772010-02-25 20:30:49 +00001485 // If the destination vector element type is narrower than the source
1486 // element type, only store the bits necessary.
1487 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesenb91eba32009-11-21 00:53:23 +00001488 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001489 Node->getOperand(i), Idx,
1490 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001491 EltVT, false, false, 0));
Mon P Wang586d9972010-01-24 00:05:03 +00001492 } else
Jim Grosbach9b7755f2010-07-02 17:41:59 +00001493 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001494 Node->getOperand(i), Idx,
1495 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001496 false, false, 0));
Eli Friedmanaee3f622009-06-06 07:04:42 +00001497 }
1498
1499 SDValue StoreChain;
1500 if (!Stores.empty()) // Not all undef elements?
Owen Anderson9f944592009-08-11 20:47:22 +00001501 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedmanaee3f622009-06-06 07:04:42 +00001502 &Stores[0], Stores.size());
1503 else
1504 StoreChain = DAG.getEntryNode();
1505
1506 // Result is a load from the stack slot.
Stephen Lincfe7f352013-07-08 00:37:03 +00001507 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001508 false, false, false, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001509}
1510
Eli Friedman2892d822009-05-27 12:20:41 +00001511SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001512 SDLoc dl(Node);
Eli Friedman2892d822009-05-27 12:20:41 +00001513 SDValue Tmp1 = Node->getOperand(0);
1514 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands4c55f762010-03-12 11:45:06 +00001515
1516 // Get the sign bit of the RHS. First obtain a value that has the same
1517 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman2892d822009-05-27 12:20:41 +00001518 SDValue SignBit;
Duncan Sands4c55f762010-03-12 11:45:06 +00001519 EVT FloatVT = Tmp2.getValueType();
1520 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohmane49e7422011-07-15 22:39:09 +00001521 if (TLI.isTypeLegal(IVT)) {
Duncan Sands4c55f762010-03-12 11:45:06 +00001522 // Convert to an integer with the same sign bit.
Wesley Peck527da1b2010-11-23 03:31:01 +00001523 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman2892d822009-05-27 12:20:41 +00001524 } else {
Duncan Sands4c55f762010-03-12 11:45:06 +00001525 // Store the float to memory, then load the sign part out as an integer.
1526 MVT LoadTy = TLI.getPointerTy();
1527 // First create a temporary that is aligned for both the load and store.
1528 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1529 // Then store the float to it.
Eli Friedman2892d822009-05-27 12:20:41 +00001530 SDValue Ch =
Chris Lattner676c61d2010-09-21 18:41:36 +00001531 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00001532 false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001533 if (TLI.isBigEndian()) {
1534 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1535 // Load out a legal integer with the same sign bit as the float.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001536 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001537 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001538 } else { // Little endian
1539 SDValue LoadPtr = StackPtr;
1540 // The float may be wider than the integer we are going to load. Advance
1541 // the pointer so that the loaded integer will contain the sign bit.
1542 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1543 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
Jack Carter5c0af482013-11-19 23:43:22 +00001544 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(), LoadPtr,
1545 DAG.getConstant(ByteOffset, LoadPtr.getValueType()));
Duncan Sands4c55f762010-03-12 11:45:06 +00001546 // Load a legal integer containing the sign bit.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001547 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001548 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001549 // Move the sign bit to the top bit of the loaded integer.
1550 unsigned BitShift = LoadTy.getSizeInBits() -
1551 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1552 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1553 if (BitShift)
1554 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Andersonb2c80da2011-02-25 21:41:48 +00001555 DAG.getConstant(BitShift,
1556 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands4c55f762010-03-12 11:45:06 +00001557 }
Eli Friedman2892d822009-05-27 12:20:41 +00001558 }
Duncan Sands4c55f762010-03-12 11:45:06 +00001559 // Now get the sign bit proper, by seeing whether the value is negative.
Matt Arsenault758659232013-05-18 00:21:46 +00001560 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
Duncan Sands4c55f762010-03-12 11:45:06 +00001561 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1562 ISD::SETLT);
Eli Friedman2892d822009-05-27 12:20:41 +00001563 // Get the absolute value of the result.
1564 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1565 // Select between the nabs and abs value based on the sign bit of
1566 // the input.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00001567 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
Jack Carter5c0af482013-11-19 23:43:22 +00001568 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1569 AbsVal);
Eli Friedman2892d822009-05-27 12:20:41 +00001570}
1571
Eli Friedman2892d822009-05-27 12:20:41 +00001572void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1573 SmallVectorImpl<SDValue> &Results) {
1574 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1575 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1576 " not tell us which reg is the stack pointer!");
Andrew Trickef9de2a2013-05-25 02:42:55 +00001577 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001578 EVT VT = Node->getValueType(0);
Eli Friedman2892d822009-05-27 12:20:41 +00001579 SDValue Tmp1 = SDValue(Node, 0);
1580 SDValue Tmp2 = SDValue(Node, 1);
1581 SDValue Tmp3 = Node->getOperand(2);
1582 SDValue Chain = Tmp1.getOperand(0);
1583
1584 // Chain the dynamic stack allocation so that it doesn't modify the stack
1585 // pointer when other instructions are using the stack.
Andrew Trickad6d08a2013-05-29 22:03:55 +00001586 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
1587 SDLoc(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00001588
1589 SDValue Size = Tmp2.getOperand(1);
1590 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1591 Chain = SP.getValue(1);
1592 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001593 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman2892d822009-05-27 12:20:41 +00001594 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Elena Demikhovsky82a46eb2013-10-14 07:26:51 +00001595 if (Align > StackAlign)
1596 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
1597 DAG.getConstant(-(uint64_t)Align, VT));
Eli Friedman2892d822009-05-27 12:20:41 +00001598 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1599
1600 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00001601 DAG.getIntPtrConstant(0, true), SDValue(),
1602 SDLoc(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00001603
1604 Results.push_back(Tmp1);
1605 Results.push_back(Tmp2);
1606}
1607
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001608/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Tom Stellard08690a12013-09-28 02:50:32 +00001609/// condition code CC on the current target.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001610///
Tom Stellard08690a12013-09-28 02:50:32 +00001611/// If the SETCC has been legalized using AND / OR, then the legalized node
Daniel Sandersedc071b2013-11-21 13:24:49 +00001612/// will be stored in LHS. RHS and CC will be set to SDValue(). NeedInvert
1613/// will be set to false.
1614///
Tom Stellard08690a12013-09-28 02:50:32 +00001615/// If the SETCC has been legalized by using getSetCCSwappedOperands(),
Daniel Sandersedc071b2013-11-21 13:24:49 +00001616/// then the values of LHS and RHS will be swapped, CC will be set to the
1617/// new condition, and NeedInvert will be set to false.
1618///
1619/// If the SETCC has been legalized using the inverse condcode, then LHS and
1620/// RHS will be unchanged, CC will set to the inverted condcode, and NeedInvert
1621/// will be set to true. The caller must invert the result of the SETCC with
1622/// SelectionDAG::getNOT() or take equivalent action to swap the effect of a
1623/// true/false result.
1624///
Tom Stellard08690a12013-09-28 02:50:32 +00001625/// \returns true if the SetCC has been legalized, false if it hasn't.
1626bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001627 SDValue &LHS, SDValue &RHS,
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001628 SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +00001629 bool &NeedInvert,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001630 SDLoc dl) {
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001631 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001632 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
Daniel Sandersedc071b2013-11-21 13:24:49 +00001633 NeedInvert = false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001634 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topperee4dab52012-02-05 08:31:47 +00001635 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001636 case TargetLowering::Legal:
1637 // Nothing to do.
1638 break;
1639 case TargetLowering::Expand: {
Tom Stellardcd428182013-09-28 02:50:38 +00001640 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1641 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1642 std::swap(LHS, RHS);
1643 CC = DAG.getCondCode(InvCC);
1644 return true;
1645 }
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001646 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1647 unsigned Opc = 0;
1648 switch (CCCode) {
Craig Topperee4dab52012-02-05 08:31:47 +00001649 default: llvm_unreachable("Don't know how to expand this condition!");
Stephen Lincfe7f352013-07-08 00:37:03 +00001650 case ISD::SETO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001651 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1652 == TargetLowering::Legal
1653 && "If SETO is expanded, SETOEQ must be legal!");
1654 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
Stephen Lincfe7f352013-07-08 00:37:03 +00001655 case ISD::SETUO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001656 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1657 == TargetLowering::Legal
1658 && "If SETUO is expanded, SETUNE must be legal!");
1659 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1660 case ISD::SETOEQ:
1661 case ISD::SETOGT:
1662 case ISD::SETOGE:
1663 case ISD::SETOLT:
1664 case ISD::SETOLE:
Stephen Lincfe7f352013-07-08 00:37:03 +00001665 case ISD::SETONE:
1666 case ISD::SETUEQ:
1667 case ISD::SETUNE:
1668 case ISD::SETUGT:
1669 case ISD::SETUGE:
1670 case ISD::SETULT:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001671 case ISD::SETULE:
1672 // If we are floating point, assign and break, otherwise fall through.
1673 if (!OpVT.isInteger()) {
1674 // We can use the 4th bit to tell if we are the unordered
1675 // or ordered version of the opcode.
1676 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1677 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1678 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1679 break;
1680 }
1681 // Fallthrough if we are unsigned integer.
1682 case ISD::SETLE:
1683 case ISD::SETGT:
1684 case ISD::SETGE:
1685 case ISD::SETLT:
Tom Stellardcd428182013-09-28 02:50:38 +00001686 // We only support using the inverted operation, which is computed above
1687 // and not a different manner of supporting expanding these cases.
1688 llvm_unreachable("Don't know how to expand this condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00001689 case ISD::SETNE:
1690 case ISD::SETEQ:
1691 // Try inverting the result of the inverse condition.
1692 InvCC = CCCode == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ;
1693 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1694 CC = DAG.getCondCode(InvCC);
1695 NeedInvert = true;
1696 return true;
1697 }
1698 // If inverting the condition didn't work then we have no means to expand
1699 // the condition.
1700 llvm_unreachable("Don't know how to expand this condition!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001701 }
Stephen Lincfe7f352013-07-08 00:37:03 +00001702
Micah Villmow0242b9b2012-10-10 20:50:51 +00001703 SDValue SetCC1, SetCC2;
1704 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1705 // If we aren't the ordered or unorder operation,
1706 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1707 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1708 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1709 } else {
1710 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1711 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1712 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1713 }
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001714 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001715 RHS = SDValue();
1716 CC = SDValue();
Tom Stellard08690a12013-09-28 02:50:32 +00001717 return true;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001718 }
1719 }
Tom Stellard08690a12013-09-28 02:50:32 +00001720 return false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001721}
1722
Chris Lattner87bc3e72008-01-16 07:45:30 +00001723/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1724/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1725/// a load from the stack slot to DestVT, extending it if needed.
1726/// The resultant code need not be legal.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001727SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001728 EVT SlotVT,
1729 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001730 SDLoc dl) {
Chris Lattner36e663d2005-12-23 00:16:34 +00001731 // Create the stack frame object.
Bob Wilsonf074ca72009-04-10 18:48:47 +00001732 unsigned SrcAlign =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001733 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson117c9e82009-08-12 00:36:31 +00001734 getTypeForEVT(*DAG.getContext()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001735 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001736
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001737 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1738 int SPFI = StackPtrFI->getIndex();
Chris Lattner6963c1f2010-09-21 17:42:31 +00001739 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001740
Duncan Sands13237ac2008-06-06 12:08:01 +00001741 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1742 unsigned SlotSize = SlotVT.getSizeInBits();
1743 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattner229907c2011-07-18 04:54:35 +00001744 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001745 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001746
Chris Lattner87bc3e72008-01-16 07:45:30 +00001747 // Emit a store to the stack slot. Use a truncstore if the input value is
1748 // later than DestVT.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001749 SDValue Store;
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001750
Chris Lattner87bc3e72008-01-16 07:45:30 +00001751 if (SrcSize > SlotSize)
Dale Johannesena02e45c2009-02-02 22:12:50 +00001752 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001753 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001754 else {
1755 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesena02e45c2009-02-02 22:12:50 +00001756 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001757 PtrInfo, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001758 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001759
Chris Lattner36e663d2005-12-23 00:16:34 +00001760 // Result is a load from the stack slot.
Chris Lattner87bc3e72008-01-16 07:45:30 +00001761 if (SlotSize == DestSize)
Chris Lattner6963c1f2010-09-21 17:42:31 +00001762 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001763 false, false, false, DestAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001764
Chris Lattner87bc3e72008-01-16 07:45:30 +00001765 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastings81c43062011-02-16 16:23:55 +00001766 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001767 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner36e663d2005-12-23 00:16:34 +00001768}
1769
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001770SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001771 SDLoc dl(Node);
Chris Lattner6be79822006-04-04 17:23:26 +00001772 // Create a vector sized/aligned stack slot, store the value to element #0,
1773 // then load the whole vector back out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001774 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman2d489b52008-02-06 22:27:42 +00001775
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001776 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1777 int SPFI = StackPtrFI->getIndex();
1778
Duncan Sandse4ff21b2009-04-18 20:16:54 +00001779 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1780 StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001781 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +00001782 Node->getValueType(0).getVectorElementType(),
1783 false, false, 0);
Dale Johannesena02e45c2009-02-02 22:12:50 +00001784 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001785 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001786 false, false, false, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00001787}
1788
1789
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001790/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman06c60b62007-07-16 14:29:03 +00001791/// support the operation, but do support the resultant vector type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001792SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilsonf6c21952009-04-13 20:20:30 +00001793 unsigned NumElems = Node->getNumOperands();
Eli Friedman32345872009-06-07 06:52:44 +00001794 SDValue Value1, Value2;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001795 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001796 EVT VT = Node->getValueType(0);
1797 EVT OpVT = Node->getOperand(0).getValueType();
1798 EVT EltVT = VT.getVectorElementType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001799
1800 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00001801 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001802 bool isOnlyLowElement = true;
Eli Friedman32345872009-06-07 06:52:44 +00001803 bool MoreThanTwoValues = false;
Chris Lattner77e271c2006-03-24 07:29:17 +00001804 bool isConstant = true;
Eli Friedman32345872009-06-07 06:52:44 +00001805 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001806 SDValue V = Node->getOperand(i);
Eli Friedman32345872009-06-07 06:52:44 +00001807 if (V.getOpcode() == ISD::UNDEF)
1808 continue;
1809 if (i > 0)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001810 isOnlyLowElement = false;
Eli Friedman32345872009-06-07 06:52:44 +00001811 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner77e271c2006-03-24 07:29:17 +00001812 isConstant = false;
Eli Friedman32345872009-06-07 06:52:44 +00001813
1814 if (!Value1.getNode()) {
1815 Value1 = V;
1816 } else if (!Value2.getNode()) {
1817 if (V != Value1)
1818 Value2 = V;
1819 } else if (V != Value1 && V != Value2) {
1820 MoreThanTwoValues = true;
1821 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001822 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001823
Eli Friedman32345872009-06-07 06:52:44 +00001824 if (!Value1.getNode())
1825 return DAG.getUNDEF(VT);
1826
1827 if (isOnlyLowElement)
Bob Wilsonf6c21952009-04-13 20:20:30 +00001828 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001829
Chris Lattner77e271c2006-03-24 07:29:17 +00001830 // If all elements are constants, create a load from the constant pool.
1831 if (isConstant) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001832 SmallVector<Constant*, 16> CV;
Chris Lattner77e271c2006-03-24 07:29:17 +00001833 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00001834 if (ConstantFPSDNode *V =
Chris Lattner77e271c2006-03-24 07:29:17 +00001835 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanec270fb2008-09-12 18:08:03 +00001836 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001837 } else if (ConstantSDNode *V =
Bob Wilsonf074ca72009-04-10 18:48:47 +00001838 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen6f7d5b22009-11-10 23:16:41 +00001839 if (OpVT==EltVT)
1840 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1841 else {
1842 // If OpVT and EltVT don't match, EltVT is not legal and the
1843 // element values have been promoted/truncated earlier. Undo this;
1844 // we don't want a v16i8 to become a v16i32 for example.
1845 const ConstantInt *CI = V->getConstantIntValue();
1846 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1847 CI->getZExtValue()));
1848 }
Chris Lattner77e271c2006-03-24 07:29:17 +00001849 } else {
1850 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner229907c2011-07-18 04:54:35 +00001851 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Andersonb292b8c2009-07-30 23:03:37 +00001852 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner77e271c2006-03-24 07:29:17 +00001853 }
1854 }
Owen Anderson4aa32952009-07-28 21:19:26 +00001855 Constant *CP = ConstantVector::get(CV);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001856 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1fb8aed2009-03-13 07:51:59 +00001857 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesena02e45c2009-02-02 22:12:50 +00001858 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00001859 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001860 false, false, false, Alignment);
Chris Lattner77e271c2006-03-24 07:29:17 +00001861 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001862
Eli Friedman32345872009-06-07 06:52:44 +00001863 if (!MoreThanTwoValues) {
1864 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1865 for (unsigned i = 0; i < NumElems; ++i) {
1866 SDValue V = Node->getOperand(i);
1867 if (V.getOpcode() == ISD::UNDEF)
1868 continue;
1869 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1870 }
1871 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
Chris Lattner21e68c82006-03-20 01:52:29 +00001872 // Get the splatted value into the low element of a vector register.
Eli Friedman32345872009-06-07 06:52:44 +00001873 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1874 SDValue Vec2;
1875 if (Value2.getNode())
1876 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1877 else
1878 Vec2 = DAG.getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001879
Chris Lattner21e68c82006-03-20 01:52:29 +00001880 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Eli Friedman32345872009-06-07 06:52:44 +00001881 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
Evan Cheng1d2e9952006-03-24 01:17:21 +00001882 }
1883 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001884
Eli Friedmanaee3f622009-06-06 07:04:42 +00001885 // Otherwise, we can't handle this case efficiently.
1886 return ExpandVectorBuildThroughStack(Node);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001887}
1888
Chris Lattneraac464e2005-01-21 06:05:23 +00001889// ExpandLibCall - Expand a node into a call to a libcall. If the result value
1890// does not fit into a register, return the lo part and set the hi part to the
1891// by-reg argument. If it does fit into a single register, return the result
1892// and leave the Hi part unset.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001893SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedmanb3554152009-05-27 02:21:29 +00001894 bool isSigned) {
Chris Lattneraac464e2005-01-21 06:05:23 +00001895 TargetLowering::ArgListTy Args;
Reid Spencere63b6512006-12-31 05:55:36 +00001896 TargetLowering::ArgListEntry Entry;
Chris Lattneraac464e2005-01-21 06:05:23 +00001897 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001898 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00001899 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelcf0da6c2009-02-17 22:15:04 +00001900 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00001901 Entry.isSExt = isSigned;
Duncan Sands4c95dbd2008-02-14 17:28:50 +00001902 Entry.isZExt = !isSigned;
Reid Spencere63b6512006-12-31 05:55:36 +00001903 Args.push_back(Entry);
Chris Lattneraac464e2005-01-21 06:05:23 +00001904 }
Bill Wendling24c79f22008-09-16 21:48:12 +00001905 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang58c37942008-10-30 08:01:45 +00001906 TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00001907
Chris Lattner229907c2011-07-18 04:54:35 +00001908 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Chengd4b08732010-11-30 23:55:39 +00001909
Evan Chengf8bad082012-04-10 01:51:00 +00001910 // By default, the input chain to this libcall is the entry node of the
1911 // function. If the libcall is going to be emitted as a tail call then
1912 // TLI.isUsedByReturnOnly will change it to the right chain if the return
1913 // node which is being folded has a non-entry input chain.
1914 SDValue InChain = DAG.getEntryNode();
1915
Evan Chengd4b08732010-11-30 23:55:39 +00001916 // isTailCall may be true since the callee does not reference caller stack
1917 // frame. Check if it's in the right position.
Evan Cheng136861d2012-04-10 03:15:18 +00001918 SDValue TCChain = InChain;
Tim Northoverf1450d82013-01-09 13:18:15 +00001919 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Cheng136861d2012-04-10 03:15:18 +00001920 if (isTailCall)
1921 InChain = TCChain;
1922
Justin Holewinskiaa583972012-05-25 16:35:28 +00001923 TargetLowering::
1924 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Chengd4b08732010-11-30 23:55:39 +00001925 0, TLI.getLibcallCallingConv(LC), isTailCall,
Evan Cheng65f9d192012-02-28 18:51:51 +00001926 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001927 Callee, Args, DAG, SDLoc(Node));
Justin Holewinskiaa583972012-05-25 16:35:28 +00001928 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
1929
Chris Lattnera5bf1032005-05-12 04:49:08 +00001930
Evan Chengd4b08732010-11-30 23:55:39 +00001931 if (!CallInfo.second.getNode())
1932 // It's a tailcall, return the chain (which is the DAG root).
1933 return DAG.getRoot();
1934
Eli Friedman4a951bf2009-05-26 08:55:52 +00001935 return CallInfo.first;
Chris Lattneraac464e2005-01-21 06:05:23 +00001936}
1937
Dan Gohmanae9b1682011-05-16 22:09:53 +00001938/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherbcaedb52011-04-20 01:19:45 +00001939/// and returning a result of type RetVT.
1940SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1941 const SDValue *Ops, unsigned NumOps,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001942 bool isSigned, SDLoc dl) {
Eric Christopherbcaedb52011-04-20 01:19:45 +00001943 TargetLowering::ArgListTy Args;
1944 Args.reserve(NumOps);
Dan Gohmanae9b1682011-05-16 22:09:53 +00001945
Eric Christopherbcaedb52011-04-20 01:19:45 +00001946 TargetLowering::ArgListEntry Entry;
1947 for (unsigned i = 0; i != NumOps; ++i) {
1948 Entry.Node = Ops[i];
1949 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1950 Entry.isSExt = isSigned;
1951 Entry.isZExt = !isSigned;
1952 Args.push_back(Entry);
1953 }
1954 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1955 TLI.getPointerTy());
Dan Gohmanae9b1682011-05-16 22:09:53 +00001956
Chris Lattner229907c2011-07-18 04:54:35 +00001957 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Justin Holewinskiaa583972012-05-25 16:35:28 +00001958 TargetLowering::
1959 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1960 false, 0, TLI.getLibcallCallingConv(LC),
1961 /*isTailCall=*/false,
Evan Cheng65f9d192012-02-28 18:51:51 +00001962 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eric Christopherbcaedb52011-04-20 01:19:45 +00001963 Callee, Args, DAG, dl);
Justin Holewinskiaa583972012-05-25 16:35:28 +00001964 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanae9b1682011-05-16 22:09:53 +00001965
Eric Christopherbcaedb52011-04-20 01:19:45 +00001966 return CallInfo.first;
1967}
1968
Jim Grosbachd64dfc12010-06-18 21:43:38 +00001969// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1970// ExpandLibCall except that the first operand is the in-chain.
1971std::pair<SDValue, SDValue>
1972SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1973 SDNode *Node,
1974 bool isSigned) {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00001975 SDValue InChain = Node->getOperand(0);
1976
1977 TargetLowering::ArgListTy Args;
1978 TargetLowering::ArgListEntry Entry;
1979 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1980 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00001981 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbachd64dfc12010-06-18 21:43:38 +00001982 Entry.Node = Node->getOperand(i);
1983 Entry.Ty = ArgTy;
1984 Entry.isSExt = isSigned;
1985 Entry.isZExt = !isSigned;
1986 Args.push_back(Entry);
1987 }
1988 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1989 TLI.getPointerTy());
1990
Chris Lattner229907c2011-07-18 04:54:35 +00001991 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Justin Holewinskiaa583972012-05-25 16:35:28 +00001992 TargetLowering::
1993 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Chengd4b08732010-11-30 23:55:39 +00001994 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng65f9d192012-02-28 18:51:51 +00001995 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001996 Callee, Args, DAG, SDLoc(Node));
Justin Holewinskiaa583972012-05-25 16:35:28 +00001997 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbachd64dfc12010-06-18 21:43:38 +00001998
Jim Grosbachd64dfc12010-06-18 21:43:38 +00001999 return CallInfo;
2000}
2001
Eli Friedmand6f28342009-05-27 03:33:44 +00002002SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
2003 RTLIB::Libcall Call_F32,
2004 RTLIB::Libcall Call_F64,
2005 RTLIB::Libcall Call_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00002006 RTLIB::Libcall Call_F128,
Eli Friedmand6f28342009-05-27 03:33:44 +00002007 RTLIB::Libcall Call_PPCF128) {
2008 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002009 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002010 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson9f944592009-08-11 20:47:22 +00002011 case MVT::f32: LC = Call_F32; break;
2012 case MVT::f64: LC = Call_F64; break;
2013 case MVT::f80: LC = Call_F80; break;
Tim Northover4bf47bc2013-01-08 17:09:59 +00002014 case MVT::f128: LC = Call_F128; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002015 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002016 }
2017 return ExpandLibCall(LC, Node, false);
2018}
2019
2020SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002021 RTLIB::Libcall Call_I8,
Eli Friedmand6f28342009-05-27 03:33:44 +00002022 RTLIB::Libcall Call_I16,
2023 RTLIB::Libcall Call_I32,
2024 RTLIB::Libcall Call_I64,
2025 RTLIB::Libcall Call_I128) {
2026 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002027 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002028 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002029 case MVT::i8: LC = Call_I8; break;
2030 case MVT::i16: LC = Call_I16; break;
2031 case MVT::i32: LC = Call_I32; break;
2032 case MVT::i64: LC = Call_I64; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002033 case MVT::i128: LC = Call_I128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002034 }
2035 return ExpandLibCall(LC, Node, isSigned);
2036}
2037
Evan Chengb14ce092011-04-16 03:08:26 +00002038/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
2039static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2040 const TargetLowering &TLI) {
Evan Chengbd766792011-04-01 00:42:02 +00002041 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002042 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002043 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengbd766792011-04-01 00:42:02 +00002044 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2045 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2046 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2047 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2048 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2049 }
2050
Evan Chengb14ce092011-04-16 03:08:26 +00002051 return TLI.getLibcallName(LC) != 0;
2052}
Evan Chengbd766792011-04-01 00:42:02 +00002053
Evan Cheng8c2ad812012-06-21 05:56:05 +00002054/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Chengb14ce092011-04-16 03:08:26 +00002055/// needed.
Evan Cheng8c2ad812012-06-21 05:56:05 +00002056static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2057 // The other use might have been replaced with a divrem already.
2058 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Chengbd766792011-04-01 00:42:02 +00002059 unsigned OtherOpcode = 0;
Evan Chengb14ce092011-04-16 03:08:26 +00002060 if (isSigned)
Evan Chengbd766792011-04-01 00:42:02 +00002061 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002062 else
Evan Chengbd766792011-04-01 00:42:02 +00002063 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002064
Evan Chengbd766792011-04-01 00:42:02 +00002065 SDValue Op0 = Node->getOperand(0);
2066 SDValue Op1 = Node->getOperand(1);
2067 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2068 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2069 SDNode *User = *UI;
2070 if (User == Node)
2071 continue;
Evan Cheng8c2ad812012-06-21 05:56:05 +00002072 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Chengbd766792011-04-01 00:42:02 +00002073 User->getOperand(0) == Op0 &&
Evan Chengb14ce092011-04-16 03:08:26 +00002074 User->getOperand(1) == Op1)
2075 return true;
Evan Chengbd766792011-04-01 00:42:02 +00002076 }
Evan Chengb14ce092011-04-16 03:08:26 +00002077 return false;
2078}
Evan Chengbd766792011-04-01 00:42:02 +00002079
Evan Chengb14ce092011-04-16 03:08:26 +00002080/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2081/// pairs.
2082void
2083SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2084 SmallVectorImpl<SDValue> &Results) {
2085 unsigned Opcode = Node->getOpcode();
2086 bool isSigned = Opcode == ISD::SDIVREM;
2087
2088 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002089 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002090 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengb14ce092011-04-16 03:08:26 +00002091 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2092 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2093 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2094 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2095 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Chengbd766792011-04-01 00:42:02 +00002096 }
2097
2098 // The input chain to this libcall is the entry node of the function.
2099 // Legalizing the call will automatically add the previous call to the
2100 // dependence.
2101 SDValue InChain = DAG.getEntryNode();
2102
2103 EVT RetVT = Node->getValueType(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002104 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002105
2106 TargetLowering::ArgListTy Args;
2107 TargetLowering::ArgListEntry Entry;
2108 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2109 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002110 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002111 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2112 Entry.isSExt = isSigned;
2113 Entry.isZExt = !isSigned;
2114 Args.push_back(Entry);
2115 }
2116
2117 // Also pass the return address of the remainder.
2118 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2119 Entry.Node = FIPtr;
Micah Villmow51e72462012-10-24 17:25:11 +00002120 Entry.Ty = RetTy->getPointerTo();
Evan Chengbd766792011-04-01 00:42:02 +00002121 Entry.isSExt = isSigned;
2122 Entry.isZExt = !isSigned;
2123 Args.push_back(Entry);
2124
2125 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2126 TLI.getPointerTy());
2127
Andrew Trickef9de2a2013-05-25 02:42:55 +00002128 SDLoc dl(Node);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002129 TargetLowering::
2130 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Chengbd766792011-04-01 00:42:02 +00002131 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng65f9d192012-02-28 18:51:51 +00002132 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2133 Callee, Args, DAG, dl);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002134 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Chengbd766792011-04-01 00:42:02 +00002135
Evan Chengbd766792011-04-01 00:42:02 +00002136 // Remainder is loaded back from the stack frame.
Dan Gohman198b7ff2011-11-03 21:49:52 +00002137 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002138 MachinePointerInfo(), false, false, false, 0);
Evan Chengb14ce092011-04-16 03:08:26 +00002139 Results.push_back(CallInfo.first);
2140 Results.push_back(Rem);
Evan Chengbd766792011-04-01 00:42:02 +00002141}
2142
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002143/// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2144static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2145 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002146 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002147 default: llvm_unreachable("Unexpected request for libcall!");
2148 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2149 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2150 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2151 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2152 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2153 }
2154 return TLI.getLibcallName(LC) != 0;
2155}
2156
Paul Redmondf29ddfe2013-02-15 18:45:18 +00002157/// canCombineSinCosLibcall - Return true if sincos libcall is available and
2158/// can be used to combine sin and cos.
2159static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2160 const TargetMachine &TM) {
2161 if (!isSinCosLibcallAvailable(Node, TLI))
2162 return false;
2163 // GNU sin/cos functions set errno while sincos does not. Therefore
2164 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2165 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2166 if (isGNU && !TM.Options.UnsafeFPMath)
2167 return false;
2168 return true;
2169}
2170
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002171/// useSinCos - Only issue sincos libcall if both sin and cos are
2172/// needed.
2173static bool useSinCos(SDNode *Node) {
2174 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2175 ? ISD::FCOS : ISD::FSIN;
Stephen Lincfe7f352013-07-08 00:37:03 +00002176
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002177 SDValue Op0 = Node->getOperand(0);
2178 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2179 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2180 SDNode *User = *UI;
2181 if (User == Node)
2182 continue;
2183 // The other user might have been turned into sincos already.
2184 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2185 return true;
2186 }
2187 return false;
2188}
2189
2190/// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2191/// pairs.
2192void
2193SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2194 SmallVectorImpl<SDValue> &Results) {
2195 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002196 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002197 default: llvm_unreachable("Unexpected request for libcall!");
2198 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2199 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2200 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2201 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2202 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2203 }
Stephen Lincfe7f352013-07-08 00:37:03 +00002204
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002205 // The input chain to this libcall is the entry node of the function.
2206 // Legalizing the call will automatically add the previous call to the
2207 // dependence.
2208 SDValue InChain = DAG.getEntryNode();
Stephen Lincfe7f352013-07-08 00:37:03 +00002209
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002210 EVT RetVT = Node->getValueType(0);
2211 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Stephen Lincfe7f352013-07-08 00:37:03 +00002212
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002213 TargetLowering::ArgListTy Args;
2214 TargetLowering::ArgListEntry Entry;
Stephen Lincfe7f352013-07-08 00:37:03 +00002215
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002216 // Pass the argument.
2217 Entry.Node = Node->getOperand(0);
2218 Entry.Ty = RetTy;
2219 Entry.isSExt = false;
2220 Entry.isZExt = false;
2221 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002222
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002223 // Pass the return address of sin.
2224 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2225 Entry.Node = SinPtr;
2226 Entry.Ty = RetTy->getPointerTo();
2227 Entry.isSExt = false;
2228 Entry.isZExt = false;
2229 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002230
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002231 // Also pass the return address of the cos.
2232 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2233 Entry.Node = CosPtr;
2234 Entry.Ty = RetTy->getPointerTo();
2235 Entry.isSExt = false;
2236 Entry.isZExt = false;
2237 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002238
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002239 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2240 TLI.getPointerTy());
Stephen Lincfe7f352013-07-08 00:37:03 +00002241
Andrew Trickef9de2a2013-05-25 02:42:55 +00002242 SDLoc dl(Node);
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002243 TargetLowering::
2244 CallLoweringInfo CLI(InChain, Type::getVoidTy(*DAG.getContext()),
2245 false, false, false, false,
2246 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
2247 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2248 Callee, Args, DAG, dl);
2249 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2250
2251 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2252 MachinePointerInfo(), false, false, false, 0));
2253 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2254 MachinePointerInfo(), false, false, false, 0));
2255}
2256
Chris Lattner689bdcc2006-01-28 08:25:58 +00002257/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2258/// INT_TO_FP operation of the specified operand when the target requests that
2259/// we expand it. At this point, we know that the result and operand types are
2260/// legal for the target.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002261SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2262 SDValue Op0,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002263 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002264 SDLoc dl) {
Akira Hatanakaadb14f52012-08-28 02:12:42 +00002265 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002266 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelcf0da6c2009-02-17 22:15:04 +00002267
Chris Lattnera2c7ff32008-01-16 07:03:22 +00002268 // Get the stack frame index of a 8 byte buffer.
Owen Anderson9f944592009-08-11 20:47:22 +00002269 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002270
Chris Lattner689bdcc2006-01-28 08:25:58 +00002271 // word offset constant for Hi/Lo address computation
Tom Stellard838e2342013-08-26 15:06:10 +00002272 SDValue WordOff = DAG.getConstant(sizeof(int), StackSlot.getValueType());
Chris Lattner689bdcc2006-01-28 08:25:58 +00002273 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002274 SDValue Hi = StackSlot;
Tom Stellard838e2342013-08-26 15:06:10 +00002275 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2276 StackSlot, WordOff);
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00002277 if (TLI.isLittleEndian())
2278 std::swap(Hi, Lo);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002279
Chris Lattner689bdcc2006-01-28 08:25:58 +00002280 // if signed map to unsigned space
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002281 SDValue Op0Mapped;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002282 if (isSigned) {
2283 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson9f944592009-08-11 20:47:22 +00002284 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2285 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002286 } else {
2287 Op0Mapped = Op0;
2288 }
2289 // store the lo of the constructed double - based on integer input
Dale Johannesen8525d832009-02-02 19:03:57 +00002290 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00002291 Op0Mapped, Lo, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00002292 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002293 // initial hi portion of constructed double
Owen Anderson9f944592009-08-11 20:47:22 +00002294 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002295 // store the hi of the constructed double - biased exponent
Chris Lattner676c61d2010-09-21 18:41:36 +00002296 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2297 MachinePointerInfo(),
2298 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002299 // load the constructed double
Chris Lattner1ffcf522010-09-21 16:36:31 +00002300 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002301 MachinePointerInfo(), false, false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002302 // FP constant to bias correct the final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002303 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonf074ca72009-04-10 18:48:47 +00002304 BitsToDouble(0x4330000080000000ULL) :
2305 BitsToDouble(0x4330000000000000ULL),
Owen Anderson9f944592009-08-11 20:47:22 +00002306 MVT::f64);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002307 // subtract the bias
Owen Anderson9f944592009-08-11 20:47:22 +00002308 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002309 // final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002310 SDValue Result;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002311 // handle final rounding
Owen Anderson9f944592009-08-11 20:47:22 +00002312 if (DestVT == MVT::f64) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002313 // do nothing
2314 Result = Sub;
Owen Anderson9f944592009-08-11 20:47:22 +00002315 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002316 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner72733e52008-01-17 07:00:52 +00002317 DAG.getIntPtrConstant(0));
Owen Anderson9f944592009-08-11 20:47:22 +00002318 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002319 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002320 }
2321 return Result;
2322 }
2323 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002324 // Code below here assumes !isSigned without checking again.
Dan Gohman14e450f2010-03-06 00:00:55 +00002325
2326 // Implementation of unsigned i64 to f64 following the algorithm in
2327 // __floatundidf in compiler_rt. This implementation has the advantage
2328 // of performing rounding correctly, both in the default rounding mode
2329 // and in all alternate rounding modes.
2330 // TODO: Generalize this for use with other types.
2331 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2332 SDValue TwoP52 =
2333 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2334 SDValue TwoP84PlusTwoP52 =
2335 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2336 SDValue TwoP84 =
2337 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2338
2339 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2340 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2341 DAG.getConstant(32, MVT::i64));
2342 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2343 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peck527da1b2010-11-23 03:31:01 +00002344 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2345 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002346 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2347 TwoP84PlusTwoP52);
Dan Gohman14e450f2010-03-06 00:00:55 +00002348 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2349 }
2350
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002351 // Implementation of unsigned i64 to f32.
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002352 // TODO: Generalize this for use with other types.
2353 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002354 // For unsigned conversions, convert them to signed conversions using the
2355 // algorithm from the x86_64 __floatundidf in compiler_rt.
2356 if (!isSigned) {
2357 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peck527da1b2010-11-23 03:31:01 +00002358
Owen Andersonb2c80da2011-02-25 21:41:48 +00002359 SDValue ShiftConst =
2360 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002361 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2362 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2363 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2364 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peck527da1b2010-11-23 03:31:01 +00002365
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002366 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2367 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peck527da1b2010-11-23 03:31:01 +00002368
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002369 // TODO: This really should be implemented using a branch rather than a
Wesley Peck527da1b2010-11-23 03:31:01 +00002370 // select. We happen to get lucky and machinesink does the right
2371 // thing most of the time. This would be a good candidate for a
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002372 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault758659232013-05-18 00:21:46 +00002373 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002374 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002375 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002376 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002377
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002378 // Otherwise, implement the fully general conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002379
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002380 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002381 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2382 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2383 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002384 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002385 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
Matt Arsenault758659232013-05-18 00:21:46 +00002386 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002387 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002388 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Matt Arsenault758659232013-05-18 00:21:46 +00002389 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002390 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002391 ISD::SETUGE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002392 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00002393 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peck527da1b2010-11-23 03:31:01 +00002394
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002395 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2396 DAG.getConstant(32, SHVT));
2397 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2398 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2399 SDValue TwoP32 =
2400 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2401 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2402 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2403 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2404 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2405 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2406 DAG.getIntPtrConstant(0));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002407 }
2408
Dan Gohman998c7c22010-03-05 02:40:23 +00002409 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002410
Matt Arsenault758659232013-05-18 00:21:46 +00002411 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Dan Gohman998c7c22010-03-05 02:40:23 +00002412 Op0, DAG.getConstant(0, Op0.getValueType()),
2413 ISD::SETLT);
2414 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002415 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohman998c7c22010-03-05 02:40:23 +00002416 SignSet, Four, Zero);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002417
Dan Gohman998c7c22010-03-05 02:40:23 +00002418 // If the sign bit of the integer is set, the large number will be treated
2419 // as a negative number. To counteract this, the dynamic code adds an
2420 // offset depending on the data type.
2421 uint64_t FF;
Craig Topperd9c27832013-08-15 02:44:19 +00002422 switch (Op0.getSimpleValueType().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002423 default: llvm_unreachable("Unsupported integer type!");
Dan Gohman998c7c22010-03-05 02:40:23 +00002424 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2425 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2426 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2427 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2428 }
2429 if (TLI.isLittleEndian()) FF <<= 32;
2430 Constant *FudgeFactor = ConstantInt::get(
2431 Type::getInt64Ty(*DAG.getContext()), FF);
2432
2433 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2434 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Tom Stellard838e2342013-08-26 15:06:10 +00002435 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
Dan Gohman998c7c22010-03-05 02:40:23 +00002436 Alignment = std::min(Alignment, 4u);
2437 SDValue FudgeInReg;
2438 if (DestVT == MVT::f32)
2439 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00002440 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002441 false, false, false, Alignment);
Dan Gohman998c7c22010-03-05 02:40:23 +00002442 else {
Dan Gohman198b7ff2011-11-03 21:49:52 +00002443 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2444 DAG.getEntryNode(), CPIdx,
2445 MachinePointerInfo::getConstantPool(),
2446 MVT::f32, false, false, Alignment);
2447 HandleSDNode Handle(Load);
2448 LegalizeOp(Load.getNode());
2449 FudgeInReg = Handle.getValue();
Dan Gohman998c7c22010-03-05 02:40:23 +00002450 }
2451
2452 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002453}
2454
2455/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2456/// *INT_TO_FP operation of the specified operand when the target requests that
2457/// we promote it. At this point, we know that the result and operand types are
2458/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2459/// operation that takes a larger input.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002460SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002461 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002462 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002463 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002464 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002465 EVT NewInTy = LegalOp.getValueType();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002466
2467 unsigned OpToUse = 0;
2468
2469 // Scan for the appropriate larger type to use.
2470 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002471 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002472 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002473
2474 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002475 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2476 OpToUse = ISD::SINT_TO_FP;
2477 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002478 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002479 if (isSigned) continue;
2480
2481 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002482 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2483 OpToUse = ISD::UINT_TO_FP;
2484 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002485 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002486
2487 // Otherwise, try a larger type.
2488 }
2489
2490 // Okay, we found the operation and type to use. Zero extend our input to the
2491 // desired type then run the operation on it.
Dale Johannesen8525d832009-02-02 19:03:57 +00002492 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner689bdcc2006-01-28 08:25:58 +00002493 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen8525d832009-02-02 19:03:57 +00002494 dl, NewInTy, LegalOp));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002495}
2496
2497/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2498/// FP_TO_*INT operation of the specified operand when the target requests that
2499/// we promote it. At this point, we know that the result and operand types are
2500/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2501/// operation that returns a larger result.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002502SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002503 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002504 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002505 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002506 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002507 EVT NewOutTy = DestVT;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002508
2509 unsigned OpToUse = 0;
2510
2511 // Scan for the appropriate larger type to use.
2512 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002513 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002514 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002515
Eli Friedmane1bc3792009-05-28 03:06:16 +00002516 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002517 OpToUse = ISD::FP_TO_SINT;
2518 break;
2519 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002520
Eli Friedmane1bc3792009-05-28 03:06:16 +00002521 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002522 OpToUse = ISD::FP_TO_UINT;
2523 break;
2524 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002525
2526 // Otherwise, try a larger type.
2527 }
2528
Scott Michelcf0da6c2009-02-17 22:15:04 +00002529
Chris Lattnerf81d5882007-11-24 07:07:01 +00002530 // Okay, we found the operation and type to use.
Dale Johannesen8525d832009-02-02 19:03:57 +00002531 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands93e180342008-07-04 11:47:58 +00002532
Chris Lattnerf81d5882007-11-24 07:07:01 +00002533 // Truncate the result of the extended FP_TO_*INT operation to the desired
2534 // size.
Dale Johannesen8525d832009-02-02 19:03:57 +00002535 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002536}
2537
2538/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2539///
Andrew Trickef9de2a2013-05-25 02:42:55 +00002540SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002541 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002542 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002543 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson9f944592009-08-11 20:47:22 +00002544 switch (VT.getSimpleVT().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002545 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson9f944592009-08-11 20:47:22 +00002546 case MVT::i16:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002547 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2548 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2549 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002550 case MVT::i32:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002551 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2552 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2553 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2554 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2555 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2556 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2557 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2558 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2559 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002560 case MVT::i64:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002561 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2562 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2563 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2564 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2565 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2566 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2567 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2568 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2569 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2570 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2571 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2572 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2573 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2574 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2575 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2576 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2577 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2578 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2579 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2580 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2581 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002582 }
2583}
2584
2585/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2586///
Scott Michelcf0da6c2009-02-17 22:15:04 +00002587SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002588 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002589 switch (Opc) {
Craig Topperee4dab52012-02-05 08:31:47 +00002590 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002591 case ISD::CTPOP: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002592 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002593 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002594 unsigned Len = VT.getSizeInBits();
2595
Benjamin Kramerbec03ea2011-01-15 21:19:37 +00002596 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2597 "CTPOP not implemented for this type.");
2598
Benjamin Kramerfff25172011-01-15 20:30:30 +00002599 // This is the "best" algorithm from
2600 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2601
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00002602 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), VT);
2603 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), VT);
2604 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), VT);
2605 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002606
2607 // v = v - ((v >> 1) & 0x55555555...)
2608 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2609 DAG.getNode(ISD::AND, dl, VT,
2610 DAG.getNode(ISD::SRL, dl, VT, Op,
2611 DAG.getConstant(1, ShVT)),
2612 Mask55));
2613 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2614 Op = DAG.getNode(ISD::ADD, dl, VT,
2615 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2616 DAG.getNode(ISD::AND, dl, VT,
2617 DAG.getNode(ISD::SRL, dl, VT, Op,
2618 DAG.getConstant(2, ShVT)),
2619 Mask33));
2620 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2621 Op = DAG.getNode(ISD::AND, dl, VT,
2622 DAG.getNode(ISD::ADD, dl, VT, Op,
2623 DAG.getNode(ISD::SRL, dl, VT, Op,
2624 DAG.getConstant(4, ShVT))),
2625 Mask0F);
2626 // v = (v * 0x01010101...) >> (Len - 8)
2627 Op = DAG.getNode(ISD::SRL, dl, VT,
2628 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2629 DAG.getConstant(Len - 8, ShVT));
Owen Andersonb2c80da2011-02-25 21:41:48 +00002630
Chris Lattner689bdcc2006-01-28 08:25:58 +00002631 return Op;
2632 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002633 case ISD::CTLZ_ZERO_UNDEF:
2634 // This trivially expands to CTLZ.
2635 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002636 case ISD::CTLZ: {
2637 // for now, we do this:
2638 // x = x | (x >> 1);
2639 // x = x | (x >> 2);
2640 // ...
2641 // x = x | (x >>16);
2642 // x = x | (x >>32); // for 64-bit input
2643 // return popcount(~x);
2644 //
2645 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Anderson53aa7a92009-08-10 22:56:29 +00002646 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002647 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands13237ac2008-06-06 12:08:01 +00002648 unsigned len = VT.getSizeInBits();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002649 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002650 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002651 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesendc93bbc2009-02-06 21:55:48 +00002652 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002653 }
Dale Johannesena02e45c2009-02-02 22:12:50 +00002654 Op = DAG.getNOT(dl, Op, VT);
2655 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002656 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002657 case ISD::CTTZ_ZERO_UNDEF:
2658 // This trivially expands to CTTZ.
2659 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002660 case ISD::CTTZ: {
2661 // for now, we use: { return popcount(~x & (x - 1)); }
2662 // unless the target has ctlz but not ctpop, in which case we use:
2663 // { return 32 - nlz(~x & (x-1)); }
2664 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Anderson53aa7a92009-08-10 22:56:29 +00002665 EVT VT = Op.getValueType();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002666 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2667 DAG.getNOT(dl, Op, VT),
2668 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling8fb81f12009-01-30 23:03:19 +00002669 DAG.getConstant(1, VT)));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002670 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman4aa18462009-01-28 17:46:25 +00002671 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2672 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesena02e45c2009-02-02 22:12:50 +00002673 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands13237ac2008-06-06 12:08:01 +00002674 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesena02e45c2009-02-02 22:12:50 +00002675 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2676 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002677 }
2678 }
2679}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002680
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002681std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2682 unsigned Opc = Node->getOpcode();
2683 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2684 RTLIB::Libcall LC;
2685
2686 switch (Opc) {
2687 default:
2688 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbacha57c2882010-06-18 23:03:10 +00002689 case ISD::ATOMIC_SWAP:
2690 switch (VT.SimpleTy) {
2691 default: llvm_unreachable("Unexpected value type for atomic!");
2692 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2693 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2694 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2695 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002696 case MVT::i128:LC = RTLIB::SYNC_LOCK_TEST_AND_SET_16;break;
Jim Grosbacha57c2882010-06-18 23:03:10 +00002697 }
2698 break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002699 case ISD::ATOMIC_CMP_SWAP:
2700 switch (VT.SimpleTy) {
2701 default: llvm_unreachable("Unexpected value type for atomic!");
2702 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2703 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2704 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2705 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002706 case MVT::i128:LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002707 }
2708 break;
2709 case ISD::ATOMIC_LOAD_ADD:
2710 switch (VT.SimpleTy) {
2711 default: llvm_unreachable("Unexpected value type for atomic!");
2712 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2713 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2714 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2715 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002716 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_ADD_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002717 }
2718 break;
2719 case ISD::ATOMIC_LOAD_SUB:
2720 switch (VT.SimpleTy) {
2721 default: llvm_unreachable("Unexpected value type for atomic!");
2722 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2723 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2724 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2725 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002726 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_SUB_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002727 }
2728 break;
2729 case ISD::ATOMIC_LOAD_AND:
2730 switch (VT.SimpleTy) {
2731 default: llvm_unreachable("Unexpected value type for atomic!");
2732 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2733 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2734 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2735 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002736 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_AND_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002737 }
2738 break;
2739 case ISD::ATOMIC_LOAD_OR:
2740 switch (VT.SimpleTy) {
2741 default: llvm_unreachable("Unexpected value type for atomic!");
2742 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2743 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2744 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2745 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002746 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_OR_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002747 }
2748 break;
2749 case ISD::ATOMIC_LOAD_XOR:
2750 switch (VT.SimpleTy) {
2751 default: llvm_unreachable("Unexpected value type for atomic!");
2752 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2753 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2754 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2755 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002756 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_XOR_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002757 }
2758 break;
2759 case ISD::ATOMIC_LOAD_NAND:
2760 switch (VT.SimpleTy) {
2761 default: llvm_unreachable("Unexpected value type for atomic!");
2762 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2763 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2764 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2765 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002766 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_NAND_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002767 }
2768 break;
Tim Northovera564d322013-10-25 09:30:20 +00002769 case ISD::ATOMIC_LOAD_MAX:
2770 switch (VT.SimpleTy) {
2771 default: llvm_unreachable("Unexpected value type for atomic!");
2772 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MAX_1; break;
2773 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MAX_2; break;
2774 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MAX_4; break;
2775 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MAX_8; break;
2776 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MAX_16;break;
2777 }
2778 break;
2779 case ISD::ATOMIC_LOAD_UMAX:
2780 switch (VT.SimpleTy) {
2781 default: llvm_unreachable("Unexpected value type for atomic!");
2782 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMAX_1; break;
2783 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMAX_2; break;
2784 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMAX_4; break;
2785 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMAX_8; break;
2786 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMAX_16;break;
2787 }
2788 break;
2789 case ISD::ATOMIC_LOAD_MIN:
2790 switch (VT.SimpleTy) {
2791 default: llvm_unreachable("Unexpected value type for atomic!");
2792 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MIN_1; break;
2793 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MIN_2; break;
2794 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MIN_4; break;
2795 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MIN_8; break;
2796 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MIN_16;break;
2797 }
2798 break;
2799 case ISD::ATOMIC_LOAD_UMIN:
2800 switch (VT.SimpleTy) {
2801 default: llvm_unreachable("Unexpected value type for atomic!");
2802 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMIN_1; break;
2803 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMIN_2; break;
2804 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMIN_4; break;
2805 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMIN_8; break;
2806 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMIN_16;break;
2807 }
2808 break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002809 }
2810
2811 return ExpandChainLibCall(LC, Node, false);
2812}
2813
Dan Gohman198b7ff2011-11-03 21:49:52 +00002814void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2815 SmallVector<SDValue, 8> Results;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002816 SDLoc dl(Node);
Eli Friedmane1dc1932009-05-28 20:40:34 +00002817 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Daniel Sandersedc071b2013-11-21 13:24:49 +00002818 bool NeedInvert;
Eli Friedman21d349b2009-05-27 01:25:56 +00002819 switch (Node->getOpcode()) {
2820 case ISD::CTPOP:
2821 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002822 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002823 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002824 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002825 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2826 Results.push_back(Tmp1);
2827 break;
2828 case ISD::BSWAP:
Bill Wendlingef408db2009-12-23 00:28:23 +00002829 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman21d349b2009-05-27 01:25:56 +00002830 break;
2831 case ISD::FRAMEADDR:
2832 case ISD::RETURNADDR:
2833 case ISD::FRAME_TO_ARGS_OFFSET:
2834 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2835 break;
2836 case ISD::FLT_ROUNDS_:
2837 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2838 break;
2839 case ISD::EH_RETURN:
Eli Friedman21d349b2009-05-27 01:25:56 +00002840 case ISD::EH_LABEL:
2841 case ISD::PREFETCH:
Eli Friedman21d349b2009-05-27 01:25:56 +00002842 case ISD::VAEND:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002843 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002844 // If the target didn't expand these, there's nothing to do, so just
2845 // preserve the chain and be done.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002846 Results.push_back(Node->getOperand(0));
2847 break;
2848 case ISD::EH_SJLJ_SETJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002849 // If the target didn't expand this, just return 'zero' and preserve the
2850 // chain.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002851 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman21d349b2009-05-27 01:25:56 +00002852 Results.push_back(Node->getOperand(0));
2853 break;
Tim Northovera2b53392013-04-20 12:32:17 +00002854 case ISD::ATOMIC_FENCE: {
Jim Grosbachba451e82010-06-17 02:00:53 +00002855 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman26a48482011-07-27 22:21:52 +00002856 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachba451e82010-06-17 02:00:53 +00002857 TargetLowering::ArgListTy Args;
Justin Holewinskiaa583972012-05-25 16:35:28 +00002858 TargetLowering::
2859 CallLoweringInfo CLI(Node->getOperand(0),
2860 Type::getVoidTy(*DAG.getContext()),
Evan Chengd4b08732010-11-30 23:55:39 +00002861 false, false, false, false, 0, CallingConv::C,
2862 /*isTailCall=*/false,
Evan Cheng65f9d192012-02-28 18:51:51 +00002863 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbachba451e82010-06-17 02:00:53 +00002864 DAG.getExternalSymbol("__sync_synchronize",
2865 TLI.getPointerTy()),
2866 Args, DAG, dl);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002867 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2868
Jim Grosbachba451e82010-06-17 02:00:53 +00002869 Results.push_back(CallResult.second);
2870 break;
2871 }
Eli Friedman452aae62011-08-26 02:59:24 +00002872 case ISD::ATOMIC_LOAD: {
2873 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedmanee8f14a72011-09-15 21:20:49 +00002874 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman452aae62011-08-26 02:59:24 +00002875 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2876 cast<AtomicSDNode>(Node)->getMemoryVT(),
2877 Node->getOperand(0),
2878 Node->getOperand(1), Zero, Zero,
2879 cast<AtomicSDNode>(Node)->getMemOperand(),
2880 cast<AtomicSDNode>(Node)->getOrdering(),
2881 cast<AtomicSDNode>(Node)->getSynchScope());
2882 Results.push_back(Swap.getValue(0));
2883 Results.push_back(Swap.getValue(1));
2884 break;
2885 }
2886 case ISD::ATOMIC_STORE: {
2887 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2888 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2889 cast<AtomicSDNode>(Node)->getMemoryVT(),
2890 Node->getOperand(0),
2891 Node->getOperand(1), Node->getOperand(2),
2892 cast<AtomicSDNode>(Node)->getMemOperand(),
2893 cast<AtomicSDNode>(Node)->getOrdering(),
2894 cast<AtomicSDNode>(Node)->getSynchScope());
2895 Results.push_back(Swap.getValue(1));
2896 break;
2897 }
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00002898 // By default, atomic intrinsics are marked Legal and lowered. Targets
2899 // which don't support them directly, however, may want libcalls, in which
2900 // case they mark them Expand, and we get here.
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00002901 case ISD::ATOMIC_SWAP:
2902 case ISD::ATOMIC_LOAD_ADD:
2903 case ISD::ATOMIC_LOAD_SUB:
2904 case ISD::ATOMIC_LOAD_AND:
2905 case ISD::ATOMIC_LOAD_OR:
2906 case ISD::ATOMIC_LOAD_XOR:
2907 case ISD::ATOMIC_LOAD_NAND:
2908 case ISD::ATOMIC_LOAD_MIN:
2909 case ISD::ATOMIC_LOAD_MAX:
2910 case ISD::ATOMIC_LOAD_UMIN:
2911 case ISD::ATOMIC_LOAD_UMAX:
Evan Chengf5d62532010-06-18 22:01:37 +00002912 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002913 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2914 Results.push_back(Tmp.first);
2915 Results.push_back(Tmp.second);
Jim Grosbach0ed5b462010-06-17 17:58:54 +00002916 break;
Evan Chengf5d62532010-06-18 22:01:37 +00002917 }
Eli Friedman2892d822009-05-27 12:20:41 +00002918 case ISD::DYNAMIC_STACKALLOC:
2919 ExpandDYNAMIC_STACKALLOC(Node, Results);
2920 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00002921 case ISD::MERGE_VALUES:
2922 for (unsigned i = 0; i < Node->getNumValues(); i++)
2923 Results.push_back(Node->getOperand(i));
2924 break;
2925 case ISD::UNDEF: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002926 EVT VT = Node->getValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00002927 if (VT.isInteger())
2928 Results.push_back(DAG.getConstant(0, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00002929 else {
2930 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman21d349b2009-05-27 01:25:56 +00002931 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00002932 }
Eli Friedman21d349b2009-05-27 01:25:56 +00002933 break;
2934 }
2935 case ISD::TRAP: {
2936 // If this operation is not supported, lower it to 'abort()' call
2937 TargetLowering::ArgListTy Args;
Justin Holewinskiaa583972012-05-25 16:35:28 +00002938 TargetLowering::
2939 CallLoweringInfo CLI(Node->getOperand(0),
2940 Type::getVoidTy(*DAG.getContext()),
Evan Chengd4b08732010-11-30 23:55:39 +00002941 false, false, false, false, 0, CallingConv::C,
2942 /*isTailCall=*/false,
Evan Cheng65f9d192012-02-28 18:51:51 +00002943 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eli Friedman21d349b2009-05-27 01:25:56 +00002944 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling78c5b7a2010-03-02 01:55:18 +00002945 Args, DAG, dl);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002946 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2947
Eli Friedman21d349b2009-05-27 01:25:56 +00002948 Results.push_back(CallResult.second);
2949 break;
2950 }
2951 case ISD::FP_ROUND:
Wesley Peck527da1b2010-11-23 03:31:01 +00002952 case ISD::BITCAST:
Eli Friedman21d349b2009-05-27 01:25:56 +00002953 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2954 Node->getValueType(0), dl);
2955 Results.push_back(Tmp1);
2956 break;
2957 case ISD::FP_EXTEND:
2958 Tmp1 = EmitStackConvert(Node->getOperand(0),
2959 Node->getOperand(0).getValueType(),
2960 Node->getValueType(0), dl);
2961 Results.push_back(Tmp1);
2962 break;
2963 case ISD::SIGN_EXTEND_INREG: {
2964 // NOTE: we could fall back on load/store here too for targets without
2965 // SAR. However, it is doubtful that any exist.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002966 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman1d459e42009-12-11 21:31:27 +00002967 EVT VT = Node->getValueType(0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00002968 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002969 if (VT.isVector())
Dan Gohman1d459e42009-12-11 21:31:27 +00002970 ShiftAmountTy = VT;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00002971 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2972 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman1d459e42009-12-11 21:31:27 +00002973 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman21d349b2009-05-27 01:25:56 +00002974 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2975 Node->getOperand(0), ShiftCst);
Bill Wendlingef408db2009-12-23 00:28:23 +00002976 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2977 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00002978 break;
2979 }
2980 case ISD::FP_ROUND_INREG: {
2981 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00002982 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman21d349b2009-05-27 01:25:56 +00002983
2984 // NOTE: there is a choice here between constantly creating new stack
2985 // slots and always reusing the same one. We currently always create
2986 // new ones, as reuse may inhibit scheduling.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002987 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00002988 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2989 Node->getValueType(0), dl);
2990 Results.push_back(Tmp1);
2991 break;
2992 }
2993 case ISD::SINT_TO_FP:
2994 case ISD::UINT_TO_FP:
2995 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2996 Node->getOperand(0), Node->getValueType(0), dl);
2997 Results.push_back(Tmp1);
2998 break;
2999 case ISD::FP_TO_UINT: {
3000 SDValue True, False;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003001 EVT VT = Node->getOperand(0).getValueType();
3002 EVT NVT = Node->getValueType(0);
Tim Northover29178a32013-01-22 09:46:31 +00003003 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
3004 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman21d349b2009-05-27 01:25:56 +00003005 APInt x = APInt::getSignBit(NVT.getSizeInBits());
3006 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
3007 Tmp1 = DAG.getConstantFP(apf, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003008 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman21d349b2009-05-27 01:25:56 +00003009 Node->getOperand(0),
3010 Tmp1, ISD::SETLT);
3011 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003012 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
3013 DAG.getNode(ISD::FSUB, dl, VT,
3014 Node->getOperand(0), Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00003015 False = DAG.getNode(ISD::XOR, dl, NVT, False,
3016 DAG.getConstant(x, NVT));
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003017 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman21d349b2009-05-27 01:25:56 +00003018 Results.push_back(Tmp1);
3019 break;
3020 }
Eli Friedman3b251702009-05-27 07:58:35 +00003021 case ISD::VAARG: {
3022 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003023 EVT VT = Node->getValueType(0);
Eli Friedman3b251702009-05-27 07:58:35 +00003024 Tmp1 = Node->getOperand(0);
3025 Tmp2 = Node->getOperand(1);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003026 unsigned Align = Node->getConstantOperandVal(3);
3027
Chris Lattner1ffcf522010-09-21 16:36:31 +00003028 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Stephen Lincfe7f352013-07-08 00:37:03 +00003029 MachinePointerInfo(V),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003030 false, false, false, 0);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003031 SDValue VAList = VAListLoad;
3032
Rafael Espindolaa76eccf2010-07-11 04:01:49 +00003033 if (Align > TLI.getMinStackArgumentAlignment()) {
3034 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
3035
Tom Stellard838e2342013-08-26 15:06:10 +00003036 VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Rafael Espindola2041abd2010-06-26 18:22:20 +00003037 DAG.getConstant(Align - 1,
Tom Stellard838e2342013-08-26 15:06:10 +00003038 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003039
Tom Stellard838e2342013-08-26 15:06:10 +00003040 VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList,
Chris Lattnereb313a42010-10-10 18:36:26 +00003041 DAG.getConstant(-(int64_t)Align,
Tom Stellard838e2342013-08-26 15:06:10 +00003042 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003043 }
3044
Eli Friedman3b251702009-05-27 07:58:35 +00003045 // Increment the pointer, VAList, to the next vaarg
Tom Stellard838e2342013-08-26 15:06:10 +00003046 Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003047 DAG.getConstant(TLI.getDataLayout()->
Evan Cheng87b4f7c2010-04-15 01:25:27 +00003048 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Tom Stellard838e2342013-08-26 15:06:10 +00003049 VAList.getValueType()));
Eli Friedman3b251702009-05-27 07:58:35 +00003050 // Store the incremented VAList to the legalized pointer
Chris Lattner676c61d2010-09-21 18:41:36 +00003051 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
3052 MachinePointerInfo(V), false, false, 0);
Eli Friedman3b251702009-05-27 07:58:35 +00003053 // Load the actual argument out of the pointer VAList
Chris Lattner1ffcf522010-09-21 16:36:31 +00003054 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003055 false, false, false, 0));
Eli Friedman3b251702009-05-27 07:58:35 +00003056 Results.push_back(Results[0].getValue(1));
3057 break;
3058 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003059 case ISD::VACOPY: {
3060 // This defaults to loading a pointer from the input and storing it to the
3061 // output, returning the chain.
3062 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3063 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3064 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattner1ffcf522010-09-21 16:36:31 +00003065 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003066 false, false, false, 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +00003067 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
3068 MachinePointerInfo(VD), false, false, 0);
Bill Wendlingef408db2009-12-23 00:28:23 +00003069 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003070 break;
3071 }
3072 case ISD::EXTRACT_VECTOR_ELT:
3073 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3074 // This must be an access of the only element. Return it.
Wesley Peck527da1b2010-11-23 03:31:01 +00003075 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman21d349b2009-05-27 01:25:56 +00003076 Node->getOperand(0));
3077 else
3078 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3079 Results.push_back(Tmp1);
3080 break;
3081 case ISD::EXTRACT_SUBVECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003082 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00003083 break;
David Greenebab5e6e2011-01-26 19:13:22 +00003084 case ISD::INSERT_SUBVECTOR:
3085 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3086 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003087 case ISD::CONCAT_VECTORS: {
Bill Wendlingef408db2009-12-23 00:28:23 +00003088 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman3b251702009-05-27 07:58:35 +00003089 break;
3090 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003091 case ISD::SCALAR_TO_VECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003092 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman21d349b2009-05-27 01:25:56 +00003093 break;
Eli Friedmana8f9a022009-05-27 02:16:40 +00003094 case ISD::INSERT_VECTOR_ELT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003095 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3096 Node->getOperand(1),
3097 Node->getOperand(2), dl));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003098 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003099 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00003100 SmallVector<int, 32> NewMask;
3101 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00003102
Owen Anderson53aa7a92009-08-10 22:56:29 +00003103 EVT VT = Node->getValueType(0);
3104 EVT EltVT = VT.getVectorElementType();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003105 SDValue Op0 = Node->getOperand(0);
3106 SDValue Op1 = Node->getOperand(1);
3107 if (!TLI.isTypeLegal(EltVT)) {
3108
3109 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3110
3111 // BUILD_VECTOR operands are allowed to be wider than the element type.
Jack Carter5c0af482013-11-19 23:43:22 +00003112 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept
3113 // it.
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003114 if (NewEltVT.bitsLT(EltVT)) {
3115
3116 // Convert shuffle node.
3117 // If original node was v4i64 and the new EltVT is i32,
3118 // cast operands to v8i32 and re-build the mask.
3119
3120 // Calculate new VT, the size of the new VT should be equal to original.
Jack Carter5c0af482013-11-19 23:43:22 +00003121 EVT NewVT =
3122 EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3123 VT.getSizeInBits() / NewEltVT.getSizeInBits());
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003124 assert(NewVT.bitsEq(VT));
3125
3126 // cast operands to new VT
3127 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3128 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3129
3130 // Convert the shuffle mask
Jack Carter5c0af482013-11-19 23:43:22 +00003131 unsigned int factor =
3132 NewVT.getVectorNumElements()/VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003133
3134 // EltVT gets smaller
3135 assert(factor > 0);
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003136
3137 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3138 if (Mask[i] < 0) {
3139 for (unsigned fi = 0; fi < factor; ++fi)
3140 NewMask.push_back(Mask[i]);
3141 }
3142 else {
3143 for (unsigned fi = 0; fi < factor; ++fi)
3144 NewMask.push_back(Mask[i]*factor+fi);
3145 }
3146 }
3147 Mask = NewMask;
3148 VT = NewVT;
3149 }
3150 EltVT = NewEltVT;
3151 }
Eli Friedman3b251702009-05-27 07:58:35 +00003152 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003153 SmallVector<SDValue, 16> Ops;
Eli Friedman3b251702009-05-27 07:58:35 +00003154 for (unsigned i = 0; i != NumElems; ++i) {
3155 if (Mask[i] < 0) {
3156 Ops.push_back(DAG.getUNDEF(EltVT));
3157 continue;
3158 }
3159 unsigned Idx = Mask[i];
3160 if (Idx < NumElems)
Bill Wendlingef408db2009-12-23 00:28:23 +00003161 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003162 Op0,
Tom Stellardd42c5942013-08-05 22:22:01 +00003163 DAG.getConstant(Idx, TLI.getVectorIdxTy())));
Eli Friedman3b251702009-05-27 07:58:35 +00003164 else
Bill Wendlingef408db2009-12-23 00:28:23 +00003165 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003166 Op1,
Tom Stellardd42c5942013-08-05 22:22:01 +00003167 DAG.getConstant(Idx - NumElems,
3168 TLI.getVectorIdxTy())));
Eli Friedman3b251702009-05-27 07:58:35 +00003169 }
Nadav Rotem61bdf792012-01-10 14:28:46 +00003170
Eli Friedman3b251702009-05-27 07:58:35 +00003171 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Nadav Rotem61bdf792012-01-10 14:28:46 +00003172 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3173 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00003174 Results.push_back(Tmp1);
3175 break;
3176 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003177 case ISD::EXTRACT_ELEMENT: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003178 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman21d349b2009-05-27 01:25:56 +00003179 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3180 // 1 -> Hi
3181 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3182 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003183 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman21d349b2009-05-27 01:25:56 +00003184 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3185 } else {
3186 // 0 -> Lo
3187 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3188 Node->getOperand(0));
3189 }
3190 Results.push_back(Tmp1);
3191 break;
3192 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003193 case ISD::STACKSAVE:
3194 // Expand to CopyFromReg if the target set
3195 // StackPointerRegisterToSaveRestore.
3196 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003197 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3198 Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003199 Results.push_back(Results[0].getValue(1));
3200 } else {
Bill Wendlingef408db2009-12-23 00:28:23 +00003201 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003202 Results.push_back(Node->getOperand(0));
3203 }
3204 break;
3205 case ISD::STACKRESTORE:
Bill Wendlingef408db2009-12-23 00:28:23 +00003206 // Expand to CopyToReg if the target set
3207 // StackPointerRegisterToSaveRestore.
3208 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3209 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3210 Node->getOperand(1)));
3211 } else {
3212 Results.push_back(Node->getOperand(0));
3213 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003214 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003215 case ISD::FCOPYSIGN:
Bill Wendlingef408db2009-12-23 00:28:23 +00003216 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00003217 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003218 case ISD::FNEG:
3219 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3220 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3221 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3222 Node->getOperand(0));
3223 Results.push_back(Tmp1);
3224 break;
3225 case ISD::FABS: {
3226 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Anderson53aa7a92009-08-10 22:56:29 +00003227 EVT VT = Node->getValueType(0);
Eli Friedmand6f28342009-05-27 03:33:44 +00003228 Tmp1 = Node->getOperand(0);
3229 Tmp2 = DAG.getConstantFP(0.0, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003230 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
Eli Friedmand6f28342009-05-27 03:33:44 +00003231 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendlingef408db2009-12-23 00:28:23 +00003232 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003233 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmand6f28342009-05-27 03:33:44 +00003234 Results.push_back(Tmp1);
3235 break;
3236 }
3237 case ISD::FSQRT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003238 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003239 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3240 RTLIB::SQRT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003241 break;
3242 case ISD::FSIN:
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003243 case ISD::FCOS: {
3244 EVT VT = Node->getValueType(0);
3245 bool isSIN = Node->getOpcode() == ISD::FSIN;
3246 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3247 // fcos which share the same operand and both are used.
3248 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmondf29ddfe2013-02-15 18:45:18 +00003249 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003250 && useSinCos(Node)) {
3251 SDVTList VTs = DAG.getVTList(VT, VT);
3252 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3253 if (!isSIN)
3254 Tmp1 = Tmp1.getValue(1);
3255 Results.push_back(Tmp1);
3256 } else if (isSIN) {
3257 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3258 RTLIB::SIN_F80, RTLIB::SIN_F128,
3259 RTLIB::SIN_PPCF128));
3260 } else {
3261 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3262 RTLIB::COS_F80, RTLIB::COS_F128,
3263 RTLIB::COS_PPCF128));
3264 }
Eli Friedmand6f28342009-05-27 03:33:44 +00003265 break;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003266 }
3267 case ISD::FSINCOS:
3268 // Expand into sincos libcall.
3269 ExpandSinCosLibCall(Node, Results);
Eli Friedmand6f28342009-05-27 03:33:44 +00003270 break;
3271 case ISD::FLOG:
Bill Wendlingef408db2009-12-23 00:28:23 +00003272 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003273 RTLIB::LOG_F80, RTLIB::LOG_F128,
3274 RTLIB::LOG_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003275 break;
3276 case ISD::FLOG2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003277 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003278 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3279 RTLIB::LOG2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003280 break;
3281 case ISD::FLOG10:
Bill Wendlingef408db2009-12-23 00:28:23 +00003282 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003283 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3284 RTLIB::LOG10_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003285 break;
3286 case ISD::FEXP:
Bill Wendlingef408db2009-12-23 00:28:23 +00003287 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003288 RTLIB::EXP_F80, RTLIB::EXP_F128,
3289 RTLIB::EXP_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003290 break;
3291 case ISD::FEXP2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003292 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003293 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3294 RTLIB::EXP2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003295 break;
3296 case ISD::FTRUNC:
Bill Wendlingef408db2009-12-23 00:28:23 +00003297 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003298 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3299 RTLIB::TRUNC_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003300 break;
3301 case ISD::FFLOOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003302 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003303 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3304 RTLIB::FLOOR_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003305 break;
3306 case ISD::FCEIL:
Bill Wendlingef408db2009-12-23 00:28:23 +00003307 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003308 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3309 RTLIB::CEIL_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003310 break;
3311 case ISD::FRINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003312 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003313 RTLIB::RINT_F80, RTLIB::RINT_F128,
3314 RTLIB::RINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003315 break;
3316 case ISD::FNEARBYINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003317 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3318 RTLIB::NEARBYINT_F64,
3319 RTLIB::NEARBYINT_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003320 RTLIB::NEARBYINT_F128,
Bill Wendlingef408db2009-12-23 00:28:23 +00003321 RTLIB::NEARBYINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003322 break;
Hal Finkel171817e2013-08-07 22:49:12 +00003323 case ISD::FROUND:
3324 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3325 RTLIB::ROUND_F64,
3326 RTLIB::ROUND_F80,
3327 RTLIB::ROUND_F128,
3328 RTLIB::ROUND_PPCF128));
3329 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003330 case ISD::FPOWI:
Bill Wendlingef408db2009-12-23 00:28:23 +00003331 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003332 RTLIB::POWI_F80, RTLIB::POWI_F128,
3333 RTLIB::POWI_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003334 break;
3335 case ISD::FPOW:
Bill Wendlingef408db2009-12-23 00:28:23 +00003336 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003337 RTLIB::POW_F80, RTLIB::POW_F128,
3338 RTLIB::POW_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003339 break;
3340 case ISD::FDIV:
Bill Wendlingef408db2009-12-23 00:28:23 +00003341 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003342 RTLIB::DIV_F80, RTLIB::DIV_F128,
3343 RTLIB::DIV_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003344 break;
3345 case ISD::FREM:
Bill Wendlingef408db2009-12-23 00:28:23 +00003346 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003347 RTLIB::REM_F80, RTLIB::REM_F128,
3348 RTLIB::REM_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003349 break;
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003350 case ISD::FMA:
3351 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003352 RTLIB::FMA_F80, RTLIB::FMA_F128,
3353 RTLIB::FMA_PPCF128));
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003354 break;
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003355 case ISD::FP16_TO_FP32:
3356 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3357 break;
3358 case ISD::FP32_TO_FP16:
3359 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3360 break;
Eli Friedman0e494312009-05-27 07:32:27 +00003361 case ISD::ConstantFP: {
3362 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendlingef408db2009-12-23 00:28:23 +00003363 // Check to see if this FP immediate is already legal.
3364 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman198b7ff2011-11-03 21:49:52 +00003365 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3366 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedman0e494312009-05-27 07:32:27 +00003367 break;
3368 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003369 case ISD::FSUB: {
3370 EVT VT = Node->getValueType(0);
3371 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3372 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3373 "Don't know how to expand this FP subtraction!");
3374 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3375 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3376 Results.push_back(Tmp1);
3377 break;
3378 }
Eli Friedman56883962009-05-27 07:05:37 +00003379 case ISD::SUB: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003380 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003381 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3382 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3383 "Don't know how to expand this subtraction!");
3384 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3385 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Andersonf2118ea2012-05-21 22:39:20 +00003386 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendlingef408db2009-12-23 00:28:23 +00003387 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman56883962009-05-27 07:05:37 +00003388 break;
3389 }
Eli Friedman0e494312009-05-27 07:32:27 +00003390 case ISD::UREM:
3391 case ISD::SREM: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003392 EVT VT = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003393 bool isSigned = Node->getOpcode() == ISD::SREM;
3394 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3395 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3396 Tmp2 = Node->getOperand(0);
3397 Tmp3 = Node->getOperand(1);
Evan Chengb14ce092011-04-16 03:08:26 +00003398 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3399 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng21c4adc2012-10-12 01:15:47 +00003400 // If div is legal, it's better to do the normal expansion
3401 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003402 useDivRem(Node, isSigned, false))) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003403 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmane1bc3792009-05-28 03:06:16 +00003404 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3405 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedman0e494312009-05-27 07:32:27 +00003406 // X % Y -> X-X/Y*Y
3407 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3408 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3409 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Chengb14ce092011-04-16 03:08:26 +00003410 } else if (isSigned)
3411 Tmp1 = ExpandIntLibCall(Node, true,
3412 RTLIB::SREM_I8,
3413 RTLIB::SREM_I16, RTLIB::SREM_I32,
3414 RTLIB::SREM_I64, RTLIB::SREM_I128);
3415 else
3416 Tmp1 = ExpandIntLibCall(Node, false,
3417 RTLIB::UREM_I8,
3418 RTLIB::UREM_I16, RTLIB::UREM_I32,
3419 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003420 Results.push_back(Tmp1);
3421 break;
3422 }
Eli Friedman0e494312009-05-27 07:32:27 +00003423 case ISD::UDIV:
3424 case ISD::SDIV: {
3425 bool isSigned = Node->getOpcode() == ISD::SDIV;
3426 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003427 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003428 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Chengb14ce092011-04-16 03:08:26 +00003429 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3430 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003431 useDivRem(Node, isSigned, true)))
Eli Friedman0e494312009-05-27 07:32:27 +00003432 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3433 Node->getOperand(1));
Evan Chengb14ce092011-04-16 03:08:26 +00003434 else if (isSigned)
3435 Tmp1 = ExpandIntLibCall(Node, true,
3436 RTLIB::SDIV_I8,
3437 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3438 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3439 else
3440 Tmp1 = ExpandIntLibCall(Node, false,
3441 RTLIB::UDIV_I8,
3442 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3443 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003444 Results.push_back(Tmp1);
3445 break;
3446 }
3447 case ISD::MULHU:
3448 case ISD::MULHS: {
3449 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3450 ISD::SMUL_LOHI;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003451 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003452 SDVTList VTs = DAG.getVTList(VT, VT);
3453 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3454 "If this wasn't legal, it shouldn't have been created!");
3455 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3456 Node->getOperand(1));
3457 Results.push_back(Tmp1.getValue(1));
3458 break;
3459 }
Evan Chengb14ce092011-04-16 03:08:26 +00003460 case ISD::SDIVREM:
3461 case ISD::UDIVREM:
3462 // Expand into divrem libcall
3463 ExpandDivRemLibCall(Node, Results);
3464 break;
Eli Friedman56883962009-05-27 07:05:37 +00003465 case ISD::MUL: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003466 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003467 SDVTList VTs = DAG.getVTList(VT, VT);
3468 // See if multiply or divide can be lowered using two-result operations.
3469 // We just need the low half of the multiply; try both the signed
3470 // and unsigned forms. If the target supports both SMUL_LOHI and
3471 // UMUL_LOHI, form a preference by checking which forms of plain
3472 // MULH it supports.
3473 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3474 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3475 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3476 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3477 unsigned OpToUse = 0;
3478 if (HasSMUL_LOHI && !HasMULHS) {
3479 OpToUse = ISD::SMUL_LOHI;
3480 } else if (HasUMUL_LOHI && !HasMULHU) {
3481 OpToUse = ISD::UMUL_LOHI;
3482 } else if (HasSMUL_LOHI) {
3483 OpToUse = ISD::SMUL_LOHI;
3484 } else if (HasUMUL_LOHI) {
3485 OpToUse = ISD::UMUL_LOHI;
3486 }
3487 if (OpToUse) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003488 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3489 Node->getOperand(1)));
Eli Friedman56883962009-05-27 07:05:37 +00003490 break;
3491 }
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00003492 Tmp1 = ExpandIntLibCall(Node, false,
3493 RTLIB::MUL_I8,
3494 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman56883962009-05-27 07:05:37 +00003495 RTLIB::MUL_I64, RTLIB::MUL_I128);
3496 Results.push_back(Tmp1);
3497 break;
3498 }
Eli Friedman2892d822009-05-27 12:20:41 +00003499 case ISD::SADDO:
3500 case ISD::SSUBO: {
3501 SDValue LHS = Node->getOperand(0);
3502 SDValue RHS = Node->getOperand(1);
3503 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3504 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3505 LHS, RHS);
3506 Results.push_back(Sum);
Bill Wendling54dd5392009-12-23 00:05:09 +00003507 EVT OType = Node->getValueType(1);
Bill Wendlingef408db2009-12-23 00:28:23 +00003508
Eli Friedman2892d822009-05-27 12:20:41 +00003509 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3510
3511 // LHSSign -> LHS >= 0
3512 // RHSSign -> RHS >= 0
3513 // SumSign -> Sum >= 0
3514 //
3515 // Add:
3516 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3517 // Sub:
3518 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3519 //
3520 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3521 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3522 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3523 Node->getOpcode() == ISD::SADDO ?
3524 ISD::SETEQ : ISD::SETNE);
3525
3526 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3527 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3528
3529 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3530 Results.push_back(Cmp);
3531 break;
3532 }
3533 case ISD::UADDO:
3534 case ISD::USUBO: {
3535 SDValue LHS = Node->getOperand(0);
3536 SDValue RHS = Node->getOperand(1);
3537 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3538 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3539 LHS, RHS);
3540 Results.push_back(Sum);
Bill Wendlingef408db2009-12-23 00:28:23 +00003541 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3542 Node->getOpcode () == ISD::UADDO ?
3543 ISD::SETULT : ISD::SETUGT));
Eli Friedman2892d822009-05-27 12:20:41 +00003544 break;
3545 }
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003546 case ISD::UMULO:
3547 case ISD::SMULO: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003548 EVT VT = Node->getValueType(0);
Eric Christopherbcaedb52011-04-20 01:19:45 +00003549 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003550 SDValue LHS = Node->getOperand(0);
3551 SDValue RHS = Node->getOperand(1);
3552 SDValue BottomHalf;
3553 SDValue TopHalf;
Nuno Lopes129819d2009-12-23 17:48:10 +00003554 static const unsigned Ops[2][3] =
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003555 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3556 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3557 bool isSigned = Node->getOpcode() == ISD::SMULO;
3558 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3559 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3560 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3561 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3562 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3563 RHS);
3564 TopHalf = BottomHalf.getValue(1);
Eric Christopherbb14f652011-01-20 00:29:24 +00003565 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3566 VT.getSizeInBits() * 2))) {
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003567 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3568 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3569 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3570 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3571 DAG.getIntPtrConstant(0));
3572 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3573 DAG.getIntPtrConstant(1));
Eric Christopherbb14f652011-01-20 00:29:24 +00003574 } else {
3575 // We can fall back to a libcall with an illegal type for the MUL if we
3576 // have a libcall big enough.
3577 // Also, we can fall back to a division in some cases, but that's a big
3578 // performance hit in the general case.
Eric Christopherbb14f652011-01-20 00:29:24 +00003579 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3580 if (WideVT == MVT::i16)
3581 LC = RTLIB::MUL_I16;
3582 else if (WideVT == MVT::i32)
3583 LC = RTLIB::MUL_I32;
3584 else if (WideVT == MVT::i64)
3585 LC = RTLIB::MUL_I64;
3586 else if (WideVT == MVT::i128)
3587 LC = RTLIB::MUL_I128;
3588 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanae9b1682011-05-16 22:09:53 +00003589
3590 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherbcaedb52011-04-20 01:19:45 +00003591 // part.
3592 unsigned LoSize = VT.getSizeInBits();
3593 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3594 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3595 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3596 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Andersonb2c80da2011-02-25 21:41:48 +00003597
Eric Christopherbcaedb52011-04-20 01:19:45 +00003598 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3599 // pre-lowered to the correct types. This all depends upon WideVT not
3600 // being a legal type for the architecture and thus has to be split to
3601 // two arguments.
3602 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3603 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3604 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3605 DAG.getIntPtrConstant(0));
3606 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3607 DAG.getIntPtrConstant(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00003608 // Ret is a node with an illegal type. Because such things are not
3609 // generally permitted during this phase of legalization, delete the
3610 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3611 DAG.DeleteNode(Ret.getNode());
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003612 }
Dan Gohmanae9b1682011-05-16 22:09:53 +00003613
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003614 if (isSigned) {
Owen Andersonb2c80da2011-02-25 21:41:48 +00003615 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3616 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003617 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault758659232013-05-18 00:21:46 +00003618 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003619 ISD::SETNE);
3620 } else {
Matt Arsenault758659232013-05-18 00:21:46 +00003621 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003622 DAG.getConstant(0, VT), ISD::SETNE);
3623 }
3624 Results.push_back(BottomHalf);
3625 Results.push_back(TopHalf);
3626 break;
3627 }
Eli Friedman0e494312009-05-27 07:32:27 +00003628 case ISD::BUILD_PAIR: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003629 EVT PairTy = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003630 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3631 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendlingef408db2009-12-23 00:28:23 +00003632 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedman0e494312009-05-27 07:32:27 +00003633 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003634 TLI.getShiftAmountTy(PairTy)));
Bill Wendlingef408db2009-12-23 00:28:23 +00003635 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedman0e494312009-05-27 07:32:27 +00003636 break;
3637 }
Eli Friedman3b251702009-05-27 07:58:35 +00003638 case ISD::SELECT:
3639 Tmp1 = Node->getOperand(0);
3640 Tmp2 = Node->getOperand(1);
3641 Tmp3 = Node->getOperand(2);
Bill Wendlingef408db2009-12-23 00:28:23 +00003642 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman3b251702009-05-27 07:58:35 +00003643 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3644 Tmp2, Tmp3,
3645 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendlingef408db2009-12-23 00:28:23 +00003646 } else {
Eli Friedman3b251702009-05-27 07:58:35 +00003647 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3648 DAG.getConstant(0, Tmp1.getValueType()),
3649 Tmp2, Tmp3, ISD::SETNE);
Bill Wendlingef408db2009-12-23 00:28:23 +00003650 }
Eli Friedman3b251702009-05-27 07:58:35 +00003651 Results.push_back(Tmp1);
3652 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003653 case ISD::BR_JT: {
3654 SDValue Chain = Node->getOperand(0);
3655 SDValue Table = Node->getOperand(1);
3656 SDValue Index = Node->getOperand(2);
3657
Owen Anderson53aa7a92009-08-10 22:56:29 +00003658 EVT PTy = TLI.getPointerTy();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003659
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003660 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003661 unsigned EntrySize =
3662 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00003663
Tom Stellard838e2342013-08-26 15:06:10 +00003664 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(),
3665 Index, DAG.getConstant(EntrySize, Index.getValueType()));
3666 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3667 Index, Table);
Eli Friedman2892d822009-05-27 12:20:41 +00003668
Owen Anderson117c9e82009-08-12 00:36:31 +00003669 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastings81c43062011-02-16 16:23:55 +00003670 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattnera35499e2010-09-21 07:32:19 +00003671 MachinePointerInfo::getJumpTable(), MemVT,
David Greene39c6d012010-02-15 17:00:31 +00003672 false, false, 0);
Eli Friedman2892d822009-05-27 12:20:41 +00003673 Addr = LD;
Dan Gohmanc3349602010-04-19 19:05:59 +00003674 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman2892d822009-05-27 12:20:41 +00003675 // For PIC, the sequence is:
Bill Wendlingef408db2009-12-23 00:28:23 +00003676 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman2892d822009-05-27 12:20:41 +00003677 // RelocBase can be JumpTable, GOT or some sort of global base.
3678 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3679 TLI.getPICJumpTableRelocBase(Table, DAG));
3680 }
Owen Anderson9f944592009-08-11 20:47:22 +00003681 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman2892d822009-05-27 12:20:41 +00003682 Results.push_back(Tmp1);
3683 break;
3684 }
Eli Friedman0e494312009-05-27 07:32:27 +00003685 case ISD::BRCOND:
3686 // Expand brcond's setcc into its constituent parts and create a BR_CC
3687 // Node.
3688 Tmp1 = Node->getOperand(0);
3689 Tmp2 = Node->getOperand(1);
Bill Wendlingef408db2009-12-23 00:28:23 +00003690 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson9f944592009-08-11 20:47:22 +00003691 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedman0e494312009-05-27 07:32:27 +00003692 Tmp1, Tmp2.getOperand(2),
3693 Tmp2.getOperand(0), Tmp2.getOperand(1),
3694 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003695 } else {
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003696 // We test only the i1 bit. Skip the AND if UNDEF.
3697 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3698 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3699 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson9f944592009-08-11 20:47:22 +00003700 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003701 DAG.getCondCode(ISD::SETNE), Tmp3,
3702 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedman0e494312009-05-27 07:32:27 +00003703 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003704 }
Eli Friedman0e494312009-05-27 07:32:27 +00003705 Results.push_back(Tmp1);
3706 break;
Eli Friedman5df72022009-05-28 03:56:57 +00003707 case ISD::SETCC: {
3708 Tmp1 = Node->getOperand(0);
3709 Tmp2 = Node->getOperand(1);
3710 Tmp3 = Node->getOperand(2);
Tom Stellard08690a12013-09-28 02:50:32 +00003711 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
Daniel Sandersedc071b2013-11-21 13:24:49 +00003712 Tmp3, NeedInvert, dl);
Eli Friedman5df72022009-05-28 03:56:57 +00003713
Tom Stellard08690a12013-09-28 02:50:32 +00003714 if (Legalized) {
Daniel Sandersedc071b2013-11-21 13:24:49 +00003715 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3716 // condition code, create a new SETCC node.
Tom Stellard08690a12013-09-28 02:50:32 +00003717 if (Tmp3.getNode())
3718 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3719 Tmp1, Tmp2, Tmp3);
3720
Daniel Sandersedc071b2013-11-21 13:24:49 +00003721 // If we expanded the SETCC by inverting the condition code, then wrap
3722 // the existing SETCC in a NOT to restore the intended condition.
3723 if (NeedInvert)
3724 Tmp1 = DAG.getNOT(dl, Tmp1, Tmp1->getValueType(0));
3725
Eli Friedman5df72022009-05-28 03:56:57 +00003726 Results.push_back(Tmp1);
3727 break;
3728 }
3729
3730 // Otherwise, SETCC for the given comparison type must be completely
3731 // illegal; expand it into a SELECT_CC.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003732 EVT VT = Node->getValueType(0);
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003733 int TrueValue;
Benjamin Kramer0f12a5c2013-03-08 17:03:19 +00003734 switch (TLI.getBooleanContents(VT.isVector())) {
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003735 case TargetLowering::ZeroOrOneBooleanContent:
3736 case TargetLowering::UndefinedBooleanContent:
3737 TrueValue = 1;
3738 break;
3739 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3740 TrueValue = -1;
3741 break;
3742 }
Eli Friedman5df72022009-05-28 03:56:57 +00003743 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003744 DAG.getConstant(TrueValue, VT), DAG.getConstant(0, VT),
3745 Tmp3);
Eli Friedman5df72022009-05-28 03:56:57 +00003746 Results.push_back(Tmp1);
3747 break;
3748 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00003749 case ISD::SELECT_CC: {
3750 Tmp1 = Node->getOperand(0); // LHS
3751 Tmp2 = Node->getOperand(1); // RHS
3752 Tmp3 = Node->getOperand(2); // True
3753 Tmp4 = Node->getOperand(3); // False
3754 SDValue CC = Node->getOperand(4);
3755
Tom Stellard5694d302013-09-28 02:50:43 +00003756 bool Legalized = false;
3757 // Try to legalize by inverting the condition. This is for targets that
3758 // might support an ordered version of a condition, but not the unordered
3759 // version (or vice versa).
3760 ISD::CondCode InvCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3761 Tmp1.getValueType().isInteger());
3762 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
3763 // Use the new condition code and swap true and false
3764 Legalized = true;
3765 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
Tom Stellard08690a12013-09-28 02:50:32 +00003766 } else {
Tom Stellard5694d302013-09-28 02:50:43 +00003767 // If The inverse is not legal, then try to swap the arguments using
3768 // the inverse condition code.
3769 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
3770 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
3771 // The swapped inverse condition is legal, so swap true and false,
3772 // lhs and rhs.
3773 Legalized = true;
3774 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
3775 }
3776 }
3777
3778 if (!Legalized) {
3779 Legalized = LegalizeSetCCCondCode(
Daniel Sandersedc071b2013-11-21 13:24:49 +00003780 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, NeedInvert,
3781 dl);
Tom Stellard5694d302013-09-28 02:50:43 +00003782
3783 assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00003784
3785 // If we expanded the SETCC by inverting the condition code, then swap
3786 // the True/False operands to match.
3787 if (NeedInvert)
3788 std::swap(Tmp3, Tmp4);
3789
3790 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3791 // condition code, create a new SELECT_CC node.
Tom Stellard5694d302013-09-28 02:50:43 +00003792 if (CC.getNode()) {
3793 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
3794 Tmp1, Tmp2, Tmp3, Tmp4, CC);
3795 } else {
3796 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3797 CC = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00003798 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1,
3799 Tmp2, Tmp3, Tmp4, CC);
Tom Stellard5694d302013-09-28 02:50:43 +00003800 }
Tom Stellard08690a12013-09-28 02:50:32 +00003801 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00003802 Results.push_back(Tmp1);
3803 break;
3804 }
3805 case ISD::BR_CC: {
3806 Tmp1 = Node->getOperand(0); // Chain
3807 Tmp2 = Node->getOperand(2); // LHS
3808 Tmp3 = Node->getOperand(3); // RHS
3809 Tmp4 = Node->getOperand(1); // CC
3810
Tom Stellard08690a12013-09-28 02:50:32 +00003811 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
Daniel Sandersedc071b2013-11-21 13:24:49 +00003812 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, NeedInvert, dl);
Tom Stellard45015d92013-09-28 03:10:17 +00003813 (void)Legalized;
Tom Stellard08690a12013-09-28 02:50:32 +00003814 assert(Legalized && "Can't legalize BR_CC with legal condition!");
Eli Friedmane1dc1932009-05-28 20:40:34 +00003815
Daniel Sandersedc071b2013-11-21 13:24:49 +00003816 // If we expanded the SETCC by inverting the condition code, then wrap
3817 // the existing SETCC in a NOT to restore the intended condition.
3818 if (NeedInvert)
3819 Tmp4 = DAG.getNOT(dl, Tmp4, Tmp4->getValueType(0));
3820
3821 // If we expanded the SETCC by swapping LHS and RHS, create a new BR_CC
Tom Stellard08690a12013-09-28 02:50:32 +00003822 // node.
3823 if (Tmp4.getNode()) {
3824 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
3825 Tmp4, Tmp2, Tmp3, Node->getOperand(4));
3826 } else {
3827 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3828 Tmp4 = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00003829 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4,
3830 Tmp2, Tmp3, Node->getOperand(4));
Tom Stellard08690a12013-09-28 02:50:32 +00003831 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00003832 Results.push_back(Tmp1);
3833 break;
3834 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00003835 case ISD::BUILD_VECTOR:
3836 Results.push_back(ExpandBUILD_VECTOR(Node));
3837 break;
3838 case ISD::SRA:
3839 case ISD::SRL:
3840 case ISD::SHL: {
3841 // Scalarize vector SRA/SRL/SHL.
3842 EVT VT = Node->getValueType(0);
3843 assert(VT.isVector() && "Unable to legalize non-vector shift");
3844 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3845 unsigned NumElem = VT.getVectorNumElements();
3846
3847 SmallVector<SDValue, 8> Scalars;
3848 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3849 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3850 VT.getScalarType(),
Tom Stellardd42c5942013-08-05 22:22:01 +00003851 Node->getOperand(0), DAG.getConstant(Idx,
3852 TLI.getVectorIdxTy()));
Dan Gohman198b7ff2011-11-03 21:49:52 +00003853 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3854 VT.getScalarType(),
Tom Stellardd42c5942013-08-05 22:22:01 +00003855 Node->getOperand(1), DAG.getConstant(Idx,
3856 TLI.getVectorIdxTy()));
Dan Gohman198b7ff2011-11-03 21:49:52 +00003857 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3858 VT.getScalarType(), Ex, Sh));
3859 }
3860 SDValue Result =
3861 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3862 &Scalars[0], Scalars.size());
Eli Friedman13477152011-11-11 23:58:27 +00003863 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +00003864 break;
3865 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003866 case ISD::GLOBAL_OFFSET_TABLE:
3867 case ISD::GlobalAddress:
3868 case ISD::GlobalTLSAddress:
3869 case ISD::ExternalSymbol:
3870 case ISD::ConstantPool:
3871 case ISD::JumpTable:
3872 case ISD::INTRINSIC_W_CHAIN:
3873 case ISD::INTRINSIC_WO_CHAIN:
3874 case ISD::INTRINSIC_VOID:
3875 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedmana8f9a022009-05-27 02:16:40 +00003876 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003877 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00003878
3879 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00003880 if (!Results.empty())
3881 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00003882}
Dan Gohman198b7ff2011-11-03 21:49:52 +00003883
3884void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3885 SmallVector<SDValue, 8> Results;
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00003886 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00003887 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedman97f3f962009-07-17 05:16:04 +00003888 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendlingef408db2009-12-23 00:28:23 +00003889 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00003890 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendlingef408db2009-12-23 00:28:23 +00003891 }
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00003892 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003893 SDLoc dl(Node);
Eli Friedman3b251702009-05-27 07:58:35 +00003894 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman21d349b2009-05-27 01:25:56 +00003895 switch (Node->getOpcode()) {
3896 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00003897 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00003898 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00003899 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00003900 case ISD::CTPOP:
3901 // Zero extend the argument.
3902 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth637cc6a2011-12-13 01:56:10 +00003903 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
3904 // already the correct result.
Jakob Stoklund Olesen6b9f63c2009-07-12 17:43:20 +00003905 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003906 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth637cc6a2011-12-13 01:56:10 +00003907 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault758659232013-05-18 00:21:46 +00003908 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Eli Friedman21d349b2009-05-27 01:25:56 +00003909 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3910 ISD::SETEQ);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003911 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
3912 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00003913 } else if (Node->getOpcode() == ISD::CTLZ ||
3914 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman21d349b2009-05-27 01:25:56 +00003915 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3916 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3917 DAG.getConstant(NVT.getSizeInBits() -
3918 OVT.getSizeInBits(), NVT));
3919 }
Bill Wendlingef408db2009-12-23 00:28:23 +00003920 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00003921 break;
3922 case ISD::BSWAP: {
3923 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling70794592009-12-22 22:53:39 +00003924 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003925 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3926 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003927 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendlingef408db2009-12-23 00:28:23 +00003928 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003929 break;
3930 }
3931 case ISD::FP_TO_UINT:
3932 case ISD::FP_TO_SINT:
3933 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3934 Node->getOpcode() == ISD::FP_TO_SINT, dl);
3935 Results.push_back(Tmp1);
3936 break;
3937 case ISD::UINT_TO_FP:
3938 case ISD::SINT_TO_FP:
3939 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3940 Node->getOpcode() == ISD::SINT_TO_FP, dl);
3941 Results.push_back(Tmp1);
3942 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00003943 case ISD::VAARG: {
3944 SDValue Chain = Node->getOperand(0); // Get the chain.
3945 SDValue Ptr = Node->getOperand(1); // Get the pointer.
3946
3947 unsigned TruncOp;
3948 if (OVT.isVector()) {
3949 TruncOp = ISD::BITCAST;
3950 } else {
3951 assert(OVT.isInteger()
3952 && "VAARG promotion is supported only for vectors or integer types");
3953 TruncOp = ISD::TRUNCATE;
3954 }
3955
3956 // Perform the larger operation, then convert back
3957 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
3958 Node->getConstantOperandVal(3));
3959 Chain = Tmp1.getValue(1);
3960
3961 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
3962
3963 // Modified the chain result - switch anything that used the old chain to
3964 // use the new one.
3965 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
3966 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
3967 ReplacedNode(Node);
3968 break;
3969 }
Eli Friedmand6f28342009-05-27 03:33:44 +00003970 case ISD::AND:
3971 case ISD::OR:
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00003972 case ISD::XOR: {
3973 unsigned ExtOp, TruncOp;
3974 if (OVT.isVector()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00003975 ExtOp = ISD::BITCAST;
3976 TruncOp = ISD::BITCAST;
Chris Lattnercd927182010-04-07 23:47:51 +00003977 } else {
3978 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00003979 ExtOp = ISD::ANY_EXTEND;
3980 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00003981 }
3982 // Promote each of the values to the new type.
3983 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3984 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3985 // Perform the larger operation, then convert back
Bill Wendlingef408db2009-12-23 00:28:23 +00003986 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3987 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmand6f28342009-05-27 03:33:44 +00003988 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00003989 }
3990 case ISD::SELECT: {
Eli Friedman3b251702009-05-27 07:58:35 +00003991 unsigned ExtOp, TruncOp;
Eli Friedman2892d822009-05-27 12:20:41 +00003992 if (Node->getValueType(0).isVector()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00003993 ExtOp = ISD::BITCAST;
3994 TruncOp = ISD::BITCAST;
Eli Friedman2892d822009-05-27 12:20:41 +00003995 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman3b251702009-05-27 07:58:35 +00003996 ExtOp = ISD::ANY_EXTEND;
3997 TruncOp = ISD::TRUNCATE;
3998 } else {
3999 ExtOp = ISD::FP_EXTEND;
4000 TruncOp = ISD::FP_ROUND;
4001 }
4002 Tmp1 = Node->getOperand(0);
4003 // Promote each of the values to the new type.
4004 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4005 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4006 // Perform the larger operation, then round down.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004007 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman3b251702009-05-27 07:58:35 +00004008 if (TruncOp != ISD::FP_ROUND)
Bill Wendlingef408db2009-12-23 00:28:23 +00004009 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004010 else
Bill Wendlingef408db2009-12-23 00:28:23 +00004011 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman3b251702009-05-27 07:58:35 +00004012 DAG.getIntPtrConstant(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004013 Results.push_back(Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004014 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004015 }
Eli Friedman3b251702009-05-27 07:58:35 +00004016 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00004017 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00004018
4019 // Cast the two input vectors.
Wesley Peck527da1b2010-11-23 03:31:01 +00004020 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
4021 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman3b251702009-05-27 07:58:35 +00004022
4023 // Convert the shuffle mask to the right # elements.
Bill Wendlingef408db2009-12-23 00:28:23 +00004024 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peck527da1b2010-11-23 03:31:01 +00004025 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004026 Results.push_back(Tmp1);
4027 break;
4028 }
Eli Friedman5df72022009-05-28 03:56:57 +00004029 case ISD::SETCC: {
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004030 unsigned ExtOp = ISD::FP_EXTEND;
4031 if (NVT.isInteger()) {
4032 ISD::CondCode CCCode =
4033 cast<CondCodeSDNode>(Node->getOperand(2))->get();
4034 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedman5df72022009-05-28 03:56:57 +00004035 }
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004036 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4037 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedman5df72022009-05-28 03:56:57 +00004038 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
4039 Tmp1, Tmp2, Node->getOperand(2)));
4040 break;
4041 }
Pete Coopere69be6d2012-03-19 23:38:12 +00004042 case ISD::FDIV:
Pete Cooper8a3dc0e2012-04-04 19:36:31 +00004043 case ISD::FREM:
Pete Cooper99415fe2012-01-12 21:46:18 +00004044 case ISD::FPOW: {
4045 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4046 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopere69be6d2012-03-19 23:38:12 +00004047 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooper99415fe2012-01-12 21:46:18 +00004048 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4049 Tmp3, DAG.getIntPtrConstant(0)));
4050 break;
4051 }
4052 case ISD::FLOG2:
4053 case ISD::FEXP2:
4054 case ISD::FLOG:
4055 case ISD::FEXP: {
4056 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4057 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4058 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4059 Tmp2, DAG.getIntPtrConstant(0)));
4060 break;
4061 }
Eli Friedman21d349b2009-05-27 01:25:56 +00004062 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004063
4064 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004065 if (!Results.empty())
4066 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004067}
4068
Chris Lattnerdc750592005-01-07 07:47:09 +00004069// SelectionDAG::Legalize - This is the entry point for the file.
4070//
Dan Gohmand282f462011-05-16 22:19:54 +00004071void SelectionDAG::Legalize() {
Chris Lattnerdc750592005-01-07 07:47:09 +00004072 /// run - This is the main entry point to this class.
4073 ///
Dan Gohmand282f462011-05-16 22:19:54 +00004074 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattnerdc750592005-01-07 07:47:09 +00004075}