blob: a4245a6016c2055ef6d37b1e1c4c07bd5f2a8363 [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"
Hal Finkel19775142014-03-31 17:48:10 +000016#include "llvm/ADT/SmallSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/SmallVector.h"
Paul Redmondf29ddfe2013-02-15 18:45:18 +000018#include "llvm/ADT/Triple.h"
Evan Chengd4b08732010-11-30 23:55:39 +000019#include "llvm/CodeGen/Analysis.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000020#include "llvm/CodeGen/MachineFunction.h"
Jim Laskey70323a82006-12-14 19:17:33 +000021#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000022#include "llvm/IR/CallingConv.h"
23#include "llvm/IR/Constants.h"
24#include "llvm/IR/DataLayout.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000025#include "llvm/IR/DebugInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/DerivedTypes.h"
Chandler Carrutha7c44e62013-01-08 05:11:57 +000027#include "llvm/IR/Function.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/LLVMContext.h"
David Greeneae4f2662010-01-05 01:24:53 +000029#include "llvm/Support/Debug.h"
Jim Grosbachd64dfc12010-06-18 21:43:38 +000030#include "llvm/Support/ErrorHandling.h"
Duncan Sands1826ded2007-10-28 12:59:45 +000031#include "llvm/Support/MathExtras.h"
Chris Lattner13626022009-08-23 06:03:38 +000032#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000033#include "llvm/Target/TargetFrameLowering.h"
34#include "llvm/Target/TargetLowering.h"
35#include "llvm/Target/TargetMachine.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000036using namespace llvm;
37
38//===----------------------------------------------------------------------===//
39/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
40/// hacks on it until the target machine can handle it. This involves
41/// eliminating value sizes the machine cannot handle (promoting small sizes to
42/// large sizes or splitting up large values into small values) as well as
43/// eliminating operations the machine cannot handle.
44///
45/// This code also does a small amount of optimization and recognition of idioms
46/// as part of its processing. For example, if a target does not support a
47/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
48/// will attempt merge setcc and brc instructions into brcc's.
49///
50namespace {
Dan Gohman198b7ff2011-11-03 21:49:52 +000051class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
Dan Gohmanc3349602010-04-19 19:05:59 +000052 const TargetMachine &TM;
Dan Gohman21cea8a2010-04-17 15:26:15 +000053 const TargetLowering &TLI;
Chris Lattnerdc750592005-01-07 07:47:09 +000054 SelectionDAG &DAG;
55
Dan Gohman198b7ff2011-11-03 21:49:52 +000056 /// LegalizePosition - The iterator for walking through the node list.
57 SelectionDAG::allnodes_iterator LegalizePosition;
58
59 /// LegalizedNodes - The set of nodes which have already been legalized.
60 SmallPtrSet<SDNode *, 16> LegalizedNodes;
61
Matt Arsenault758659232013-05-18 00:21:46 +000062 EVT getSetCCResultType(EVT VT) const {
63 return TLI.getSetCCResultType(*DAG.getContext(), VT);
64 }
65
Chris Lattner462505f2006-02-13 09:18:02 +000066 // Libcall insertion helpers.
Scott Michelcf0da6c2009-02-17 22:15:04 +000067
Chris Lattnerdc750592005-01-07 07:47:09 +000068public:
Dan Gohmand282f462011-05-16 22:19:54 +000069 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattnerdc750592005-01-07 07:47:09 +000070
Chris Lattnerdc750592005-01-07 07:47:09 +000071 void LegalizeDAG();
72
Chris Lattner9dcce6d2006-01-28 07:39:30 +000073private:
Dan Gohman198b7ff2011-11-03 21:49:52 +000074 /// LegalizeOp - Legalizes the given operation.
75 void LegalizeOp(SDNode *Node);
Scott Michelcf0da6c2009-02-17 22:15:04 +000076
Eli Friedmanaee3f622009-06-06 07:04:42 +000077 SDValue OptimizeFloatStore(StoreSDNode *ST);
78
Nadav Rotemde6fd282012-07-11 08:52:09 +000079 void LegalizeLoadOps(SDNode *Node);
80 void LegalizeStoreOps(SDNode *Node);
81
Nate Begeman6f94f612008-04-25 18:07:40 +000082 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
83 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
84 /// is necessary to spill the vector being inserted into to memory, perform
85 /// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000086 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Andrew Trickef9de2a2013-05-25 02:42:55 +000087 SDValue Idx, SDLoc dl);
Eli Friedmana8f9a022009-05-27 02:16:40 +000088 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
Andrew Trickef9de2a2013-05-25 02:42:55 +000089 SDValue Idx, SDLoc dl);
Dan Gohman2a7de412007-10-11 23:57:53 +000090
Nate Begeman5f829d82009-04-29 05:20:52 +000091 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
92 /// performs the same shuffe in terms of order or result bytes, but on a type
93 /// whose vector element type is narrower than the original shuffle type.
94 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Andrew Trickef9de2a2013-05-25 02:42:55 +000095 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Jim Grosbach9b7755f2010-07-02 17:41:59 +000096 SDValue N1, SDValue N2,
Benjamin Kramer339ced42012-01-15 13:16:05 +000097 ArrayRef<int> Mask) const;
Scott Michelcf0da6c2009-02-17 22:15:04 +000098
Tom Stellard08690a12013-09-28 02:50:32 +000099 bool LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +0000100 bool &NeedInvert, SDLoc dl);
Scott Michelcf0da6c2009-02-17 22:15:04 +0000101
Eli Friedmanb3554152009-05-27 02:21:29 +0000102 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherbcaedb52011-04-20 01:19:45 +0000103 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000104 unsigned NumOps, bool isSigned, SDLoc dl);
Eric Christopherbcaedb52011-04-20 01:19:45 +0000105
Jim Grosbachd64dfc12010-06-18 21:43:38 +0000106 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
107 SDNode *Node, bool isSigned);
Eli Friedmand6f28342009-05-27 03:33:44 +0000108 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
109 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000110 RTLIB::Libcall Call_F128,
111 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikovf93bb392009-11-07 17:14:39 +0000112 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
113 RTLIB::Libcall Call_I8,
114 RTLIB::Libcall Call_I16,
115 RTLIB::Libcall Call_I32,
116 RTLIB::Libcall Call_I64,
Eli Friedmand6f28342009-05-27 03:33:44 +0000117 RTLIB::Libcall Call_I128);
Evan Chengb14ce092011-04-16 03:08:26 +0000118 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000119 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnere3e847b2005-07-16 00:19:57 +0000120
Andrew Trickef9de2a2013-05-25 02:42:55 +0000121 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, SDLoc dl);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000122 SDValue ExpandBUILD_VECTOR(SDNode *Node);
123 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman2892d822009-05-27 12:20:41 +0000124 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
125 SmallVectorImpl<SDValue> &Results);
126 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000127 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000128 SDLoc dl);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000129 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000130 SDLoc dl);
Owen Anderson53aa7a92009-08-10 22:56:29 +0000131 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000132 SDLoc dl);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000133
Andrew Trickef9de2a2013-05-25 02:42:55 +0000134 SDValue ExpandBSWAP(SDValue Op, SDLoc dl);
135 SDValue ExpandBitCount(unsigned Opc, SDValue Op, SDLoc dl);
Chris Lattnera5bf1032005-05-12 04:49:08 +0000136
Eli Friedman40afdb62009-05-23 22:37:25 +0000137 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenebab5e6e2011-01-26 19:13:22 +0000138 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000139 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman21d349b2009-05-27 01:25:56 +0000140
Dan Gohman198b7ff2011-11-03 21:49:52 +0000141 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
142
Jim Grosbachd64dfc12010-06-18 21:43:38 +0000143 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
144
Dan Gohman198b7ff2011-11-03 21:49:52 +0000145 void ExpandNode(SDNode *Node);
146 void PromoteNode(SDNode *Node);
147
Eli Friedman13477152011-11-11 23:58:27 +0000148 void ForgetNode(SDNode *N) {
Dan Gohman198b7ff2011-11-03 21:49:52 +0000149 LegalizedNodes.erase(N);
150 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
151 ++LegalizePosition;
152 }
153
Eli Friedman13477152011-11-11 23:58:27 +0000154public:
155 // DAGUpdateListener implementation.
Craig Topper7b883b32014-03-08 06:31:39 +0000156 void NodeDeleted(SDNode *N, SDNode *E) override {
Eli Friedman13477152011-11-11 23:58:27 +0000157 ForgetNode(N);
158 }
Craig Topper7b883b32014-03-08 06:31:39 +0000159 void NodeUpdated(SDNode *N) override {}
Eli Friedman13477152011-11-11 23:58:27 +0000160
161 // Node replacement helpers
162 void ReplacedNode(SDNode *N) {
163 if (N->use_empty()) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000164 DAG.RemoveDeadNode(N);
Eli Friedman13477152011-11-11 23:58:27 +0000165 } else {
166 ForgetNode(N);
167 }
168 }
169 void ReplaceNode(SDNode *Old, SDNode *New) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000170 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman13477152011-11-11 23:58:27 +0000171 ReplacedNode(Old);
172 }
173 void ReplaceNode(SDValue Old, SDValue New) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000174 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman13477152011-11-11 23:58:27 +0000175 ReplacedNode(Old.getNode());
176 }
177 void ReplaceNode(SDNode *Old, const SDValue *New) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000178 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman13477152011-11-11 23:58:27 +0000179 ReplacedNode(Old);
180 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000181};
182}
183
Nate Begeman5f829d82009-04-29 05:20:52 +0000184/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
185/// performs the same shuffe in terms of order or result bytes, but on a type
186/// whose vector element type is narrower than the original shuffle type.
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000187/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000188SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +0000189SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl,
Nate Begeman5f829d82009-04-29 05:20:52 +0000190 SDValue N1, SDValue N2,
Benjamin Kramer339ced42012-01-15 13:16:05 +0000191 ArrayRef<int> Mask) const {
Nate Begeman5f829d82009-04-29 05:20:52 +0000192 unsigned NumMaskElts = VT.getVectorNumElements();
193 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000194 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner6be79822006-04-04 17:23:26 +0000195
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000196 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
197
198 if (NumEltsGrowth == 1)
199 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000200
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000201 SmallVector<int, 8> NewMask;
Nate Begeman5f829d82009-04-29 05:20:52 +0000202 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000203 int Idx = Mask[i];
204 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach9b7755f2010-07-02 17:41:59 +0000205 if (Idx < 0)
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000206 NewMask.push_back(-1);
207 else
208 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner6be79822006-04-04 17:23:26 +0000209 }
Chris Lattner6be79822006-04-04 17:23:26 +0000210 }
Nate Begeman5f829d82009-04-29 05:20:52 +0000211 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman8d6d4b92009-04-27 18:41:29 +0000212 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
213 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner6be79822006-04-04 17:23:26 +0000214}
215
Dan Gohmand282f462011-05-16 22:19:54 +0000216SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +0000217 : SelectionDAG::DAGUpdateListener(dag),
218 TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
Dan Gohman8c5ca642011-07-15 22:19:02 +0000219 DAG(dag) {
Chris Lattnerdc750592005-01-07 07:47:09 +0000220}
221
Chris Lattnerdc750592005-01-07 07:47:09 +0000222void SelectionDAGLegalize::LegalizeDAG() {
Dan Gohman86aa16a2008-09-30 18:30:35 +0000223 DAG.AssignTopologicalOrder();
Dan Gohman4db3f7d2011-10-28 01:29:32 +0000224
Dan Gohman198b7ff2011-11-03 21:49:52 +0000225 // Visit all the nodes. We start in topological order, so that we see
226 // nodes with their original operands intact. Legalization can produce
227 // new nodes which may themselves need to be legalized. Iterate until all
228 // nodes have been legalized.
229 for (;;) {
230 bool AnyLegalized = false;
231 for (LegalizePosition = DAG.allnodes_end();
232 LegalizePosition != DAG.allnodes_begin(); ) {
233 --LegalizePosition;
Chris Lattnerdc750592005-01-07 07:47:09 +0000234
Dan Gohman198b7ff2011-11-03 21:49:52 +0000235 SDNode *N = LegalizePosition;
236 if (LegalizedNodes.insert(N)) {
237 AnyLegalized = true;
238 LegalizeOp(N);
239 }
240 }
241 if (!AnyLegalized)
242 break;
243
244 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000245
246 // Remove dead nodes now.
Chris Lattner8927c872006-08-04 17:45:20 +0000247 DAG.RemoveDeadNodes();
Chris Lattnerdc750592005-01-07 07:47:09 +0000248}
249
Evan Cheng22cf8992006-12-13 20:57:08 +0000250/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
251/// a load from the constant pool.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000252SDValue
253SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng47833a12006-12-12 21:32:44 +0000254 bool Extend = false;
Andrew Trickef9de2a2013-05-25 02:42:55 +0000255 SDLoc dl(CFP);
Evan Cheng47833a12006-12-12 21:32:44 +0000256
257 // If a FP immediate is precise when represented as a float and if the
258 // target can do an extending load from float to double, we put it into
259 // the constant pool as a float, even if it's is statically typed as a
Chris Lattner3dc38992008-03-05 06:46:58 +0000260 // double. This shrinks FP constants and canonicalizes them for targets where
261 // an FP extending load is the same cost as a normal load (such as on the x87
262 // fp stack or PPC FP unit).
Owen Anderson53aa7a92009-08-10 22:56:29 +0000263 EVT VT = CFP->getValueType(0);
Dan Gohmanec270fb2008-09-12 18:08:03 +0000264 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng22cf8992006-12-13 20:57:08 +0000265 if (!UseCP) {
Owen Anderson9f944592009-08-11 20:47:22 +0000266 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen54306fe2008-10-09 18:53:47 +0000267 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson9f944592009-08-11 20:47:22 +0000268 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng3766fc602006-12-12 22:19:28 +0000269 }
270
Owen Anderson53aa7a92009-08-10 22:56:29 +0000271 EVT OrigVT = VT;
272 EVT SVT = VT;
Owen Anderson9f944592009-08-11 20:47:22 +0000273 while (SVT != MVT::f32) {
274 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman35b6f9a2010-06-18 14:01:07 +0000275 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Cheng38caf772008-03-04 08:05:30 +0000276 // Only do this if the target has a native EXTLOAD instruction from
277 // smaller type.
Evan Cheng07d53b12008-10-14 21:26:46 +0000278 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattner3dc38992008-03-05 06:46:58 +0000279 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattner229907c2011-07-18 04:54:35 +0000280 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Anderson487375e2009-07-29 18:55:55 +0000281 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Cheng38caf772008-03-04 08:05:30 +0000282 VT = SVT;
283 Extend = true;
284 }
Evan Cheng47833a12006-12-12 21:32:44 +0000285 }
286
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000287 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1fb8aed2009-03-13 07:51:59 +0000288 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman198b7ff2011-11-03 21:49:52 +0000289 if (Extend) {
290 SDValue Result =
291 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
292 DAG.getEntryNode(),
293 CPIdx, MachinePointerInfo::getConstantPool(),
294 VT, false, false, Alignment);
295 return Result;
296 }
297 SDValue Result =
298 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000299 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman198b7ff2011-11-03 21:49:52 +0000300 Alignment);
301 return Result;
Evan Cheng47833a12006-12-12 21:32:44 +0000302}
303
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000304/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000305static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
306 const TargetLowering &TLI,
Eli Friedman13477152011-11-11 23:58:27 +0000307 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmand257a462011-11-16 02:43:15 +0000308 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
309 "unaligned indexed stores not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000310 SDValue Chain = ST->getChain();
311 SDValue Ptr = ST->getBasePtr();
312 SDValue Val = ST->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000313 EVT VT = Val.getValueType();
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000314 int Alignment = ST->getAlignment();
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000315 unsigned AS = ST->getAddressSpace();
316
Andrew Trickef9de2a2013-05-25 02:42:55 +0000317 SDLoc dl(ST);
Duncan Sands13237ac2008-06-06 12:08:01 +0000318 if (ST->getMemoryVT().isFloatingPoint() ||
319 ST->getMemoryVT().isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000320 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands8f352fe2008-12-12 21:47:02 +0000321 if (TLI.isTypeLegal(intVT)) {
322 // Expand to a bitconvert of the value to the integer type of the
323 // same size, then a (misaligned) int store.
324 // FIXME: Does not handle truncating floating point stores!
Wesley Peck527da1b2010-11-23 03:31:01 +0000325 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000326 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
327 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman13477152011-11-11 23:58:27 +0000328 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000329 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000330 }
Dan Gohmanabffc992011-05-17 22:22:52 +0000331 // Do a (aligned) store to a stack slot, then copy from the stack slot
332 // to the final destination using (unaligned) integer loads and stores.
333 EVT StoredVT = ST->getMemoryVT();
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000334 MVT RegVT =
Dan Gohmanabffc992011-05-17 22:22:52 +0000335 TLI.getRegisterType(*DAG.getContext(),
336 EVT::getIntegerVT(*DAG.getContext(),
337 StoredVT.getSizeInBits()));
338 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
339 unsigned RegBytes = RegVT.getSizeInBits() / 8;
340 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
341
342 // Make sure the stack slot is also aligned for the register type.
343 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
344
345 // Perform the original store, only redirected to the stack slot.
346 SDValue Store = DAG.getTruncStore(Chain, dl,
347 Val, StackPtr, MachinePointerInfo(),
348 StoredVT, false, false, 0);
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000349 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy(AS));
Dan Gohmanabffc992011-05-17 22:22:52 +0000350 SmallVector<SDValue, 8> Stores;
351 unsigned Offset = 0;
352
353 // Do all but one copies using the full register width.
354 for (unsigned i = 1; i < NumRegs; i++) {
355 // Load one integer register's worth from the stack slot.
356 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
357 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000358 false, false, false, 0);
Dan Gohmanabffc992011-05-17 22:22:52 +0000359 // Store it to the final location. Remember the store.
360 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
361 ST->getPointerInfo().getWithOffset(Offset),
362 ST->isVolatile(), ST->isNonTemporal(),
363 MinAlign(ST->getAlignment(), Offset)));
364 // Increment the pointers.
365 Offset += RegBytes;
366 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
367 Increment);
368 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
369 }
370
371 // The last store may be partial. Do a truncating store. On big-endian
372 // machines this requires an extending load from the stack slot to ensure
373 // that the bits are in the right place.
374 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
375 8 * (StoredBytes - Offset));
376
377 // Load from the stack slot.
378 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
379 MachinePointerInfo(),
380 MemVT, false, false, 0);
381
382 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
383 ST->getPointerInfo()
384 .getWithOffset(Offset),
385 MemVT, ST->isVolatile(),
386 ST->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000387 MinAlign(ST->getAlignment(), Offset),
388 ST->getTBAAInfo()));
Dan Gohmanabffc992011-05-17 22:22:52 +0000389 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000390 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedman13477152011-11-11 23:58:27 +0000391 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +0000392 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000393 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000394 assert(ST->getMemoryVT().isInteger() &&
395 !ST->getMemoryVT().isVector() &&
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000396 "Unaligned store of unknown type.");
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000397 // Get the half-size VT
Ken Dyckdf5561d2009-12-17 20:09:43 +0000398 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands13237ac2008-06-06 12:08:01 +0000399 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000400 int IncrementSize = NumBits / 8;
401
402 // Divide the stored value in two parts.
Owen Andersonb2c80da2011-02-25 21:41:48 +0000403 SDValue ShiftAmount = DAG.getConstant(NumBits,
404 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000405 SDValue Lo = Val;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000406 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000407
408 // Store the two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000409 SDValue Store1, Store2;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000410 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000411 ST->getPointerInfo(), NewStoredVT,
David Greene39c6d012010-02-15 17:00:31 +0000412 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000413
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000414 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Matt Arsenault2ba54c32013-10-30 23:30:05 +0000415 DAG.getConstant(IncrementSize, TLI.getPointerTy(AS)));
Duncan Sands1826ded2007-10-28 12:59:45 +0000416 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000417 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000418 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene39c6d012010-02-15 17:00:31 +0000419 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000420 Alignment, ST->getTBAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000421
Dan Gohman198b7ff2011-11-03 21:49:52 +0000422 SDValue Result =
423 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman13477152011-11-11 23:58:27 +0000424 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000425}
426
427/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000428static void
429ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
430 const TargetLowering &TLI,
431 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmand257a462011-11-16 02:43:15 +0000432 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
433 "unaligned indexed loads not implemented!");
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000434 SDValue Chain = LD->getChain();
435 SDValue Ptr = LD->getBasePtr();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000436 EVT VT = LD->getValueType(0);
437 EVT LoadedVT = LD->getMemoryVT();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000438 SDLoc dl(LD);
Duncan Sands13237ac2008-06-06 12:08:01 +0000439 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson117c9e82009-08-12 00:36:31 +0000440 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Roteme0f84d32012-08-09 01:56:44 +0000441 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands8f352fe2008-12-12 21:47:02 +0000442 // Expand to a (misaligned) integer load of the same size,
443 // then bitconvert to floating point or vector.
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000444 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr,
445 LD->getMemOperand());
Wesley Peck527da1b2010-11-23 03:31:01 +0000446 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Roteme0f84d32012-08-09 01:56:44 +0000447 if (LoadedVT != VT)
448 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
449 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000450
Dan Gohman198b7ff2011-11-03 21:49:52 +0000451 ValResult = Result;
452 ChainResult = Chain;
453 return;
Duncan Sands8f352fe2008-12-12 21:47:02 +0000454 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000455
Chris Lattner1ffcf522010-09-21 16:36:31 +0000456 // Copy the value to a (aligned) stack slot using (unaligned) integer
457 // loads and stores, then do a (aligned) load from the stack slot.
Patrik Hagglundbad545c2012-12-19 11:48:16 +0000458 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000459 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
460 unsigned RegBytes = RegVT.getSizeInBits() / 8;
461 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
462
463 // Make sure the stack slot is also aligned for the register type.
464 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
465
466 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
467 SmallVector<SDValue, 8> Stores;
468 SDValue StackPtr = StackBase;
469 unsigned Offset = 0;
470
471 // Do all but one copies using the full register width.
472 for (unsigned i = 1; i < NumRegs; i++) {
473 // Load one integer register's worth from the original location.
474 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
475 LD->getPointerInfo().getWithOffset(Offset),
476 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +0000477 LD->isInvariant(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000478 MinAlign(LD->getAlignment(), Offset),
479 LD->getTBAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000480 // Follow the load with a store to the stack slot. Remember the store.
481 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner676c61d2010-09-21 18:41:36 +0000482 MachinePointerInfo(), false, false, 0));
Chris Lattner1ffcf522010-09-21 16:36:31 +0000483 // Increment the pointers.
484 Offset += RegBytes;
485 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
486 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
487 Increment);
488 }
489
490 // The last copy may be partial. Do an extending load.
491 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
492 8 * (LoadedBytes - Offset));
Stuart Hastings81c43062011-02-16 16:23:55 +0000493 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000494 LD->getPointerInfo().getWithOffset(Offset),
495 MemVT, LD->isVolatile(),
496 LD->isNonTemporal(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000497 MinAlign(LD->getAlignment(), Offset),
498 LD->getTBAAInfo());
Chris Lattner1ffcf522010-09-21 16:36:31 +0000499 // Follow the load with a store to the stack slot. Remember the store.
500 // On big-endian machines this requires a truncating store to ensure
501 // that the bits end up in the right place.
502 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
503 MachinePointerInfo(), MemVT,
504 false, false, 0));
505
506 // The order of the stores doesn't matter - say it with a TokenFactor.
Craig Topper48d114b2014-04-26 18:35:24 +0000507 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Chris Lattner1ffcf522010-09-21 16:36:31 +0000508
509 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastings81c43062011-02-16 16:23:55 +0000510 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000511 MachinePointerInfo(), LoadedVT, false, false, 0);
512
513 // Callers expect a MERGE_VALUES node.
Dan Gohman198b7ff2011-11-03 21:49:52 +0000514 ValResult = Load;
515 ChainResult = TF;
516 return;
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000517 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000518 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner09c03932007-11-19 21:38:03 +0000519 "Unaligned load of unsupported type.");
520
Dale Johannesenbf76a082008-02-27 22:36:00 +0000521 // Compute the new VT that is half the size of the old one. This is an
522 // integer MVT.
Duncan Sands13237ac2008-06-06 12:08:01 +0000523 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Anderson53aa7a92009-08-10 22:56:29 +0000524 EVT NewLoadedVT;
Owen Anderson117c9e82009-08-12 00:36:31 +0000525 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattner09c03932007-11-19 21:38:03 +0000526 NumBits >>= 1;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000527
Chris Lattner09c03932007-11-19 21:38:03 +0000528 unsigned Alignment = LD->getAlignment();
529 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000530 ISD::LoadExtType HiExtType = LD->getExtensionType();
531
532 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
533 if (HiExtType == ISD::NON_EXTLOAD)
534 HiExtType = ISD::ZEXTLOAD;
535
536 // Load the value in two parts
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000537 SDValue Lo, Hi;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000538 if (TLI.isLittleEndian()) {
Stuart Hastings81c43062011-02-16 16:23:55 +0000539 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000540 NewLoadedVT, LD->isVolatile(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000541 LD->isNonTemporal(), Alignment, LD->getTBAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000542 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000543 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000544 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000545 LD->getPointerInfo().getWithOffset(IncrementSize),
546 NewLoadedVT, LD->isVolatile(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000547 LD->isNonTemporal(), MinAlign(Alignment, IncrementSize),
548 LD->getTBAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000549 } else {
Stuart Hastings81c43062011-02-16 16:23:55 +0000550 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattner1ffcf522010-09-21 16:36:31 +0000551 NewLoadedVT, LD->isVolatile(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000552 LD->isNonTemporal(), Alignment, LD->getTBAAInfo());
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000553 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000554 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Stuart Hastings81c43062011-02-16 16:23:55 +0000555 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattner1ffcf522010-09-21 16:36:31 +0000556 LD->getPointerInfo().getWithOffset(IncrementSize),
557 NewLoadedVT, LD->isVolatile(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000558 LD->isNonTemporal(), MinAlign(Alignment, IncrementSize),
559 LD->getTBAAInfo());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000560 }
561
562 // aggregate the two parts
Owen Andersonb2c80da2011-02-25 21:41:48 +0000563 SDValue ShiftAmount = DAG.getConstant(NumBits,
564 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000565 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
566 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000567
Owen Anderson9f944592009-08-11 20:47:22 +0000568 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000569 Hi.getValue(1));
570
Dan Gohman198b7ff2011-11-03 21:49:52 +0000571 ValResult = Result;
572 ChainResult = TF;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000573}
Evan Cheng003feb02007-01-04 21:56:39 +0000574
Nate Begeman6f94f612008-04-25 18:07:40 +0000575/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
576/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
577/// is necessary to spill the vector being inserted into to memory, perform
578/// the insert there, and then read the result back.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000579SDValue SelectionDAGLegalize::
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000580PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000581 SDLoc dl) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000582 SDValue Tmp1 = Vec;
583 SDValue Tmp2 = Val;
584 SDValue Tmp3 = Idx;
Scott Michelcf0da6c2009-02-17 22:15:04 +0000585
Nate Begeman6f94f612008-04-25 18:07:40 +0000586 // If the target doesn't support this, we have to spill the input vector
587 // to a temporary stack slot, update the element, then reload it. This is
588 // badness. We could also load the value into a vector register (either
589 // with a "move to register" or "extload into register" instruction, then
590 // permute it into place, if the idx is a constant and if the idx is
591 // supported by the target.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000592 EVT VT = Tmp1.getValueType();
593 EVT EltVT = VT.getVectorElementType();
594 EVT IdxVT = Tmp3.getValueType();
595 EVT PtrVT = TLI.getPointerTy();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000596 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman6f94f612008-04-25 18:07:40 +0000597
Evan Cheng0e9d9ca2009-10-18 18:16:27 +0000598 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
599
Nate Begeman6f94f612008-04-25 18:07:40 +0000600 // Store the vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000601 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +0000602 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +0000603 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000604
605 // Truncate or zero extend offset to target pointer type.
Duncan Sands11dd4242008-06-08 20:54:56 +0000606 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000607 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman6f94f612008-04-25 18:07:40 +0000608 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +0000609 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000610 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
611 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman6f94f612008-04-25 18:07:40 +0000612 // Store the scalar value.
Chris Lattnera35499e2010-09-21 07:32:19 +0000613 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene39c6d012010-02-15 17:00:31 +0000614 false, false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000615 // Load the updated vector.
Dale Johannesenad00f6e2009-02-02 20:41:04 +0000616 return DAG.getLoad(VT, dl, Ch, StackPtr,
Stephen Lincfe7f352013-07-08 00:37:03 +0000617 MachinePointerInfo::getFixedStack(SPFI), false, false,
Pete Cooper82cd9e82011-11-08 18:42:53 +0000618 false, 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000619}
620
Mon P Wang4dd832d2008-12-09 05:46:39 +0000621
Eli Friedmana8f9a022009-05-27 02:16:40 +0000622SDValue SelectionDAGLegalize::
Andrew Trickef9de2a2013-05-25 02:42:55 +0000623ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) {
Eli Friedmana8f9a022009-05-27 02:16:40 +0000624 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
625 // SCALAR_TO_VECTOR requires that the type of the value being inserted
626 // match the element type of the vector being created, except for
627 // integers in which case the inserted value can be over width.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000628 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedmana8f9a022009-05-27 02:16:40 +0000629 if (Val.getValueType() == EltVT ||
630 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
631 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
632 Vec.getValueType(), Val);
633
634 unsigned NumElts = Vec.getValueType().getVectorNumElements();
635 // We generate a shuffle of InVec and ScVec, so the shuffle mask
636 // should be 0,1,2,3,4,5... with the appropriate element replaced with
637 // elt 0 of the RHS.
638 SmallVector<int, 8> ShufOps;
639 for (unsigned i = 0; i != NumElts; ++i)
640 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
641
642 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
643 &ShufOps[0]);
644 }
645 }
646 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
647}
648
Eli Friedmanaee3f622009-06-06 07:04:42 +0000649SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
650 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
651 // FIXME: We shouldn't do this for TargetConstantFP's.
652 // FIXME: move this to the DAG Combiner! Note that we can't regress due
653 // to phase ordering between legalized code and the dag combiner. This
654 // probably means that we need to integrate dag combiner and legalizer
655 // together.
656 // We generally can't do this one for long doubles.
Nadav Rotem2a148662012-07-11 11:02:16 +0000657 SDValue Chain = ST->getChain();
658 SDValue Ptr = ST->getBasePtr();
Eli Friedmanaee3f622009-06-06 07:04:42 +0000659 unsigned Alignment = ST->getAlignment();
660 bool isVolatile = ST->isVolatile();
David Greene39c6d012010-02-15 17:00:31 +0000661 bool isNonTemporal = ST->isNonTemporal();
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000662 const MDNode *TBAAInfo = ST->getTBAAInfo();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000663 SDLoc dl(ST);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000664 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson9f944592009-08-11 20:47:22 +0000665 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohmane49e7422011-07-15 22:39:09 +0000666 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000667 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedmanaee3f622009-06-06 07:04:42 +0000668 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson9f944592009-08-11 20:47:22 +0000669 MVT::i32);
Nadav Rotem2a148662012-07-11 11:02:16 +0000670 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000671 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000672 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000673
Chris Lattner6963c1f2010-09-21 17:42:31 +0000674 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000675 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohmane49e7422011-07-15 22:39:09 +0000676 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem2a148662012-07-11 11:02:16 +0000677 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson9f944592009-08-11 20:47:22 +0000678 zextOrTrunc(64), MVT::i64);
Nadav Rotem2a148662012-07-11 11:02:16 +0000679 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000680 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Chris Lattner6963c1f2010-09-21 17:42:31 +0000681 }
Wesley Peck527da1b2010-11-23 03:31:01 +0000682
Dan Gohmane49e7422011-07-15 22:39:09 +0000683 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedmanaee3f622009-06-06 07:04:42 +0000684 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
685 // stores. If the target supports neither 32- nor 64-bits, this
686 // xform is certainly not worth it.
687 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad583abbc2010-12-07 08:25:19 +0000688 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson9f944592009-08-11 20:47:22 +0000689 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000690 if (TLI.isBigEndian()) std::swap(Lo, Hi);
691
Nadav Rotem2a148662012-07-11 11:02:16 +0000692 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000693 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotem2a148662012-07-11 11:02:16 +0000694 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000695 DAG.getConstant(4, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000696 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattner6963c1f2010-09-21 17:42:31 +0000697 ST->getPointerInfo().getWithOffset(4),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000698 isVolatile, isNonTemporal, MinAlign(Alignment, 4U),
699 TBAAInfo);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000700
Owen Anderson9f944592009-08-11 20:47:22 +0000701 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000702 }
703 }
704 }
Craig Topperc0196b12014-04-14 00:51:57 +0000705 return SDValue(nullptr, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +0000706}
707
Nadav Rotemde6fd282012-07-11 08:52:09 +0000708void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
709 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000710 SDValue Chain = ST->getChain();
711 SDValue Ptr = ST->getBasePtr();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000712 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000713
714 unsigned Alignment = ST->getAlignment();
715 bool isVolatile = ST->isVolatile();
716 bool isNonTemporal = ST->isNonTemporal();
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000717 const MDNode *TBAAInfo = ST->getTBAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000718
719 if (!ST->isTruncatingStore()) {
720 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
721 ReplaceNode(ST, OptStore);
722 return;
723 }
724
725 {
Nadav Rotem2a148662012-07-11 11:02:16 +0000726 SDValue Value = ST->getValue();
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000727 MVT VT = Value.getSimpleValueType();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000728 switch (TLI.getOperationAction(ISD::STORE, VT)) {
729 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000730 case TargetLowering::Legal: {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000731 // If this is an unaligned store and the target doesn't support it,
732 // expand it.
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000733 unsigned AS = ST->getAddressSpace();
734 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT(), AS)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000735 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000736 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000737 if (ST->getAlignment() < ABIAlignment)
738 ExpandUnalignedStore(cast<StoreSDNode>(Node),
739 DAG, TLI, this);
740 }
741 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000742 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000743 case TargetLowering::Custom: {
744 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
745 if (Res.getNode())
746 ReplaceNode(SDValue(Node, 0), Res);
747 return;
748 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000749 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000750 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT);
Tom Stellardb785bd72012-12-10 21:41:54 +0000751 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
752 "Can only promote stores to same size type");
753 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000754 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000755 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000756 ST->getPointerInfo(), isVolatile,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000757 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000758 ReplaceNode(SDValue(Node, 0), Result);
759 break;
760 }
761 }
762 return;
763 }
764 } else {
Nadav Rotem2a148662012-07-11 11:02:16 +0000765 SDValue Value = ST->getValue();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000766
767 EVT StVT = ST->getMemoryVT();
768 unsigned StWidth = StVT.getSizeInBits();
769
770 if (StWidth != StVT.getStoreSizeInBits()) {
771 // Promote to a byte-sized store with upper bits zero if not
772 // storing an integral number of bytes. For example, promote
773 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
774 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
775 StVT.getStoreSizeInBits());
Nadav Rotem2a148662012-07-11 11:02:16 +0000776 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000777 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000778 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000779 NVT, isVolatile, isNonTemporal, Alignment,
780 TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000781 ReplaceNode(SDValue(Node, 0), Result);
782 } else if (StWidth & (StWidth - 1)) {
783 // If not storing a power-of-2 number of bits, expand as two stores.
784 assert(!StVT.isVector() && "Unsupported truncstore!");
785 unsigned RoundWidth = 1 << Log2_32(StWidth);
786 assert(RoundWidth < StWidth);
787 unsigned ExtraWidth = StWidth - RoundWidth;
788 assert(ExtraWidth < RoundWidth);
789 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
790 "Store size not an integral number of bytes!");
791 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
792 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
793 SDValue Lo, Hi;
794 unsigned IncrementSize;
795
796 if (TLI.isLittleEndian()) {
797 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
798 // Store the bottom RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000799 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemde6fd282012-07-11 08:52:09 +0000800 RoundVT,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000801 isVolatile, isNonTemporal, Alignment,
802 TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000803
804 // Store the remaining ExtraWidth bits.
805 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000806 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +0000807 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000808 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000809 DAG.getConstant(RoundWidth,
Jack Carter5c0af482013-11-19 23:43:22 +0000810 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000811 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000812 ST->getPointerInfo().getWithOffset(IncrementSize),
813 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000814 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000815 } else {
816 // Big endian - avoid unaligned stores.
817 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
818 // Store the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +0000819 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000820 DAG.getConstant(ExtraWidth,
Jack Carter5c0af482013-11-19 23:43:22 +0000821 TLI.getShiftAmountTy(Value.getValueType())));
Nadav Rotem2a148662012-07-11 11:02:16 +0000822 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000823 RoundVT, isVolatile, isNonTemporal, Alignment,
824 TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000825
826 // Store the remaining ExtraWidth bits.
827 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +0000828 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Jack Carter5c0af482013-11-19 23:43:22 +0000829 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +0000830 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +0000831 ST->getPointerInfo().getWithOffset(IncrementSize),
832 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000833 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000834 }
835
836 // The order of the stores doesn't matter.
837 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
838 ReplaceNode(SDValue(Node, 0), Result);
839 } else {
Patrik Hagglundd7cdcf82012-12-19 08:28:51 +0000840 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(),
841 StVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000842 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000843 case TargetLowering::Legal: {
844 unsigned AS = ST->getAddressSpace();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000845 // If this is an unaligned store and the target doesn't support it,
846 // expand it.
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000847 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT(), AS)) {
Nadav Rotemde6fd282012-07-11 08:52:09 +0000848 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000849 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000850 if (ST->getAlignment() < ABIAlignment)
851 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
852 }
853 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000854 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000855 case TargetLowering::Custom: {
856 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
857 if (Res.getNode())
858 ReplaceNode(SDValue(Node, 0), Res);
859 return;
860 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000861 case TargetLowering::Expand:
862 assert(!StVT.isVector() &&
863 "Vector Stores are handled in LegalizeVectorOps");
864
865 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem2a148662012-07-11 11:02:16 +0000866 assert(TLI.isTypeLegal(StVT) &&
867 "Do not know how to expand this store!");
868 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000869 SDValue Result =
Nadav Rotem2a148662012-07-11 11:02:16 +0000870 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000871 isVolatile, isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000872 ReplaceNode(SDValue(Node, 0), Result);
873 break;
874 }
875 }
876 }
877}
878
879void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
880 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem2a148662012-07-11 11:02:16 +0000881 SDValue Chain = LD->getChain(); // The chain.
882 SDValue Ptr = LD->getBasePtr(); // The base pointer.
883 SDValue Value; // The value returned by the load op.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000884 SDLoc dl(Node);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000885
886 ISD::LoadExtType ExtType = LD->getExtensionType();
887 if (ExtType == ISD::NON_EXTLOAD) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000888 MVT VT = Node->getSimpleValueType(0);
Nadav Rotem2a148662012-07-11 11:02:16 +0000889 SDValue RVal = SDValue(Node, 0);
890 SDValue RChain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000891
892 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
893 default: llvm_unreachable("This action is not supported yet!");
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000894 case TargetLowering::Legal: {
895 unsigned AS = LD->getAddressSpace();
Evan Chengc5735992012-09-18 01:34:40 +0000896 // If this is an unaligned load and the target doesn't support it,
897 // expand it.
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000898 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT(), AS)) {
Evan Chengc5735992012-09-18 01:34:40 +0000899 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
900 unsigned ABIAlignment =
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000901 TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Chengc5735992012-09-18 01:34:40 +0000902 if (LD->getAlignment() < ABIAlignment){
903 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
904 }
905 }
906 break;
Matt Arsenault1b55dd92014-02-05 23:16:05 +0000907 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000908 case TargetLowering::Custom: {
Evan Chengc5735992012-09-18 01:34:40 +0000909 SDValue Res = TLI.LowerOperation(RVal, DAG);
910 if (Res.getNode()) {
911 RVal = Res;
912 RChain = Res.getValue(1);
913 }
914 break;
Nadav Rotem2a148662012-07-11 11:02:16 +0000915 }
Nadav Rotemde6fd282012-07-11 08:52:09 +0000916 case TargetLowering::Promote: {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +0000917 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Tom Stellard30e2aa52012-12-10 21:41:58 +0000918 assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
919 "Can only promote loads to same size type");
Nadav Rotemde6fd282012-07-11 08:52:09 +0000920
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000921 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand());
Nadav Rotem2a148662012-07-11 11:02:16 +0000922 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
923 RChain = Res.getValue(1);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000924 break;
925 }
926 }
Nadav Rotem2a148662012-07-11 11:02:16 +0000927 if (RChain.getNode() != Node) {
928 assert(RVal.getNode() != Node && "Load must be completely replaced");
929 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
930 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000931 ReplacedNode(Node);
932 }
933 return;
934 }
935
936 EVT SrcVT = LD->getMemoryVT();
937 unsigned SrcWidth = SrcVT.getSizeInBits();
938 unsigned Alignment = LD->getAlignment();
939 bool isVolatile = LD->isVolatile();
940 bool isNonTemporal = LD->isNonTemporal();
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000941 const MDNode *TBAAInfo = LD->getTBAAInfo();
Nadav Rotemde6fd282012-07-11 08:52:09 +0000942
943 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
944 // Some targets pretend to have an i1 loading operation, and actually
945 // load an i8. This trick is correct for ZEXTLOAD because the top 7
946 // bits are guaranteed to be zero; it helps the optimizers understand
947 // that these bits are zero. It is also useful for EXTLOAD, since it
948 // tells the optimizers that those bits are undefined. It would be
949 // nice to have an effective generic way of getting these benefits...
950 // Until such a way is found, don't insist on promoting i1 here.
951 (SrcVT != MVT::i1 ||
952 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
953 // Promote to a byte-sized load if not loading an integral number of
954 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
955 unsigned NewWidth = SrcVT.getStoreSizeInBits();
956 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
957 SDValue Ch;
958
959 // The extra bits are guaranteed to be zero, since we stored them that
960 // way. A zext load from NVT thus automatically gives zext from SrcVT.
961
962 ISD::LoadExtType NewExtType =
963 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
964
965 SDValue Result =
966 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +0000967 Chain, Ptr, LD->getPointerInfo(),
Richard Sandiford39c1ce42013-10-28 11:17:59 +0000968 NVT, isVolatile, isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +0000969
970 Ch = Result.getValue(1); // The chain.
971
972 if (ExtType == ISD::SEXTLOAD)
973 // Having the top bits zero doesn't help when sign extending.
974 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
975 Result.getValueType(),
976 Result, DAG.getValueType(SrcVT));
977 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
978 // All the top bits are guaranteed to be zero - inform the optimizers.
979 Result = DAG.getNode(ISD::AssertZext, dl,
980 Result.getValueType(), Result,
981 DAG.getValueType(SrcVT));
982
Nadav Rotem2a148662012-07-11 11:02:16 +0000983 Value = Result;
984 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +0000985 } else if (SrcWidth & (SrcWidth - 1)) {
986 // If not loading a power-of-2 number of bits, expand as two loads.
987 assert(!SrcVT.isVector() && "Unsupported extload!");
988 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
989 assert(RoundWidth < SrcWidth);
990 unsigned ExtraWidth = SrcWidth - RoundWidth;
991 assert(ExtraWidth < RoundWidth);
992 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
993 "Load size not an integral number of bytes!");
994 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
995 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
996 SDValue Lo, Hi, Ch;
997 unsigned IncrementSize;
998
999 if (TLI.isLittleEndian()) {
1000 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1001 // Load the bottom RoundWidth bits.
1002 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem2a148662012-07-11 11:02:16 +00001003 Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001004 LD->getPointerInfo(), RoundVT, isVolatile,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00001005 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001006
1007 // Load the remaining ExtraWidth bits.
1008 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001009 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +00001010 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotem2a148662012-07-11 11:02:16 +00001011 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001012 LD->getPointerInfo().getWithOffset(IncrementSize),
1013 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00001014 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001015
1016 // Build a factor node to remember that this load is independent of
1017 // the other one.
1018 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1019 Hi.getValue(1));
1020
1021 // Move the top bits to the right place.
1022 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1023 DAG.getConstant(RoundWidth,
Jack Carter5c0af482013-11-19 23:43:22 +00001024 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001025
1026 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001027 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001028 } else {
1029 // Big endian - avoid unaligned loads.
1030 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1031 // Load the top RoundWidth bits.
Nadav Rotem2a148662012-07-11 11:02:16 +00001032 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001033 LD->getPointerInfo(), RoundVT, isVolatile,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00001034 isNonTemporal, Alignment, TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001035
1036 // Load the remaining ExtraWidth bits.
1037 IncrementSize = RoundWidth / 8;
Nadav Rotem2a148662012-07-11 11:02:16 +00001038 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Tom Stellard838e2342013-08-26 15:06:10 +00001039 DAG.getConstant(IncrementSize, Ptr.getValueType()));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001040 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem2a148662012-07-11 11:02:16 +00001041 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemde6fd282012-07-11 08:52:09 +00001042 LD->getPointerInfo().getWithOffset(IncrementSize),
1043 ExtraVT, isVolatile, isNonTemporal,
Richard Sandiford39c1ce42013-10-28 11:17:59 +00001044 MinAlign(Alignment, IncrementSize), TBAAInfo);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001045
1046 // Build a factor node to remember that this load is independent of
1047 // the other one.
1048 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1049 Hi.getValue(1));
1050
1051 // Move the top bits to the right place.
1052 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1053 DAG.getConstant(ExtraWidth,
Jack Carter5c0af482013-11-19 23:43:22 +00001054 TLI.getShiftAmountTy(Hi.getValueType())));
Nadav Rotemde6fd282012-07-11 08:52:09 +00001055
1056 // Join the hi and lo parts.
Nadav Rotem2a148662012-07-11 11:02:16 +00001057 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001058 }
1059
Nadav Rotem2a148662012-07-11 11:02:16 +00001060 Chain = Ch;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001061 } else {
1062 bool isCustom = false;
Patrik Hagglund55d6f472012-12-14 09:05:13 +00001063 switch (TLI.getLoadExtAction(ExtType, SrcVT.getSimpleVT())) {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001064 default: llvm_unreachable("This action is not supported yet!");
1065 case TargetLowering::Custom:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001066 isCustom = true;
1067 // FALLTHROUGH
Nadav Rotem2a148662012-07-11 11:02:16 +00001068 case TargetLowering::Legal: {
Matt Arsenault95b714c2014-03-11 00:01:25 +00001069 Value = SDValue(Node, 0);
1070 Chain = SDValue(Node, 1);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001071
Matt Arsenault95b714c2014-03-11 00:01:25 +00001072 if (isCustom) {
1073 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1074 if (Res.getNode()) {
1075 Value = Res;
1076 Chain = Res.getValue(1);
1077 }
1078 } else {
1079 // If this is an unaligned load and the target doesn't support
1080 // it, expand it.
1081 EVT MemVT = LD->getMemoryVT();
1082 unsigned AS = LD->getAddressSpace();
1083 if (!TLI.allowsUnalignedMemoryAccesses(MemVT, AS)) {
1084 Type *Ty =
1085 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1086 unsigned ABIAlignment =
1087 TLI.getDataLayout()->getABITypeAlignment(Ty);
1088 if (LD->getAlignment() < ABIAlignment){
1089 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
1090 DAG, TLI, Value, Chain);
1091 }
1092 }
1093 }
1094 break;
Nadav Rotem2a148662012-07-11 11:02:16 +00001095 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001096 case TargetLowering::Expand:
Matt Arsenault95b714c2014-03-11 00:01:25 +00001097 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) &&
1098 TLI.isTypeLegal(SrcVT)) {
1099 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
1100 LD->getMemOperand());
1101 unsigned ExtendOp;
1102 switch (ExtType) {
1103 case ISD::EXTLOAD:
1104 ExtendOp = (SrcVT.isFloatingPoint() ?
1105 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1106 break;
1107 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1108 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1109 default: llvm_unreachable("Unexpected extend load type!");
1110 }
1111 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1112 Chain = Load.getValue(1);
1113 break;
1114 }
Nadav Rotemde6fd282012-07-11 08:52:09 +00001115
Matt Arsenault95b714c2014-03-11 00:01:25 +00001116 assert(!SrcVT.isVector() &&
1117 "Vector Loads are handled in LegalizeVectorOps");
Nadav Rotemde6fd282012-07-11 08:52:09 +00001118
Matt Arsenault95b714c2014-03-11 00:01:25 +00001119 // FIXME: This does not work for vectors on most targets. Sign-
1120 // and zero-extend operations are currently folded into extending
1121 // loads, whether they are legal or not, and then we end up here
1122 // without any support for legalizing them.
1123 assert(ExtType != ISD::EXTLOAD &&
1124 "EXTLOAD should always be supported!");
1125 // Turn the unsupported load into an EXTLOAD followed by an
1126 // explicit zero/sign extend inreg.
1127 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl,
1128 Node->getValueType(0),
1129 Chain, Ptr, SrcVT,
1130 LD->getMemOperand());
1131 SDValue ValRes;
1132 if (ExtType == ISD::SEXTLOAD)
1133 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1134 Result.getValueType(),
1135 Result, DAG.getValueType(SrcVT));
1136 else
1137 ValRes = DAG.getZeroExtendInReg(Result, dl,
1138 SrcVT.getScalarType());
1139 Value = ValRes;
1140 Chain = Result.getValue(1);
1141 break;
Nadav Rotemde6fd282012-07-11 08:52:09 +00001142 }
1143 }
1144
1145 // Since loads produce two values, make sure to remember that we legalized
1146 // both of them.
Nadav Rotem2a148662012-07-11 11:02:16 +00001147 if (Chain.getNode() != Node) {
1148 assert(Value.getNode() != Node && "Load must be completely replaced");
1149 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1150 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Nadav Rotemde6fd282012-07-11 08:52:09 +00001151 ReplacedNode(Node);
1152 }
1153}
1154
Dan Gohmanad946082011-07-15 21:42:20 +00001155/// LegalizeOp - Return a legal replacement for the given operation, with
1156/// all legal operands.
Dan Gohman198b7ff2011-11-03 21:49:52 +00001157void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1158 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1159 return;
Scott Michelcf0da6c2009-02-17 22:15:04 +00001160
Eli Friedman5e0d1502009-05-24 02:46:31 +00001161 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001162 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1163 TargetLowering::TypeLegal &&
Eli Friedman5e0d1502009-05-24 02:46:31 +00001164 "Unexpected illegal type!");
1165
1166 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohmane49e7422011-07-15 22:39:09 +00001167 assert((TLI.getTypeAction(*DAG.getContext(),
1168 Node->getOperand(i).getValueType()) ==
1169 TargetLowering::TypeLegal ||
Eli Friedman5e0d1502009-05-24 02:46:31 +00001170 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1171 "Unexpected illegal type!");
Chris Lattnerdc750592005-01-07 07:47:09 +00001172
Eli Friedman21d349b2009-05-27 01:25:56 +00001173 // Figure out the correct action; the way to query this varies by opcode
Bill Wendlingfb4ee9b2011-01-26 22:21:35 +00001174 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman21d349b2009-05-27 01:25:56 +00001175 bool SimpleFinishLegalizing = true;
Chris Lattnerdc750592005-01-07 07:47:09 +00001176 switch (Node->getOpcode()) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001177 case ISD::INTRINSIC_W_CHAIN:
1178 case ISD::INTRINSIC_WO_CHAIN:
1179 case ISD::INTRINSIC_VOID:
Eli Friedman21d349b2009-05-27 01:25:56 +00001180 case ISD::STACKSAVE:
Owen Anderson9f944592009-08-11 20:47:22 +00001181 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman21d349b2009-05-27 01:25:56 +00001182 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00001183 case ISD::VAARG:
1184 Action = TLI.getOperationAction(Node->getOpcode(),
1185 Node->getValueType(0));
1186 if (Action != TargetLowering::Promote)
1187 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1188 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001189 case ISD::SINT_TO_FP:
1190 case ISD::UINT_TO_FP:
1191 case ISD::EXTRACT_VECTOR_ELT:
1192 Action = TLI.getOperationAction(Node->getOpcode(),
1193 Node->getOperand(0).getValueType());
1194 break;
1195 case ISD::FP_ROUND_INREG:
1196 case ISD::SIGN_EXTEND_INREG: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001197 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00001198 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1199 break;
1200 }
Eli Friedman342e8df2011-08-24 20:50:09 +00001201 case ISD::ATOMIC_STORE: {
1202 Action = TLI.getOperationAction(Node->getOpcode(),
1203 Node->getOperand(2).getValueType());
1204 break;
1205 }
Eli Friedmane1bc3792009-05-28 03:06:16 +00001206 case ISD::SELECT_CC:
1207 case ISD::SETCC:
1208 case ISD::BR_CC: {
1209 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1210 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1211 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001212 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType();
Eli Friedmane1bc3792009-05-28 03:06:16 +00001213 ISD::CondCode CCCode =
1214 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1215 Action = TLI.getCondCodeAction(CCCode, OpVT);
1216 if (Action == TargetLowering::Legal) {
1217 if (Node->getOpcode() == ISD::SELECT_CC)
1218 Action = TLI.getOperationAction(Node->getOpcode(),
1219 Node->getValueType(0));
1220 else
1221 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1222 }
1223 break;
1224 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001225 case ISD::LOAD:
1226 case ISD::STORE:
Eli Friedman5df72022009-05-28 03:56:57 +00001227 // FIXME: Model these properly. LOAD and STORE are complicated, and
1228 // STORE expects the unlegalized operand in some cases.
1229 SimpleFinishLegalizing = false;
1230 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001231 case ISD::CALLSEQ_START:
1232 case ISD::CALLSEQ_END:
Eli Friedman5df72022009-05-28 03:56:57 +00001233 // FIXME: This shouldn't be necessary. These nodes have special properties
1234 // dealing with the recursive nature of legalization. Removing this
1235 // special case should be done as part of making LegalizeDAG non-recursive.
1236 SimpleFinishLegalizing = false;
1237 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001238 case ISD::EXTRACT_ELEMENT:
1239 case ISD::FLT_ROUNDS_:
1240 case ISD::SADDO:
1241 case ISD::SSUBO:
1242 case ISD::UADDO:
1243 case ISD::USUBO:
1244 case ISD::SMULO:
1245 case ISD::UMULO:
1246 case ISD::FPOWI:
1247 case ISD::MERGE_VALUES:
1248 case ISD::EH_RETURN:
1249 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00001250 case ISD::EH_SJLJ_SETJMP:
1251 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmand6f28342009-05-27 03:33:44 +00001252 // These operations lie about being legal: when they claim to be legal,
1253 // they should actually be expanded.
Eli Friedman21d349b2009-05-27 01:25:56 +00001254 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1255 if (Action == TargetLowering::Legal)
1256 Action = TargetLowering::Expand;
1257 break;
Duncan Sandsa0984362011-09-06 13:37:06 +00001258 case ISD::INIT_TRAMPOLINE:
1259 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman21d349b2009-05-27 01:25:56 +00001260 case ISD::FRAMEADDR:
1261 case ISD::RETURNADDR:
Eli Friedman2892d822009-05-27 12:20:41 +00001262 // These operations lie about being legal: when they claim to be legal,
1263 // they should actually be custom-lowered.
1264 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1265 if (Action == TargetLowering::Legal)
1266 Action = TargetLowering::Custom;
Eli Friedman21d349b2009-05-27 01:25:56 +00001267 break;
Renato Golinc7aea402014-05-06 16:51:25 +00001268 case ISD::READ_REGISTER:
1269 case ISD::WRITE_REGISTER:
1270 // Named register is legal in the DAG, but blocked by register name
1271 // selection if not implemented by target (to chose the correct register)
1272 // They'll be converted to Copy(To/From)Reg.
1273 Action = TargetLowering::Legal;
1274 break;
Shuxin Yangcdde0592012-10-19 20:11:16 +00001275 case ISD::DEBUGTRAP:
1276 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1277 if (Action == TargetLowering::Expand) {
1278 // replace ISD::DEBUGTRAP with ISD::TRAP
1279 SDValue NewVal;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001280 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(),
Shuxin Yang1479fcd2012-10-19 23:00:20 +00001281 Node->getOperand(0));
Shuxin Yangcdde0592012-10-19 20:11:16 +00001282 ReplaceNode(Node, NewVal.getNode());
1283 LegalizeOp(NewVal.getNode());
1284 return;
1285 }
1286 break;
1287
Chris Lattnerdc750592005-01-07 07:47:09 +00001288 default:
Chris Lattner3eb86932005-05-14 06:34:48 +00001289 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman21d349b2009-05-27 01:25:56 +00001290 Action = TargetLowering::Legal;
1291 } else {
1292 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattner3eb86932005-05-14 06:34:48 +00001293 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001294 break;
1295 }
1296
1297 if (SimpleFinishLegalizing) {
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001298 SDNode *NewNode = Node;
Eli Friedman21d349b2009-05-27 01:25:56 +00001299 switch (Node->getOpcode()) {
1300 default: break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001301 case ISD::SHL:
1302 case ISD::SRL:
1303 case ISD::SRA:
1304 case ISD::ROTL:
1305 case ISD::ROTR:
1306 // Legalizing shifts/rotates requires adjusting the shift amount
1307 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001308 if (!Node->getOperand(1).getValueType().isVector()) {
1309 SDValue SAO =
1310 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1311 Node->getOperand(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001312 HandleSDNode Handle(SAO);
1313 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001314 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1315 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001316 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001317 break;
Dan Gohman4906f732009-08-18 23:36:17 +00001318 case ISD::SRL_PARTS:
1319 case ISD::SRA_PARTS:
1320 case ISD::SHL_PARTS:
1321 // Legalizing shifts/rotates requires adjusting the shift amount
1322 // to the appropriate width.
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001323 if (!Node->getOperand(2).getValueType().isVector()) {
1324 SDValue SAO =
1325 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1326 Node->getOperand(2));
Dan Gohman198b7ff2011-11-03 21:49:52 +00001327 HandleSDNode Handle(SAO);
1328 LegalizeOp(SAO.getNode());
Peter Collingbourne8eb05fd2012-05-20 18:36:15 +00001329 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1330 Node->getOperand(1),
1331 Handle.getValue());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001332 }
Dan Gohman2fa67c92009-08-18 23:52:48 +00001333 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00001334 }
1335
Dan Gohman198b7ff2011-11-03 21:49:52 +00001336 if (NewNode != Node) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00001337 DAG.ReplaceAllUsesWith(Node, NewNode);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001338 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1339 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman13477152011-11-11 23:58:27 +00001340 ReplacedNode(Node);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001341 Node = NewNode;
1342 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001343 switch (Action) {
1344 case TargetLowering::Legal:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001345 return;
Nadav Rotem2a148662012-07-11 11:02:16 +00001346 case TargetLowering::Custom: {
Eli Friedman21d349b2009-05-27 01:25:56 +00001347 // FIXME: The handling for custom lowering with multiple results is
1348 // a complete mess.
Nadav Rotem2a148662012-07-11 11:02:16 +00001349 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1350 if (Res.getNode()) {
Dan Gohman198b7ff2011-11-03 21:49:52 +00001351 SmallVector<SDValue, 8> ResultVals;
Eli Friedman21d349b2009-05-27 01:25:56 +00001352 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1353 if (e == 1)
Nadav Rotem2a148662012-07-11 11:02:16 +00001354 ResultVals.push_back(Res);
Eli Friedman21d349b2009-05-27 01:25:56 +00001355 else
Nadav Rotem2a148662012-07-11 11:02:16 +00001356 ResultVals.push_back(Res.getValue(i));
Eli Friedman21d349b2009-05-27 01:25:56 +00001357 }
Nadav Rotem2a148662012-07-11 11:02:16 +00001358 if (Res.getNode() != Node || Res.getResNo() != 0) {
Jakob Stoklund Olesenbeb94692012-04-20 22:08:46 +00001359 DAG.ReplaceAllUsesWith(Node, ResultVals.data());
Dan Gohman198b7ff2011-11-03 21:49:52 +00001360 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1361 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman13477152011-11-11 23:58:27 +00001362 ReplacedNode(Node);
Dan Gohman198b7ff2011-11-03 21:49:52 +00001363 }
1364 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001365 }
Nadav Rotem2a148662012-07-11 11:02:16 +00001366 }
Eli Friedman21d349b2009-05-27 01:25:56 +00001367 // FALL THROUGH
1368 case TargetLowering::Expand:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001369 ExpandNode(Node);
1370 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001371 case TargetLowering::Promote:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001372 PromoteNode(Node);
1373 return;
Eli Friedman21d349b2009-05-27 01:25:56 +00001374 }
1375 }
1376
1377 switch (Node->getOpcode()) {
1378 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001379#ifndef NDEBUG
David Greeneae4f2662010-01-05 01:24:53 +00001380 dbgs() << "NODE: ";
1381 Node->dump( &DAG);
1382 dbgs() << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00001383#endif
Craig Topperee4dab52012-02-05 08:31:47 +00001384 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendlingf359fed2007-11-13 00:44:25 +00001385
Dan Gohman198b7ff2011-11-03 21:49:52 +00001386 case ISD::CALLSEQ_START:
Dan Gohman9b9c9702011-10-29 00:41:52 +00001387 case ISD::CALLSEQ_END:
Dan Gohman198b7ff2011-11-03 21:49:52 +00001388 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001389 case ISD::LOAD: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001390 return LegalizeLoadOps(Node);
Chris Lattnera3b7ef02005-04-10 22:54:25 +00001391 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00001392 case ISD::STORE: {
Nadav Rotemde6fd282012-07-11 08:52:09 +00001393 return LegalizeStoreOps(Node);
Evan Cheng31d15fa2005-12-23 07:29:34 +00001394 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001395 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001396}
1397
Eli Friedman40afdb62009-05-23 22:37:25 +00001398SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1399 SDValue Vec = Op.getOperand(0);
1400 SDValue Idx = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001401 SDLoc dl(Op);
Hal Finkel90adf0f2014-03-30 15:10:18 +00001402
1403 // Before we generate a new store to a temporary stack slot, see if there is
1404 // already one that we can use. There often is because when we scalarize
1405 // vector operations (using SelectionDAG::UnrollVectorOp for example) a whole
1406 // series of EXTRACT_VECTOR_ELT nodes are generated, one for each element in
1407 // the vector. If all are expanded here, we don't want one store per vector
1408 // element.
1409 SDValue StackPtr, Ch;
1410 for (SDNode::use_iterator UI = Vec.getNode()->use_begin(),
1411 UE = Vec.getNode()->use_end(); UI != UE; ++UI) {
1412 SDNode *User = *UI;
1413 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(User)) {
1414 if (ST->isIndexed() || ST->isTruncatingStore() ||
1415 ST->getValue() != Vec)
1416 continue;
1417
1418 // Make sure that nothing else could have stored into the destination of
1419 // this store.
1420 if (!ST->getChain().reachesChainWithoutSideEffects(DAG.getEntryNode()))
1421 continue;
1422
1423 StackPtr = ST->getBasePtr();
1424 Ch = SDValue(ST, 0);
1425 break;
1426 }
1427 }
1428
1429 if (!Ch.getNode()) {
1430 // Store the value to a temporary stack slot, then LOAD the returned part.
1431 StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1432 Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1433 MachinePointerInfo(), false, false, 0);
1434 }
Eli Friedman40afdb62009-05-23 22:37:25 +00001435
1436 // Add the offset to the index.
Dan Gohman9b80f862010-02-25 15:20:39 +00001437 unsigned EltSize =
1438 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman40afdb62009-05-23 22:37:25 +00001439 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1440 DAG.getConstant(EltSize, Idx.getValueType()));
1441
Matt Arsenault873bb3e2013-11-17 02:24:21 +00001442 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
Eli Friedman40afdb62009-05-23 22:37:25 +00001443 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1444
Eli Friedman2b77eef2009-07-09 22:01:03 +00001445 if (Op.getValueType().isVector())
Chris Lattner1ffcf522010-09-21 16:36:31 +00001446 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001447 false, false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +00001448 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d178ed2010-09-21 17:04:51 +00001449 MachinePointerInfo(),
1450 Vec.getValueType().getVectorElementType(),
1451 false, false, 0);
Eli Friedman40afdb62009-05-23 22:37:25 +00001452}
1453
David Greenebab5e6e2011-01-26 19:13:22 +00001454SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1455 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1456
1457 SDValue Vec = Op.getOperand(0);
1458 SDValue Part = Op.getOperand(1);
1459 SDValue Idx = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001460 SDLoc dl(Op);
David Greenebab5e6e2011-01-26 19:13:22 +00001461
1462 // Store the value to a temporary stack slot, then LOAD the returned part.
1463
1464 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1465 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1466 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1467
1468 // First store the whole vector.
1469 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1470 false, false, 0);
1471
1472 // Then store the inserted part.
1473
1474 // Add the offset to the index.
1475 unsigned EltSize =
1476 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1477
1478 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1479 DAG.getConstant(EltSize, Idx.getValueType()));
Matt Arsenault64283bd2013-11-17 02:31:26 +00001480 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy());
David Greenebab5e6e2011-01-26 19:13:22 +00001481
1482 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1483 StackPtr);
1484
1485 // Store the subvector.
1486 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1487 MachinePointerInfo(), false, false, 0);
1488
1489 // Finally, load the updated vector.
1490 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001491 false, false, false, 0);
David Greenebab5e6e2011-01-26 19:13:22 +00001492}
1493
Eli Friedmanaee3f622009-06-06 07:04:42 +00001494SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1495 // We can't handle this case efficiently. Allocate a sufficiently
1496 // aligned object on the stack, store each element into it, then load
1497 // the result as a vector.
1498 // Create the stack frame object.
Owen Anderson53aa7a92009-08-10 22:56:29 +00001499 EVT VT = Node->getValueType(0);
Dale Johannesenb91eba32009-11-21 00:53:23 +00001500 EVT EltVT = VT.getVectorElementType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001501 SDLoc dl(Node);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001502 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001503 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattner1ffcf522010-09-21 16:36:31 +00001504 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001505
1506 // Emit a store of each element to the stack slot.
1507 SmallVector<SDValue, 8> Stores;
Dan Gohman9b80f862010-02-25 15:20:39 +00001508 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedmanaee3f622009-06-06 07:04:42 +00001509 // Store (in the right endianness) the elements to memory.
1510 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1511 // Ignore undef elements.
1512 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1513
1514 unsigned Offset = TypeByteSize*i;
1515
1516 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1517 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1518
Dan Gohman2a8e3772010-02-25 20:30:49 +00001519 // If the destination vector element type is narrower than the source
1520 // element type, only store the bits necessary.
1521 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesenb91eba32009-11-21 00:53:23 +00001522 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001523 Node->getOperand(i), Idx,
1524 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001525 EltVT, false, false, 0));
Mon P Wang586d9972010-01-24 00:05:03 +00001526 } else
Jim Grosbach9b7755f2010-07-02 17:41:59 +00001527 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner1ffcf522010-09-21 16:36:31 +00001528 Node->getOperand(i), Idx,
1529 PtrInfo.getWithOffset(Offset),
David Greene39c6d012010-02-15 17:00:31 +00001530 false, false, 0));
Eli Friedmanaee3f622009-06-06 07:04:42 +00001531 }
1532
1533 SDValue StoreChain;
1534 if (!Stores.empty()) // Not all undef elements?
Craig Topper48d114b2014-04-26 18:35:24 +00001535 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001536 else
1537 StoreChain = DAG.getEntryNode();
1538
1539 // Result is a load from the stack slot.
Stephen Lincfe7f352013-07-08 00:37:03 +00001540 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001541 false, false, false, 0);
Eli Friedmanaee3f622009-06-06 07:04:42 +00001542}
1543
Eli Friedman2892d822009-05-27 12:20:41 +00001544SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001545 SDLoc dl(Node);
Eli Friedman2892d822009-05-27 12:20:41 +00001546 SDValue Tmp1 = Node->getOperand(0);
1547 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands4c55f762010-03-12 11:45:06 +00001548
1549 // Get the sign bit of the RHS. First obtain a value that has the same
1550 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman2892d822009-05-27 12:20:41 +00001551 SDValue SignBit;
Duncan Sands4c55f762010-03-12 11:45:06 +00001552 EVT FloatVT = Tmp2.getValueType();
1553 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohmane49e7422011-07-15 22:39:09 +00001554 if (TLI.isTypeLegal(IVT)) {
Duncan Sands4c55f762010-03-12 11:45:06 +00001555 // Convert to an integer with the same sign bit.
Wesley Peck527da1b2010-11-23 03:31:01 +00001556 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman2892d822009-05-27 12:20:41 +00001557 } else {
Duncan Sands4c55f762010-03-12 11:45:06 +00001558 // Store the float to memory, then load the sign part out as an integer.
1559 MVT LoadTy = TLI.getPointerTy();
1560 // First create a temporary that is aligned for both the load and store.
1561 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1562 // Then store the float to it.
Eli Friedman2892d822009-05-27 12:20:41 +00001563 SDValue Ch =
Chris Lattner676c61d2010-09-21 18:41:36 +00001564 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00001565 false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001566 if (TLI.isBigEndian()) {
1567 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1568 // Load out a legal integer with the same sign bit as the float.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001569 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001570 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001571 } else { // Little endian
1572 SDValue LoadPtr = StackPtr;
1573 // The float may be wider than the integer we are going to load. Advance
1574 // the pointer so that the loaded integer will contain the sign bit.
1575 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1576 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
Jack Carter5c0af482013-11-19 23:43:22 +00001577 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(), LoadPtr,
1578 DAG.getConstant(ByteOffset, LoadPtr.getValueType()));
Duncan Sands4c55f762010-03-12 11:45:06 +00001579 // Load a legal integer containing the sign bit.
Chris Lattner1ffcf522010-09-21 16:36:31 +00001580 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001581 false, false, false, 0);
Duncan Sands4c55f762010-03-12 11:45:06 +00001582 // Move the sign bit to the top bit of the loaded integer.
1583 unsigned BitShift = LoadTy.getSizeInBits() -
1584 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1585 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1586 if (BitShift)
1587 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Andersonb2c80da2011-02-25 21:41:48 +00001588 DAG.getConstant(BitShift,
1589 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands4c55f762010-03-12 11:45:06 +00001590 }
Eli Friedman2892d822009-05-27 12:20:41 +00001591 }
Duncan Sands4c55f762010-03-12 11:45:06 +00001592 // Now get the sign bit proper, by seeing whether the value is negative.
Matt Arsenault758659232013-05-18 00:21:46 +00001593 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()),
Duncan Sands4c55f762010-03-12 11:45:06 +00001594 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1595 ISD::SETLT);
Eli Friedman2892d822009-05-27 12:20:41 +00001596 // Get the absolute value of the result.
1597 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1598 // Select between the nabs and abs value based on the sign bit of
1599 // the input.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00001600 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit,
Jack Carter5c0af482013-11-19 23:43:22 +00001601 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1602 AbsVal);
Eli Friedman2892d822009-05-27 12:20:41 +00001603}
1604
Eli Friedman2892d822009-05-27 12:20:41 +00001605void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1606 SmallVectorImpl<SDValue> &Results) {
1607 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1608 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1609 " not tell us which reg is the stack pointer!");
Andrew Trickef9de2a2013-05-25 02:42:55 +00001610 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001611 EVT VT = Node->getValueType(0);
Eli Friedman2892d822009-05-27 12:20:41 +00001612 SDValue Tmp1 = SDValue(Node, 0);
1613 SDValue Tmp2 = SDValue(Node, 1);
1614 SDValue Tmp3 = Node->getOperand(2);
1615 SDValue Chain = Tmp1.getOperand(0);
1616
1617 // Chain the dynamic stack allocation so that it doesn't modify the stack
1618 // pointer when other instructions are using the stack.
Andrew Trickad6d08a2013-05-29 22:03:55 +00001619 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true),
1620 SDLoc(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00001621
1622 SDValue Size = Tmp2.getOperand(1);
1623 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1624 Chain = SP.getValue(1);
1625 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001626 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman2892d822009-05-27 12:20:41 +00001627 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Elena Demikhovsky82a46eb2013-10-14 07:26:51 +00001628 if (Align > StackAlign)
1629 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1,
1630 DAG.getConstant(-(uint64_t)Align, VT));
Eli Friedman2892d822009-05-27 12:20:41 +00001631 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1632
1633 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00001634 DAG.getIntPtrConstant(0, true), SDValue(),
1635 SDLoc(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00001636
1637 Results.push_back(Tmp1);
1638 Results.push_back(Tmp2);
1639}
1640
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001641/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Tom Stellard08690a12013-09-28 02:50:32 +00001642/// condition code CC on the current target.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001643///
Tom Stellard08690a12013-09-28 02:50:32 +00001644/// If the SETCC has been legalized using AND / OR, then the legalized node
Daniel Sandersedc071b2013-11-21 13:24:49 +00001645/// will be stored in LHS. RHS and CC will be set to SDValue(). NeedInvert
1646/// will be set to false.
1647///
Tom Stellard08690a12013-09-28 02:50:32 +00001648/// If the SETCC has been legalized by using getSetCCSwappedOperands(),
Daniel Sandersedc071b2013-11-21 13:24:49 +00001649/// then the values of LHS and RHS will be swapped, CC will be set to the
1650/// new condition, and NeedInvert will be set to false.
1651///
1652/// If the SETCC has been legalized using the inverse condcode, then LHS and
1653/// RHS will be unchanged, CC will set to the inverted condcode, and NeedInvert
1654/// will be set to true. The caller must invert the result of the SETCC with
Pete Cooper7fd1d722014-05-12 23:26:58 +00001655/// SelectionDAG::getLogicalNOT() or take equivalent action to swap the effect
1656/// of a true/false result.
Daniel Sandersedc071b2013-11-21 13:24:49 +00001657///
Tom Stellard08690a12013-09-28 02:50:32 +00001658/// \returns true if the SetCC has been legalized, false if it hasn't.
1659bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001660 SDValue &LHS, SDValue &RHS,
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001661 SDValue &CC,
Daniel Sandersedc071b2013-11-21 13:24:49 +00001662 bool &NeedInvert,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001663 SDLoc dl) {
Patrik Hagglunddeee9002012-12-19 10:09:26 +00001664 MVT OpVT = LHS.getSimpleValueType();
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001665 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
Daniel Sandersedc071b2013-11-21 13:24:49 +00001666 NeedInvert = false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001667 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topperee4dab52012-02-05 08:31:47 +00001668 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001669 case TargetLowering::Legal:
1670 // Nothing to do.
1671 break;
1672 case TargetLowering::Expand: {
Tom Stellardcd428182013-09-28 02:50:38 +00001673 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode);
1674 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1675 std::swap(LHS, RHS);
1676 CC = DAG.getCondCode(InvCC);
1677 return true;
1678 }
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001679 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
1680 unsigned Opc = 0;
1681 switch (CCCode) {
Craig Topperee4dab52012-02-05 08:31:47 +00001682 default: llvm_unreachable("Don't know how to expand this condition!");
Stephen Lincfe7f352013-07-08 00:37:03 +00001683 case ISD::SETO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001684 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1685 == TargetLowering::Legal
1686 && "If SETO is expanded, SETOEQ must be legal!");
1687 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
Stephen Lincfe7f352013-07-08 00:37:03 +00001688 case ISD::SETUO:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001689 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1690 == TargetLowering::Legal
1691 && "If SETUO is expanded, SETUNE must be legal!");
1692 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1693 case ISD::SETOEQ:
1694 case ISD::SETOGT:
1695 case ISD::SETOGE:
1696 case ISD::SETOLT:
1697 case ISD::SETOLE:
Stephen Lincfe7f352013-07-08 00:37:03 +00001698 case ISD::SETONE:
1699 case ISD::SETUEQ:
1700 case ISD::SETUNE:
1701 case ISD::SETUGT:
1702 case ISD::SETUGE:
1703 case ISD::SETULT:
Micah Villmow0242b9b2012-10-10 20:50:51 +00001704 case ISD::SETULE:
1705 // If we are floating point, assign and break, otherwise fall through.
1706 if (!OpVT.isInteger()) {
1707 // We can use the 4th bit to tell if we are the unordered
1708 // or ordered version of the opcode.
1709 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1710 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1711 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1712 break;
1713 }
1714 // Fallthrough if we are unsigned integer.
1715 case ISD::SETLE:
1716 case ISD::SETGT:
1717 case ISD::SETGE:
1718 case ISD::SETLT:
Tom Stellardcd428182013-09-28 02:50:38 +00001719 // We only support using the inverted operation, which is computed above
1720 // and not a different manner of supporting expanding these cases.
1721 llvm_unreachable("Don't know how to expand this condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00001722 case ISD::SETNE:
1723 case ISD::SETEQ:
1724 // Try inverting the result of the inverse condition.
1725 InvCC = CCCode == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ;
1726 if (TLI.isCondCodeLegal(InvCC, OpVT)) {
1727 CC = DAG.getCondCode(InvCC);
1728 NeedInvert = true;
1729 return true;
1730 }
1731 // If inverting the condition didn't work then we have no means to expand
1732 // the condition.
1733 llvm_unreachable("Don't know how to expand this condition!");
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001734 }
Stephen Lincfe7f352013-07-08 00:37:03 +00001735
Micah Villmow0242b9b2012-10-10 20:50:51 +00001736 SDValue SetCC1, SetCC2;
1737 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1738 // If we aren't the ordered or unorder operation,
1739 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1740 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1741 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1742 } else {
1743 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1744 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1745 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1746 }
Dale Johannesenad00f6e2009-02-02 20:41:04 +00001747 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001748 RHS = SDValue();
1749 CC = SDValue();
Tom Stellard08690a12013-09-28 02:50:32 +00001750 return true;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001751 }
1752 }
Tom Stellard08690a12013-09-28 02:50:32 +00001753 return false;
Evan Cheng3b0f5e42008-10-15 02:05:31 +00001754}
1755
Chris Lattner87bc3e72008-01-16 07:45:30 +00001756/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1757/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1758/// a load from the stack slot to DestVT, extending it if needed.
1759/// The resultant code need not be legal.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001760SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00001761 EVT SlotVT,
1762 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001763 SDLoc dl) {
Chris Lattner36e663d2005-12-23 00:16:34 +00001764 // Create the stack frame object.
Bob Wilsonf074ca72009-04-10 18:48:47 +00001765 unsigned SrcAlign =
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001766 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson117c9e82009-08-12 00:36:31 +00001767 getTypeForEVT(*DAG.getContext()));
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001768 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001769
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001770 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1771 int SPFI = StackPtrFI->getIndex();
Chris Lattner6963c1f2010-09-21 17:42:31 +00001772 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001773
Duncan Sands13237ac2008-06-06 12:08:01 +00001774 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1775 unsigned SlotSize = SlotVT.getSizeInBits();
1776 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattner229907c2011-07-18 04:54:35 +00001777 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001778 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001779
Chris Lattner87bc3e72008-01-16 07:45:30 +00001780 // Emit a store to the stack slot. Use a truncstore if the input value is
1781 // later than DestVT.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001782 SDValue Store;
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001783
Chris Lattner87bc3e72008-01-16 07:45:30 +00001784 if (SrcSize > SlotSize)
Dale Johannesena02e45c2009-02-02 22:12:50 +00001785 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001786 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001787 else {
1788 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesena02e45c2009-02-02 22:12:50 +00001789 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001790 PtrInfo, false, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00001791 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001792
Chris Lattner36e663d2005-12-23 00:16:34 +00001793 // Result is a load from the stack slot.
Chris Lattner87bc3e72008-01-16 07:45:30 +00001794 if (SlotSize == DestSize)
Chris Lattner6963c1f2010-09-21 17:42:31 +00001795 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooper82cd9e82011-11-08 18:42:53 +00001796 false, false, false, DestAlign);
Scott Michelcf0da6c2009-02-17 22:15:04 +00001797
Chris Lattner87bc3e72008-01-16 07:45:30 +00001798 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastings81c43062011-02-16 16:23:55 +00001799 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattner6963c1f2010-09-21 17:42:31 +00001800 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner36e663d2005-12-23 00:16:34 +00001801}
1802
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001803SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001804 SDLoc dl(Node);
Chris Lattner6be79822006-04-04 17:23:26 +00001805 // Create a vector sized/aligned stack slot, store the value to element #0,
1806 // then load the whole vector back out.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001807 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman2d489b52008-02-06 22:27:42 +00001808
Evan Cheng0e9d9ca2009-10-18 18:16:27 +00001809 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1810 int SPFI = StackPtrFI->getIndex();
1811
Duncan Sandse4ff21b2009-04-18 20:16:54 +00001812 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1813 StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001814 MachinePointerInfo::getFixedStack(SPFI),
David Greene39c6d012010-02-15 17:00:31 +00001815 Node->getValueType(0).getVectorElementType(),
1816 false, false, 0);
Dale Johannesena02e45c2009-02-02 22:12:50 +00001817 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattnera35499e2010-09-21 07:32:19 +00001818 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001819 false, false, false, 0);
Chris Lattner6be79822006-04-04 17:23:26 +00001820}
1821
Hal Finkelb811b6d2014-03-31 19:42:55 +00001822static bool
1823ExpandBVWithShuffles(SDNode *Node, SelectionDAG &DAG,
1824 const TargetLowering &TLI, SDValue &Res) {
1825 unsigned NumElems = Node->getNumOperands();
1826 SDLoc dl(Node);
1827 EVT VT = Node->getValueType(0);
1828
1829 // Try to group the scalars into pairs, shuffle the pairs together, then
1830 // shuffle the pairs of pairs together, etc. until the vector has
1831 // been built. This will work only if all of the necessary shuffle masks
1832 // are legal.
1833
1834 // We do this in two phases; first to check the legality of the shuffles,
1835 // and next, assuming that all shuffles are legal, to create the new nodes.
1836 for (int Phase = 0; Phase < 2; ++Phase) {
1837 SmallVector<std::pair<SDValue, SmallVector<int, 16> >, 16> IntermedVals,
1838 NewIntermedVals;
1839 for (unsigned i = 0; i < NumElems; ++i) {
1840 SDValue V = Node->getOperand(i);
1841 if (V.getOpcode() == ISD::UNDEF)
1842 continue;
1843
1844 SDValue Vec;
1845 if (Phase)
1846 Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, V);
1847 IntermedVals.push_back(std::make_pair(Vec, SmallVector<int, 16>(1, i)));
1848 }
1849
1850 while (IntermedVals.size() > 2) {
1851 NewIntermedVals.clear();
1852 for (unsigned i = 0, e = (IntermedVals.size() & ~1u); i < e; i += 2) {
1853 // This vector and the next vector are shuffled together (simply to
1854 // append the one to the other).
1855 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1856
1857 SmallVector<int, 16> FinalIndices;
1858 FinalIndices.reserve(IntermedVals[i].second.size() +
1859 IntermedVals[i+1].second.size());
1860
1861 int k = 0;
1862 for (unsigned j = 0, f = IntermedVals[i].second.size(); j != f;
1863 ++j, ++k) {
1864 ShuffleVec[k] = j;
1865 FinalIndices.push_back(IntermedVals[i].second[j]);
1866 }
1867 for (unsigned j = 0, f = IntermedVals[i+1].second.size(); j != f;
1868 ++j, ++k) {
1869 ShuffleVec[k] = NumElems + j;
1870 FinalIndices.push_back(IntermedVals[i+1].second[j]);
1871 }
1872
1873 SDValue Shuffle;
1874 if (Phase)
1875 Shuffle = DAG.getVectorShuffle(VT, dl, IntermedVals[i].first,
1876 IntermedVals[i+1].first,
1877 ShuffleVec.data());
1878 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1879 return false;
1880 NewIntermedVals.push_back(std::make_pair(Shuffle, FinalIndices));
1881 }
1882
1883 // If we had an odd number of defined values, then append the last
1884 // element to the array of new vectors.
1885 if ((IntermedVals.size() & 1) != 0)
1886 NewIntermedVals.push_back(IntermedVals.back());
1887
1888 IntermedVals.swap(NewIntermedVals);
1889 }
1890
1891 assert(IntermedVals.size() <= 2 && IntermedVals.size() > 0 &&
1892 "Invalid number of intermediate vectors");
1893 SDValue Vec1 = IntermedVals[0].first;
1894 SDValue Vec2;
1895 if (IntermedVals.size() > 1)
1896 Vec2 = IntermedVals[1].first;
1897 else if (Phase)
1898 Vec2 = DAG.getUNDEF(VT);
1899
1900 SmallVector<int, 16> ShuffleVec(NumElems, -1);
1901 for (unsigned i = 0, e = IntermedVals[0].second.size(); i != e; ++i)
1902 ShuffleVec[IntermedVals[0].second[i]] = i;
1903 for (unsigned i = 0, e = IntermedVals[1].second.size(); i != e; ++i)
1904 ShuffleVec[IntermedVals[1].second[i]] = NumElems + i;
1905
1906 if (Phase)
1907 Res = DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
1908 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT))
1909 return false;
1910 }
1911
1912 return true;
1913}
Chris Lattner6be79822006-04-04 17:23:26 +00001914
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001915/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman06c60b62007-07-16 14:29:03 +00001916/// support the operation, but do support the resultant vector type.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001917SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilsonf6c21952009-04-13 20:20:30 +00001918 unsigned NumElems = Node->getNumOperands();
Eli Friedman32345872009-06-07 06:52:44 +00001919 SDValue Value1, Value2;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001920 SDLoc dl(Node);
Owen Anderson53aa7a92009-08-10 22:56:29 +00001921 EVT VT = Node->getValueType(0);
1922 EVT OpVT = Node->getOperand(0).getValueType();
1923 EVT EltVT = VT.getVectorElementType();
Scott Michelcf0da6c2009-02-17 22:15:04 +00001924
1925 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00001926 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001927 bool isOnlyLowElement = true;
Eli Friedman32345872009-06-07 06:52:44 +00001928 bool MoreThanTwoValues = false;
Chris Lattner77e271c2006-03-24 07:29:17 +00001929 bool isConstant = true;
Eli Friedman32345872009-06-07 06:52:44 +00001930 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001931 SDValue V = Node->getOperand(i);
Eli Friedman32345872009-06-07 06:52:44 +00001932 if (V.getOpcode() == ISD::UNDEF)
1933 continue;
1934 if (i > 0)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001935 isOnlyLowElement = false;
Eli Friedman32345872009-06-07 06:52:44 +00001936 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner77e271c2006-03-24 07:29:17 +00001937 isConstant = false;
Eli Friedman32345872009-06-07 06:52:44 +00001938
1939 if (!Value1.getNode()) {
1940 Value1 = V;
1941 } else if (!Value2.getNode()) {
1942 if (V != Value1)
1943 Value2 = V;
1944 } else if (V != Value1 && V != Value2) {
1945 MoreThanTwoValues = true;
1946 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001947 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001948
Eli Friedman32345872009-06-07 06:52:44 +00001949 if (!Value1.getNode())
1950 return DAG.getUNDEF(VT);
1951
1952 if (isOnlyLowElement)
Bob Wilsonf6c21952009-04-13 20:20:30 +00001953 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001954
Chris Lattner77e271c2006-03-24 07:29:17 +00001955 // If all elements are constants, create a load from the constant pool.
1956 if (isConstant) {
Chris Lattner47a86bd2012-01-25 06:02:56 +00001957 SmallVector<Constant*, 16> CV;
Chris Lattner77e271c2006-03-24 07:29:17 +00001958 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelcf0da6c2009-02-17 22:15:04 +00001959 if (ConstantFPSDNode *V =
Chris Lattner77e271c2006-03-24 07:29:17 +00001960 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanec270fb2008-09-12 18:08:03 +00001961 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelcf0da6c2009-02-17 22:15:04 +00001962 } else if (ConstantSDNode *V =
Bob Wilsonf074ca72009-04-10 18:48:47 +00001963 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen6f7d5b22009-11-10 23:16:41 +00001964 if (OpVT==EltVT)
1965 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1966 else {
1967 // If OpVT and EltVT don't match, EltVT is not legal and the
1968 // element values have been promoted/truncated earlier. Undo this;
1969 // we don't want a v16i8 to become a v16i32 for example.
1970 const ConstantInt *CI = V->getConstantIntValue();
1971 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1972 CI->getZExtValue()));
1973 }
Chris Lattner77e271c2006-03-24 07:29:17 +00001974 } else {
1975 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner229907c2011-07-18 04:54:35 +00001976 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Andersonb292b8c2009-07-30 23:03:37 +00001977 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner77e271c2006-03-24 07:29:17 +00001978 }
1979 }
Owen Anderson4aa32952009-07-28 21:19:26 +00001980 Constant *CP = ConstantVector::get(CV);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001981 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1fb8aed2009-03-13 07:51:59 +00001982 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesena02e45c2009-02-02 22:12:50 +00001983 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00001984 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001985 false, false, false, Alignment);
Chris Lattner77e271c2006-03-24 07:29:17 +00001986 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00001987
Hal Finkel19775142014-03-31 17:48:10 +00001988 SmallSet<SDValue, 16> DefinedValues;
1989 for (unsigned i = 0; i < NumElems; ++i) {
1990 if (Node->getOperand(i).getOpcode() == ISD::UNDEF)
1991 continue;
1992 DefinedValues.insert(Node->getOperand(i));
1993 }
1994
Hal Finkelb811b6d2014-03-31 19:42:55 +00001995 if (TLI.shouldExpandBuildVectorWithShuffles(VT, DefinedValues.size())) {
1996 if (!MoreThanTwoValues) {
1997 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1998 for (unsigned i = 0; i < NumElems; ++i) {
1999 SDValue V = Node->getOperand(i);
2000 if (V.getOpcode() == ISD::UNDEF)
2001 continue;
2002 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
2003 }
2004 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
2005 // Get the splatted value into the low element of a vector register.
2006 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
2007 SDValue Vec2;
2008 if (Value2.getNode())
2009 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
2010 else
2011 Vec2 = DAG.getUNDEF(VT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002012
Hal Finkelb811b6d2014-03-31 19:42:55 +00002013 // Return shuffle(LowValVec, undef, <0,0,0,0>)
2014 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
2015 }
2016 } else {
2017 SDValue Res;
2018 if (ExpandBVWithShuffles(Node, DAG, TLI, Res))
2019 return Res;
Evan Cheng1d2e9952006-03-24 01:17:21 +00002020 }
2021 }
Scott Michelcf0da6c2009-02-17 22:15:04 +00002022
Eli Friedmanaee3f622009-06-06 07:04:42 +00002023 // Otherwise, we can't handle this case efficiently.
2024 return ExpandVectorBuildThroughStack(Node);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00002025}
2026
Chris Lattneraac464e2005-01-21 06:05:23 +00002027// ExpandLibCall - Expand a node into a call to a libcall. If the result value
2028// does not fit into a register, return the lo part and set the hi part to the
2029// by-reg argument. If it does fit into a single register, return the result
2030// and leave the Hi part unset.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002031SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedmanb3554152009-05-27 02:21:29 +00002032 bool isSigned) {
Chris Lattneraac464e2005-01-21 06:05:23 +00002033 TargetLowering::ArgListTy Args;
Reid Spencere63b6512006-12-31 05:55:36 +00002034 TargetLowering::ArgListEntry Entry;
Chris Lattneraac464e2005-01-21 06:05:23 +00002035 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002036 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002037 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelcf0da6c2009-02-17 22:15:04 +00002038 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00002039 Entry.isSExt = isSigned;
Duncan Sands4c95dbd2008-02-14 17:28:50 +00002040 Entry.isZExt = !isSigned;
Reid Spencere63b6512006-12-31 05:55:36 +00002041 Args.push_back(Entry);
Chris Lattneraac464e2005-01-21 06:05:23 +00002042 }
Bill Wendling24c79f22008-09-16 21:48:12 +00002043 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang58c37942008-10-30 08:01:45 +00002044 TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00002045
Chris Lattner229907c2011-07-18 04:54:35 +00002046 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Chengd4b08732010-11-30 23:55:39 +00002047
Evan Chengf8bad082012-04-10 01:51:00 +00002048 // By default, the input chain to this libcall is the entry node of the
2049 // function. If the libcall is going to be emitted as a tail call then
2050 // TLI.isUsedByReturnOnly will change it to the right chain if the return
2051 // node which is being folded has a non-entry input chain.
2052 SDValue InChain = DAG.getEntryNode();
2053
Evan Chengd4b08732010-11-30 23:55:39 +00002054 // isTailCall may be true since the callee does not reference caller stack
2055 // frame. Check if it's in the right position.
Evan Cheng136861d2012-04-10 03:15:18 +00002056 SDValue TCChain = InChain;
Tim Northoverf1450d82013-01-09 13:18:15 +00002057 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain);
Evan Cheng136861d2012-04-10 03:15:18 +00002058 if (isTailCall)
2059 InChain = TCChain;
2060
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002061 TargetLowering::CallLoweringInfo CLI(DAG);
2062 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
2063 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, &Args, 0)
2064 .setTailCall(isTailCall).setSExtResult(isSigned).setZExtResult(!isSigned);
Justin Holewinskiaa583972012-05-25 16:35:28 +00002065
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002066 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Chris Lattnera5bf1032005-05-12 04:49:08 +00002067
Evan Chengd4b08732010-11-30 23:55:39 +00002068 if (!CallInfo.second.getNode())
2069 // It's a tailcall, return the chain (which is the DAG root).
2070 return DAG.getRoot();
2071
Eli Friedman4a951bf2009-05-26 08:55:52 +00002072 return CallInfo.first;
Chris Lattneraac464e2005-01-21 06:05:23 +00002073}
2074
Dan Gohmanae9b1682011-05-16 22:09:53 +00002075/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherbcaedb52011-04-20 01:19:45 +00002076/// and returning a result of type RetVT.
2077SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
2078 const SDValue *Ops, unsigned NumOps,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002079 bool isSigned, SDLoc dl) {
Eric Christopherbcaedb52011-04-20 01:19:45 +00002080 TargetLowering::ArgListTy Args;
2081 Args.reserve(NumOps);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002082
Eric Christopherbcaedb52011-04-20 01:19:45 +00002083 TargetLowering::ArgListEntry Entry;
2084 for (unsigned i = 0; i != NumOps; ++i) {
2085 Entry.Node = Ops[i];
2086 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
2087 Entry.isSExt = isSigned;
2088 Entry.isZExt = !isSigned;
2089 Args.push_back(Entry);
2090 }
2091 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2092 TLI.getPointerTy());
Dan Gohmanae9b1682011-05-16 22:09:53 +00002093
Chris Lattner229907c2011-07-18 04:54:35 +00002094 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002095
2096 TargetLowering::CallLoweringInfo CLI(DAG);
2097 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
2098 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, &Args, 0)
2099 .setSExtResult(isSigned).setZExtResult(!isSigned);
2100
Justin Holewinskiaa583972012-05-25 16:35:28 +00002101 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanae9b1682011-05-16 22:09:53 +00002102
Eric Christopherbcaedb52011-04-20 01:19:45 +00002103 return CallInfo.first;
2104}
2105
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002106// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
2107// ExpandLibCall except that the first operand is the in-chain.
2108std::pair<SDValue, SDValue>
2109SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
2110 SDNode *Node,
2111 bool isSigned) {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002112 SDValue InChain = Node->getOperand(0);
2113
2114 TargetLowering::ArgListTy Args;
2115 TargetLowering::ArgListEntry Entry;
2116 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
2117 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002118 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002119 Entry.Node = Node->getOperand(i);
2120 Entry.Ty = ArgTy;
2121 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
Chris Lattner229907c2011-07-18 04:54:35 +00002128 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002129
2130 TargetLowering::CallLoweringInfo CLI(DAG);
2131 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain)
2132 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, &Args, 0)
2133 .setSExtResult(isSigned).setZExtResult(!isSigned);
2134
Justin Holewinskiaa583972012-05-25 16:35:28 +00002135 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002136
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002137 return CallInfo;
2138}
2139
Eli Friedmand6f28342009-05-27 03:33:44 +00002140SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
2141 RTLIB::Libcall Call_F32,
2142 RTLIB::Libcall Call_F64,
2143 RTLIB::Libcall Call_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00002144 RTLIB::Libcall Call_F128,
Eli Friedmand6f28342009-05-27 03:33:44 +00002145 RTLIB::Libcall Call_PPCF128) {
2146 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002147 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002148 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson9f944592009-08-11 20:47:22 +00002149 case MVT::f32: LC = Call_F32; break;
2150 case MVT::f64: LC = Call_F64; break;
2151 case MVT::f80: LC = Call_F80; break;
Tim Northover4bf47bc2013-01-08 17:09:59 +00002152 case MVT::f128: LC = Call_F128; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002153 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002154 }
2155 return ExpandLibCall(LC, Node, false);
2156}
2157
2158SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002159 RTLIB::Libcall Call_I8,
Eli Friedmand6f28342009-05-27 03:33:44 +00002160 RTLIB::Libcall Call_I16,
2161 RTLIB::Libcall Call_I32,
2162 RTLIB::Libcall Call_I64,
2163 RTLIB::Libcall Call_I128) {
2164 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002165 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002166 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00002167 case MVT::i8: LC = Call_I8; break;
2168 case MVT::i16: LC = Call_I16; break;
2169 case MVT::i32: LC = Call_I32; break;
2170 case MVT::i64: LC = Call_I64; break;
Owen Anderson9f944592009-08-11 20:47:22 +00002171 case MVT::i128: LC = Call_I128; break;
Eli Friedmand6f28342009-05-27 03:33:44 +00002172 }
2173 return ExpandLibCall(LC, Node, isSigned);
2174}
2175
Evan Chengb14ce092011-04-16 03:08:26 +00002176/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
2177static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
2178 const TargetLowering &TLI) {
Evan Chengbd766792011-04-01 00:42:02 +00002179 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002180 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002181 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengbd766792011-04-01 00:42:02 +00002182 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2183 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2184 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2185 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2186 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2187 }
2188
Craig Topperc0196b12014-04-14 00:51:57 +00002189 return TLI.getLibcallName(LC) != nullptr;
Evan Chengb14ce092011-04-16 03:08:26 +00002190}
Evan Chengbd766792011-04-01 00:42:02 +00002191
Evan Cheng8c2ad812012-06-21 05:56:05 +00002192/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Chengb14ce092011-04-16 03:08:26 +00002193/// needed.
Evan Cheng8c2ad812012-06-21 05:56:05 +00002194static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2195 // The other use might have been replaced with a divrem already.
2196 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Chengbd766792011-04-01 00:42:02 +00002197 unsigned OtherOpcode = 0;
Evan Chengb14ce092011-04-16 03:08:26 +00002198 if (isSigned)
Evan Chengbd766792011-04-01 00:42:02 +00002199 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002200 else
Evan Chengbd766792011-04-01 00:42:02 +00002201 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Chengb14ce092011-04-16 03:08:26 +00002202
Evan Chengbd766792011-04-01 00:42:02 +00002203 SDValue Op0 = Node->getOperand(0);
2204 SDValue Op1 = Node->getOperand(1);
2205 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2206 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2207 SDNode *User = *UI;
2208 if (User == Node)
2209 continue;
Evan Cheng8c2ad812012-06-21 05:56:05 +00002210 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Chengbd766792011-04-01 00:42:02 +00002211 User->getOperand(0) == Op0 &&
Evan Chengb14ce092011-04-16 03:08:26 +00002212 User->getOperand(1) == Op1)
2213 return true;
Evan Chengbd766792011-04-01 00:42:02 +00002214 }
Evan Chengb14ce092011-04-16 03:08:26 +00002215 return false;
2216}
Evan Chengbd766792011-04-01 00:42:02 +00002217
Evan Chengb14ce092011-04-16 03:08:26 +00002218/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2219/// pairs.
2220void
2221SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2222 SmallVectorImpl<SDValue> &Results) {
2223 unsigned Opcode = Node->getOpcode();
2224 bool isSigned = Opcode == ISD::SDIVREM;
2225
2226 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002227 switch (Node->getSimpleValueType(0).SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002228 default: llvm_unreachable("Unexpected request for libcall!");
Evan Chengb14ce092011-04-16 03:08:26 +00002229 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2230 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2231 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2232 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2233 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Chengbd766792011-04-01 00:42:02 +00002234 }
2235
2236 // The input chain to this libcall is the entry node of the function.
2237 // Legalizing the call will automatically add the previous call to the
2238 // dependence.
2239 SDValue InChain = DAG.getEntryNode();
2240
2241 EVT RetVT = Node->getValueType(0);
Chris Lattner229907c2011-07-18 04:54:35 +00002242 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002243
2244 TargetLowering::ArgListTy Args;
2245 TargetLowering::ArgListEntry Entry;
2246 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2247 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattner229907c2011-07-18 04:54:35 +00002248 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Chengbd766792011-04-01 00:42:02 +00002249 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2250 Entry.isSExt = isSigned;
2251 Entry.isZExt = !isSigned;
2252 Args.push_back(Entry);
2253 }
2254
2255 // Also pass the return address of the remainder.
2256 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2257 Entry.Node = FIPtr;
Micah Villmow51e72462012-10-24 17:25:11 +00002258 Entry.Ty = RetTy->getPointerTo();
Evan Chengbd766792011-04-01 00:42:02 +00002259 Entry.isSExt = isSigned;
2260 Entry.isZExt = !isSigned;
2261 Args.push_back(Entry);
2262
2263 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2264 TLI.getPointerTy());
2265
Andrew Trickef9de2a2013-05-25 02:42:55 +00002266 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002267 TargetLowering::CallLoweringInfo CLI(DAG);
2268 CLI.setDebugLoc(dl).setChain(InChain)
2269 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, &Args, 0)
2270 .setSExtResult(isSigned).setZExtResult(!isSigned);
2271
Justin Holewinskiaa583972012-05-25 16:35:28 +00002272 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Chengbd766792011-04-01 00:42:02 +00002273
Evan Chengbd766792011-04-01 00:42:02 +00002274 // Remainder is loaded back from the stack frame.
Dan Gohman198b7ff2011-11-03 21:49:52 +00002275 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002276 MachinePointerInfo(), false, false, false, 0);
Evan Chengb14ce092011-04-16 03:08:26 +00002277 Results.push_back(CallInfo.first);
2278 Results.push_back(Rem);
Evan Chengbd766792011-04-01 00:42:02 +00002279}
2280
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002281/// isSinCosLibcallAvailable - Return true if sincos libcall is available.
2282static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) {
2283 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002284 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002285 default: llvm_unreachable("Unexpected request for libcall!");
2286 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2287 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2288 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2289 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2290 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2291 }
Craig Topperc0196b12014-04-14 00:51:57 +00002292 return TLI.getLibcallName(LC) != nullptr;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002293}
2294
Paul Redmondf29ddfe2013-02-15 18:45:18 +00002295/// canCombineSinCosLibcall - Return true if sincos libcall is available and
2296/// can be used to combine sin and cos.
2297static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI,
2298 const TargetMachine &TM) {
2299 if (!isSinCosLibcallAvailable(Node, TLI))
2300 return false;
2301 // GNU sin/cos functions set errno while sincos does not. Therefore
2302 // combining sin and cos is only safe if unsafe-fpmath is enabled.
2303 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU;
2304 if (isGNU && !TM.Options.UnsafeFPMath)
2305 return false;
2306 return true;
2307}
2308
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002309/// useSinCos - Only issue sincos libcall if both sin and cos are
2310/// needed.
2311static bool useSinCos(SDNode *Node) {
2312 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN
2313 ? ISD::FCOS : ISD::FSIN;
Stephen Lincfe7f352013-07-08 00:37:03 +00002314
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002315 SDValue Op0 = Node->getOperand(0);
2316 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2317 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2318 SDNode *User = *UI;
2319 if (User == Node)
2320 continue;
2321 // The other user might have been turned into sincos already.
2322 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS)
2323 return true;
2324 }
2325 return false;
2326}
2327
2328/// ExpandSinCosLibCall - Issue libcalls to sincos to compute sin / cos
2329/// pairs.
2330void
2331SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node,
2332 SmallVectorImpl<SDValue> &Results) {
2333 RTLIB::Libcall LC;
Craig Topperd9c27832013-08-15 02:44:19 +00002334 switch (Node->getSimpleValueType(0).SimpleTy) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002335 default: llvm_unreachable("Unexpected request for libcall!");
2336 case MVT::f32: LC = RTLIB::SINCOS_F32; break;
2337 case MVT::f64: LC = RTLIB::SINCOS_F64; break;
2338 case MVT::f80: LC = RTLIB::SINCOS_F80; break;
2339 case MVT::f128: LC = RTLIB::SINCOS_F128; break;
2340 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break;
2341 }
Stephen Lincfe7f352013-07-08 00:37:03 +00002342
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002343 // The input chain to this libcall is the entry node of the function.
2344 // Legalizing the call will automatically add the previous call to the
2345 // dependence.
2346 SDValue InChain = DAG.getEntryNode();
Stephen Lincfe7f352013-07-08 00:37:03 +00002347
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002348 EVT RetVT = Node->getValueType(0);
2349 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Stephen Lincfe7f352013-07-08 00:37:03 +00002350
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002351 TargetLowering::ArgListTy Args;
2352 TargetLowering::ArgListEntry Entry;
Stephen Lincfe7f352013-07-08 00:37:03 +00002353
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002354 // Pass the argument.
2355 Entry.Node = Node->getOperand(0);
2356 Entry.Ty = RetTy;
2357 Entry.isSExt = false;
2358 Entry.isZExt = false;
2359 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002360
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002361 // Pass the return address of sin.
2362 SDValue SinPtr = DAG.CreateStackTemporary(RetVT);
2363 Entry.Node = SinPtr;
2364 Entry.Ty = RetTy->getPointerTo();
2365 Entry.isSExt = false;
2366 Entry.isZExt = false;
2367 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002368
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002369 // Also pass the return address of the cos.
2370 SDValue CosPtr = DAG.CreateStackTemporary(RetVT);
2371 Entry.Node = CosPtr;
2372 Entry.Ty = RetTy->getPointerTo();
2373 Entry.isSExt = false;
2374 Entry.isZExt = false;
2375 Args.push_back(Entry);
Stephen Lincfe7f352013-07-08 00:37:03 +00002376
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002377 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2378 TLI.getPointerTy());
Stephen Lincfe7f352013-07-08 00:37:03 +00002379
Andrew Trickef9de2a2013-05-25 02:42:55 +00002380 SDLoc dl(Node);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002381 TargetLowering::CallLoweringInfo CLI(DAG);
2382 CLI.setDebugLoc(dl).setChain(InChain)
2383 .setCallee(TLI.getLibcallCallingConv(LC),
2384 Type::getVoidTy(*DAG.getContext()), Callee, &Args, 0);
2385
Evan Cheng0e88c7d2013-01-29 02:32:37 +00002386 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
2387
2388 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr,
2389 MachinePointerInfo(), false, false, false, 0));
2390 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr,
2391 MachinePointerInfo(), false, false, false, 0));
2392}
2393
Chris Lattner689bdcc2006-01-28 08:25:58 +00002394/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2395/// INT_TO_FP operation of the specified operand when the target requests that
2396/// we expand it. At this point, we know that the result and operand types are
2397/// legal for the target.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002398SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2399 SDValue Op0,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002400 EVT DestVT,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002401 SDLoc dl) {
Akira Hatanakaadb14f52012-08-28 02:12:42 +00002402 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002403 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelcf0da6c2009-02-17 22:15:04 +00002404
Chris Lattnera2c7ff32008-01-16 07:03:22 +00002405 // Get the stack frame index of a 8 byte buffer.
Owen Anderson9f944592009-08-11 20:47:22 +00002406 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002407
Chris Lattner689bdcc2006-01-28 08:25:58 +00002408 // word offset constant for Hi/Lo address computation
Tom Stellard838e2342013-08-26 15:06:10 +00002409 SDValue WordOff = DAG.getConstant(sizeof(int), StackSlot.getValueType());
Chris Lattner689bdcc2006-01-28 08:25:58 +00002410 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002411 SDValue Hi = StackSlot;
Tom Stellard838e2342013-08-26 15:06:10 +00002412 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(),
2413 StackSlot, WordOff);
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00002414 if (TLI.isLittleEndian())
2415 std::swap(Hi, Lo);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002416
Chris Lattner689bdcc2006-01-28 08:25:58 +00002417 // if signed map to unsigned space
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002418 SDValue Op0Mapped;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002419 if (isSigned) {
2420 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson9f944592009-08-11 20:47:22 +00002421 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2422 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002423 } else {
2424 Op0Mapped = Op0;
2425 }
2426 // store the lo of the constructed double - based on integer input
Dale Johannesen8525d832009-02-02 19:03:57 +00002427 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner676c61d2010-09-21 18:41:36 +00002428 Op0Mapped, Lo, MachinePointerInfo(),
David Greene39c6d012010-02-15 17:00:31 +00002429 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002430 // initial hi portion of constructed double
Owen Anderson9f944592009-08-11 20:47:22 +00002431 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002432 // store the hi of the constructed double - biased exponent
Chris Lattner676c61d2010-09-21 18:41:36 +00002433 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2434 MachinePointerInfo(),
2435 false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002436 // load the constructed double
Chris Lattner1ffcf522010-09-21 16:36:31 +00002437 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002438 MachinePointerInfo(), false, false, false, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002439 // FP constant to bias correct the final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002440 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonf074ca72009-04-10 18:48:47 +00002441 BitsToDouble(0x4330000080000000ULL) :
2442 BitsToDouble(0x4330000000000000ULL),
Owen Anderson9f944592009-08-11 20:47:22 +00002443 MVT::f64);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002444 // subtract the bias
Owen Anderson9f944592009-08-11 20:47:22 +00002445 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002446 // final result
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002447 SDValue Result;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002448 // handle final rounding
Owen Anderson9f944592009-08-11 20:47:22 +00002449 if (DestVT == MVT::f64) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002450 // do nothing
2451 Result = Sub;
Owen Anderson9f944592009-08-11 20:47:22 +00002452 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002453 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner72733e52008-01-17 07:00:52 +00002454 DAG.getIntPtrConstant(0));
Owen Anderson9f944592009-08-11 20:47:22 +00002455 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen8525d832009-02-02 19:03:57 +00002456 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002457 }
2458 return Result;
2459 }
2460 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002461 // Code below here assumes !isSigned without checking again.
Dan Gohman14e450f2010-03-06 00:00:55 +00002462
2463 // Implementation of unsigned i64 to f64 following the algorithm in
2464 // __floatundidf in compiler_rt. This implementation has the advantage
2465 // of performing rounding correctly, both in the default rounding mode
2466 // and in all alternate rounding modes.
2467 // TODO: Generalize this for use with other types.
2468 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2469 SDValue TwoP52 =
2470 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2471 SDValue TwoP84PlusTwoP52 =
2472 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2473 SDValue TwoP84 =
2474 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2475
2476 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2477 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2478 DAG.getConstant(32, MVT::i64));
2479 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2480 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peck527da1b2010-11-23 03:31:01 +00002481 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2482 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002483 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2484 TwoP84PlusTwoP52);
Dan Gohman14e450f2010-03-06 00:00:55 +00002485 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2486 }
2487
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002488 // Implementation of unsigned i64 to f32.
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002489 // TODO: Generalize this for use with other types.
2490 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002491 // For unsigned conversions, convert them to signed conversions using the
2492 // algorithm from the x86_64 __floatundidf in compiler_rt.
2493 if (!isSigned) {
2494 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peck527da1b2010-11-23 03:31:01 +00002495
Owen Andersonb2c80da2011-02-25 21:41:48 +00002496 SDValue ShiftConst =
2497 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002498 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2499 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2500 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2501 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peck527da1b2010-11-23 03:31:01 +00002502
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002503 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2504 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peck527da1b2010-11-23 03:31:01 +00002505
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002506 // TODO: This really should be implemented using a branch rather than a
Wesley Peck527da1b2010-11-23 03:31:01 +00002507 // select. We happen to get lucky and machinesink does the right
2508 // thing most of the time. This would be a good candidate for a
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002509 //pseudo-op, or, even better, for whole-function isel.
Matt Arsenault758659232013-05-18 00:21:46 +00002510 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002511 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002512 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast);
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002513 }
Wesley Peck527da1b2010-11-23 03:31:01 +00002514
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002515 // Otherwise, implement the fully general conversion.
Wesley Peck527da1b2010-11-23 03:31:01 +00002516
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002517 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002518 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2519 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2520 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach9b7755f2010-07-02 17:41:59 +00002521 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002522 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
Matt Arsenault758659232013-05-18 00:21:46 +00002523 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002524 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002525 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0);
Matt Arsenault758659232013-05-18 00:21:46 +00002526 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002527 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Andersond8d1dcc2010-10-05 17:24:05 +00002528 ISD::SETUGE);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002529 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00002530 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peck527da1b2010-11-23 03:31:01 +00002531
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002532 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2533 DAG.getConstant(32, SHVT));
2534 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2535 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2536 SDValue TwoP32 =
2537 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2538 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2539 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2540 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2541 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2542 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2543 DAG.getIntPtrConstant(0));
Dale Johannesen1ae94b92010-05-13 23:50:42 +00002544 }
2545
Dan Gohman998c7c22010-03-05 02:40:23 +00002546 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002547
Matt Arsenault758659232013-05-18 00:21:46 +00002548 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()),
Dan Gohman998c7c22010-03-05 02:40:23 +00002549 Op0, DAG.getConstant(0, Op0.getValueType()),
2550 ISD::SETLT);
2551 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00002552 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(),
Dan Gohman998c7c22010-03-05 02:40:23 +00002553 SignSet, Four, Zero);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002554
Dan Gohman998c7c22010-03-05 02:40:23 +00002555 // If the sign bit of the integer is set, the large number will be treated
2556 // as a negative number. To counteract this, the dynamic code adds an
2557 // offset depending on the data type.
2558 uint64_t FF;
Craig Topperd9c27832013-08-15 02:44:19 +00002559 switch (Op0.getSimpleValueType().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002560 default: llvm_unreachable("Unsupported integer type!");
Dan Gohman998c7c22010-03-05 02:40:23 +00002561 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2562 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2563 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2564 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2565 }
2566 if (TLI.isLittleEndian()) FF <<= 32;
2567 Constant *FudgeFactor = ConstantInt::get(
2568 Type::getInt64Ty(*DAG.getContext()), FF);
2569
2570 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2571 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Tom Stellard838e2342013-08-26 15:06:10 +00002572 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset);
Dan Gohman998c7c22010-03-05 02:40:23 +00002573 Alignment = std::min(Alignment, 4u);
2574 SDValue FudgeInReg;
2575 if (DestVT == MVT::f32)
2576 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnera35499e2010-09-21 07:32:19 +00002577 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002578 false, false, false, Alignment);
Dan Gohman998c7c22010-03-05 02:40:23 +00002579 else {
Dan Gohman198b7ff2011-11-03 21:49:52 +00002580 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2581 DAG.getEntryNode(), CPIdx,
2582 MachinePointerInfo::getConstantPool(),
2583 MVT::f32, false, false, Alignment);
2584 HandleSDNode Handle(Load);
2585 LegalizeOp(Load.getNode());
2586 FudgeInReg = Handle.getValue();
Dan Gohman998c7c22010-03-05 02:40:23 +00002587 }
2588
2589 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002590}
2591
2592/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2593/// *INT_TO_FP operation of the specified operand when the target requests that
2594/// we promote it. At this point, we know that the result and operand types are
2595/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2596/// operation that takes a larger input.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002597SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002598 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002599 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002600 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002601 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002602 EVT NewInTy = LegalOp.getValueType();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002603
2604 unsigned OpToUse = 0;
2605
2606 // Scan for the appropriate larger type to use.
2607 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002608 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002609 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002610
2611 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002612 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2613 OpToUse = ISD::SINT_TO_FP;
2614 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002615 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002616 if (isSigned) continue;
2617
2618 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedmane1bc3792009-05-28 03:06:16 +00002619 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2620 OpToUse = ISD::UINT_TO_FP;
2621 break;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002622 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002623
2624 // Otherwise, try a larger type.
2625 }
2626
2627 // Okay, we found the operation and type to use. Zero extend our input to the
2628 // desired type then run the operation on it.
Dale Johannesen8525d832009-02-02 19:03:57 +00002629 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner689bdcc2006-01-28 08:25:58 +00002630 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesen8525d832009-02-02 19:03:57 +00002631 dl, NewInTy, LegalOp));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002632}
2633
2634/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2635/// FP_TO_*INT operation of the specified operand when the target requests that
2636/// we promote it. At this point, we know that the result and operand types are
2637/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2638/// operation that returns a larger result.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002639SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Anderson53aa7a92009-08-10 22:56:29 +00002640 EVT DestVT,
Dale Johannesen8525d832009-02-02 19:03:57 +00002641 bool isSigned,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002642 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002643 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Anderson53aa7a92009-08-10 22:56:29 +00002644 EVT NewOutTy = DestVT;
Chris Lattner689bdcc2006-01-28 08:25:58 +00002645
2646 unsigned OpToUse = 0;
2647
2648 // Scan for the appropriate larger type to use.
2649 while (1) {
Owen Anderson9f944592009-08-11 20:47:22 +00002650 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands13237ac2008-06-06 12:08:01 +00002651 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002652
Tim Northover65277a22014-06-15 09:27:20 +00002653 // A larger signed type can hold all unsigned values of the requested type,
2654 // so using FP_TO_SINT is valid
Eli Friedmane1bc3792009-05-28 03:06:16 +00002655 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002656 OpToUse = ISD::FP_TO_SINT;
2657 break;
2658 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002659
Tim Northover65277a22014-06-15 09:27:20 +00002660 // However, if the value may be < 0.0, we *must* use some FP_TO_SINT.
2661 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002662 OpToUse = ISD::FP_TO_UINT;
2663 break;
2664 }
Chris Lattner689bdcc2006-01-28 08:25:58 +00002665
2666 // Otherwise, try a larger type.
2667 }
2668
Scott Michelcf0da6c2009-02-17 22:15:04 +00002669
Chris Lattnerf81d5882007-11-24 07:07:01 +00002670 // Okay, we found the operation and type to use.
Dale Johannesen8525d832009-02-02 19:03:57 +00002671 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands93e180342008-07-04 11:47:58 +00002672
Chris Lattnerf81d5882007-11-24 07:07:01 +00002673 // Truncate the result of the extended FP_TO_*INT operation to the desired
2674 // size.
Dale Johannesen8525d832009-02-02 19:03:57 +00002675 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002676}
2677
2678/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2679///
Andrew Trickef9de2a2013-05-25 02:42:55 +00002680SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002681 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002682 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002683 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson9f944592009-08-11 20:47:22 +00002684 switch (VT.getSimpleVT().SimpleTy) {
Craig Topperee4dab52012-02-05 08:31:47 +00002685 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson9f944592009-08-11 20:47:22 +00002686 case MVT::i16:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002687 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2688 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2689 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002690 case MVT::i32:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002691 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2692 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2693 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2694 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2695 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2696 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2697 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2698 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2699 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson9f944592009-08-11 20:47:22 +00002700 case MVT::i64:
Dale Johannesena02e45c2009-02-02 22:12:50 +00002701 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2702 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2703 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2704 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2705 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2706 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2707 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2708 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2709 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2710 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2711 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2712 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2713 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2714 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2715 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2716 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2717 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2718 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2719 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2720 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2721 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002722 }
2723}
2724
2725/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2726///
Scott Michelcf0da6c2009-02-17 22:15:04 +00002727SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002728 SDLoc dl) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00002729 switch (Opc) {
Craig Topperee4dab52012-02-05 08:31:47 +00002730 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00002731 case ISD::CTPOP: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002732 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002733 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002734 unsigned Len = VT.getSizeInBits();
2735
Benjamin Kramerbec03ea2011-01-15 21:19:37 +00002736 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2737 "CTPOP not implemented for this type.");
2738
Benjamin Kramerfff25172011-01-15 20:30:30 +00002739 // This is the "best" algorithm from
2740 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2741
Benjamin Kramer5c3e21b2013-02-20 13:00:06 +00002742 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), VT);
2743 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), VT);
2744 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), VT);
2745 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), VT);
Benjamin Kramerfff25172011-01-15 20:30:30 +00002746
2747 // v = v - ((v >> 1) & 0x55555555...)
2748 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2749 DAG.getNode(ISD::AND, dl, VT,
2750 DAG.getNode(ISD::SRL, dl, VT, Op,
2751 DAG.getConstant(1, ShVT)),
2752 Mask55));
2753 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2754 Op = DAG.getNode(ISD::ADD, dl, VT,
2755 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2756 DAG.getNode(ISD::AND, dl, VT,
2757 DAG.getNode(ISD::SRL, dl, VT, Op,
2758 DAG.getConstant(2, ShVT)),
2759 Mask33));
2760 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2761 Op = DAG.getNode(ISD::AND, dl, VT,
2762 DAG.getNode(ISD::ADD, dl, VT, Op,
2763 DAG.getNode(ISD::SRL, dl, VT, Op,
2764 DAG.getConstant(4, ShVT))),
2765 Mask0F);
2766 // v = (v * 0x01010101...) >> (Len - 8)
2767 Op = DAG.getNode(ISD::SRL, dl, VT,
2768 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2769 DAG.getConstant(Len - 8, ShVT));
Owen Andersonb2c80da2011-02-25 21:41:48 +00002770
Chris Lattner689bdcc2006-01-28 08:25:58 +00002771 return Op;
2772 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002773 case ISD::CTLZ_ZERO_UNDEF:
2774 // This trivially expands to CTLZ.
2775 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002776 case ISD::CTLZ: {
2777 // for now, we do this:
2778 // x = x | (x >> 1);
2779 // x = x | (x >> 2);
2780 // ...
2781 // x = x | (x >>16);
2782 // x = x | (x >>32); // for 64-bit input
2783 // return popcount(~x);
2784 //
2785 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Anderson53aa7a92009-08-10 22:56:29 +00002786 EVT VT = Op.getValueType();
Owen Andersonb2c80da2011-02-25 21:41:48 +00002787 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands13237ac2008-06-06 12:08:01 +00002788 unsigned len = VT.getSizeInBits();
Chris Lattner689bdcc2006-01-28 08:25:58 +00002789 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002790 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelcf0da6c2009-02-17 22:15:04 +00002791 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesendc93bbc2009-02-06 21:55:48 +00002792 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002793 }
Dale Johannesena02e45c2009-02-02 22:12:50 +00002794 Op = DAG.getNOT(dl, Op, VT);
2795 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002796 }
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002797 case ISD::CTTZ_ZERO_UNDEF:
2798 // This trivially expands to CTTZ.
2799 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002800 case ISD::CTTZ: {
2801 // for now, we use: { return popcount(~x & (x - 1)); }
2802 // unless the target has ctlz but not ctpop, in which case we use:
2803 // { return 32 - nlz(~x & (x-1)); }
2804 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Anderson53aa7a92009-08-10 22:56:29 +00002805 EVT VT = Op.getValueType();
Dale Johannesena02e45c2009-02-02 22:12:50 +00002806 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2807 DAG.getNOT(dl, Op, VT),
2808 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling8fb81f12009-01-30 23:03:19 +00002809 DAG.getConstant(1, VT)));
Chris Lattner689bdcc2006-01-28 08:25:58 +00002810 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohman4aa18462009-01-28 17:46:25 +00002811 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2812 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesena02e45c2009-02-02 22:12:50 +00002813 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands13237ac2008-06-06 12:08:01 +00002814 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesena02e45c2009-02-02 22:12:50 +00002815 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2816 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner689bdcc2006-01-28 08:25:58 +00002817 }
2818 }
2819}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00002820
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002821std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2822 unsigned Opc = Node->getOpcode();
2823 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2824 RTLIB::Libcall LC;
2825
2826 switch (Opc) {
2827 default:
2828 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbacha57c2882010-06-18 23:03:10 +00002829 case ISD::ATOMIC_SWAP:
2830 switch (VT.SimpleTy) {
2831 default: llvm_unreachable("Unexpected value type for atomic!");
2832 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2833 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2834 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2835 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002836 case MVT::i128:LC = RTLIB::SYNC_LOCK_TEST_AND_SET_16;break;
Jim Grosbacha57c2882010-06-18 23:03:10 +00002837 }
2838 break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002839 case ISD::ATOMIC_CMP_SWAP:
2840 switch (VT.SimpleTy) {
2841 default: llvm_unreachable("Unexpected value type for atomic!");
2842 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2843 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2844 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2845 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002846 case MVT::i128:LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002847 }
2848 break;
2849 case ISD::ATOMIC_LOAD_ADD:
2850 switch (VT.SimpleTy) {
2851 default: llvm_unreachable("Unexpected value type for atomic!");
2852 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2853 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2854 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2855 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002856 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_ADD_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002857 }
2858 break;
2859 case ISD::ATOMIC_LOAD_SUB:
2860 switch (VT.SimpleTy) {
2861 default: llvm_unreachable("Unexpected value type for atomic!");
2862 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2863 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2864 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2865 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002866 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_SUB_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002867 }
2868 break;
2869 case ISD::ATOMIC_LOAD_AND:
2870 switch (VT.SimpleTy) {
2871 default: llvm_unreachable("Unexpected value type for atomic!");
2872 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2873 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2874 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2875 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002876 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_AND_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002877 }
2878 break;
2879 case ISD::ATOMIC_LOAD_OR:
2880 switch (VT.SimpleTy) {
2881 default: llvm_unreachable("Unexpected value type for atomic!");
2882 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2883 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2884 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2885 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002886 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_OR_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002887 }
2888 break;
2889 case ISD::ATOMIC_LOAD_XOR:
2890 switch (VT.SimpleTy) {
2891 default: llvm_unreachable("Unexpected value type for atomic!");
2892 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2893 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2894 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2895 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002896 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_XOR_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002897 }
2898 break;
2899 case ISD::ATOMIC_LOAD_NAND:
2900 switch (VT.SimpleTy) {
2901 default: llvm_unreachable("Unexpected value type for atomic!");
2902 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2903 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2904 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2905 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
David Majnemer451b7dd2013-10-18 08:03:43 +00002906 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_NAND_16;break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002907 }
2908 break;
Tim Northovera564d322013-10-25 09:30:20 +00002909 case ISD::ATOMIC_LOAD_MAX:
2910 switch (VT.SimpleTy) {
2911 default: llvm_unreachable("Unexpected value type for atomic!");
2912 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MAX_1; break;
2913 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MAX_2; break;
2914 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MAX_4; break;
2915 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MAX_8; break;
2916 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MAX_16;break;
2917 }
2918 break;
2919 case ISD::ATOMIC_LOAD_UMAX:
2920 switch (VT.SimpleTy) {
2921 default: llvm_unreachable("Unexpected value type for atomic!");
2922 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMAX_1; break;
2923 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMAX_2; break;
2924 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMAX_4; break;
2925 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMAX_8; break;
2926 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMAX_16;break;
2927 }
2928 break;
2929 case ISD::ATOMIC_LOAD_MIN:
2930 switch (VT.SimpleTy) {
2931 default: llvm_unreachable("Unexpected value type for atomic!");
2932 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_MIN_1; break;
2933 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_MIN_2; break;
2934 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_MIN_4; break;
2935 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_MIN_8; break;
2936 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_MIN_16;break;
2937 }
2938 break;
2939 case ISD::ATOMIC_LOAD_UMIN:
2940 switch (VT.SimpleTy) {
2941 default: llvm_unreachable("Unexpected value type for atomic!");
2942 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_UMIN_1; break;
2943 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_UMIN_2; break;
2944 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_UMIN_4; break;
2945 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_UMIN_8; break;
2946 case MVT::i128:LC = RTLIB::SYNC_FETCH_AND_UMIN_16;break;
2947 }
2948 break;
Jim Grosbachd64dfc12010-06-18 21:43:38 +00002949 }
2950
2951 return ExpandChainLibCall(LC, Node, false);
2952}
2953
Dan Gohman198b7ff2011-11-03 21:49:52 +00002954void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2955 SmallVector<SDValue, 8> Results;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002956 SDLoc dl(Node);
Eli Friedmane1dc1932009-05-28 20:40:34 +00002957 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Daniel Sandersedc071b2013-11-21 13:24:49 +00002958 bool NeedInvert;
Eli Friedman21d349b2009-05-27 01:25:56 +00002959 switch (Node->getOpcode()) {
2960 case ISD::CTPOP:
2961 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002962 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002963 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00002964 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00002965 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2966 Results.push_back(Tmp1);
2967 break;
2968 case ISD::BSWAP:
Bill Wendlingef408db2009-12-23 00:28:23 +00002969 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman21d349b2009-05-27 01:25:56 +00002970 break;
2971 case ISD::FRAMEADDR:
2972 case ISD::RETURNADDR:
2973 case ISD::FRAME_TO_ARGS_OFFSET:
2974 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2975 break;
2976 case ISD::FLT_ROUNDS_:
2977 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2978 break;
2979 case ISD::EH_RETURN:
Eli Friedman21d349b2009-05-27 01:25:56 +00002980 case ISD::EH_LABEL:
2981 case ISD::PREFETCH:
Eli Friedman21d349b2009-05-27 01:25:56 +00002982 case ISD::VAEND:
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002983 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002984 // If the target didn't expand these, there's nothing to do, so just
2985 // preserve the chain and be done.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002986 Results.push_back(Node->getOperand(0));
2987 break;
2988 case ISD::EH_SJLJ_SETJMP:
Jim Grosbachbbdc5d22010-10-19 23:27:08 +00002989 // If the target didn't expand this, just return 'zero' and preserve the
2990 // chain.
Jim Grosbachdc0a0652010-07-06 23:44:52 +00002991 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman21d349b2009-05-27 01:25:56 +00002992 Results.push_back(Node->getOperand(0));
2993 break;
Tim Northovera2b53392013-04-20 12:32:17 +00002994 case ISD::ATOMIC_FENCE: {
Jim Grosbachba451e82010-06-17 02:00:53 +00002995 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman26a48482011-07-27 22:21:52 +00002996 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachba451e82010-06-17 02:00:53 +00002997 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002998
2999 TargetLowering::CallLoweringInfo CLI(DAG);
3000 CLI.setDebugLoc(dl).setChain(Node->getOperand(0))
3001 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
3002 DAG.getExternalSymbol("__sync_synchronize", TLI.getPointerTy()),
3003 &Args, 0);
3004
Justin Holewinskiaa583972012-05-25 16:35:28 +00003005 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3006
Jim Grosbachba451e82010-06-17 02:00:53 +00003007 Results.push_back(CallResult.second);
3008 break;
3009 }
Eli Friedman452aae62011-08-26 02:59:24 +00003010 case ISD::ATOMIC_LOAD: {
3011 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedmanee8f14a72011-09-15 21:20:49 +00003012 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Tim Northover420a2162014-06-13 14:24:07 +00003013 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3014 SDValue Swap = DAG.getAtomicCmpSwap(
3015 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
3016 Node->getOperand(0), Node->getOperand(1), Zero, Zero,
3017 cast<AtomicSDNode>(Node)->getMemOperand(),
3018 cast<AtomicSDNode>(Node)->getOrdering(),
3019 cast<AtomicSDNode>(Node)->getOrdering(),
3020 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman452aae62011-08-26 02:59:24 +00003021 Results.push_back(Swap.getValue(0));
3022 Results.push_back(Swap.getValue(1));
3023 break;
3024 }
3025 case ISD::ATOMIC_STORE: {
3026 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
3027 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
3028 cast<AtomicSDNode>(Node)->getMemoryVT(),
3029 Node->getOperand(0),
3030 Node->getOperand(1), Node->getOperand(2),
3031 cast<AtomicSDNode>(Node)->getMemOperand(),
3032 cast<AtomicSDNode>(Node)->getOrdering(),
3033 cast<AtomicSDNode>(Node)->getSynchScope());
3034 Results.push_back(Swap.getValue(1));
3035 break;
3036 }
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00003037 // By default, atomic intrinsics are marked Legal and lowered. Targets
3038 // which don't support them directly, however, may want libcalls, in which
3039 // case they mark them Expand, and we get here.
Jim Grosbach3aeae8a2010-06-17 17:50:54 +00003040 case ISD::ATOMIC_SWAP:
3041 case ISD::ATOMIC_LOAD_ADD:
3042 case ISD::ATOMIC_LOAD_SUB:
3043 case ISD::ATOMIC_LOAD_AND:
3044 case ISD::ATOMIC_LOAD_OR:
3045 case ISD::ATOMIC_LOAD_XOR:
3046 case ISD::ATOMIC_LOAD_NAND:
3047 case ISD::ATOMIC_LOAD_MIN:
3048 case ISD::ATOMIC_LOAD_MAX:
3049 case ISD::ATOMIC_LOAD_UMIN:
3050 case ISD::ATOMIC_LOAD_UMAX:
Evan Chengf5d62532010-06-18 22:01:37 +00003051 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbachd64dfc12010-06-18 21:43:38 +00003052 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
3053 Results.push_back(Tmp.first);
3054 Results.push_back(Tmp.second);
Jim Grosbach0ed5b462010-06-17 17:58:54 +00003055 break;
Evan Chengf5d62532010-06-18 22:01:37 +00003056 }
Tim Northover420a2162014-06-13 14:24:07 +00003057 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: {
3058 // Expanding an ATOMIC_CMP_SWAP_WITH_SUCCESS produces an ATOMIC_CMP_SWAP and
3059 // splits out the success value as a comparison. Expanding the resulting
3060 // ATOMIC_CMP_SWAP will produce a libcall.
3061 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other);
3062 SDValue Res = DAG.getAtomicCmpSwap(
3063 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs,
3064 Node->getOperand(0), Node->getOperand(1), Node->getOperand(2),
3065 Node->getOperand(3), cast<MemSDNode>(Node)->getMemOperand(),
3066 cast<AtomicSDNode>(Node)->getSuccessOrdering(),
3067 cast<AtomicSDNode>(Node)->getFailureOrdering(),
3068 cast<AtomicSDNode>(Node)->getSynchScope());
3069
3070 SDValue Success = DAG.getSetCC(SDLoc(Node), Node->getValueType(1),
3071 Res, Node->getOperand(2), ISD::SETEQ);
3072
3073 Results.push_back(Res.getValue(0));
3074 Results.push_back(Success);
3075 Results.push_back(Res.getValue(1));
3076 break;
3077 }
Eli Friedman2892d822009-05-27 12:20:41 +00003078 case ISD::DYNAMIC_STACKALLOC:
3079 ExpandDYNAMIC_STACKALLOC(Node, Results);
3080 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00003081 case ISD::MERGE_VALUES:
3082 for (unsigned i = 0; i < Node->getNumValues(); i++)
3083 Results.push_back(Node->getOperand(i));
3084 break;
3085 case ISD::UNDEF: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003086 EVT VT = Node->getValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00003087 if (VT.isInteger())
3088 Results.push_back(DAG.getConstant(0, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003089 else {
3090 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman21d349b2009-05-27 01:25:56 +00003091 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattnercd927182010-04-07 23:47:51 +00003092 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003093 break;
3094 }
3095 case ISD::TRAP: {
3096 // If this operation is not supported, lower it to 'abort()' call
3097 TargetLowering::ArgListTy Args;
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00003098 TargetLowering::CallLoweringInfo CLI(DAG);
3099 CLI.setDebugLoc(dl).setChain(Node->getOperand(0))
3100 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()),
3101 DAG.getExternalSymbol("abort", TLI.getPointerTy()), &Args, 0);
Justin Holewinskiaa583972012-05-25 16:35:28 +00003102 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
3103
Eli Friedman21d349b2009-05-27 01:25:56 +00003104 Results.push_back(CallResult.second);
3105 break;
3106 }
3107 case ISD::FP_ROUND:
Wesley Peck527da1b2010-11-23 03:31:01 +00003108 case ISD::BITCAST:
Eli Friedman21d349b2009-05-27 01:25:56 +00003109 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3110 Node->getValueType(0), dl);
3111 Results.push_back(Tmp1);
3112 break;
3113 case ISD::FP_EXTEND:
3114 Tmp1 = EmitStackConvert(Node->getOperand(0),
3115 Node->getOperand(0).getValueType(),
3116 Node->getValueType(0), dl);
3117 Results.push_back(Tmp1);
3118 break;
3119 case ISD::SIGN_EXTEND_INREG: {
3120 // NOTE: we could fall back on load/store here too for targets without
3121 // SAR. However, it is doubtful that any exist.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003122 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman1d459e42009-12-11 21:31:27 +00003123 EVT VT = Node->getValueType(0);
Owen Andersonb2c80da2011-02-25 21:41:48 +00003124 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003125 if (VT.isVector())
Dan Gohman1d459e42009-12-11 21:31:27 +00003126 ShiftAmountTy = VT;
Dan Gohman6bd3ef82010-01-09 02:13:55 +00003127 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
3128 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman1d459e42009-12-11 21:31:27 +00003129 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman21d349b2009-05-27 01:25:56 +00003130 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
3131 Node->getOperand(0), ShiftCst);
Bill Wendlingef408db2009-12-23 00:28:23 +00003132 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
3133 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003134 break;
3135 }
3136 case ISD::FP_ROUND_INREG: {
3137 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00003138 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman21d349b2009-05-27 01:25:56 +00003139
3140 // NOTE: there is a choice here between constantly creating new stack
3141 // slots and always reusing the same one. We currently always create
3142 // new ones, as reuse may inhibit scheduling.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003143 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman21d349b2009-05-27 01:25:56 +00003144 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
3145 Node->getValueType(0), dl);
3146 Results.push_back(Tmp1);
3147 break;
3148 }
3149 case ISD::SINT_TO_FP:
3150 case ISD::UINT_TO_FP:
3151 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
3152 Node->getOperand(0), Node->getValueType(0), dl);
3153 Results.push_back(Tmp1);
3154 break;
Tom Stellardaad46592014-06-17 16:53:07 +00003155 case ISD::FP_TO_SINT: {
3156 EVT VT = Node->getOperand(0).getValueType();
3157 EVT NVT = Node->getValueType(0);
3158
3159 // FIXME: Only f32 to i64 conversions are supported.
3160 if (VT != MVT::f32 || NVT != MVT::i64)
3161 break;
3162
3163 // Expand f32 -> i64 conversion
3164 // This algorithm comes from compiler-rt's implementation of fixsfdi:
3165 // https://github.com/llvm-mirror/compiler-rt/blob/master/lib/builtins/fixsfdi.c
3166 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(),
3167 VT.getSizeInBits());
3168 SDValue ExponentMask = DAG.getConstant(0x7F800000, IntVT);
3169 SDValue ExponentLoBit = DAG.getConstant(23, IntVT);
3170 SDValue Bias = DAG.getConstant(127, IntVT);
3171 SDValue SignMask = DAG.getConstant(APInt::getSignBit(VT.getSizeInBits()),
3172 IntVT);
3173 SDValue SignLowBit = DAG.getConstant(VT.getSizeInBits() - 1, IntVT);
3174 SDValue MantissaMask = DAG.getConstant(0x007FFFFF, IntVT);
3175
3176 SDValue Bits = DAG.getNode(ISD::BITCAST, dl, IntVT, Node->getOperand(0));
3177
3178 SDValue ExponentBits = DAG.getNode(ISD::SRL, dl, IntVT,
3179 DAG.getNode(ISD::AND, dl, IntVT, Bits, ExponentMask),
3180 DAG.getZExtOrTrunc(ExponentLoBit, dl, TLI.getShiftAmountTy(IntVT)));
3181 SDValue Exponent = DAG.getNode(ISD::SUB, dl, IntVT, ExponentBits, Bias);
3182
3183 SDValue Sign = DAG.getNode(ISD::SRA, dl, IntVT,
3184 DAG.getNode(ISD::AND, dl, IntVT, Bits, SignMask),
3185 DAG.getZExtOrTrunc(SignLowBit, dl, TLI.getShiftAmountTy(IntVT)));
3186 Sign = DAG.getSExtOrTrunc(Sign, dl, NVT);
3187
3188 SDValue R = DAG.getNode(ISD::OR, dl, IntVT,
3189 DAG.getNode(ISD::AND, dl, IntVT, Bits, MantissaMask),
3190 DAG.getConstant(0x00800000, IntVT));
3191
3192 R = DAG.getZExtOrTrunc(R, dl, NVT);
3193
3194
3195 R = DAG.getSelectCC(dl, Exponent, ExponentLoBit,
3196 DAG.getNode(ISD::SHL, dl, NVT, R,
3197 DAG.getZExtOrTrunc(
3198 DAG.getNode(ISD::SUB, dl, IntVT, Exponent, ExponentLoBit),
3199 dl, TLI.getShiftAmountTy(IntVT))),
3200 DAG.getNode(ISD::SRL, dl, NVT, R,
3201 DAG.getZExtOrTrunc(
3202 DAG.getNode(ISD::SUB, dl, IntVT, ExponentLoBit, Exponent),
3203 dl, TLI.getShiftAmountTy(IntVT))),
3204 ISD::SETGT);
3205
3206 SDValue Ret = DAG.getNode(ISD::SUB, dl, NVT,
3207 DAG.getNode(ISD::XOR, dl, NVT, R, Sign),
3208 Sign);
3209
3210 Results.push_back(DAG.getSelectCC(dl, Exponent, DAG.getConstant(0, IntVT),
3211 DAG.getConstant(0, NVT), Ret, ISD::SETLT));
3212 break;
3213 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003214 case ISD::FP_TO_UINT: {
3215 SDValue True, False;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003216 EVT VT = Node->getOperand(0).getValueType();
3217 EVT NVT = Node->getValueType(0);
Tim Northover29178a32013-01-22 09:46:31 +00003218 APFloat apf(DAG.EVTToAPFloatSemantics(VT),
3219 APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman21d349b2009-05-27 01:25:56 +00003220 APInt x = APInt::getSignBit(NVT.getSizeInBits());
3221 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
3222 Tmp1 = DAG.getConstantFP(apf, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003223 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT),
Eli Friedman21d349b2009-05-27 01:25:56 +00003224 Node->getOperand(0),
3225 Tmp1, ISD::SETLT);
3226 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003227 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
3228 DAG.getNode(ISD::FSUB, dl, VT,
3229 Node->getOperand(0), Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00003230 False = DAG.getNode(ISD::XOR, dl, NVT, False,
3231 DAG.getConstant(x, NVT));
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003232 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False);
Eli Friedman21d349b2009-05-27 01:25:56 +00003233 Results.push_back(Tmp1);
3234 break;
3235 }
Eli Friedman3b251702009-05-27 07:58:35 +00003236 case ISD::VAARG: {
3237 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Anderson53aa7a92009-08-10 22:56:29 +00003238 EVT VT = Node->getValueType(0);
Eli Friedman3b251702009-05-27 07:58:35 +00003239 Tmp1 = Node->getOperand(0);
3240 Tmp2 = Node->getOperand(1);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003241 unsigned Align = Node->getConstantOperandVal(3);
3242
Chris Lattner1ffcf522010-09-21 16:36:31 +00003243 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Stephen Lincfe7f352013-07-08 00:37:03 +00003244 MachinePointerInfo(V),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003245 false, false, false, 0);
Rafael Espindola2041abd2010-06-26 18:22:20 +00003246 SDValue VAList = VAListLoad;
3247
Rafael Espindolaa76eccf2010-07-11 04:01:49 +00003248 if (Align > TLI.getMinStackArgumentAlignment()) {
3249 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
3250
Tom Stellard838e2342013-08-26 15:06:10 +00003251 VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Rafael Espindola2041abd2010-06-26 18:22:20 +00003252 DAG.getConstant(Align - 1,
Tom Stellard838e2342013-08-26 15:06:10 +00003253 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003254
Tom Stellard838e2342013-08-26 15:06:10 +00003255 VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList,
Chris Lattnereb313a42010-10-10 18:36:26 +00003256 DAG.getConstant(-(int64_t)Align,
Tom Stellard838e2342013-08-26 15:06:10 +00003257 VAList.getValueType()));
Rafael Espindola2041abd2010-06-26 18:22:20 +00003258 }
3259
Eli Friedman3b251702009-05-27 07:58:35 +00003260 // Increment the pointer, VAList, to the next vaarg
Tom Stellard838e2342013-08-26 15:06:10 +00003261 Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003262 DAG.getConstant(TLI.getDataLayout()->
Evan Cheng87b4f7c2010-04-15 01:25:27 +00003263 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Tom Stellard838e2342013-08-26 15:06:10 +00003264 VAList.getValueType()));
Eli Friedman3b251702009-05-27 07:58:35 +00003265 // Store the incremented VAList to the legalized pointer
Chris Lattner676c61d2010-09-21 18:41:36 +00003266 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
3267 MachinePointerInfo(V), false, false, 0);
Eli Friedman3b251702009-05-27 07:58:35 +00003268 // Load the actual argument out of the pointer VAList
Chris Lattner1ffcf522010-09-21 16:36:31 +00003269 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003270 false, false, false, 0));
Eli Friedman3b251702009-05-27 07:58:35 +00003271 Results.push_back(Results[0].getValue(1));
3272 break;
3273 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003274 case ISD::VACOPY: {
3275 // This defaults to loading a pointer from the input and storing it to the
3276 // output, returning the chain.
3277 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3278 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3279 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattner1ffcf522010-09-21 16:36:31 +00003280 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003281 false, false, false, 0);
Chris Lattner1ffcf522010-09-21 16:36:31 +00003282 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
3283 MachinePointerInfo(VD), false, false, 0);
Bill Wendlingef408db2009-12-23 00:28:23 +00003284 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00003285 break;
3286 }
3287 case ISD::EXTRACT_VECTOR_ELT:
3288 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
3289 // This must be an access of the only element. Return it.
Wesley Peck527da1b2010-11-23 03:31:01 +00003290 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman21d349b2009-05-27 01:25:56 +00003291 Node->getOperand(0));
3292 else
3293 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
3294 Results.push_back(Tmp1);
3295 break;
3296 case ISD::EXTRACT_SUBVECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003297 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman21d349b2009-05-27 01:25:56 +00003298 break;
David Greenebab5e6e2011-01-26 19:13:22 +00003299 case ISD::INSERT_SUBVECTOR:
3300 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
3301 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003302 case ISD::CONCAT_VECTORS: {
Bill Wendlingef408db2009-12-23 00:28:23 +00003303 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman3b251702009-05-27 07:58:35 +00003304 break;
3305 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003306 case ISD::SCALAR_TO_VECTOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003307 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman21d349b2009-05-27 01:25:56 +00003308 break;
Eli Friedmana8f9a022009-05-27 02:16:40 +00003309 case ISD::INSERT_VECTOR_ELT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003310 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
3311 Node->getOperand(1),
3312 Node->getOperand(2), dl));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003313 break;
Eli Friedman3b251702009-05-27 07:58:35 +00003314 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00003315 SmallVector<int, 32> NewMask;
3316 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00003317
Owen Anderson53aa7a92009-08-10 22:56:29 +00003318 EVT VT = Node->getValueType(0);
3319 EVT EltVT = VT.getVectorElementType();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003320 SDValue Op0 = Node->getOperand(0);
3321 SDValue Op1 = Node->getOperand(1);
3322 if (!TLI.isTypeLegal(EltVT)) {
3323
3324 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
3325
3326 // BUILD_VECTOR operands are allowed to be wider than the element type.
Jack Carter5c0af482013-11-19 23:43:22 +00003327 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept
3328 // it.
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003329 if (NewEltVT.bitsLT(EltVT)) {
3330
3331 // Convert shuffle node.
3332 // If original node was v4i64 and the new EltVT is i32,
3333 // cast operands to v8i32 and re-build the mask.
3334
3335 // Calculate new VT, the size of the new VT should be equal to original.
Jack Carter5c0af482013-11-19 23:43:22 +00003336 EVT NewVT =
3337 EVT::getVectorVT(*DAG.getContext(), NewEltVT,
3338 VT.getSizeInBits() / NewEltVT.getSizeInBits());
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003339 assert(NewVT.bitsEq(VT));
3340
3341 // cast operands to new VT
3342 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
3343 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
3344
3345 // Convert the shuffle mask
Jack Carter5c0af482013-11-19 23:43:22 +00003346 unsigned int factor =
3347 NewVT.getVectorNumElements()/VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003348
3349 // EltVT gets smaller
3350 assert(factor > 0);
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003351
3352 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
3353 if (Mask[i] < 0) {
3354 for (unsigned fi = 0; fi < factor; ++fi)
3355 NewMask.push_back(Mask[i]);
3356 }
3357 else {
3358 for (unsigned fi = 0; fi < factor; ++fi)
3359 NewMask.push_back(Mask[i]*factor+fi);
3360 }
3361 }
3362 Mask = NewMask;
3363 VT = NewVT;
3364 }
3365 EltVT = NewEltVT;
3366 }
Eli Friedman3b251702009-05-27 07:58:35 +00003367 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003368 SmallVector<SDValue, 16> Ops;
Eli Friedman3b251702009-05-27 07:58:35 +00003369 for (unsigned i = 0; i != NumElems; ++i) {
3370 if (Mask[i] < 0) {
3371 Ops.push_back(DAG.getUNDEF(EltVT));
3372 continue;
3373 }
3374 unsigned Idx = Mask[i];
3375 if (Idx < NumElems)
Bill Wendlingef408db2009-12-23 00:28:23 +00003376 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003377 Op0,
Tom Stellardd42c5942013-08-05 22:22:01 +00003378 DAG.getConstant(Idx, TLI.getVectorIdxTy())));
Eli Friedman3b251702009-05-27 07:58:35 +00003379 else
Bill Wendlingef408db2009-12-23 00:28:23 +00003380 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovsky8ec21a22012-01-03 11:59:04 +00003381 Op1,
Tom Stellardd42c5942013-08-05 22:22:01 +00003382 DAG.getConstant(Idx - NumElems,
3383 TLI.getVectorIdxTy())));
Eli Friedman3b251702009-05-27 07:58:35 +00003384 }
Nadav Rotem61bdf792012-01-10 14:28:46 +00003385
Craig Topper48d114b2014-04-26 18:35:24 +00003386 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
Nadav Rotem61bdf792012-01-10 14:28:46 +00003387 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
3388 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00003389 Results.push_back(Tmp1);
3390 break;
3391 }
Eli Friedman21d349b2009-05-27 01:25:56 +00003392 case ISD::EXTRACT_ELEMENT: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003393 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman21d349b2009-05-27 01:25:56 +00003394 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
3395 // 1 -> Hi
3396 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
3397 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003398 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman21d349b2009-05-27 01:25:56 +00003399 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
3400 } else {
3401 // 0 -> Lo
3402 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
3403 Node->getOperand(0));
3404 }
3405 Results.push_back(Tmp1);
3406 break;
3407 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003408 case ISD::STACKSAVE:
3409 // Expand to CopyFromReg if the target set
3410 // StackPointerRegisterToSaveRestore.
3411 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003412 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
3413 Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003414 Results.push_back(Results[0].getValue(1));
3415 } else {
Bill Wendlingef408db2009-12-23 00:28:23 +00003416 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedmana8f9a022009-05-27 02:16:40 +00003417 Results.push_back(Node->getOperand(0));
3418 }
3419 break;
3420 case ISD::STACKRESTORE:
Bill Wendlingef408db2009-12-23 00:28:23 +00003421 // Expand to CopyToReg if the target set
3422 // StackPointerRegisterToSaveRestore.
3423 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3424 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3425 Node->getOperand(1)));
3426 } else {
3427 Results.push_back(Node->getOperand(0));
3428 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00003429 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003430 case ISD::FCOPYSIGN:
Bill Wendlingef408db2009-12-23 00:28:23 +00003431 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman2892d822009-05-27 12:20:41 +00003432 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003433 case ISD::FNEG:
3434 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3435 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3436 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3437 Node->getOperand(0));
3438 Results.push_back(Tmp1);
3439 break;
3440 case ISD::FABS: {
3441 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Anderson53aa7a92009-08-10 22:56:29 +00003442 EVT VT = Node->getValueType(0);
Eli Friedmand6f28342009-05-27 03:33:44 +00003443 Tmp1 = Node->getOperand(0);
3444 Tmp2 = DAG.getConstantFP(0.0, VT);
Matt Arsenault758659232013-05-18 00:21:46 +00003445 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()),
Eli Friedmand6f28342009-05-27 03:33:44 +00003446 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendlingef408db2009-12-23 00:28:23 +00003447 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00003448 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmand6f28342009-05-27 03:33:44 +00003449 Results.push_back(Tmp1);
3450 break;
3451 }
3452 case ISD::FSQRT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003453 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003454 RTLIB::SQRT_F80, RTLIB::SQRT_F128,
3455 RTLIB::SQRT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003456 break;
3457 case ISD::FSIN:
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003458 case ISD::FCOS: {
3459 EVT VT = Node->getValueType(0);
3460 bool isSIN = Node->getOpcode() == ISD::FSIN;
3461 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin /
3462 // fcos which share the same operand and both are used.
3463 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) ||
Paul Redmondf29ddfe2013-02-15 18:45:18 +00003464 canCombineSinCosLibcall(Node, TLI, TM))
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003465 && useSinCos(Node)) {
3466 SDVTList VTs = DAG.getVTList(VT, VT);
3467 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0));
3468 if (!isSIN)
3469 Tmp1 = Tmp1.getValue(1);
3470 Results.push_back(Tmp1);
3471 } else if (isSIN) {
3472 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3473 RTLIB::SIN_F80, RTLIB::SIN_F128,
3474 RTLIB::SIN_PPCF128));
3475 } else {
3476 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3477 RTLIB::COS_F80, RTLIB::COS_F128,
3478 RTLIB::COS_PPCF128));
3479 }
Eli Friedmand6f28342009-05-27 03:33:44 +00003480 break;
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003481 }
3482 case ISD::FSINCOS:
3483 // Expand into sincos libcall.
3484 ExpandSinCosLibCall(Node, Results);
Eli Friedmand6f28342009-05-27 03:33:44 +00003485 break;
3486 case ISD::FLOG:
Bill Wendlingef408db2009-12-23 00:28:23 +00003487 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003488 RTLIB::LOG_F80, RTLIB::LOG_F128,
3489 RTLIB::LOG_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003490 break;
3491 case ISD::FLOG2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003492 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003493 RTLIB::LOG2_F80, RTLIB::LOG2_F128,
3494 RTLIB::LOG2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003495 break;
3496 case ISD::FLOG10:
Bill Wendlingef408db2009-12-23 00:28:23 +00003497 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003498 RTLIB::LOG10_F80, RTLIB::LOG10_F128,
3499 RTLIB::LOG10_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003500 break;
3501 case ISD::FEXP:
Bill Wendlingef408db2009-12-23 00:28:23 +00003502 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003503 RTLIB::EXP_F80, RTLIB::EXP_F128,
3504 RTLIB::EXP_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003505 break;
3506 case ISD::FEXP2:
Bill Wendlingef408db2009-12-23 00:28:23 +00003507 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003508 RTLIB::EXP2_F80, RTLIB::EXP2_F128,
3509 RTLIB::EXP2_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003510 break;
3511 case ISD::FTRUNC:
Bill Wendlingef408db2009-12-23 00:28:23 +00003512 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003513 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128,
3514 RTLIB::TRUNC_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003515 break;
3516 case ISD::FFLOOR:
Bill Wendlingef408db2009-12-23 00:28:23 +00003517 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003518 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128,
3519 RTLIB::FLOOR_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003520 break;
3521 case ISD::FCEIL:
Bill Wendlingef408db2009-12-23 00:28:23 +00003522 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003523 RTLIB::CEIL_F80, RTLIB::CEIL_F128,
3524 RTLIB::CEIL_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003525 break;
3526 case ISD::FRINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003527 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003528 RTLIB::RINT_F80, RTLIB::RINT_F128,
3529 RTLIB::RINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003530 break;
3531 case ISD::FNEARBYINT:
Bill Wendlingef408db2009-12-23 00:28:23 +00003532 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3533 RTLIB::NEARBYINT_F64,
3534 RTLIB::NEARBYINT_F80,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003535 RTLIB::NEARBYINT_F128,
Bill Wendlingef408db2009-12-23 00:28:23 +00003536 RTLIB::NEARBYINT_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003537 break;
Hal Finkel171817e2013-08-07 22:49:12 +00003538 case ISD::FROUND:
3539 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32,
3540 RTLIB::ROUND_F64,
3541 RTLIB::ROUND_F80,
3542 RTLIB::ROUND_F128,
3543 RTLIB::ROUND_PPCF128));
3544 break;
Eli Friedmand6f28342009-05-27 03:33:44 +00003545 case ISD::FPOWI:
Bill Wendlingef408db2009-12-23 00:28:23 +00003546 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003547 RTLIB::POWI_F80, RTLIB::POWI_F128,
3548 RTLIB::POWI_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003549 break;
3550 case ISD::FPOW:
Bill Wendlingef408db2009-12-23 00:28:23 +00003551 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003552 RTLIB::POW_F80, RTLIB::POW_F128,
3553 RTLIB::POW_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003554 break;
3555 case ISD::FDIV:
Bill Wendlingef408db2009-12-23 00:28:23 +00003556 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003557 RTLIB::DIV_F80, RTLIB::DIV_F128,
3558 RTLIB::DIV_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003559 break;
3560 case ISD::FREM:
Bill Wendlingef408db2009-12-23 00:28:23 +00003561 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003562 RTLIB::REM_F80, RTLIB::REM_F128,
3563 RTLIB::REM_PPCF128));
Eli Friedmand6f28342009-05-27 03:33:44 +00003564 break;
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003565 case ISD::FMA:
3566 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
Tim Northover4bf47bc2013-01-08 17:09:59 +00003567 RTLIB::FMA_F80, RTLIB::FMA_F128,
3568 RTLIB::FMA_PPCF128));
Cameron Zwarichf03fa182011-07-08 21:39:21 +00003569 break;
Anton Korobeynikov59e96002010-03-14 18:42:24 +00003570 case ISD::FP16_TO_FP32:
3571 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3572 break;
3573 case ISD::FP32_TO_FP16:
3574 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3575 break;
Eli Friedman0e494312009-05-27 07:32:27 +00003576 case ISD::ConstantFP: {
3577 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendlingef408db2009-12-23 00:28:23 +00003578 // Check to see if this FP immediate is already legal.
3579 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman198b7ff2011-11-03 21:49:52 +00003580 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3581 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedman0e494312009-05-27 07:32:27 +00003582 break;
3583 }
Owen Anderson2ee7c4d2012-03-06 00:29:31 +00003584 case ISD::FSUB: {
3585 EVT VT = Node->getValueType(0);
3586 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3587 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3588 "Don't know how to expand this FP subtraction!");
3589 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3590 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3591 Results.push_back(Tmp1);
3592 break;
3593 }
Eli Friedman56883962009-05-27 07:05:37 +00003594 case ISD::SUB: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003595 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003596 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3597 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3598 "Don't know how to expand this subtraction!");
3599 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3600 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Andersonf2118ea2012-05-21 22:39:20 +00003601 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendlingef408db2009-12-23 00:28:23 +00003602 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman56883962009-05-27 07:05:37 +00003603 break;
3604 }
Eli Friedman0e494312009-05-27 07:32:27 +00003605 case ISD::UREM:
3606 case ISD::SREM: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003607 EVT VT = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003608 bool isSigned = Node->getOpcode() == ISD::SREM;
3609 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3610 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3611 Tmp2 = Node->getOperand(0);
3612 Tmp3 = Node->getOperand(1);
Evan Chengb14ce092011-04-16 03:08:26 +00003613 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3614 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng21c4adc2012-10-12 01:15:47 +00003615 // If div is legal, it's better to do the normal expansion
3616 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003617 useDivRem(Node, isSigned, false))) {
Evan Cheng0e88c7d2013-01-29 02:32:37 +00003618 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmane1bc3792009-05-28 03:06:16 +00003619 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3620 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedman0e494312009-05-27 07:32:27 +00003621 // X % Y -> X-X/Y*Y
3622 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3623 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3624 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Chengb14ce092011-04-16 03:08:26 +00003625 } else if (isSigned)
3626 Tmp1 = ExpandIntLibCall(Node, true,
3627 RTLIB::SREM_I8,
3628 RTLIB::SREM_I16, RTLIB::SREM_I32,
3629 RTLIB::SREM_I64, RTLIB::SREM_I128);
3630 else
3631 Tmp1 = ExpandIntLibCall(Node, false,
3632 RTLIB::UREM_I8,
3633 RTLIB::UREM_I16, RTLIB::UREM_I32,
3634 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003635 Results.push_back(Tmp1);
3636 break;
3637 }
Eli Friedman0e494312009-05-27 07:32:27 +00003638 case ISD::UDIV:
3639 case ISD::SDIV: {
3640 bool isSigned = Node->getOpcode() == ISD::SDIV;
3641 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003642 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003643 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Chengb14ce092011-04-16 03:08:26 +00003644 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3645 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8c2ad812012-06-21 05:56:05 +00003646 useDivRem(Node, isSigned, true)))
Eli Friedman0e494312009-05-27 07:32:27 +00003647 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3648 Node->getOperand(1));
Evan Chengb14ce092011-04-16 03:08:26 +00003649 else if (isSigned)
3650 Tmp1 = ExpandIntLibCall(Node, true,
3651 RTLIB::SDIV_I8,
3652 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3653 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3654 else
3655 Tmp1 = ExpandIntLibCall(Node, false,
3656 RTLIB::UDIV_I8,
3657 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3658 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman56883962009-05-27 07:05:37 +00003659 Results.push_back(Tmp1);
3660 break;
3661 }
3662 case ISD::MULHU:
3663 case ISD::MULHS: {
3664 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3665 ISD::SMUL_LOHI;
Owen Anderson53aa7a92009-08-10 22:56:29 +00003666 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003667 SDVTList VTs = DAG.getVTList(VT, VT);
3668 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3669 "If this wasn't legal, it shouldn't have been created!");
3670 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3671 Node->getOperand(1));
3672 Results.push_back(Tmp1.getValue(1));
3673 break;
3674 }
Evan Chengb14ce092011-04-16 03:08:26 +00003675 case ISD::SDIVREM:
3676 case ISD::UDIVREM:
3677 // Expand into divrem libcall
3678 ExpandDivRemLibCall(Node, Results);
3679 break;
Eli Friedman56883962009-05-27 07:05:37 +00003680 case ISD::MUL: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003681 EVT VT = Node->getValueType(0);
Eli Friedman56883962009-05-27 07:05:37 +00003682 SDVTList VTs = DAG.getVTList(VT, VT);
3683 // See if multiply or divide can be lowered using two-result operations.
3684 // We just need the low half of the multiply; try both the signed
3685 // and unsigned forms. If the target supports both SMUL_LOHI and
3686 // UMUL_LOHI, form a preference by checking which forms of plain
3687 // MULH it supports.
3688 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3689 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3690 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3691 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3692 unsigned OpToUse = 0;
3693 if (HasSMUL_LOHI && !HasMULHS) {
3694 OpToUse = ISD::SMUL_LOHI;
3695 } else if (HasUMUL_LOHI && !HasMULHU) {
3696 OpToUse = ISD::UMUL_LOHI;
3697 } else if (HasSMUL_LOHI) {
3698 OpToUse = ISD::SMUL_LOHI;
3699 } else if (HasUMUL_LOHI) {
3700 OpToUse = ISD::UMUL_LOHI;
3701 }
3702 if (OpToUse) {
Bill Wendlingef408db2009-12-23 00:28:23 +00003703 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3704 Node->getOperand(1)));
Eli Friedman56883962009-05-27 07:05:37 +00003705 break;
3706 }
Tom Stellarda1a5d9a2014-04-11 16:12:01 +00003707
3708 SDValue Lo, Hi;
3709 EVT HalfType = VT.getHalfSizedIntegerVT(*DAG.getContext());
3710 if (TLI.isOperationLegalOrCustom(ISD::ZERO_EXTEND, VT) &&
3711 TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND, VT) &&
3712 TLI.isOperationLegalOrCustom(ISD::SHL, VT) &&
3713 TLI.isOperationLegalOrCustom(ISD::OR, VT) &&
3714 TLI.expandMUL(Node, Lo, Hi, HalfType, DAG)) {
3715 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Lo);
3716 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, VT, Hi);
3717 SDValue Shift = DAG.getConstant(HalfType.getSizeInBits(),
3718 TLI.getShiftAmountTy(HalfType));
3719 Hi = DAG.getNode(ISD::SHL, dl, VT, Hi, Shift);
3720 Results.push_back(DAG.getNode(ISD::OR, dl, VT, Lo, Hi));
3721 break;
3722 }
3723
Anton Korobeynikovf93bb392009-11-07 17:14:39 +00003724 Tmp1 = ExpandIntLibCall(Node, false,
3725 RTLIB::MUL_I8,
3726 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman56883962009-05-27 07:05:37 +00003727 RTLIB::MUL_I64, RTLIB::MUL_I128);
3728 Results.push_back(Tmp1);
3729 break;
3730 }
Eli Friedman2892d822009-05-27 12:20:41 +00003731 case ISD::SADDO:
3732 case ISD::SSUBO: {
3733 SDValue LHS = Node->getOperand(0);
3734 SDValue RHS = Node->getOperand(1);
3735 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3736 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3737 LHS, RHS);
3738 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003739 EVT ResultType = Node->getValueType(1);
3740 EVT OType = getSetCCResultType(Node->getValueType(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00003741
Eli Friedman2892d822009-05-27 12:20:41 +00003742 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3743
3744 // LHSSign -> LHS >= 0
3745 // RHSSign -> RHS >= 0
3746 // SumSign -> Sum >= 0
3747 //
3748 // Add:
3749 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3750 // Sub:
3751 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3752 //
3753 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3754 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3755 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3756 Node->getOpcode() == ISD::SADDO ?
3757 ISD::SETEQ : ISD::SETNE);
3758
3759 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3760 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3761
3762 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003763 Results.push_back(DAG.getBoolExtOrTrunc(Cmp, dl, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003764 break;
3765 }
3766 case ISD::UADDO:
3767 case ISD::USUBO: {
3768 SDValue LHS = Node->getOperand(0);
3769 SDValue RHS = Node->getOperand(1);
3770 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3771 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3772 LHS, RHS);
3773 Results.push_back(Sum);
Matt Arsenault3ee37462014-05-28 20:51:42 +00003774
3775 EVT ResultType = Node->getValueType(1);
3776 EVT SetCCType = getSetCCResultType(Node->getValueType(0));
3777 ISD::CondCode CC
3778 = Node->getOpcode() == ISD::UADDO ? ISD::SETULT : ISD::SETUGT;
3779 SDValue SetCC = DAG.getSetCC(dl, SetCCType, Sum, LHS, CC);
3780
3781 Results.push_back(DAG.getBoolExtOrTrunc(SetCC, dl, ResultType));
Eli Friedman2892d822009-05-27 12:20:41 +00003782 break;
3783 }
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003784 case ISD::UMULO:
3785 case ISD::SMULO: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003786 EVT VT = Node->getValueType(0);
Eric Christopherbcaedb52011-04-20 01:19:45 +00003787 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003788 SDValue LHS = Node->getOperand(0);
3789 SDValue RHS = Node->getOperand(1);
3790 SDValue BottomHalf;
3791 SDValue TopHalf;
Nuno Lopes129819d2009-12-23 17:48:10 +00003792 static const unsigned Ops[2][3] =
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003793 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3794 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3795 bool isSigned = Node->getOpcode() == ISD::SMULO;
3796 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3797 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3798 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3799 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3800 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3801 RHS);
3802 TopHalf = BottomHalf.getValue(1);
Eric Christopher83dd2fa2014-04-28 22:24:57 +00003803 } else if (TLI.isTypeLegal(WideVT)) {
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003804 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3805 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3806 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3807 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3808 DAG.getIntPtrConstant(0));
3809 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3810 DAG.getIntPtrConstant(1));
Eric Christopherbb14f652011-01-20 00:29:24 +00003811 } else {
3812 // We can fall back to a libcall with an illegal type for the MUL if we
3813 // have a libcall big enough.
3814 // Also, we can fall back to a division in some cases, but that's a big
3815 // performance hit in the general case.
Eric Christopherbb14f652011-01-20 00:29:24 +00003816 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3817 if (WideVT == MVT::i16)
3818 LC = RTLIB::MUL_I16;
3819 else if (WideVT == MVT::i32)
3820 LC = RTLIB::MUL_I32;
3821 else if (WideVT == MVT::i64)
3822 LC = RTLIB::MUL_I64;
3823 else if (WideVT == MVT::i128)
3824 LC = RTLIB::MUL_I128;
3825 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanae9b1682011-05-16 22:09:53 +00003826
3827 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherbcaedb52011-04-20 01:19:45 +00003828 // part.
3829 unsigned LoSize = VT.getSizeInBits();
3830 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3831 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3832 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3833 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Andersonb2c80da2011-02-25 21:41:48 +00003834
Eric Christopherbcaedb52011-04-20 01:19:45 +00003835 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3836 // pre-lowered to the correct types. This all depends upon WideVT not
3837 // being a legal type for the architecture and thus has to be split to
3838 // two arguments.
3839 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3840 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3841 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3842 DAG.getIntPtrConstant(0));
3843 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3844 DAG.getIntPtrConstant(1));
Dan Gohman198b7ff2011-11-03 21:49:52 +00003845 // Ret is a node with an illegal type. Because such things are not
3846 // generally permitted during this phase of legalization, delete the
3847 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3848 DAG.DeleteNode(Ret.getNode());
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003849 }
Dan Gohmanae9b1682011-05-16 22:09:53 +00003850
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003851 if (isSigned) {
Owen Andersonb2c80da2011-02-25 21:41:48 +00003852 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3853 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003854 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
Matt Arsenault758659232013-05-18 00:21:46 +00003855 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003856 ISD::SETNE);
3857 } else {
Matt Arsenault758659232013-05-18 00:21:46 +00003858 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf,
Eli Friedmanabfad5d2009-06-16 06:58:29 +00003859 DAG.getConstant(0, VT), ISD::SETNE);
3860 }
3861 Results.push_back(BottomHalf);
3862 Results.push_back(TopHalf);
3863 break;
3864 }
Eli Friedman0e494312009-05-27 07:32:27 +00003865 case ISD::BUILD_PAIR: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003866 EVT PairTy = Node->getValueType(0);
Eli Friedman0e494312009-05-27 07:32:27 +00003867 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3868 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendlingef408db2009-12-23 00:28:23 +00003869 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedman0e494312009-05-27 07:32:27 +00003870 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Andersonb2c80da2011-02-25 21:41:48 +00003871 TLI.getShiftAmountTy(PairTy)));
Bill Wendlingef408db2009-12-23 00:28:23 +00003872 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedman0e494312009-05-27 07:32:27 +00003873 break;
3874 }
Eli Friedman3b251702009-05-27 07:58:35 +00003875 case ISD::SELECT:
3876 Tmp1 = Node->getOperand(0);
3877 Tmp2 = Node->getOperand(1);
3878 Tmp3 = Node->getOperand(2);
Bill Wendlingef408db2009-12-23 00:28:23 +00003879 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman3b251702009-05-27 07:58:35 +00003880 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3881 Tmp2, Tmp3,
3882 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendlingef408db2009-12-23 00:28:23 +00003883 } else {
Eli Friedman3b251702009-05-27 07:58:35 +00003884 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3885 DAG.getConstant(0, Tmp1.getValueType()),
3886 Tmp2, Tmp3, ISD::SETNE);
Bill Wendlingef408db2009-12-23 00:28:23 +00003887 }
Eli Friedman3b251702009-05-27 07:58:35 +00003888 Results.push_back(Tmp1);
3889 break;
Eli Friedman2892d822009-05-27 12:20:41 +00003890 case ISD::BR_JT: {
3891 SDValue Chain = Node->getOperand(0);
3892 SDValue Table = Node->getOperand(1);
3893 SDValue Index = Node->getOperand(2);
3894
Owen Anderson53aa7a92009-08-10 22:56:29 +00003895 EVT PTy = TLI.getPointerTy();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003896
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003897 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattnerb6db2c62010-01-25 23:26:13 +00003898 unsigned EntrySize =
3899 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach9b7755f2010-07-02 17:41:59 +00003900
Tom Stellard838e2342013-08-26 15:06:10 +00003901 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(),
3902 Index, DAG.getConstant(EntrySize, Index.getValueType()));
3903 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(),
3904 Index, Table);
Eli Friedman2892d822009-05-27 12:20:41 +00003905
Owen Anderson117c9e82009-08-12 00:36:31 +00003906 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastings81c43062011-02-16 16:23:55 +00003907 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattnera35499e2010-09-21 07:32:19 +00003908 MachinePointerInfo::getJumpTable(), MemVT,
David Greene39c6d012010-02-15 17:00:31 +00003909 false, false, 0);
Eli Friedman2892d822009-05-27 12:20:41 +00003910 Addr = LD;
Dan Gohmanc3349602010-04-19 19:05:59 +00003911 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman2892d822009-05-27 12:20:41 +00003912 // For PIC, the sequence is:
Bill Wendlingef408db2009-12-23 00:28:23 +00003913 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman2892d822009-05-27 12:20:41 +00003914 // RelocBase can be JumpTable, GOT or some sort of global base.
3915 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3916 TLI.getPICJumpTableRelocBase(Table, DAG));
3917 }
Owen Anderson9f944592009-08-11 20:47:22 +00003918 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman2892d822009-05-27 12:20:41 +00003919 Results.push_back(Tmp1);
3920 break;
3921 }
Eli Friedman0e494312009-05-27 07:32:27 +00003922 case ISD::BRCOND:
3923 // Expand brcond's setcc into its constituent parts and create a BR_CC
3924 // Node.
3925 Tmp1 = Node->getOperand(0);
3926 Tmp2 = Node->getOperand(1);
Bill Wendlingef408db2009-12-23 00:28:23 +00003927 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson9f944592009-08-11 20:47:22 +00003928 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedman0e494312009-05-27 07:32:27 +00003929 Tmp1, Tmp2.getOperand(2),
3930 Tmp2.getOperand(0), Tmp2.getOperand(1),
3931 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003932 } else {
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003933 // We test only the i1 bit. Skip the AND if UNDEF.
3934 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3935 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3936 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson9f944592009-08-11 20:47:22 +00003937 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastingsaa02c082011-05-13 00:51:54 +00003938 DAG.getCondCode(ISD::SETNE), Tmp3,
3939 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedman0e494312009-05-27 07:32:27 +00003940 Node->getOperand(2));
Bill Wendlingef408db2009-12-23 00:28:23 +00003941 }
Eli Friedman0e494312009-05-27 07:32:27 +00003942 Results.push_back(Tmp1);
3943 break;
Eli Friedman5df72022009-05-28 03:56:57 +00003944 case ISD::SETCC: {
3945 Tmp1 = Node->getOperand(0);
3946 Tmp2 = Node->getOperand(1);
3947 Tmp3 = Node->getOperand(2);
Tom Stellard08690a12013-09-28 02:50:32 +00003948 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2,
Daniel Sandersedc071b2013-11-21 13:24:49 +00003949 Tmp3, NeedInvert, dl);
Eli Friedman5df72022009-05-28 03:56:57 +00003950
Tom Stellard08690a12013-09-28 02:50:32 +00003951 if (Legalized) {
Daniel Sandersedc071b2013-11-21 13:24:49 +00003952 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
3953 // condition code, create a new SETCC node.
Tom Stellard08690a12013-09-28 02:50:32 +00003954 if (Tmp3.getNode())
3955 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3956 Tmp1, Tmp2, Tmp3);
3957
Daniel Sandersedc071b2013-11-21 13:24:49 +00003958 // If we expanded the SETCC by inverting the condition code, then wrap
3959 // the existing SETCC in a NOT to restore the intended condition.
3960 if (NeedInvert)
Pete Cooper7fd1d722014-05-12 23:26:58 +00003961 Tmp1 = DAG.getLogicalNOT(dl, Tmp1, Tmp1->getValueType(0));
Daniel Sandersedc071b2013-11-21 13:24:49 +00003962
Eli Friedman5df72022009-05-28 03:56:57 +00003963 Results.push_back(Tmp1);
3964 break;
3965 }
3966
3967 // Otherwise, SETCC for the given comparison type must be completely
3968 // illegal; expand it into a SELECT_CC.
Owen Anderson53aa7a92009-08-10 22:56:29 +00003969 EVT VT = Node->getValueType(0);
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003970 int TrueValue;
Benjamin Kramer0f12a5c2013-03-08 17:03:19 +00003971 switch (TLI.getBooleanContents(VT.isVector())) {
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003972 case TargetLowering::ZeroOrOneBooleanContent:
3973 case TargetLowering::UndefinedBooleanContent:
3974 TrueValue = 1;
3975 break;
3976 case TargetLowering::ZeroOrNegativeOneBooleanContent:
3977 TrueValue = -1;
3978 break;
3979 }
Eli Friedman5df72022009-05-28 03:56:57 +00003980 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Tom Stellardd93ef7a2013-03-08 15:37:02 +00003981 DAG.getConstant(TrueValue, VT), DAG.getConstant(0, VT),
3982 Tmp3);
Eli Friedman5df72022009-05-28 03:56:57 +00003983 Results.push_back(Tmp1);
3984 break;
3985 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00003986 case ISD::SELECT_CC: {
3987 Tmp1 = Node->getOperand(0); // LHS
3988 Tmp2 = Node->getOperand(1); // RHS
3989 Tmp3 = Node->getOperand(2); // True
3990 Tmp4 = Node->getOperand(3); // False
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003991 EVT VT = Node->getValueType(0);
Eli Friedmane1dc1932009-05-28 20:40:34 +00003992 SDValue CC = Node->getOperand(4);
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003993 ISD::CondCode CCOp = cast<CondCodeSDNode>(CC)->get();
Eli Friedmane1dc1932009-05-28 20:40:34 +00003994
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00003995 if (TLI.isCondCodeLegal(CCOp, Tmp1.getSimpleValueType())) {
3996 // If the condition code is legal, then we need to expand this
3997 // node using SETCC and SELECT.
3998 EVT CmpVT = Tmp1.getValueType();
3999 assert(!TLI.isOperationExpand(ISD::SELECT, VT) &&
4000 "Cannot expand ISD::SELECT_CC when ISD::SELECT also needs to be "
4001 "expanded.");
4002 EVT CCVT = TLI.getSetCCResultType(*DAG.getContext(), CmpVT);
4003 SDValue Cond = DAG.getNode(ISD::SETCC, dl, CCVT, Tmp1, Tmp2, CC);
4004 Results.push_back(DAG.getSelect(dl, VT, Cond, Tmp3, Tmp4));
4005 break;
4006 }
4007
4008 // SELECT_CC is legal, so the condition code must not be.
Tom Stellard5694d302013-09-28 02:50:43 +00004009 bool Legalized = false;
4010 // Try to legalize by inverting the condition. This is for targets that
4011 // might support an ordered version of a condition, but not the unordered
4012 // version (or vice versa).
Tom Stellard3ca1bfc2014-06-10 16:01:22 +00004013 ISD::CondCode InvCC = ISD::getSetCCInverse(CCOp,
Tom Stellard5694d302013-09-28 02:50:43 +00004014 Tmp1.getValueType().isInteger());
4015 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) {
4016 // Use the new condition code and swap true and false
4017 Legalized = true;
4018 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC);
Tom Stellard08690a12013-09-28 02:50:32 +00004019 } else {
Tom Stellard5694d302013-09-28 02:50:43 +00004020 // If The inverse is not legal, then try to swap the arguments using
4021 // the inverse condition code.
4022 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC);
4023 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) {
4024 // The swapped inverse condition is legal, so swap true and false,
4025 // lhs and rhs.
4026 Legalized = true;
4027 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC);
4028 }
4029 }
4030
4031 if (!Legalized) {
4032 Legalized = LegalizeSetCCCondCode(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004033 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, NeedInvert,
4034 dl);
Tom Stellard5694d302013-09-28 02:50:43 +00004035
4036 assert(Legalized && "Can't legalize SELECT_CC with legal condition!");
Daniel Sandersedc071b2013-11-21 13:24:49 +00004037
4038 // If we expanded the SETCC by inverting the condition code, then swap
4039 // the True/False operands to match.
4040 if (NeedInvert)
4041 std::swap(Tmp3, Tmp4);
4042
4043 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the
4044 // condition code, create a new SELECT_CC node.
Tom Stellard5694d302013-09-28 02:50:43 +00004045 if (CC.getNode()) {
4046 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0),
4047 Tmp1, Tmp2, Tmp3, Tmp4, CC);
4048 } else {
4049 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4050 CC = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004051 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1,
4052 Tmp2, Tmp3, Tmp4, CC);
Tom Stellard5694d302013-09-28 02:50:43 +00004053 }
Tom Stellard08690a12013-09-28 02:50:32 +00004054 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004055 Results.push_back(Tmp1);
4056 break;
4057 }
4058 case ISD::BR_CC: {
4059 Tmp1 = Node->getOperand(0); // Chain
4060 Tmp2 = Node->getOperand(2); // LHS
4061 Tmp3 = Node->getOperand(3); // RHS
4062 Tmp4 = Node->getOperand(1); // CC
4063
Tom Stellard08690a12013-09-28 02:50:32 +00004064 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType(
Daniel Sandersedc071b2013-11-21 13:24:49 +00004065 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, NeedInvert, dl);
Tom Stellard45015d92013-09-28 03:10:17 +00004066 (void)Legalized;
Tom Stellard08690a12013-09-28 02:50:32 +00004067 assert(Legalized && "Can't legalize BR_CC with legal condition!");
Eli Friedmane1dc1932009-05-28 20:40:34 +00004068
Daniel Sandersedc071b2013-11-21 13:24:49 +00004069 // If we expanded the SETCC by inverting the condition code, then wrap
4070 // the existing SETCC in a NOT to restore the intended condition.
4071 if (NeedInvert)
4072 Tmp4 = DAG.getNOT(dl, Tmp4, Tmp4->getValueType(0));
4073
4074 // If we expanded the SETCC by swapping LHS and RHS, create a new BR_CC
Tom Stellard08690a12013-09-28 02:50:32 +00004075 // node.
4076 if (Tmp4.getNode()) {
4077 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1,
4078 Tmp4, Tmp2, Tmp3, Node->getOperand(4));
4079 } else {
4080 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
4081 Tmp4 = DAG.getCondCode(ISD::SETNE);
Jack Carter5c0af482013-11-19 23:43:22 +00004082 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4,
4083 Tmp2, Tmp3, Node->getOperand(4));
Tom Stellard08690a12013-09-28 02:50:32 +00004084 }
Eli Friedmane1dc1932009-05-28 20:40:34 +00004085 Results.push_back(Tmp1);
4086 break;
4087 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004088 case ISD::BUILD_VECTOR:
4089 Results.push_back(ExpandBUILD_VECTOR(Node));
4090 break;
4091 case ISD::SRA:
4092 case ISD::SRL:
4093 case ISD::SHL: {
4094 // Scalarize vector SRA/SRL/SHL.
4095 EVT VT = Node->getValueType(0);
4096 assert(VT.isVector() && "Unable to legalize non-vector shift");
4097 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
4098 unsigned NumElem = VT.getVectorNumElements();
4099
4100 SmallVector<SDValue, 8> Scalars;
4101 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
4102 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
4103 VT.getScalarType(),
Tom Stellardd42c5942013-08-05 22:22:01 +00004104 Node->getOperand(0), DAG.getConstant(Idx,
4105 TLI.getVectorIdxTy()));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004106 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
4107 VT.getScalarType(),
Tom Stellardd42c5942013-08-05 22:22:01 +00004108 Node->getOperand(1), DAG.getConstant(Idx,
4109 TLI.getVectorIdxTy()));
Dan Gohman198b7ff2011-11-03 21:49:52 +00004110 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
4111 VT.getScalarType(), Ex, Sh));
4112 }
4113 SDValue Result =
Craig Topper48d114b2014-04-26 18:35:24 +00004114 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0), Scalars);
Eli Friedman13477152011-11-11 23:58:27 +00004115 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman198b7ff2011-11-03 21:49:52 +00004116 break;
4117 }
Eli Friedmana8f9a022009-05-27 02:16:40 +00004118 case ISD::GLOBAL_OFFSET_TABLE:
4119 case ISD::GlobalAddress:
4120 case ISD::GlobalTLSAddress:
4121 case ISD::ExternalSymbol:
4122 case ISD::ConstantPool:
4123 case ISD::JumpTable:
4124 case ISD::INTRINSIC_W_CHAIN:
4125 case ISD::INTRINSIC_WO_CHAIN:
4126 case ISD::INTRINSIC_VOID:
4127 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedmana8f9a022009-05-27 02:16:40 +00004128 break;
Eli Friedman21d349b2009-05-27 01:25:56 +00004129 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004130
4131 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004132 if (!Results.empty())
4133 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004134}
Dan Gohman198b7ff2011-11-03 21:49:52 +00004135
4136void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
4137 SmallVector<SDValue, 8> Results;
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004138 MVT OVT = Node->getSimpleValueType(0);
Eli Friedman21d349b2009-05-27 01:25:56 +00004139 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedman97f3f962009-07-17 05:16:04 +00004140 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendlingef408db2009-12-23 00:28:23 +00004141 Node->getOpcode() == ISD::SETCC) {
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004142 OVT = Node->getOperand(0).getSimpleValueType();
Bill Wendlingef408db2009-12-23 00:28:23 +00004143 }
Patrik Hagglundfd41b5b2012-12-19 11:21:04 +00004144 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004145 SDLoc dl(Node);
Eli Friedman3b251702009-05-27 07:58:35 +00004146 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman21d349b2009-05-27 01:25:56 +00004147 switch (Node->getOpcode()) {
4148 case ISD::CTTZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004149 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004150 case ISD::CTLZ:
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004151 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman21d349b2009-05-27 01:25:56 +00004152 case ISD::CTPOP:
4153 // Zero extend the argument.
4154 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004155 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
4156 // already the correct result.
Jakob Stoklund Olesen6b9f63c2009-07-12 17:43:20 +00004157 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004158 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004159 // FIXME: This should set a bit in the zero extended value instead.
Matt Arsenault758659232013-05-18 00:21:46 +00004160 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT),
Eli Friedman21d349b2009-05-27 01:25:56 +00004161 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
4162 ISD::SETEQ);
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004163 Tmp1 = DAG.getSelect(dl, NVT, Tmp2,
4164 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth637cc6a2011-12-13 01:56:10 +00004165 } else if (Node->getOpcode() == ISD::CTLZ ||
4166 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman21d349b2009-05-27 01:25:56 +00004167 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4168 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
4169 DAG.getConstant(NVT.getSizeInBits() -
4170 OVT.getSizeInBits(), NVT));
4171 }
Bill Wendlingef408db2009-12-23 00:28:23 +00004172 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman21d349b2009-05-27 01:25:56 +00004173 break;
4174 case ISD::BSWAP: {
4175 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling70794592009-12-22 22:53:39 +00004176 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004177 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4178 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Andersonb2c80da2011-02-25 21:41:48 +00004179 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendlingef408db2009-12-23 00:28:23 +00004180 Results.push_back(Tmp1);
Eli Friedman21d349b2009-05-27 01:25:56 +00004181 break;
4182 }
4183 case ISD::FP_TO_UINT:
4184 case ISD::FP_TO_SINT:
4185 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
4186 Node->getOpcode() == ISD::FP_TO_SINT, dl);
4187 Results.push_back(Tmp1);
4188 break;
4189 case ISD::UINT_TO_FP:
4190 case ISD::SINT_TO_FP:
4191 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
4192 Node->getOpcode() == ISD::SINT_TO_FP, dl);
4193 Results.push_back(Tmp1);
4194 break;
Hal Finkel71c2ba32012-03-24 03:53:52 +00004195 case ISD::VAARG: {
4196 SDValue Chain = Node->getOperand(0); // Get the chain.
4197 SDValue Ptr = Node->getOperand(1); // Get the pointer.
4198
4199 unsigned TruncOp;
4200 if (OVT.isVector()) {
4201 TruncOp = ISD::BITCAST;
4202 } else {
4203 assert(OVT.isInteger()
4204 && "VAARG promotion is supported only for vectors or integer types");
4205 TruncOp = ISD::TRUNCATE;
4206 }
4207
4208 // Perform the larger operation, then convert back
4209 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
4210 Node->getConstantOperandVal(3));
4211 Chain = Tmp1.getValue(1);
4212
4213 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
4214
4215 // Modified the chain result - switch anything that used the old chain to
4216 // use the new one.
4217 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
4218 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
4219 ReplacedNode(Node);
4220 break;
4221 }
Eli Friedmand6f28342009-05-27 03:33:44 +00004222 case ISD::AND:
4223 case ISD::OR:
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004224 case ISD::XOR: {
4225 unsigned ExtOp, TruncOp;
4226 if (OVT.isVector()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004227 ExtOp = ISD::BITCAST;
4228 TruncOp = ISD::BITCAST;
Chris Lattnercd927182010-04-07 23:47:51 +00004229 } else {
4230 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004231 ExtOp = ISD::ANY_EXTEND;
4232 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004233 }
4234 // Promote each of the values to the new type.
4235 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4236 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4237 // Perform the larger operation, then convert back
Bill Wendlingef408db2009-12-23 00:28:23 +00004238 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
4239 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmand6f28342009-05-27 03:33:44 +00004240 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004241 }
4242 case ISD::SELECT: {
Eli Friedman3b251702009-05-27 07:58:35 +00004243 unsigned ExtOp, TruncOp;
Tom Stellardc9a67a22014-03-24 16:07:28 +00004244 if (Node->getValueType(0).isVector() ||
4245 Node->getValueType(0).getSizeInBits() == NVT.getSizeInBits()) {
Wesley Peck527da1b2010-11-23 03:31:01 +00004246 ExtOp = ISD::BITCAST;
4247 TruncOp = ISD::BITCAST;
Eli Friedman2892d822009-05-27 12:20:41 +00004248 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman3b251702009-05-27 07:58:35 +00004249 ExtOp = ISD::ANY_EXTEND;
4250 TruncOp = ISD::TRUNCATE;
4251 } else {
4252 ExtOp = ISD::FP_EXTEND;
4253 TruncOp = ISD::FP_ROUND;
4254 }
4255 Tmp1 = Node->getOperand(0);
4256 // Promote each of the values to the new type.
4257 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
4258 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
4259 // Perform the larger operation, then round down.
Matt Arsenaultd2f03322013-06-14 22:04:37 +00004260 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3);
Eli Friedman3b251702009-05-27 07:58:35 +00004261 if (TruncOp != ISD::FP_ROUND)
Bill Wendlingef408db2009-12-23 00:28:23 +00004262 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004263 else
Bill Wendlingef408db2009-12-23 00:28:23 +00004264 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman3b251702009-05-27 07:58:35 +00004265 DAG.getIntPtrConstant(0));
Bill Wendlingef408db2009-12-23 00:28:23 +00004266 Results.push_back(Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004267 break;
Jakob Stoklund Olesened0e1a02009-07-12 18:10:18 +00004268 }
Eli Friedman3b251702009-05-27 07:58:35 +00004269 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramer339ced42012-01-15 13:16:05 +00004270 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman3b251702009-05-27 07:58:35 +00004271
4272 // Cast the two input vectors.
Wesley Peck527da1b2010-11-23 03:31:01 +00004273 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
4274 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman3b251702009-05-27 07:58:35 +00004275
4276 // Convert the shuffle mask to the right # elements.
Bill Wendlingef408db2009-12-23 00:28:23 +00004277 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peck527da1b2010-11-23 03:31:01 +00004278 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman3b251702009-05-27 07:58:35 +00004279 Results.push_back(Tmp1);
4280 break;
4281 }
Eli Friedman5df72022009-05-28 03:56:57 +00004282 case ISD::SETCC: {
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004283 unsigned ExtOp = ISD::FP_EXTEND;
4284 if (NVT.isInteger()) {
4285 ISD::CondCode CCCode =
4286 cast<CondCodeSDNode>(Node->getOperand(2))->get();
4287 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedman5df72022009-05-28 03:56:57 +00004288 }
Jakob Stoklund Olesen1ae07362009-07-24 18:22:59 +00004289 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
4290 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedman5df72022009-05-28 03:56:57 +00004291 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
4292 Tmp1, Tmp2, Node->getOperand(2)));
4293 break;
4294 }
Pete Coopere69be6d2012-03-19 23:38:12 +00004295 case ISD::FDIV:
Pete Cooper8a3dc0e2012-04-04 19:36:31 +00004296 case ISD::FREM:
Pete Cooper99415fe2012-01-12 21:46:18 +00004297 case ISD::FPOW: {
4298 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4299 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopere69be6d2012-03-19 23:38:12 +00004300 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooper99415fe2012-01-12 21:46:18 +00004301 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4302 Tmp3, DAG.getIntPtrConstant(0)));
4303 break;
4304 }
4305 case ISD::FLOG2:
4306 case ISD::FEXP2:
4307 case ISD::FLOG:
4308 case ISD::FEXP: {
4309 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
4310 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
4311 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
4312 Tmp2, DAG.getIntPtrConstant(0)));
4313 break;
4314 }
Eli Friedman21d349b2009-05-27 01:25:56 +00004315 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00004316
4317 // Replace the original node with the legalized result.
Eli Friedman13477152011-11-11 23:58:27 +00004318 if (!Results.empty())
4319 ReplaceNode(Node, Results.data());
Eli Friedman21d349b2009-05-27 01:25:56 +00004320}
4321
Chris Lattnerdc750592005-01-07 07:47:09 +00004322// SelectionDAG::Legalize - This is the entry point for the file.
4323//
Dan Gohmand282f462011-05-16 22:19:54 +00004324void SelectionDAG::Legalize() {
Chris Lattnerdc750592005-01-07 07:47:09 +00004325 /// run - This is the main entry point to this class.
4326 ///
Dan Gohmand282f462011-05-16 22:19:54 +00004327 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattnerdc750592005-01-07 07:47:09 +00004328}