blob: c46df309356d5275cca951dceeeff1c7e1f6b1ef [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
Bill Wendling0bcbd1d2012-06-28 00:05:13 +000014#include "llvm/CallingConv.h"
15#include "llvm/Constants.h"
16#include "llvm/DebugInfo.h"
17#include "llvm/DerivedTypes.h"
18#include "llvm/LLVMContext.h"
Evan Cheng3d2125c2010-11-30 23:55:39 +000019#include "llvm/CodeGen/Analysis.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000020#include "llvm/CodeGen/MachineFunction.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000021#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Cheng3d2125c2010-11-30 23:55:39 +000022#include "llvm/CodeGen/SelectionDAG.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000023#include "llvm/Target/TargetFrameLowering.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000024#include "llvm/Target/TargetLowering.h"
Micah Villmow3574eca2012-10-08 16:38:25 +000025#include "llvm/DataLayout.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000026#include "llvm/Target/TargetMachine.h"
David Greene993aace2010-01-05 01:24:53 +000027#include "llvm/Support/Debug.h"
Jim Grosbache03262f2010-06-18 21:43:38 +000028#include "llvm/Support/ErrorHandling.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner45cfe542009-08-23 06:03:38 +000030#include "llvm/Support/raw_ostream.h"
Chris Lattner79715142007-02-03 01:12:36 +000031#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000032#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000033#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000034using namespace llvm;
35
36//===----------------------------------------------------------------------===//
37/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
38/// hacks on it until the target machine can handle it. This involves
39/// eliminating value sizes the machine cannot handle (promoting small sizes to
40/// large sizes or splitting up large values into small values) as well as
41/// eliminating operations the machine cannot handle.
42///
43/// This code also does a small amount of optimization and recognition of idioms
44/// as part of its processing. For example, if a target does not support a
45/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
46/// will attempt merge setcc and brc instructions into brcc's.
47///
48namespace {
Dan Gohman65fd6562011-11-03 21:49:52 +000049class SelectionDAGLegalize : public SelectionDAG::DAGUpdateListener {
Dan Gohman55e59c12010-04-19 19:05:59 +000050 const TargetMachine &TM;
Dan Gohmand858e902010-04-17 15:26:15 +000051 const TargetLowering &TLI;
Chris Lattner3e928bb2005-01-07 07:47:09 +000052 SelectionDAG &DAG;
53
Dan Gohman65fd6562011-11-03 21:49:52 +000054 /// LegalizePosition - The iterator for walking through the node list.
55 SelectionDAG::allnodes_iterator LegalizePosition;
56
57 /// LegalizedNodes - The set of nodes which have already been legalized.
58 SmallPtrSet<SDNode *, 16> LegalizedNodes;
59
Chris Lattner6831a812006-02-13 09:18:02 +000060 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000061
Chris Lattner3e928bb2005-01-07 07:47:09 +000062public:
Dan Gohman975716a2011-05-16 22:19:54 +000063 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +000064
Chris Lattner3e928bb2005-01-07 07:47:09 +000065 void LegalizeDAG();
66
Chris Lattner456a93a2006-01-28 07:39:30 +000067private:
Dan Gohman65fd6562011-11-03 21:49:52 +000068 /// LegalizeOp - Legalizes the given operation.
69 void LegalizeOp(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +000070
Eli Friedman7ef3d172009-06-06 07:04:42 +000071 SDValue OptimizeFloatStore(StoreSDNode *ST);
72
Nadav Rotemb6e89f02012-07-11 08:52:09 +000073 void LegalizeLoadOps(SDNode *Node);
74 void LegalizeStoreOps(SDNode *Node);
75
Nate Begeman68679912008-04-25 18:07:40 +000076 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
77 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
78 /// is necessary to spill the vector being inserted into to memory, perform
79 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +000080 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Eli Friedman3f727d62009-05-27 02:16:40 +000081 SDValue Idx, DebugLoc dl);
82 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val,
83 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +000084
Nate Begeman5a5ca152009-04-29 05:20:52 +000085 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
86 /// performs the same shuffe in terms of order or result bytes, but on a type
87 /// whose vector element type is narrower than the original shuffle type.
88 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Owen Andersone50ed302009-08-10 22:56:29 +000089 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Jim Grosbach6e992612010-07-02 17:41:59 +000090 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +000091 ArrayRef<int> Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +000092
Owen Andersone50ed302009-08-10 22:56:29 +000093 void LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +000094 DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +000095
Eli Friedman47b41f72009-05-27 02:21:29 +000096 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
Eric Christopherabbbfbd2011-04-20 01:19:45 +000097 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
98 unsigned NumOps, bool isSigned, DebugLoc dl);
99
Jim Grosbache03262f2010-06-18 21:43:38 +0000100 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
101 SDNode *Node, bool isSigned);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000102 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32,
103 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80,
104 RTLIB::Libcall Call_PPCF128);
Anton Korobeynikov8983da72009-11-07 17:14:39 +0000105 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned,
106 RTLIB::Libcall Call_I8,
107 RTLIB::Libcall Call_I16,
108 RTLIB::Libcall Call_I32,
109 RTLIB::Libcall Call_I64,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +0000110 RTLIB::Libcall Call_I128);
Evan Cheng65279cb2011-04-16 03:08:26 +0000111 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results);
Chris Lattnercad063f2005-07-16 00:19:57 +0000112
Owen Andersone50ed302009-08-10 22:56:29 +0000113 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000114 SDValue ExpandBUILD_VECTOR(SDNode *Node);
115 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Eli Friedman4bc8c712009-05-27 12:20:41 +0000116 void ExpandDYNAMIC_STACKALLOC(SDNode *Node,
117 SmallVectorImpl<SDValue> &Results);
118 SDValue ExpandFCOPYSIGN(SDNode *Node);
Owen Andersone50ed302009-08-10 22:56:29 +0000119 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +0000120 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000121 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000122 DebugLoc dl);
Owen Andersone50ed302009-08-10 22:56:29 +0000123 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +0000124 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000125
Dale Johannesen8a782a22009-02-02 22:12:50 +0000126 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
127 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000128
Eli Friedman3d43b3f2009-05-23 22:37:25 +0000129 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
David Greenecfe33c42011-01-26 19:13:22 +0000130 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000131 SDValue ExpandVectorBuildThroughStack(SDNode* Node);
Eli Friedman8c377c72009-05-27 01:25:56 +0000132
Dan Gohman65fd6562011-11-03 21:49:52 +0000133 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP);
134
Jim Grosbache03262f2010-06-18 21:43:38 +0000135 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node);
136
Dan Gohman65fd6562011-11-03 21:49:52 +0000137 void ExpandNode(SDNode *Node);
138 void PromoteNode(SDNode *Node);
139
Eli Friedman0e3642a2011-11-11 23:58:27 +0000140 void ForgetNode(SDNode *N) {
Dan Gohman65fd6562011-11-03 21:49:52 +0000141 LegalizedNodes.erase(N);
142 if (LegalizePosition == SelectionDAG::allnodes_iterator(N))
143 ++LegalizePosition;
144 }
145
Eli Friedman0e3642a2011-11-11 23:58:27 +0000146public:
147 // DAGUpdateListener implementation.
148 virtual void NodeDeleted(SDNode *N, SDNode *E) {
149 ForgetNode(N);
150 }
Dan Gohman65fd6562011-11-03 21:49:52 +0000151 virtual void NodeUpdated(SDNode *N) {}
Eli Friedman0e3642a2011-11-11 23:58:27 +0000152
153 // Node replacement helpers
154 void ReplacedNode(SDNode *N) {
155 if (N->use_empty()) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000156 DAG.RemoveDeadNode(N);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000157 } else {
158 ForgetNode(N);
159 }
160 }
161 void ReplaceNode(SDNode *Old, SDNode *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000162 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000163 ReplacedNode(Old);
164 }
165 void ReplaceNode(SDValue Old, SDValue New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000166 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000167 ReplacedNode(Old.getNode());
168 }
169 void ReplaceNode(SDNode *Old, const SDValue *New) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000170 DAG.ReplaceAllUsesWith(Old, New);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000171 ReplacedNode(Old);
172 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000173};
174}
175
Nate Begeman5a5ca152009-04-29 05:20:52 +0000176/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
177/// performs the same shuffe in terms of order or result bytes, but on a type
178/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000179/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Jim Grosbach6e992612010-07-02 17:41:59 +0000180SDValue
181SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, DebugLoc dl,
Nate Begeman5a5ca152009-04-29 05:20:52 +0000182 SDValue N1, SDValue N2,
Benjamin Kramered4c8c62012-01-15 13:16:05 +0000183 ArrayRef<int> Mask) const {
Nate Begeman5a5ca152009-04-29 05:20:52 +0000184 unsigned NumMaskElts = VT.getVectorNumElements();
185 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000186 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000187
Nate Begeman9008ca62009-04-27 18:41:29 +0000188 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
189
190 if (NumEltsGrowth == 1)
191 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
Jim Grosbach6e992612010-07-02 17:41:59 +0000192
Nate Begeman9008ca62009-04-27 18:41:29 +0000193 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000194 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000195 int Idx = Mask[i];
196 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
Jim Grosbach6e992612010-07-02 17:41:59 +0000197 if (Idx < 0)
Nate Begeman9008ca62009-04-27 18:41:29 +0000198 NewMask.push_back(-1);
199 else
200 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000201 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000202 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000203 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000204 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
205 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000206}
207
Dan Gohman975716a2011-05-16 22:19:54 +0000208SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +0000209 : SelectionDAG::DAGUpdateListener(dag),
210 TM(dag.getTarget()), TLI(dag.getTargetLoweringInfo()),
Dan Gohmanea027022011-07-15 22:19:02 +0000211 DAG(dag) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000212}
213
Chris Lattner3e928bb2005-01-07 07:47:09 +0000214void SelectionDAGLegalize::LegalizeDAG() {
Dan Gohmanf06c8352008-09-30 18:30:35 +0000215 DAG.AssignTopologicalOrder();
Dan Gohman2ba60e52011-10-28 01:29:32 +0000216
Dan Gohman65fd6562011-11-03 21:49:52 +0000217 // Visit all the nodes. We start in topological order, so that we see
218 // nodes with their original operands intact. Legalization can produce
219 // new nodes which may themselves need to be legalized. Iterate until all
220 // nodes have been legalized.
221 for (;;) {
222 bool AnyLegalized = false;
223 for (LegalizePosition = DAG.allnodes_end();
224 LegalizePosition != DAG.allnodes_begin(); ) {
225 --LegalizePosition;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000226
Dan Gohman65fd6562011-11-03 21:49:52 +0000227 SDNode *N = LegalizePosition;
228 if (LegalizedNodes.insert(N)) {
229 AnyLegalized = true;
230 LegalizeOp(N);
231 }
232 }
233 if (!AnyLegalized)
234 break;
235
236 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000237
238 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000239 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000240}
241
Evan Cheng9f877882006-12-13 20:57:08 +0000242/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
243/// a load from the constant pool.
Dan Gohman65fd6562011-11-03 21:49:52 +0000244SDValue
245SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) {
Evan Cheng00495212006-12-12 21:32:44 +0000246 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000247 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000248
249 // If a FP immediate is precise when represented as a float and if the
250 // target can do an extending load from float to double, we put it into
251 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000252 // double. This shrinks FP constants and canonicalizes them for targets where
253 // an FP extending load is the same cost as a normal load (such as on the x87
254 // fp stack or PPC FP unit).
Owen Andersone50ed302009-08-10 22:56:29 +0000255 EVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000256 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000257 if (!UseCP) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000258 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000259 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000260 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000261 }
262
Owen Andersone50ed302009-08-10 22:56:29 +0000263 EVT OrigVT = VT;
264 EVT SVT = VT;
Owen Anderson825b72b2009-08-11 20:47:22 +0000265 while (SVT != MVT::f32) {
266 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1);
Dan Gohman7720cb32010-06-18 14:01:07 +0000267 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) &&
Evan Chengef120572008-03-04 08:05:30 +0000268 // Only do this if the target has a native EXTLOAD instruction from
269 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000270 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000271 TLI.ShouldShrinkFPConstant(OrigVT)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000272 Type *SType = SVT.getTypeForEVT(*DAG.getContext());
Owen Andersonbaf3c402009-07-29 18:55:55 +0000273 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
Evan Chengef120572008-03-04 08:05:30 +0000274 VT = SVT;
275 Extend = true;
276 }
Evan Cheng00495212006-12-12 21:32:44 +0000277 }
278
Dan Gohman475871a2008-07-27 21:46:04 +0000279 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000280 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman65fd6562011-11-03 21:49:52 +0000281 if (Extend) {
282 SDValue Result =
283 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT,
284 DAG.getEntryNode(),
285 CPIdx, MachinePointerInfo::getConstantPool(),
286 VT, false, false, Alignment);
287 return Result;
288 }
289 SDValue Result =
290 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000291 MachinePointerInfo::getConstantPool(), false, false, false,
Dan Gohman65fd6562011-11-03 21:49:52 +0000292 Alignment);
293 return Result;
Evan Cheng00495212006-12-12 21:32:44 +0000294}
295
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000296/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
Dan Gohman65fd6562011-11-03 21:49:52 +0000297static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
298 const TargetLowering &TLI,
Eli Friedman0e3642a2011-11-11 23:58:27 +0000299 SelectionDAGLegalize *DAGLegalize) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000300 assert(ST->getAddressingMode() == ISD::UNINDEXED &&
301 "unaligned indexed stores not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000302 SDValue Chain = ST->getChain();
303 SDValue Ptr = ST->getBasePtr();
304 SDValue Val = ST->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +0000305 EVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000306 int Alignment = ST->getAlignment();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000307 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000308 if (ST->getMemoryVT().isFloatingPoint() ||
309 ST->getMemoryVT().isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000310 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
Duncan Sands05e11fa2008-12-12 21:47:02 +0000311 if (TLI.isTypeLegal(intVT)) {
312 // Expand to a bitconvert of the value to the integer type of the
313 // same size, then a (misaligned) int store.
314 // FIXME: Does not handle truncating floating point stores!
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000315 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val);
Dan Gohman65fd6562011-11-03 21:49:52 +0000316 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
317 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000318 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000319 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000320 }
Dan Gohman1b328962011-05-17 22:22:52 +0000321 // Do a (aligned) store to a stack slot, then copy from the stack slot
322 // to the final destination using (unaligned) integer loads and stores.
323 EVT StoredVT = ST->getMemoryVT();
324 EVT RegVT =
325 TLI.getRegisterType(*DAG.getContext(),
326 EVT::getIntegerVT(*DAG.getContext(),
327 StoredVT.getSizeInBits()));
328 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
329 unsigned RegBytes = RegVT.getSizeInBits() / 8;
330 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
331
332 // Make sure the stack slot is also aligned for the register type.
333 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
334
335 // Perform the original store, only redirected to the stack slot.
336 SDValue Store = DAG.getTruncStore(Chain, dl,
337 Val, StackPtr, MachinePointerInfo(),
338 StoredVT, false, false, 0);
339 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
340 SmallVector<SDValue, 8> Stores;
341 unsigned Offset = 0;
342
343 // Do all but one copies using the full register width.
344 for (unsigned i = 1; i < NumRegs; i++) {
345 // Load one integer register's worth from the stack slot.
346 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
347 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000348 false, false, false, 0);
Dan Gohman1b328962011-05-17 22:22:52 +0000349 // Store it to the final location. Remember the store.
350 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
351 ST->getPointerInfo().getWithOffset(Offset),
352 ST->isVolatile(), ST->isNonTemporal(),
353 MinAlign(ST->getAlignment(), Offset)));
354 // Increment the pointers.
355 Offset += RegBytes;
356 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
357 Increment);
358 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
359 }
360
361 // The last store may be partial. Do a truncating store. On big-endian
362 // machines this requires an extending load from the stack slot to ensure
363 // that the bits are in the right place.
364 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
365 8 * (StoredBytes - Offset));
366
367 // Load from the stack slot.
368 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
369 MachinePointerInfo(),
370 MemVT, false, false, 0);
371
372 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
373 ST->getPointerInfo()
374 .getWithOffset(Offset),
375 MemVT, ST->isVolatile(),
376 ST->isNonTemporal(),
377 MinAlign(ST->getAlignment(), Offset)));
378 // The order of the stores doesn't matter - say it with a TokenFactor.
Dan Gohman65fd6562011-11-03 21:49:52 +0000379 SDValue Result =
380 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
381 Stores.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +0000382 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +0000383 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000384 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000385 assert(ST->getMemoryVT().isInteger() &&
386 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000387 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000388 // Get the half-size VT
Ken Dyckbceddbd2009-12-17 20:09:43 +0000389 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000390 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000391 int IncrementSize = NumBits / 8;
392
393 // Divide the stored value in two parts.
Owen Anderson95771af2011-02-25 21:41:48 +0000394 SDValue ShiftAmount = DAG.getConstant(NumBits,
395 TLI.getShiftAmountTy(Val.getValueType()));
Dan Gohman475871a2008-07-27 21:46:04 +0000396 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000397 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000398
399 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000400 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000401 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000402 ST->getPointerInfo(), NewStoredVT,
David Greene1e559442010-02-15 17:00:31 +0000403 ST->isVolatile(), ST->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000404 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000405 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000406 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000407 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000408 ST->getPointerInfo().getWithOffset(IncrementSize),
David Greene1e559442010-02-15 17:00:31 +0000409 NewStoredVT, ST->isVolatile(), ST->isNonTemporal(),
410 Alignment);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000411
Dan Gohman65fd6562011-11-03 21:49:52 +0000412 SDValue Result =
413 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Eli Friedman0e3642a2011-11-11 23:58:27 +0000414 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000415}
416
417/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
Dan Gohman65fd6562011-11-03 21:49:52 +0000418static void
419ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
420 const TargetLowering &TLI,
421 SDValue &ValResult, SDValue &ChainResult) {
Eli Friedmanb91b6002011-11-16 02:43:15 +0000422 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
423 "unaligned indexed loads not implemented!");
Dan Gohman475871a2008-07-27 21:46:04 +0000424 SDValue Chain = LD->getChain();
425 SDValue Ptr = LD->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +0000426 EVT VT = LD->getValueType(0);
427 EVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000428 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000429 if (VT.isFloatingPoint() || VT.isVector()) {
Owen Anderson23b9b192009-08-12 00:36:31 +0000430 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits());
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000431 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000432 // Expand to a (misaligned) integer load of the same size,
433 // then bitconvert to floating point or vector.
Chris Lattnerecf42c42010-09-21 16:36:31 +0000434 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
435 LD->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000436 LD->isNonTemporal(),
437 LD->isInvariant(), LD->getAlignment());
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000438 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
Nadav Rotem0b66bd92012-08-09 01:56:44 +0000439 if (LoadedVT != VT)
440 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND :
441 ISD::ANY_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000442
Dan Gohman65fd6562011-11-03 21:49:52 +0000443 ValResult = Result;
444 ChainResult = Chain;
445 return;
Duncan Sands05e11fa2008-12-12 21:47:02 +0000446 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000447
Chris Lattnerecf42c42010-09-21 16:36:31 +0000448 // Copy the value to a (aligned) stack slot using (unaligned) integer
449 // loads and stores, then do a (aligned) load from the stack slot.
450 EVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT);
451 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
452 unsigned RegBytes = RegVT.getSizeInBits() / 8;
453 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
454
455 // Make sure the stack slot is also aligned for the register type.
456 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
457
458 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
459 SmallVector<SDValue, 8> Stores;
460 SDValue StackPtr = StackBase;
461 unsigned Offset = 0;
462
463 // Do all but one copies using the full register width.
464 for (unsigned i = 1; i < NumRegs; i++) {
465 // Load one integer register's worth from the original location.
466 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
467 LD->getPointerInfo().getWithOffset(Offset),
468 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +0000469 LD->isInvariant(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000470 MinAlign(LD->getAlignment(), Offset));
471 // Follow the load with a store to the stack slot. Remember the store.
472 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Chris Lattner6229d0a2010-09-21 18:41:36 +0000473 MachinePointerInfo(), false, false, 0));
Chris Lattnerecf42c42010-09-21 16:36:31 +0000474 // Increment the pointers.
475 Offset += RegBytes;
476 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
477 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
478 Increment);
479 }
480
481 // The last copy may be partial. Do an extending load.
482 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(),
483 8 * (LoadedBytes - Offset));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000484 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000485 LD->getPointerInfo().getWithOffset(Offset),
486 MemVT, LD->isVolatile(),
487 LD->isNonTemporal(),
488 MinAlign(LD->getAlignment(), Offset));
489 // Follow the load with a store to the stack slot. Remember the store.
490 // On big-endian machines this requires a truncating store to ensure
491 // that the bits end up in the right place.
492 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
493 MachinePointerInfo(), MemVT,
494 false, false, 0));
495
496 // The order of the stores doesn't matter - say it with a TokenFactor.
497 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
498 Stores.size());
499
500 // Finally, perform the original load only redirected to the stack slot.
Stuart Hastingsa9011292011-02-16 16:23:55 +0000501 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000502 MachinePointerInfo(), LoadedVT, false, false, 0);
503
504 // Callers expect a MERGE_VALUES node.
Dan Gohman65fd6562011-11-03 21:49:52 +0000505 ValResult = Load;
506 ChainResult = TF;
507 return;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000508 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000509 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000510 "Unaligned load of unsupported type.");
511
Dale Johannesen8155d642008-02-27 22:36:00 +0000512 // Compute the new VT that is half the size of the old one. This is an
513 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000514 unsigned NumBits = LoadedVT.getSizeInBits();
Owen Andersone50ed302009-08-10 22:56:29 +0000515 EVT NewLoadedVT;
Owen Anderson23b9b192009-08-12 00:36:31 +0000516 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000517 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000518
Chris Lattnere400af82007-11-19 21:38:03 +0000519 unsigned Alignment = LD->getAlignment();
520 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000521 ISD::LoadExtType HiExtType = LD->getExtensionType();
522
523 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
524 if (HiExtType == ISD::NON_EXTLOAD)
525 HiExtType = ISD::ZEXTLOAD;
526
527 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000528 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000529 if (TLI.isLittleEndian()) {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000530 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000531 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000532 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000533 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000534 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000535 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000536 LD->getPointerInfo().getWithOffset(IncrementSize),
537 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000538 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000539 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +0000540 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(),
Chris Lattnerecf42c42010-09-21 16:36:31 +0000541 NewLoadedVT, LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +0000542 LD->isNonTemporal(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000543 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000544 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Stuart Hastingsa9011292011-02-16 16:23:55 +0000545 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr,
Chris Lattnerecf42c42010-09-21 16:36:31 +0000546 LD->getPointerInfo().getWithOffset(IncrementSize),
547 NewLoadedVT, LD->isVolatile(),
Jim Grosbach6e992612010-07-02 17:41:59 +0000548 LD->isNonTemporal(), MinAlign(Alignment,IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000549 }
550
551 // aggregate the two parts
Owen Anderson95771af2011-02-25 21:41:48 +0000552 SDValue ShiftAmount = DAG.getConstant(NumBits,
553 TLI.getShiftAmountTy(Hi.getValueType()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000554 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
555 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000556
Owen Anderson825b72b2009-08-11 20:47:22 +0000557 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000558 Hi.getValue(1));
559
Dan Gohman65fd6562011-11-03 21:49:52 +0000560 ValResult = Result;
561 ChainResult = TF;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000562}
Evan Cheng912095b2007-01-04 21:56:39 +0000563
Nate Begeman68679912008-04-25 18:07:40 +0000564/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
565/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
566/// is necessary to spill the vector being inserted into to memory, perform
567/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000568SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000569PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
570 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000571 SDValue Tmp1 = Vec;
572 SDValue Tmp2 = Val;
573 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000574
Nate Begeman68679912008-04-25 18:07:40 +0000575 // If the target doesn't support this, we have to spill the input vector
576 // to a temporary stack slot, update the element, then reload it. This is
577 // badness. We could also load the value into a vector register (either
578 // with a "move to register" or "extload into register" instruction, then
579 // permute it into place, if the idx is a constant and if the idx is
580 // supported by the target.
Owen Andersone50ed302009-08-10 22:56:29 +0000581 EVT VT = Tmp1.getValueType();
582 EVT EltVT = VT.getVectorElementType();
583 EVT IdxVT = Tmp3.getValueType();
584 EVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000585 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000586
Evan Chengff89dcb2009-10-18 18:16:27 +0000587 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
588
Nate Begeman68679912008-04-25 18:07:40 +0000589 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000590 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +0000591 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +0000592 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000593
594 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000595 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000596 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000597 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +0000598 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000599 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
600 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000601 // Store the scalar value.
Chris Lattner85ca1062010-09-21 07:32:19 +0000602 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT,
David Greene1e559442010-02-15 17:00:31 +0000603 false, false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000604 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000605 return DAG.getLoad(VT, dl, Ch, StackPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +0000606 MachinePointerInfo::getFixedStack(SPFI), false, false,
607 false, 0);
Nate Begeman68679912008-04-25 18:07:40 +0000608}
609
Mon P Wange9f10152008-12-09 05:46:39 +0000610
Eli Friedman3f727d62009-05-27 02:16:40 +0000611SDValue SelectionDAGLegalize::
612ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, DebugLoc dl) {
613 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) {
614 // SCALAR_TO_VECTOR requires that the type of the value being inserted
615 // match the element type of the vector being created, except for
616 // integers in which case the inserted value can be over width.
Owen Andersone50ed302009-08-10 22:56:29 +0000617 EVT EltVT = Vec.getValueType().getVectorElementType();
Eli Friedman3f727d62009-05-27 02:16:40 +0000618 if (Val.getValueType() == EltVT ||
619 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
620 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
621 Vec.getValueType(), Val);
622
623 unsigned NumElts = Vec.getValueType().getVectorNumElements();
624 // We generate a shuffle of InVec and ScVec, so the shuffle mask
625 // should be 0,1,2,3,4,5... with the appropriate element replaced with
626 // elt 0 of the RHS.
627 SmallVector<int, 8> ShufOps;
628 for (unsigned i = 0; i != NumElts; ++i)
629 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
630
631 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec,
632 &ShufOps[0]);
633 }
634 }
635 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl);
636}
637
Eli Friedman7ef3d172009-06-06 07:04:42 +0000638SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) {
639 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
640 // FIXME: We shouldn't do this for TargetConstantFP's.
641 // FIXME: move this to the DAG Combiner! Note that we can't regress due
642 // to phase ordering between legalized code and the dag combiner. This
643 // probably means that we need to integrate dag combiner and legalizer
644 // together.
645 // We generally can't do this one for long doubles.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000646 SDValue Chain = ST->getChain();
647 SDValue Ptr = ST->getBasePtr();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000648 unsigned Alignment = ST->getAlignment();
649 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +0000650 bool isNonTemporal = ST->isNonTemporal();
Eli Friedman7ef3d172009-06-06 07:04:42 +0000651 DebugLoc dl = ST->getDebugLoc();
652 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000653 if (CFP->getValueType(0) == MVT::f32 &&
Dan Gohman75b10042011-07-15 22:39:09 +0000654 TLI.isTypeLegal(MVT::i32)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000655 SDValue Con = DAG.getConstant(CFP->getValueAPF().
Eli Friedman7ef3d172009-06-06 07:04:42 +0000656 bitcastToAPInt().zextOrTrunc(32),
Owen Anderson825b72b2009-08-11 20:47:22 +0000657 MVT::i32);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000658 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000659 isVolatile, isNonTemporal, Alignment);
660 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000661
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000662 if (CFP->getValueType(0) == MVT::f64) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000663 // If this target supports 64-bit registers, do a single 64-bit store.
Dan Gohman75b10042011-07-15 22:39:09 +0000664 if (TLI.isTypeLegal(MVT::i64)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000665 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +0000666 zextOrTrunc(64), MVT::i64);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000667 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(),
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000668 isVolatile, isNonTemporal, Alignment);
669 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000670
Dan Gohman75b10042011-07-15 22:39:09 +0000671 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) {
Eli Friedman7ef3d172009-06-06 07:04:42 +0000672 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
673 // stores. If the target supports neither 32- nor 64-bits, this
674 // xform is certainly not worth it.
675 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Jay Foad40f8f622010-12-07 08:25:19 +0000676 SDValue Lo = DAG.getConstant(IntVal.trunc(32), MVT::i32);
Owen Anderson825b72b2009-08-11 20:47:22 +0000677 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000678 if (TLI.isBigEndian()) std::swap(Lo, Hi);
679
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000680 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000681 isNonTemporal, Alignment);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000682 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Eli Friedman7ef3d172009-06-06 07:04:42 +0000683 DAG.getIntPtrConstant(4));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000684 Hi = DAG.getStore(Chain, dl, Hi, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +0000685 ST->getPointerInfo().getWithOffset(4),
David Greene1e559442010-02-15 17:00:31 +0000686 isVolatile, isNonTemporal, MinAlign(Alignment, 4U));
Eli Friedman7ef3d172009-06-06 07:04:42 +0000687
Owen Anderson825b72b2009-08-11 20:47:22 +0000688 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000689 }
690 }
691 }
Evan Cheng8e23e812011-04-01 00:42:02 +0000692 return SDValue(0, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +0000693}
694
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000695void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) {
696 StoreSDNode *ST = cast<StoreSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000697 SDValue Chain = ST->getChain();
698 SDValue Ptr = ST->getBasePtr();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000699 DebugLoc dl = Node->getDebugLoc();
700
701 unsigned Alignment = ST->getAlignment();
702 bool isVolatile = ST->isVolatile();
703 bool isNonTemporal = ST->isNonTemporal();
704
705 if (!ST->isTruncatingStore()) {
706 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) {
707 ReplaceNode(ST, OptStore);
708 return;
709 }
710
711 {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000712 SDValue Value = ST->getValue();
713 EVT VT = Value.getValueType();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000714 switch (TLI.getOperationAction(ISD::STORE, VT)) {
715 default: llvm_unreachable("This action is not supported yet!");
716 case TargetLowering::Legal:
717 // If this is an unaligned store and the target doesn't support it,
718 // expand it.
719 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
720 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000721 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000722 if (ST->getAlignment() < ABIAlignment)
723 ExpandUnalignedStore(cast<StoreSDNode>(Node),
724 DAG, TLI, this);
725 }
726 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000727 case TargetLowering::Custom: {
728 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
729 if (Res.getNode())
730 ReplaceNode(SDValue(Node, 0), Res);
731 return;
732 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000733 case TargetLowering::Promote: {
734 assert(VT.isVector() && "Unknown legal promote case!");
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000735 Value = DAG.getNode(ISD::BITCAST, dl,
736 TLI.getTypeToPromoteTo(ISD::STORE, VT), Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000737 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000738 DAG.getStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000739 ST->getPointerInfo(), isVolatile,
740 isNonTemporal, Alignment);
741 ReplaceNode(SDValue(Node, 0), Result);
742 break;
743 }
744 }
745 return;
746 }
747 } else {
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000748 SDValue Value = ST->getValue();
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000749
750 EVT StVT = ST->getMemoryVT();
751 unsigned StWidth = StVT.getSizeInBits();
752
753 if (StWidth != StVT.getStoreSizeInBits()) {
754 // Promote to a byte-sized store with upper bits zero if not
755 // storing an integral number of bytes. For example, promote
756 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
757 EVT NVT = EVT::getIntegerVT(*DAG.getContext(),
758 StVT.getStoreSizeInBits());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000759 Value = DAG.getZeroExtendInReg(Value, dl, StVT);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000760 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000761 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000762 NVT, isVolatile, isNonTemporal, Alignment);
763 ReplaceNode(SDValue(Node, 0), Result);
764 } else if (StWidth & (StWidth - 1)) {
765 // If not storing a power-of-2 number of bits, expand as two stores.
766 assert(!StVT.isVector() && "Unsupported truncstore!");
767 unsigned RoundWidth = 1 << Log2_32(StWidth);
768 assert(RoundWidth < StWidth);
769 unsigned ExtraWidth = StWidth - RoundWidth;
770 assert(ExtraWidth < RoundWidth);
771 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
772 "Store size not an integral number of bytes!");
773 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
774 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
775 SDValue Lo, Hi;
776 unsigned IncrementSize;
777
778 if (TLI.isLittleEndian()) {
779 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
780 // Store the bottom RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000781 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000782 RoundVT,
783 isVolatile, isNonTemporal, Alignment);
784
785 // Store the remaining ExtraWidth bits.
786 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000787 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000788 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000789 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000790 DAG.getConstant(RoundWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000791 TLI.getShiftAmountTy(Value.getValueType())));
792 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000793 ST->getPointerInfo().getWithOffset(IncrementSize),
794 ExtraVT, isVolatile, isNonTemporal,
795 MinAlign(Alignment, IncrementSize));
796 } else {
797 // Big endian - avoid unaligned stores.
798 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
799 // Store the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000800 Hi = DAG.getNode(ISD::SRL, dl, Value.getValueType(), Value,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000801 DAG.getConstant(ExtraWidth,
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000802 TLI.getShiftAmountTy(Value.getValueType())));
803 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000804 RoundVT, isVolatile, isNonTemporal, Alignment);
805
806 // Store the remaining ExtraWidth bits.
807 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000808 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000809 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000810 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000811 ST->getPointerInfo().getWithOffset(IncrementSize),
812 ExtraVT, isVolatile, isNonTemporal,
813 MinAlign(Alignment, IncrementSize));
814 }
815
816 // The order of the stores doesn't matter.
817 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
818 ReplaceNode(SDValue(Node, 0), Result);
819 } else {
820 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
821 default: llvm_unreachable("This action is not supported yet!");
822 case TargetLowering::Legal:
823 // If this is an unaligned store and the target doesn't support it,
824 // expand it.
825 if (!TLI.allowsUnalignedMemoryAccesses(ST->getMemoryVT())) {
826 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +0000827 unsigned ABIAlignment= TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000828 if (ST->getAlignment() < ABIAlignment)
829 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this);
830 }
831 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000832 case TargetLowering::Custom: {
833 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
834 if (Res.getNode())
835 ReplaceNode(SDValue(Node, 0), Res);
836 return;
837 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000838 case TargetLowering::Expand:
839 assert(!StVT.isVector() &&
840 "Vector Stores are handled in LegalizeVectorOps");
841
842 // TRUNCSTORE:i16 i32 -> STORE i16
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000843 assert(TLI.isTypeLegal(StVT) &&
844 "Do not know how to expand this store!");
845 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000846 SDValue Result =
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000847 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000848 isVolatile, isNonTemporal, Alignment);
849 ReplaceNode(SDValue(Node, 0), Result);
850 break;
851 }
852 }
853 }
854}
855
856void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
857 LoadSDNode *LD = cast<LoadSDNode>(Node);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000858 SDValue Chain = LD->getChain(); // The chain.
859 SDValue Ptr = LD->getBasePtr(); // The base pointer.
860 SDValue Value; // The value returned by the load op.
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000861 DebugLoc dl = Node->getDebugLoc();
862
863 ISD::LoadExtType ExtType = LD->getExtensionType();
864 if (ExtType == ISD::NON_EXTLOAD) {
865 EVT VT = Node->getValueType(0);
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000866 SDValue RVal = SDValue(Node, 0);
867 SDValue RChain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000868
869 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
870 default: llvm_unreachable("This action is not supported yet!");
871 case TargetLowering::Legal:
Evan Chengfe257cc2012-09-18 01:34:40 +0000872 // If this is an unaligned load and the target doesn't support it,
873 // expand it.
874 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
875 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
876 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +0000877 TLI.getDataLayout()->getABITypeAlignment(Ty);
Evan Chengfe257cc2012-09-18 01:34:40 +0000878 if (LD->getAlignment() < ABIAlignment){
879 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain);
880 }
881 }
882 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000883 case TargetLowering::Custom: {
Evan Chengfe257cc2012-09-18 01:34:40 +0000884 SDValue Res = TLI.LowerOperation(RVal, DAG);
885 if (Res.getNode()) {
886 RVal = Res;
887 RChain = Res.getValue(1);
888 }
889 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000890 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000891 case TargetLowering::Promote: {
892 // Only promote a load of vector type to another.
893 assert(VT.isVector() && "Cannot promote this load!");
894 // Change base type to a different vector type.
895 EVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
896
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000897 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000898 LD->isVolatile(), LD->isNonTemporal(),
899 LD->isInvariant(), LD->getAlignment());
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000900 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
901 RChain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000902 break;
903 }
904 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000905 if (RChain.getNode() != Node) {
906 assert(RVal.getNode() != Node && "Load must be completely replaced");
907 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
908 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000909 ReplacedNode(Node);
910 }
911 return;
912 }
913
914 EVT SrcVT = LD->getMemoryVT();
915 unsigned SrcWidth = SrcVT.getSizeInBits();
916 unsigned Alignment = LD->getAlignment();
917 bool isVolatile = LD->isVolatile();
918 bool isNonTemporal = LD->isNonTemporal();
919
920 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
921 // Some targets pretend to have an i1 loading operation, and actually
922 // load an i8. This trick is correct for ZEXTLOAD because the top 7
923 // bits are guaranteed to be zero; it helps the optimizers understand
924 // that these bits are zero. It is also useful for EXTLOAD, since it
925 // tells the optimizers that those bits are undefined. It would be
926 // nice to have an effective generic way of getting these benefits...
927 // Until such a way is found, don't insist on promoting i1 here.
928 (SrcVT != MVT::i1 ||
929 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
930 // Promote to a byte-sized load if not loading an integral number of
931 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
932 unsigned NewWidth = SrcVT.getStoreSizeInBits();
933 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
934 SDValue Ch;
935
936 // The extra bits are guaranteed to be zero, since we stored them that
937 // way. A zext load from NVT thus automatically gives zext from SrcVT.
938
939 ISD::LoadExtType NewExtType =
940 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
941
942 SDValue Result =
943 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000944 Chain, Ptr, LD->getPointerInfo(),
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000945 NVT, isVolatile, isNonTemporal, Alignment);
946
947 Ch = Result.getValue(1); // The chain.
948
949 if (ExtType == ISD::SEXTLOAD)
950 // Having the top bits zero doesn't help when sign extending.
951 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
952 Result.getValueType(),
953 Result, DAG.getValueType(SrcVT));
954 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
955 // All the top bits are guaranteed to be zero - inform the optimizers.
956 Result = DAG.getNode(ISD::AssertZext, dl,
957 Result.getValueType(), Result,
958 DAG.getValueType(SrcVT));
959
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000960 Value = Result;
961 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000962 } else if (SrcWidth & (SrcWidth - 1)) {
963 // If not loading a power-of-2 number of bits, expand as two loads.
964 assert(!SrcVT.isVector() && "Unsupported extload!");
965 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
966 assert(RoundWidth < SrcWidth);
967 unsigned ExtraWidth = SrcWidth - RoundWidth;
968 assert(ExtraWidth < RoundWidth);
969 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
970 "Load size not an integral number of bytes!");
971 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth);
972 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth);
973 SDValue Lo, Hi, Ch;
974 unsigned IncrementSize;
975
976 if (TLI.isLittleEndian()) {
977 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
978 // Load the bottom RoundWidth bits.
979 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000980 Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000981 LD->getPointerInfo(), RoundVT, isVolatile,
982 isNonTemporal, Alignment);
983
984 // Load the remaining ExtraWidth bits.
985 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000986 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000987 DAG.getIntPtrConstant(IncrementSize));
Nadav Rotem4b24bf82012-07-11 11:02:16 +0000988 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +0000989 LD->getPointerInfo().getWithOffset(IncrementSize),
990 ExtraVT, isVolatile, isNonTemporal,
991 MinAlign(Alignment, IncrementSize));
992
993 // Build a factor node to remember that this load is independent of
994 // the other one.
995 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
996 Hi.getValue(1));
997
998 // Move the top bits to the right place.
999 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1000 DAG.getConstant(RoundWidth,
1001 TLI.getShiftAmountTy(Hi.getValueType())));
1002
1003 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001004 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001005 } else {
1006 // Big endian - avoid unaligned loads.
1007 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1008 // Load the top RoundWidth bits.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001009 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001010 LD->getPointerInfo(), RoundVT, isVolatile,
1011 isNonTemporal, Alignment);
1012
1013 // Load the remaining ExtraWidth bits.
1014 IncrementSize = RoundWidth / 8;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001015 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001016 DAG.getIntPtrConstant(IncrementSize));
1017 Lo = DAG.getExtLoad(ISD::ZEXTLOAD,
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001018 dl, Node->getValueType(0), Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001019 LD->getPointerInfo().getWithOffset(IncrementSize),
1020 ExtraVT, isVolatile, isNonTemporal,
1021 MinAlign(Alignment, IncrementSize));
1022
1023 // Build a factor node to remember that this load is independent of
1024 // the other one.
1025 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
1026 Hi.getValue(1));
1027
1028 // Move the top bits to the right place.
1029 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
1030 DAG.getConstant(ExtraWidth,
1031 TLI.getShiftAmountTy(Hi.getValueType())));
1032
1033 // Join the hi and lo parts.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001034 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001035 }
1036
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001037 Chain = Ch;
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001038 } else {
1039 bool isCustom = false;
1040 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
1041 default: llvm_unreachable("This action is not supported yet!");
1042 case TargetLowering::Custom:
1043 isCustom = true;
1044 // FALLTHROUGH
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001045 case TargetLowering::Legal: {
1046 Value = SDValue(Node, 0);
1047 Chain = SDValue(Node, 1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001048
1049 if (isCustom) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001050 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1051 if (Res.getNode()) {
1052 Value = Res;
1053 Chain = Res.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001054 }
1055 } else {
1056 // If this is an unaligned load and the target doesn't support it,
1057 // expand it.
1058 if (!TLI.allowsUnalignedMemoryAccesses(LD->getMemoryVT())) {
1059 Type *Ty =
1060 LD->getMemoryVT().getTypeForEVT(*DAG.getContext());
1061 unsigned ABIAlignment =
Micah Villmow3574eca2012-10-08 16:38:25 +00001062 TLI.getDataLayout()->getABITypeAlignment(Ty);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001063 if (LD->getAlignment() < ABIAlignment){
1064 ExpandUnalignedLoad(cast<LoadSDNode>(Node),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001065 DAG, TLI, Value, Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001066 }
1067 }
1068 }
1069 break;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001070 }
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001071 case TargetLowering::Expand:
1072 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, SrcVT) && TLI.isTypeLegal(SrcVT)) {
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001073 SDValue Load = DAG.getLoad(SrcVT, dl, Chain, Ptr,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001074 LD->getPointerInfo(),
1075 LD->isVolatile(), LD->isNonTemporal(),
1076 LD->isInvariant(), LD->getAlignment());
1077 unsigned ExtendOp;
1078 switch (ExtType) {
1079 case ISD::EXTLOAD:
1080 ExtendOp = (SrcVT.isFloatingPoint() ?
1081 ISD::FP_EXTEND : ISD::ANY_EXTEND);
1082 break;
1083 case ISD::SEXTLOAD: ExtendOp = ISD::SIGN_EXTEND; break;
1084 case ISD::ZEXTLOAD: ExtendOp = ISD::ZERO_EXTEND; break;
1085 default: llvm_unreachable("Unexpected extend load type!");
1086 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001087 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load);
1088 Chain = Load.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001089 break;
1090 }
1091
1092 assert(!SrcVT.isVector() &&
1093 "Vector Loads are handled in LegalizeVectorOps");
1094
1095 // FIXME: This does not work for vectors on most targets. Sign- and
1096 // zero-extend operations are currently folded into extending loads,
1097 // whether they are legal or not, and then we end up here without any
1098 // support for legalizing them.
1099 assert(ExtType != ISD::EXTLOAD &&
1100 "EXTLOAD should always be supported!");
1101 // Turn the unsupported load into an EXTLOAD followed by an explicit
1102 // zero/sign extend inreg.
1103 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001104 Chain, Ptr, LD->getPointerInfo(), SrcVT,
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001105 LD->isVolatile(), LD->isNonTemporal(),
1106 LD->getAlignment());
1107 SDValue ValRes;
1108 if (ExtType == ISD::SEXTLOAD)
1109 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
1110 Result.getValueType(),
1111 Result, DAG.getValueType(SrcVT));
1112 else
1113 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType());
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001114 Value = ValRes;
1115 Chain = Result.getValue(1);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001116 break;
1117 }
1118 }
1119
1120 // Since loads produce two values, make sure to remember that we legalized
1121 // both of them.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001122 if (Chain.getNode() != Node) {
1123 assert(Value.getNode() != Node && "Load must be completely replaced");
1124 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value);
1125 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001126 ReplacedNode(Node);
1127 }
1128}
1129
Dan Gohman6a109f92011-07-15 21:42:20 +00001130/// LegalizeOp - Return a legal replacement for the given operation, with
1131/// all legal operands.
Dan Gohman65fd6562011-11-03 21:49:52 +00001132void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
1133 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1134 return;
Scott Michelfdc40a02009-02-17 22:15:04 +00001135
Eli Friedman1fde9c52009-05-24 02:46:31 +00001136 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001137 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) ==
1138 TargetLowering::TypeLegal &&
Eli Friedman1fde9c52009-05-24 02:46:31 +00001139 "Unexpected illegal type!");
1140
1141 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Dan Gohman75b10042011-07-15 22:39:09 +00001142 assert((TLI.getTypeAction(*DAG.getContext(),
1143 Node->getOperand(i).getValueType()) ==
1144 TargetLowering::TypeLegal ||
Eli Friedman1fde9c52009-05-24 02:46:31 +00001145 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
1146 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001147
Eli Friedman8c377c72009-05-27 01:25:56 +00001148 // Figure out the correct action; the way to query this varies by opcode
Bill Wendling6b9a2932011-01-26 22:21:35 +00001149 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
Eli Friedman8c377c72009-05-27 01:25:56 +00001150 bool SimpleFinishLegalizing = true;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001151 switch (Node->getOpcode()) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001152 case ISD::INTRINSIC_W_CHAIN:
1153 case ISD::INTRINSIC_WO_CHAIN:
1154 case ISD::INTRINSIC_VOID:
Eli Friedman8c377c72009-05-27 01:25:56 +00001155 case ISD::STACKSAVE:
Owen Anderson825b72b2009-08-11 20:47:22 +00001156 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
Eli Friedman8c377c72009-05-27 01:25:56 +00001157 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00001158 case ISD::VAARG:
1159 Action = TLI.getOperationAction(Node->getOpcode(),
1160 Node->getValueType(0));
1161 if (Action != TargetLowering::Promote)
1162 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other);
1163 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001164 case ISD::SINT_TO_FP:
1165 case ISD::UINT_TO_FP:
1166 case ISD::EXTRACT_VECTOR_ELT:
1167 Action = TLI.getOperationAction(Node->getOpcode(),
1168 Node->getOperand(0).getValueType());
1169 break;
1170 case ISD::FP_ROUND_INREG:
1171 case ISD::SIGN_EXTEND_INREG: {
Owen Andersone50ed302009-08-10 22:56:29 +00001172 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00001173 Action = TLI.getOperationAction(Node->getOpcode(), InnerType);
1174 break;
1175 }
Eli Friedman327236c2011-08-24 20:50:09 +00001176 case ISD::ATOMIC_STORE: {
1177 Action = TLI.getOperationAction(Node->getOpcode(),
1178 Node->getOperand(2).getValueType());
1179 break;
1180 }
Eli Friedman3be2e512009-05-28 03:06:16 +00001181 case ISD::SELECT_CC:
1182 case ISD::SETCC:
1183 case ISD::BR_CC: {
1184 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 :
1185 Node->getOpcode() == ISD::SETCC ? 2 : 1;
1186 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0;
Owen Andersone50ed302009-08-10 22:56:29 +00001187 EVT OpVT = Node->getOperand(CompareOperand).getValueType();
Eli Friedman3be2e512009-05-28 03:06:16 +00001188 ISD::CondCode CCCode =
1189 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get();
1190 Action = TLI.getCondCodeAction(CCCode, OpVT);
1191 if (Action == TargetLowering::Legal) {
1192 if (Node->getOpcode() == ISD::SELECT_CC)
1193 Action = TLI.getOperationAction(Node->getOpcode(),
1194 Node->getValueType(0));
1195 else
1196 Action = TLI.getOperationAction(Node->getOpcode(), OpVT);
1197 }
1198 break;
1199 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001200 case ISD::LOAD:
1201 case ISD::STORE:
Eli Friedmanad754602009-05-28 03:56:57 +00001202 // FIXME: Model these properly. LOAD and STORE are complicated, and
1203 // STORE expects the unlegalized operand in some cases.
1204 SimpleFinishLegalizing = false;
1205 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001206 case ISD::CALLSEQ_START:
1207 case ISD::CALLSEQ_END:
Eli Friedmanad754602009-05-28 03:56:57 +00001208 // FIXME: This shouldn't be necessary. These nodes have special properties
1209 // dealing with the recursive nature of legalization. Removing this
1210 // special case should be done as part of making LegalizeDAG non-recursive.
1211 SimpleFinishLegalizing = false;
1212 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001213 case ISD::EXTRACT_ELEMENT:
1214 case ISD::FLT_ROUNDS_:
1215 case ISD::SADDO:
1216 case ISD::SSUBO:
1217 case ISD::UADDO:
1218 case ISD::USUBO:
1219 case ISD::SMULO:
1220 case ISD::UMULO:
1221 case ISD::FPOWI:
1222 case ISD::MERGE_VALUES:
1223 case ISD::EH_RETURN:
1224 case ISD::FRAME_TO_ARGS_OFFSET:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00001225 case ISD::EH_SJLJ_SETJMP:
1226 case ISD::EH_SJLJ_LONGJMP:
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001227 // These operations lie about being legal: when they claim to be legal,
1228 // they should actually be expanded.
Eli Friedman8c377c72009-05-27 01:25:56 +00001229 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1230 if (Action == TargetLowering::Legal)
1231 Action = TargetLowering::Expand;
1232 break;
Duncan Sands4a544a72011-09-06 13:37:06 +00001233 case ISD::INIT_TRAMPOLINE:
1234 case ISD::ADJUST_TRAMPOLINE:
Eli Friedman8c377c72009-05-27 01:25:56 +00001235 case ISD::FRAMEADDR:
1236 case ISD::RETURNADDR:
Eli Friedman4bc8c712009-05-27 12:20:41 +00001237 // These operations lie about being legal: when they claim to be legal,
1238 // they should actually be custom-lowered.
1239 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1240 if (Action == TargetLowering::Legal)
1241 Action = TargetLowering::Custom;
Eli Friedman8c377c72009-05-27 01:25:56 +00001242 break;
Shuxin Yang970755e2012-10-19 20:11:16 +00001243 case ISD::DEBUGTRAP:
1244 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
1245 if (Action == TargetLowering::Expand) {
1246 // replace ISD::DEBUGTRAP with ISD::TRAP
1247 SDValue NewVal;
1248 NewVal = DAG.getNode (ISD::TRAP, Node->getDebugLoc(), Node->getVTList(),
1249 Node->getOperand(0));
1250 ReplaceNode(Node, NewVal.getNode());
1251 LegalizeOp(NewVal.getNode());
1252 return;
1253 }
1254 break;
1255
Chris Lattner3e928bb2005-01-07 07:47:09 +00001256 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001257 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
Eli Friedman8c377c72009-05-27 01:25:56 +00001258 Action = TargetLowering::Legal;
1259 } else {
1260 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0));
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001261 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001262 break;
1263 }
1264
1265 if (SimpleFinishLegalizing) {
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001266 SDNode *NewNode = Node;
Eli Friedman8c377c72009-05-27 01:25:56 +00001267 switch (Node->getOpcode()) {
1268 default: break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001269 case ISD::SHL:
1270 case ISD::SRL:
1271 case ISD::SRA:
1272 case ISD::ROTL:
1273 case ISD::ROTR:
1274 // Legalizing shifts/rotates requires adjusting the shift amount
1275 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001276 if (!Node->getOperand(1).getValueType().isVector()) {
1277 SDValue SAO =
1278 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1279 Node->getOperand(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00001280 HandleSDNode Handle(SAO);
1281 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001282 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1283 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001284 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001285 break;
Dan Gohmandb8dc2b2009-08-18 23:36:17 +00001286 case ISD::SRL_PARTS:
1287 case ISD::SRA_PARTS:
1288 case ISD::SHL_PARTS:
1289 // Legalizing shifts/rotates requires adjusting the shift amount
1290 // to the appropriate width.
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001291 if (!Node->getOperand(2).getValueType().isVector()) {
1292 SDValue SAO =
1293 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(),
1294 Node->getOperand(2));
Dan Gohman65fd6562011-11-03 21:49:52 +00001295 HandleSDNode Handle(SAO);
1296 LegalizeOp(SAO.getNode());
Peter Collingbourne92d63cc2012-05-20 18:36:15 +00001297 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0),
1298 Node->getOperand(1),
1299 Handle.getValue());
Dan Gohman65fd6562011-11-03 21:49:52 +00001300 }
Dan Gohman2c9489d2009-08-18 23:52:48 +00001301 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00001302 }
1303
Dan Gohman65fd6562011-11-03 21:49:52 +00001304 if (NewNode != Node) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001305 DAG.ReplaceAllUsesWith(Node, NewNode);
Dan Gohman65fd6562011-11-03 21:49:52 +00001306 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1307 DAG.TransferDbgValues(SDValue(Node, i), SDValue(NewNode, i));
Eli Friedman0e3642a2011-11-11 23:58:27 +00001308 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001309 Node = NewNode;
1310 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001311 switch (Action) {
1312 case TargetLowering::Legal:
Dan Gohman65fd6562011-11-03 21:49:52 +00001313 return;
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001314 case TargetLowering::Custom: {
Eli Friedman8c377c72009-05-27 01:25:56 +00001315 // FIXME: The handling for custom lowering with multiple results is
1316 // a complete mess.
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001317 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);
1318 if (Res.getNode()) {
Dan Gohman65fd6562011-11-03 21:49:52 +00001319 SmallVector<SDValue, 8> ResultVals;
Eli Friedman8c377c72009-05-27 01:25:56 +00001320 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
1321 if (e == 1)
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001322 ResultVals.push_back(Res);
Eli Friedman8c377c72009-05-27 01:25:56 +00001323 else
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001324 ResultVals.push_back(Res.getValue(i));
Eli Friedman8c377c72009-05-27 01:25:56 +00001325 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001326 if (Res.getNode() != Node || Res.getResNo() != 0) {
Jakob Stoklund Olesenbc7d4482012-04-20 22:08:46 +00001327 DAG.ReplaceAllUsesWith(Node, ResultVals.data());
Dan Gohman65fd6562011-11-03 21:49:52 +00001328 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1329 DAG.TransferDbgValues(SDValue(Node, i), ResultVals[i]);
Eli Friedman0e3642a2011-11-11 23:58:27 +00001330 ReplacedNode(Node);
Dan Gohman65fd6562011-11-03 21:49:52 +00001331 }
1332 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001333 }
Nadav Rotem4b24bf82012-07-11 11:02:16 +00001334 }
Eli Friedman8c377c72009-05-27 01:25:56 +00001335 // FALL THROUGH
1336 case TargetLowering::Expand:
Dan Gohman65fd6562011-11-03 21:49:52 +00001337 ExpandNode(Node);
1338 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001339 case TargetLowering::Promote:
Dan Gohman65fd6562011-11-03 21:49:52 +00001340 PromoteNode(Node);
1341 return;
Eli Friedman8c377c72009-05-27 01:25:56 +00001342 }
1343 }
1344
1345 switch (Node->getOpcode()) {
1346 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001347#ifndef NDEBUG
David Greene993aace2010-01-05 01:24:53 +00001348 dbgs() << "NODE: ";
1349 Node->dump( &DAG);
1350 dbgs() << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001351#endif
Craig Topper5e25ee82012-02-05 08:31:47 +00001352 llvm_unreachable("Do not know how to legalize this operator!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001353
Dan Gohman65fd6562011-11-03 21:49:52 +00001354 case ISD::CALLSEQ_START:
Dan Gohman6f3ddef2011-10-29 00:41:52 +00001355 case ISD::CALLSEQ_END:
Dan Gohman65fd6562011-11-03 21:49:52 +00001356 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001357 case ISD::LOAD: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001358 return LegalizeLoadOps(Node);
Chris Lattner01ff7212005-04-10 22:54:25 +00001359 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001360 case ISD::STORE: {
Nadav Rotemb6e89f02012-07-11 08:52:09 +00001361 return LegalizeStoreOps(Node);
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001362 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001363 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001364}
1365
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001366SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
1367 SDValue Vec = Op.getOperand(0);
1368 SDValue Idx = Op.getOperand(1);
1369 DebugLoc dl = Op.getDebugLoc();
1370 // Store the value to a temporary stack slot, then LOAD the returned part.
1371 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Chris Lattner6229d0a2010-09-21 18:41:36 +00001372 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
1373 MachinePointerInfo(), false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001374
1375 // Add the offset to the index.
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001376 unsigned EltSize =
1377 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001378 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1379 DAG.getConstant(EltSize, Idx.getValueType()));
1380
1381 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1382 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1383 else
1384 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1385
1386 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
1387
Eli Friedmanc680ac92009-07-09 22:01:03 +00001388 if (Op.getValueType().isVector())
Chris Lattnerecf42c42010-09-21 16:36:31 +00001389 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr,MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001390 false, false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00001391 return DAG.getExtLoad(ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00001392 MachinePointerInfo(),
1393 Vec.getValueType().getVectorElementType(),
1394 false, false, 0);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001395}
1396
David Greenecfe33c42011-01-26 19:13:22 +00001397SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
1398 assert(Op.getValueType().isVector() && "Non-vector insert subvector!");
1399
1400 SDValue Vec = Op.getOperand(0);
1401 SDValue Part = Op.getOperand(1);
1402 SDValue Idx = Op.getOperand(2);
1403 DebugLoc dl = Op.getDebugLoc();
1404
1405 // Store the value to a temporary stack slot, then LOAD the returned part.
1406
1407 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
1408 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
1409 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
1410
1411 // First store the whole vector.
1412 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo,
1413 false, false, 0);
1414
1415 // Then store the inserted part.
1416
1417 // Add the offset to the index.
1418 unsigned EltSize =
1419 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
1420
1421 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
1422 DAG.getConstant(EltSize, Idx.getValueType()));
1423
1424 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
1425 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
1426 else
1427 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
1428
1429 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx,
1430 StackPtr);
1431
1432 // Store the subvector.
1433 Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
1434 MachinePointerInfo(), false, false, 0);
1435
1436 // Finally, load the updated vector.
1437 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001438 false, false, false, 0);
David Greenecfe33c42011-01-26 19:13:22 +00001439}
1440
Eli Friedman7ef3d172009-06-06 07:04:42 +00001441SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) {
1442 // We can't handle this case efficiently. Allocate a sufficiently
1443 // aligned object on the stack, store each element into it, then load
1444 // the result as a vector.
1445 // Create the stack frame object.
Owen Andersone50ed302009-08-10 22:56:29 +00001446 EVT VT = Node->getValueType(0);
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001447 EVT EltVT = VT.getVectorElementType();
Eli Friedman7ef3d172009-06-06 07:04:42 +00001448 DebugLoc dl = Node->getDebugLoc();
1449 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Evan Chengff89dcb2009-10-18 18:16:27 +00001450 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
Chris Lattnerecf42c42010-09-21 16:36:31 +00001451 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001452
1453 // Emit a store of each element to the stack slot.
1454 SmallVector<SDValue, 8> Stores;
Dan Gohmanaa9d8542010-02-25 15:20:39 +00001455 unsigned TypeByteSize = EltVT.getSizeInBits() / 8;
Eli Friedman7ef3d172009-06-06 07:04:42 +00001456 // Store (in the right endianness) the elements to memory.
1457 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
1458 // Ignore undef elements.
1459 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
1460
1461 unsigned Offset = TypeByteSize*i;
1462
1463 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
1464 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
1465
Dan Gohman9949dd62010-02-25 20:30:49 +00001466 // If the destination vector element type is narrower than the source
1467 // element type, only store the bits necessary.
1468 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) {
Dale Johannesen5b8bce12009-11-21 00:53:23 +00001469 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001470 Node->getOperand(i), Idx,
1471 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001472 EltVT, false, false, 0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00001473 } else
Jim Grosbach6e992612010-07-02 17:41:59 +00001474 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattnerecf42c42010-09-21 16:36:31 +00001475 Node->getOperand(i), Idx,
1476 PtrInfo.getWithOffset(Offset),
David Greene1e559442010-02-15 17:00:31 +00001477 false, false, 0));
Eli Friedman7ef3d172009-06-06 07:04:42 +00001478 }
1479
1480 SDValue StoreChain;
1481 if (!Stores.empty()) // Not all undef elements?
Owen Anderson825b72b2009-08-11 20:47:22 +00001482 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Eli Friedman7ef3d172009-06-06 07:04:42 +00001483 &Stores[0], Stores.size());
1484 else
1485 StoreChain = DAG.getEntryNode();
1486
1487 // Result is a load from the stack slot.
Pete Cooperd752e0f2011-11-08 18:42:53 +00001488 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo,
1489 false, false, false, 0);
Eli Friedman7ef3d172009-06-06 07:04:42 +00001490}
1491
Eli Friedman4bc8c712009-05-27 12:20:41 +00001492SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) {
1493 DebugLoc dl = Node->getDebugLoc();
1494 SDValue Tmp1 = Node->getOperand(0);
1495 SDValue Tmp2 = Node->getOperand(1);
Duncan Sands5d54b412010-03-12 11:45:06 +00001496
1497 // Get the sign bit of the RHS. First obtain a value that has the same
1498 // sign as the sign bit, i.e. negative if and only if the sign bit is 1.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001499 SDValue SignBit;
Duncan Sands5d54b412010-03-12 11:45:06 +00001500 EVT FloatVT = Tmp2.getValueType();
1501 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits());
Dan Gohman75b10042011-07-15 22:39:09 +00001502 if (TLI.isTypeLegal(IVT)) {
Duncan Sands5d54b412010-03-12 11:45:06 +00001503 // Convert to an integer with the same sign bit.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001504 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001505 } else {
Duncan Sands5d54b412010-03-12 11:45:06 +00001506 // Store the float to memory, then load the sign part out as an integer.
1507 MVT LoadTy = TLI.getPointerTy();
1508 // First create a temporary that is aligned for both the load and store.
1509 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy);
1510 // Then store the float to it.
Eli Friedman4bc8c712009-05-27 12:20:41 +00001511 SDValue Ch =
Chris Lattner6229d0a2010-09-21 18:41:36 +00001512 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00001513 false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001514 if (TLI.isBigEndian()) {
1515 assert(FloatVT.isByteSized() && "Unsupported floating point type!");
1516 // Load out a legal integer with the same sign bit as the float.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001517 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001518 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001519 } else { // Little endian
1520 SDValue LoadPtr = StackPtr;
1521 // The float may be wider than the integer we are going to load. Advance
1522 // the pointer so that the loaded integer will contain the sign bit.
1523 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits();
1524 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8;
1525 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(),
1526 LoadPtr, DAG.getIntPtrConstant(ByteOffset));
1527 // Load a legal integer containing the sign bit.
Chris Lattnerecf42c42010-09-21 16:36:31 +00001528 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001529 false, false, false, 0);
Duncan Sands5d54b412010-03-12 11:45:06 +00001530 // Move the sign bit to the top bit of the loaded integer.
1531 unsigned BitShift = LoadTy.getSizeInBits() -
1532 (FloatVT.getSizeInBits() - 8 * ByteOffset);
1533 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?");
1534 if (BitShift)
1535 SignBit = DAG.getNode(ISD::SHL, dl, LoadTy, SignBit,
Owen Anderson95771af2011-02-25 21:41:48 +00001536 DAG.getConstant(BitShift,
1537 TLI.getShiftAmountTy(SignBit.getValueType())));
Duncan Sands5d54b412010-03-12 11:45:06 +00001538 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00001539 }
Duncan Sands5d54b412010-03-12 11:45:06 +00001540 // Now get the sign bit proper, by seeing whether the value is negative.
1541 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(SignBit.getValueType()),
1542 SignBit, DAG.getConstant(0, SignBit.getValueType()),
1543 ISD::SETLT);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001544 // Get the absolute value of the result.
1545 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
1546 // Select between the nabs and abs value based on the sign bit of
1547 // the input.
1548 return DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
1549 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal),
1550 AbsVal);
1551}
1552
Eli Friedman4bc8c712009-05-27 12:20:41 +00001553void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node,
1554 SmallVectorImpl<SDValue> &Results) {
1555 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1556 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1557 " not tell us which reg is the stack pointer!");
1558 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001559 EVT VT = Node->getValueType(0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00001560 SDValue Tmp1 = SDValue(Node, 0);
1561 SDValue Tmp2 = SDValue(Node, 1);
1562 SDValue Tmp3 = Node->getOperand(2);
1563 SDValue Chain = Tmp1.getOperand(0);
1564
1565 // Chain the dynamic stack allocation so that it doesn't modify the stack
1566 // pointer when other instructions are using the stack.
1567 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
1568
1569 SDValue Size = Tmp2.getOperand(1);
1570 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
1571 Chain = SP.getValue(1);
1572 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001573 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
Eli Friedman4bc8c712009-05-27 12:20:41 +00001574 if (Align > StackAlign)
1575 SP = DAG.getNode(ISD::AND, dl, VT, SP,
1576 DAG.getConstant(-(uint64_t)Align, VT));
1577 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
1578 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
1579
1580 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1581 DAG.getIntPtrConstant(0, true), SDValue());
1582
1583 Results.push_back(Tmp1);
1584 Results.push_back(Tmp2);
1585}
1586
Evan Cheng7f042682008-10-15 02:05:31 +00001587/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
Dan Gohmanf77fc922009-10-17 01:37:38 +00001588/// condition code CC on the current target. This routine expands SETCC with
Evan Cheng7f042682008-10-15 02:05:31 +00001589/// illegal condition code into AND / OR of multiple SETCC values.
Owen Andersone50ed302009-08-10 22:56:29 +00001590void SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT,
Evan Cheng7f042682008-10-15 02:05:31 +00001591 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00001592 SDValue &CC,
Bill Wendling775db972009-12-23 00:28:23 +00001593 DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00001594 EVT OpVT = LHS.getValueType();
Evan Cheng7f042682008-10-15 02:05:31 +00001595 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
1596 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001597 default: llvm_unreachable("Unknown condition code action!");
Evan Cheng7f042682008-10-15 02:05:31 +00001598 case TargetLowering::Legal:
1599 // Nothing to do.
1600 break;
1601 case TargetLowering::Expand: {
1602 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
Micah Villmowd6458a02012-10-10 20:50:51 +00001603 ISD::CondCode InvCC = ISD::SETCC_INVALID;
Evan Cheng7f042682008-10-15 02:05:31 +00001604 unsigned Opc = 0;
1605 switch (CCCode) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001606 default: llvm_unreachable("Don't know how to expand this condition!");
Micah Villmowd6458a02012-10-10 20:50:51 +00001607 case ISD::SETO:
1608 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT)
1609 == TargetLowering::Legal
1610 && "If SETO is expanded, SETOEQ must be legal!");
1611 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break;
1612 case ISD::SETUO:
1613 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT)
1614 == TargetLowering::Legal
1615 && "If SETUO is expanded, SETUNE must be legal!");
1616 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break;
1617 case ISD::SETOEQ:
1618 case ISD::SETOGT:
1619 case ISD::SETOGE:
1620 case ISD::SETOLT:
1621 case ISD::SETOLE:
1622 case ISD::SETONE:
1623 case ISD::SETUEQ:
1624 case ISD::SETUNE:
1625 case ISD::SETUGT:
1626 case ISD::SETUGE:
1627 case ISD::SETULT:
1628 case ISD::SETULE:
1629 // If we are floating point, assign and break, otherwise fall through.
1630 if (!OpVT.isInteger()) {
1631 // We can use the 4th bit to tell if we are the unordered
1632 // or ordered version of the opcode.
1633 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO;
1634 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND;
1635 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10);
1636 break;
1637 }
1638 // Fallthrough if we are unsigned integer.
1639 case ISD::SETLE:
1640 case ISD::SETGT:
1641 case ISD::SETGE:
1642 case ISD::SETLT:
1643 case ISD::SETNE:
1644 case ISD::SETEQ:
1645 InvCC = ISD::getSetCCSwappedOperands(CCCode);
1646 if (TLI.getCondCodeAction(InvCC, OpVT) == TargetLowering::Expand) {
1647 // We only support using the inverted operation and not a
1648 // different manner of supporting expanding these cases.
1649 llvm_unreachable("Don't know how to expand this condition!");
1650 }
1651 LHS = DAG.getSetCC(dl, VT, RHS, LHS, InvCC);
1652 RHS = SDValue();
1653 CC = SDValue();
1654 return;
Evan Cheng7f042682008-10-15 02:05:31 +00001655 }
Micah Villmowd6458a02012-10-10 20:50:51 +00001656
1657 SDValue SetCC1, SetCC2;
1658 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) {
1659 // If we aren't the ordered or unorder operation,
1660 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS).
1661 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
1662 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
1663 } else {
1664 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS)
1665 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1);
1666 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2);
1667 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001668 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00001669 RHS = SDValue();
1670 CC = SDValue();
1671 break;
1672 }
1673 }
1674}
1675
Chris Lattner1401d152008-01-16 07:45:30 +00001676/// EmitStackConvert - Emit a store/load combination to the stack. This stores
1677/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
1678/// a load from the stack slot to DestVT, extending it if needed.
1679/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001680SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
Owen Andersone50ed302009-08-10 22:56:29 +00001681 EVT SlotVT,
1682 EVT DestVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00001683 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00001684 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001685 unsigned SrcAlign =
Micah Villmow3574eca2012-10-08 16:38:25 +00001686 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType().
Owen Anderson23b9b192009-08-12 00:36:31 +00001687 getTypeForEVT(*DAG.getContext()));
Dan Gohman475871a2008-07-27 21:46:04 +00001688 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001689
Evan Chengff89dcb2009-10-18 18:16:27 +00001690 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
1691 int SPFI = StackPtrFI->getIndex();
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001692 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI);
Evan Chengff89dcb2009-10-18 18:16:27 +00001693
Duncan Sands83ec4b62008-06-06 12:08:01 +00001694 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1695 unsigned SlotSize = SlotVT.getSizeInBits();
1696 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001697 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +00001698 unsigned DestAlign = TLI.getDataLayout()->getPrefTypeAlignment(DestType);
Scott Michelfdc40a02009-02-17 22:15:04 +00001699
Chris Lattner1401d152008-01-16 07:45:30 +00001700 // Emit a store to the stack slot. Use a truncstore if the input value is
1701 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00001702 SDValue Store;
Evan Chengff89dcb2009-10-18 18:16:27 +00001703
Chris Lattner1401d152008-01-16 07:45:30 +00001704 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00001705 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001706 PtrInfo, SlotVT, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001707 else {
1708 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00001709 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001710 PtrInfo, false, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00001711 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001712
Chris Lattner35481892005-12-23 00:16:34 +00001713 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00001714 if (SlotSize == DestSize)
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001715 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001716 false, false, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00001717
Chris Lattner1401d152008-01-16 07:45:30 +00001718 assert(SlotSize < DestSize && "Unknown extension!");
Stuart Hastingsa9011292011-02-16 16:23:55 +00001719 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00001720 PtrInfo, SlotVT, false, false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00001721}
1722
Dan Gohman475871a2008-07-27 21:46:04 +00001723SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00001724 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00001725 // Create a vector sized/aligned stack slot, store the value to element #0,
1726 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00001727 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00001728
Evan Chengff89dcb2009-10-18 18:16:27 +00001729 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
1730 int SPFI = StackPtrFI->getIndex();
1731
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001732 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
1733 StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001734 MachinePointerInfo::getFixedStack(SPFI),
David Greene1e559442010-02-15 17:00:31 +00001735 Node->getValueType(0).getVectorElementType(),
1736 false, false, 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00001737 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Chris Lattner85ca1062010-09-21 07:32:19 +00001738 MachinePointerInfo::getFixedStack(SPFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001739 false, false, false, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001740}
1741
1742
Chris Lattnerce872152006-03-19 06:31:19 +00001743/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00001744/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00001745SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001746 unsigned NumElems = Node->getNumOperands();
Eli Friedman7a5e5552009-06-07 06:52:44 +00001747 SDValue Value1, Value2;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001748 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00001749 EVT VT = Node->getValueType(0);
1750 EVT OpVT = Node->getOperand(0).getValueType();
1751 EVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001752
1753 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00001754 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00001755 bool isOnlyLowElement = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001756 bool MoreThanTwoValues = false;
Chris Lattner2eb86532006-03-24 07:29:17 +00001757 bool isConstant = true;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001758 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001759 SDValue V = Node->getOperand(i);
Eli Friedman7a5e5552009-06-07 06:52:44 +00001760 if (V.getOpcode() == ISD::UNDEF)
1761 continue;
1762 if (i > 0)
Chris Lattnerce872152006-03-19 06:31:19 +00001763 isOnlyLowElement = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001764 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
Chris Lattner2eb86532006-03-24 07:29:17 +00001765 isConstant = false;
Eli Friedman7a5e5552009-06-07 06:52:44 +00001766
1767 if (!Value1.getNode()) {
1768 Value1 = V;
1769 } else if (!Value2.getNode()) {
1770 if (V != Value1)
1771 Value2 = V;
1772 } else if (V != Value1 && V != Value2) {
1773 MoreThanTwoValues = true;
1774 }
Chris Lattnerce872152006-03-19 06:31:19 +00001775 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001776
Eli Friedman7a5e5552009-06-07 06:52:44 +00001777 if (!Value1.getNode())
1778 return DAG.getUNDEF(VT);
1779
1780 if (isOnlyLowElement)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00001781 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001782
Chris Lattner2eb86532006-03-24 07:29:17 +00001783 // If all elements are constants, create a load from the constant pool.
1784 if (isConstant) {
Chris Lattner4ca829e2012-01-25 06:02:56 +00001785 SmallVector<Constant*, 16> CV;
Chris Lattner2eb86532006-03-24 07:29:17 +00001786 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001787 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00001788 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00001789 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001790 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001791 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dale Johannesen9a645cd2009-11-10 23:16:41 +00001792 if (OpVT==EltVT)
1793 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
1794 else {
1795 // If OpVT and EltVT don't match, EltVT is not legal and the
1796 // element values have been promoted/truncated earlier. Undo this;
1797 // we don't want a v16i8 to become a v16i32 for example.
1798 const ConstantInt *CI = V->getConstantIntValue();
1799 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()),
1800 CI->getZExtValue()));
1801 }
Chris Lattner2eb86532006-03-24 07:29:17 +00001802 } else {
1803 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001804 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001805 CV.push_back(UndefValue::get(OpNTy));
Chris Lattner2eb86532006-03-24 07:29:17 +00001806 }
1807 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00001808 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00001809 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00001810 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00001811 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00001812 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001813 false, false, false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00001814 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001815
Eli Friedman7a5e5552009-06-07 06:52:44 +00001816 if (!MoreThanTwoValues) {
1817 SmallVector<int, 8> ShuffleVec(NumElems, -1);
1818 for (unsigned i = 0; i < NumElems; ++i) {
1819 SDValue V = Node->getOperand(i);
1820 if (V.getOpcode() == ISD::UNDEF)
1821 continue;
1822 ShuffleVec[i] = V == Value1 ? 0 : NumElems;
1823 }
1824 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00001825 // Get the splatted value into the low element of a vector register.
Eli Friedman7a5e5552009-06-07 06:52:44 +00001826 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1);
1827 SDValue Vec2;
1828 if (Value2.getNode())
1829 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2);
1830 else
1831 Vec2 = DAG.getUNDEF(VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001832
Chris Lattner87100e02006-03-20 01:52:29 +00001833 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Eli Friedman7a5e5552009-06-07 06:52:44 +00001834 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data());
Evan Cheng033e6812006-03-24 01:17:21 +00001835 }
1836 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001837
Eli Friedman7ef3d172009-06-06 07:04:42 +00001838 // Otherwise, we can't handle this case efficiently.
1839 return ExpandVectorBuildThroughStack(Node);
Chris Lattnerce872152006-03-19 06:31:19 +00001840}
1841
Chris Lattner77e77a62005-01-21 06:05:23 +00001842// ExpandLibCall - Expand a node into a call to a libcall. If the result value
1843// does not fit into a register, return the lo part and set the hi part to the
1844// by-reg argument. If it does fit into a single register, return the result
1845// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00001846SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Eli Friedman47b41f72009-05-27 02:21:29 +00001847 bool isSigned) {
Chris Lattner77e77a62005-01-21 06:05:23 +00001848 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00001849 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00001850 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Owen Andersone50ed302009-08-10 22:56:29 +00001851 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001852 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Scott Michelfdc40a02009-02-17 22:15:04 +00001853 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00001854 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00001855 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00001856 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00001857 }
Bill Wendling056292f2008-09-16 21:48:12 +00001858 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00001859 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00001860
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001861 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Evan Cheng3d2125c2010-11-30 23:55:39 +00001862
Evan Chengbf010eb2012-04-10 01:51:00 +00001863 // By default, the input chain to this libcall is the entry node of the
1864 // function. If the libcall is going to be emitted as a tail call then
1865 // TLI.isUsedByReturnOnly will change it to the right chain if the return
1866 // node which is being folded has a non-entry input chain.
1867 SDValue InChain = DAG.getEntryNode();
1868
Evan Cheng3d2125c2010-11-30 23:55:39 +00001869 // isTailCall may be true since the callee does not reference caller stack
1870 // frame. Check if it's in the right position.
Evan Chengb52ba492012-04-10 03:15:18 +00001871 SDValue TCChain = InChain;
1872 bool isTailCall = isInTailCallPosition(DAG, Node, TCChain, TLI);
1873 if (isTailCall)
1874 InChain = TCChain;
1875
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001876 TargetLowering::
1877 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001878 0, TLI.getLibcallCallingConv(LC), isTailCall,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001879 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Bill Wendling46ada192010-03-02 01:55:18 +00001880 Callee, Args, DAG, Node->getDebugLoc());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001881 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
1882
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00001883
Evan Cheng3d2125c2010-11-30 23:55:39 +00001884 if (!CallInfo.second.getNode())
1885 // It's a tailcall, return the chain (which is the DAG root).
1886 return DAG.getRoot();
1887
Eli Friedman74807f22009-05-26 08:55:52 +00001888 return CallInfo.first;
Chris Lattner77e77a62005-01-21 06:05:23 +00001889}
1890
Dan Gohmanf316eb72011-05-16 22:09:53 +00001891/// ExpandLibCall - Generate a libcall taking the given operands as arguments
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001892/// and returning a result of type RetVT.
1893SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT,
1894 const SDValue *Ops, unsigned NumOps,
1895 bool isSigned, DebugLoc dl) {
1896 TargetLowering::ArgListTy Args;
1897 Args.reserve(NumOps);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001898
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001899 TargetLowering::ArgListEntry Entry;
1900 for (unsigned i = 0; i != NumOps; ++i) {
1901 Entry.Node = Ops[i];
1902 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
1903 Entry.isSExt = isSigned;
1904 Entry.isZExt = !isSigned;
1905 Args.push_back(Entry);
1906 }
1907 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1908 TLI.getPointerTy());
Dan Gohmanf316eb72011-05-16 22:09:53 +00001909
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001910 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001911 TargetLowering::
1912 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy, isSigned, !isSigned, false,
1913 false, 0, TLI.getLibcallCallingConv(LC),
1914 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001915 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001916 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001917 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI);
Dan Gohmanf316eb72011-05-16 22:09:53 +00001918
Eric Christopherabbbfbd2011-04-20 01:19:45 +00001919 return CallInfo.first;
1920}
1921
Jim Grosbache03262f2010-06-18 21:43:38 +00001922// ExpandChainLibCall - Expand a node into a call to a libcall. Similar to
1923// ExpandLibCall except that the first operand is the in-chain.
1924std::pair<SDValue, SDValue>
1925SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC,
1926 SDNode *Node,
1927 bool isSigned) {
Jim Grosbache03262f2010-06-18 21:43:38 +00001928 SDValue InChain = Node->getOperand(0);
1929
1930 TargetLowering::ArgListTy Args;
1931 TargetLowering::ArgListEntry Entry;
1932 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) {
1933 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001934 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Jim Grosbache03262f2010-06-18 21:43:38 +00001935 Entry.Node = Node->getOperand(i);
1936 Entry.Ty = ArgTy;
1937 Entry.isSExt = isSigned;
1938 Entry.isZExt = !isSigned;
1939 Args.push_back(Entry);
1940 }
1941 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
1942 TLI.getPointerTy());
1943
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001944 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001945 TargetLowering::
1946 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng3d2125c2010-11-30 23:55:39 +00001947 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00001948 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbache03262f2010-06-18 21:43:38 +00001949 Callee, Args, DAG, Node->getDebugLoc());
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00001950 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Jim Grosbache03262f2010-06-18 21:43:38 +00001951
Jim Grosbache03262f2010-06-18 21:43:38 +00001952 return CallInfo;
1953}
1954
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001955SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
1956 RTLIB::Libcall Call_F32,
1957 RTLIB::Libcall Call_F64,
1958 RTLIB::Libcall Call_F80,
1959 RTLIB::Libcall Call_PPCF128) {
1960 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001961 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001962 default: llvm_unreachable("Unexpected request for libcall!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001963 case MVT::f32: LC = Call_F32; break;
1964 case MVT::f64: LC = Call_F64; break;
1965 case MVT::f80: LC = Call_F80; break;
1966 case MVT::ppcf128: LC = Call_PPCF128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001967 }
1968 return ExpandLibCall(LC, Node, false);
1969}
1970
1971SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001972 RTLIB::Libcall Call_I8,
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001973 RTLIB::Libcall Call_I16,
1974 RTLIB::Libcall Call_I32,
1975 RTLIB::Libcall Call_I64,
1976 RTLIB::Libcall Call_I128) {
1977 RTLIB::Libcall LC;
Owen Anderson825b72b2009-08-11 20:47:22 +00001978 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001979 default: llvm_unreachable("Unexpected request for libcall!");
Anton Korobeynikov8983da72009-11-07 17:14:39 +00001980 case MVT::i8: LC = Call_I8; break;
1981 case MVT::i16: LC = Call_I16; break;
1982 case MVT::i32: LC = Call_I32; break;
1983 case MVT::i64: LC = Call_I64; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001984 case MVT::i128: LC = Call_I128; break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00001985 }
1986 return ExpandLibCall(LC, Node, isSigned);
1987}
1988
Evan Cheng65279cb2011-04-16 03:08:26 +00001989/// isDivRemLibcallAvailable - Return true if divmod libcall is available.
1990static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned,
1991 const TargetLowering &TLI) {
Evan Cheng8e23e812011-04-01 00:42:02 +00001992 RTLIB::Libcall LC;
1993 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00001994 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng8e23e812011-04-01 00:42:02 +00001995 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
1996 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
1997 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
1998 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
1999 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
2000 }
2001
Evan Cheng65279cb2011-04-16 03:08:26 +00002002 return TLI.getLibcallName(LC) != 0;
2003}
Evan Cheng8e23e812011-04-01 00:42:02 +00002004
Evan Cheng8ef09682012-06-21 05:56:05 +00002005/// useDivRem - Only issue divrem libcall if both quotient and remainder are
Evan Cheng65279cb2011-04-16 03:08:26 +00002006/// needed.
Evan Cheng8ef09682012-06-21 05:56:05 +00002007static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) {
2008 // The other use might have been replaced with a divrem already.
2009 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Evan Cheng8e23e812011-04-01 00:42:02 +00002010 unsigned OtherOpcode = 0;
Evan Cheng65279cb2011-04-16 03:08:26 +00002011 if (isSigned)
Evan Cheng8e23e812011-04-01 00:42:02 +00002012 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002013 else
Evan Cheng8e23e812011-04-01 00:42:02 +00002014 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV;
Evan Cheng65279cb2011-04-16 03:08:26 +00002015
Evan Cheng8e23e812011-04-01 00:42:02 +00002016 SDValue Op0 = Node->getOperand(0);
2017 SDValue Op1 = Node->getOperand(1);
2018 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(),
2019 UE = Op0.getNode()->use_end(); UI != UE; ++UI) {
2020 SDNode *User = *UI;
2021 if (User == Node)
2022 continue;
Evan Cheng8ef09682012-06-21 05:56:05 +00002023 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) &&
Evan Cheng8e23e812011-04-01 00:42:02 +00002024 User->getOperand(0) == Op0 &&
Evan Cheng65279cb2011-04-16 03:08:26 +00002025 User->getOperand(1) == Op1)
2026 return true;
Evan Cheng8e23e812011-04-01 00:42:02 +00002027 }
Evan Cheng65279cb2011-04-16 03:08:26 +00002028 return false;
2029}
Evan Cheng8e23e812011-04-01 00:42:02 +00002030
Evan Cheng65279cb2011-04-16 03:08:26 +00002031/// ExpandDivRemLibCall - Issue libcalls to __{u}divmod to compute div / rem
2032/// pairs.
2033void
2034SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node,
2035 SmallVectorImpl<SDValue> &Results) {
2036 unsigned Opcode = Node->getOpcode();
2037 bool isSigned = Opcode == ISD::SDIVREM;
2038
2039 RTLIB::Libcall LC;
2040 switch (Node->getValueType(0).getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002041 default: llvm_unreachable("Unexpected request for libcall!");
Evan Cheng65279cb2011-04-16 03:08:26 +00002042 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
2043 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
2044 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
2045 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
2046 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break;
Evan Cheng8e23e812011-04-01 00:42:02 +00002047 }
2048
2049 // The input chain to this libcall is the entry node of the function.
2050 // Legalizing the call will automatically add the previous call to the
2051 // dependence.
2052 SDValue InChain = DAG.getEntryNode();
2053
2054 EVT RetVT = Node->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002055 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002056
2057 TargetLowering::ArgListTy Args;
2058 TargetLowering::ArgListEntry Entry;
2059 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2060 EVT ArgVT = Node->getOperand(i).getValueType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002061 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Evan Cheng8e23e812011-04-01 00:42:02 +00002062 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
2063 Entry.isSExt = isSigned;
2064 Entry.isZExt = !isSigned;
2065 Args.push_back(Entry);
2066 }
2067
2068 // Also pass the return address of the remainder.
2069 SDValue FIPtr = DAG.CreateStackTemporary(RetVT);
2070 Entry.Node = FIPtr;
2071 Entry.Ty = RetTy->getPointerTo();
2072 Entry.isSExt = isSigned;
2073 Entry.isZExt = !isSigned;
2074 Args.push_back(Entry);
2075
2076 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
2077 TLI.getPointerTy());
2078
Evan Cheng8e23e812011-04-01 00:42:02 +00002079 DebugLoc dl = Node->getDebugLoc();
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002080 TargetLowering::
2081 CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, false,
Evan Cheng8e23e812011-04-01 00:42:02 +00002082 0, TLI.getLibcallCallingConv(LC), /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002083 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
2084 Callee, Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002085 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI);
Evan Cheng8e23e812011-04-01 00:42:02 +00002086
Evan Cheng8e23e812011-04-01 00:42:02 +00002087 // Remainder is loaded back from the stack frame.
Dan Gohman65fd6562011-11-03 21:49:52 +00002088 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002089 MachinePointerInfo(), false, false, false, 0);
Evan Cheng65279cb2011-04-16 03:08:26 +00002090 Results.push_back(CallInfo.first);
2091 Results.push_back(Rem);
Evan Cheng8e23e812011-04-01 00:42:02 +00002092}
2093
Chris Lattner22cde6a2006-01-28 08:25:58 +00002094/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
2095/// INT_TO_FP operation of the specified operand when the target requests that
2096/// we expand it. At this point, we know that the result and operand types are
2097/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00002098SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
2099 SDValue Op0,
Owen Andersone50ed302009-08-10 22:56:29 +00002100 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002101 DebugLoc dl) {
Akira Hatanaka1d522382012-08-28 02:12:42 +00002102 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002103 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00002104
Chris Lattner23594d42008-01-16 07:03:22 +00002105 // Get the stack frame index of a 8 byte buffer.
Owen Anderson825b72b2009-08-11 20:47:22 +00002106 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00002107
Chris Lattner22cde6a2006-01-28 08:25:58 +00002108 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00002109 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00002110 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00002111 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00002112 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002113 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00002114 if (TLI.isLittleEndian())
2115 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00002116
Chris Lattner22cde6a2006-01-28 08:25:58 +00002117 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00002118 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002119 if (isSigned) {
2120 // constant used to invert sign bit (signed to unsigned mapping)
Owen Anderson825b72b2009-08-11 20:47:22 +00002121 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
2122 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002123 } else {
2124 Op0Mapped = Op0;
2125 }
2126 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00002127 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Chris Lattner6229d0a2010-09-21 18:41:36 +00002128 Op0Mapped, Lo, MachinePointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002129 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002130 // initial hi portion of constructed double
Owen Anderson825b72b2009-08-11 20:47:22 +00002131 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002132 // store the hi of the constructed double - biased exponent
Chris Lattner6229d0a2010-09-21 18:41:36 +00002133 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi,
2134 MachinePointerInfo(),
2135 false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002136 // load the constructed double
Chris Lattnerecf42c42010-09-21 16:36:31 +00002137 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002138 MachinePointerInfo(), false, false, false, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002139 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00002140 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002141 BitsToDouble(0x4330000080000000ULL) :
2142 BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00002143 MVT::f64);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002144 // subtract the bias
Owen Anderson825b72b2009-08-11 20:47:22 +00002145 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002146 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00002147 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002148 // handle final rounding
Owen Anderson825b72b2009-08-11 20:47:22 +00002149 if (DestVT == MVT::f64) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002150 // do nothing
2151 Result = Sub;
Owen Anderson825b72b2009-08-11 20:47:22 +00002152 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002153 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00002154 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00002155 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00002156 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002157 }
2158 return Result;
2159 }
2160 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002161 // Code below here assumes !isSigned without checking again.
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002162
2163 // Implementation of unsigned i64 to f64 following the algorithm in
2164 // __floatundidf in compiler_rt. This implementation has the advantage
2165 // of performing rounding correctly, both in the default rounding mode
2166 // and in all alternate rounding modes.
2167 // TODO: Generalize this for use with other types.
2168 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) {
2169 SDValue TwoP52 =
2170 DAG.getConstant(UINT64_C(0x4330000000000000), MVT::i64);
2171 SDValue TwoP84PlusTwoP52 =
2172 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2173 SDValue TwoP84 =
2174 DAG.getConstant(UINT64_C(0x4530000000000000), MVT::i64);
2175
2176 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32);
2177 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0,
2178 DAG.getConstant(32, MVT::i64));
2179 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52);
2180 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002181 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr);
2182 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr);
Jim Grosbach6e992612010-07-02 17:41:59 +00002183 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt,
2184 TwoP84PlusTwoP52);
Dan Gohman0fa9d1d2010-03-06 00:00:55 +00002185 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub);
2186 }
2187
Owen Anderson3a9e7692010-10-05 17:24:05 +00002188 // Implementation of unsigned i64 to f32.
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002189 // TODO: Generalize this for use with other types.
2190 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) {
Owen Anderson3a9e7692010-10-05 17:24:05 +00002191 // For unsigned conversions, convert them to signed conversions using the
2192 // algorithm from the x86_64 __floatundidf in compiler_rt.
2193 if (!isSigned) {
2194 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002195
Owen Anderson95771af2011-02-25 21:41:48 +00002196 SDValue ShiftConst =
2197 DAG.getConstant(1, TLI.getShiftAmountTy(Op0.getValueType()));
Owen Anderson3a9e7692010-10-05 17:24:05 +00002198 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst);
2199 SDValue AndConst = DAG.getConstant(1, MVT::i64);
2200 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst);
2201 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002202
Owen Anderson3a9e7692010-10-05 17:24:05 +00002203 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or);
2204 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002205
Owen Anderson3a9e7692010-10-05 17:24:05 +00002206 // TODO: This really should be implemented using a branch rather than a
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002207 // select. We happen to get lucky and machinesink does the right
2208 // thing most of the time. This would be a good candidate for a
Owen Anderson3a9e7692010-10-05 17:24:05 +00002209 //pseudo-op, or, even better, for whole-function isel.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002210 SDValue SignBitTest = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002211 Op0, DAG.getConstant(0, MVT::i64), ISD::SETLT);
2212 return DAG.getNode(ISD::SELECT, dl, MVT::f32, SignBitTest, Slow, Fast);
2213 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002214
Owen Anderson3a9e7692010-10-05 17:24:05 +00002215 // Otherwise, implement the fully general conversion.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002216
Jim Grosbach6e992612010-07-02 17:41:59 +00002217 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002218 DAG.getConstant(UINT64_C(0xfffffffffffff800), MVT::i64));
2219 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And,
2220 DAG.getConstant(UINT64_C(0x800), MVT::i64));
Jim Grosbach6e992612010-07-02 17:41:59 +00002221 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0,
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002222 DAG.getConstant(UINT64_C(0x7ff), MVT::i64));
2223 SDValue Ne = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2224 And2, DAG.getConstant(UINT64_C(0), MVT::i64), ISD::SETNE);
2225 SDValue Sel = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ne, Or, Op0);
2226 SDValue Ge = DAG.getSetCC(dl, TLI.getSetCCResultType(MVT::i64),
2227 Op0, DAG.getConstant(UINT64_C(0x0020000000000000), MVT::i64),
Owen Anderson3a9e7692010-10-05 17:24:05 +00002228 ISD::SETUGE);
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002229 SDValue Sel2 = DAG.getNode(ISD::SELECT, dl, MVT::i64, Ge, Sel, Op0);
Owen Anderson95771af2011-02-25 21:41:48 +00002230 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002231
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002232 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2,
2233 DAG.getConstant(32, SHVT));
2234 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh);
2235 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc);
2236 SDValue TwoP32 =
2237 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2238 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt);
2239 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2);
2240 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo);
2241 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2);
2242 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd,
2243 DAG.getIntPtrConstant(0));
Dale Johannesena5afa1c2010-05-13 23:50:42 +00002244 }
2245
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002246 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002247
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002248 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
2249 Op0, DAG.getConstant(0, Op0.getValueType()),
2250 ISD::SETLT);
2251 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
2252 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
2253 SignSet, Four, Zero);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002254
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002255 // If the sign bit of the integer is set, the large number will be treated
2256 // as a negative number. To counteract this, the dynamic code adds an
2257 // offset depending on the data type.
2258 uint64_t FF;
2259 switch (Op0.getValueType().getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002260 default: llvm_unreachable("Unsupported integer type!");
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002261 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
2262 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
2263 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
2264 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
2265 }
2266 if (TLI.isLittleEndian()) FF <<= 32;
2267 Constant *FudgeFactor = ConstantInt::get(
2268 Type::getInt64Ty(*DAG.getContext()), FF);
2269
2270 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
2271 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
2272 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
2273 Alignment = std::min(Alignment, 4u);
2274 SDValue FudgeInReg;
2275 if (DestVT == MVT::f32)
2276 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00002277 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002278 false, false, false, Alignment);
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002279 else {
Dan Gohman65fd6562011-11-03 21:49:52 +00002280 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
2281 DAG.getEntryNode(), CPIdx,
2282 MachinePointerInfo::getConstantPool(),
2283 MVT::f32, false, false, Alignment);
2284 HandleSDNode Handle(Load);
2285 LegalizeOp(Load.getNode());
2286 FudgeInReg = Handle.getValue();
Dan Gohmanb6b343d2010-03-05 02:40:23 +00002287 }
2288
2289 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002290}
2291
2292/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
2293/// *INT_TO_FP operation of the specified operand when the target requests that
2294/// we promote it. At this point, we know that the result and operand types are
2295/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
2296/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00002297SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002298 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002299 bool isSigned,
2300 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002301 // First step, figure out the appropriate *INT_TO_FP operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002302 EVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002303
2304 unsigned OpToUse = 0;
2305
2306 // Scan for the appropriate larger type to use.
2307 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002308 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002309 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002310
2311 // If the target supports SINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002312 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) {
2313 OpToUse = ISD::SINT_TO_FP;
2314 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002315 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002316 if (isSigned) continue;
2317
2318 // If the target supports UINT_TO_FP of this type, use it.
Eli Friedman3be2e512009-05-28 03:06:16 +00002319 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) {
2320 OpToUse = ISD::UINT_TO_FP;
2321 break;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002322 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002323
2324 // Otherwise, try a larger type.
2325 }
2326
2327 // Okay, we found the operation and type to use. Zero extend our input to the
2328 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00002329 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00002330 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00002331 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002332}
2333
2334/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
2335/// FP_TO_*INT operation of the specified operand when the target requests that
2336/// we promote it. At this point, we know that the result and operand types are
2337/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
2338/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00002339SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
Owen Andersone50ed302009-08-10 22:56:29 +00002340 EVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00002341 bool isSigned,
2342 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002343 // First step, figure out the appropriate FP_TO*INT operation to use.
Owen Andersone50ed302009-08-10 22:56:29 +00002344 EVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00002345
2346 unsigned OpToUse = 0;
2347
2348 // Scan for the appropriate larger type to use.
2349 while (1) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002350 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002351 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002352
Eli Friedman3be2e512009-05-28 03:06:16 +00002353 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002354 OpToUse = ISD::FP_TO_SINT;
2355 break;
2356 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002357
Eli Friedman3be2e512009-05-28 03:06:16 +00002358 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002359 OpToUse = ISD::FP_TO_UINT;
2360 break;
2361 }
Chris Lattner22cde6a2006-01-28 08:25:58 +00002362
2363 // Otherwise, try a larger type.
2364 }
2365
Scott Michelfdc40a02009-02-17 22:15:04 +00002366
Chris Lattner27a6c732007-11-24 07:07:01 +00002367 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00002368 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00002369
Chris Lattner27a6c732007-11-24 07:07:01 +00002370 // Truncate the result of the extended FP_TO_*INT operation to the desired
2371 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00002372 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002373}
2374
2375/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
2376///
Dale Johannesen8a782a22009-02-02 22:12:50 +00002377SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00002378 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002379 EVT SHVT = TLI.getShiftAmountTy(VT);
Dan Gohman475871a2008-07-27 21:46:04 +00002380 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Owen Anderson825b72b2009-08-11 20:47:22 +00002381 switch (VT.getSimpleVT().SimpleTy) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002382 default: llvm_unreachable("Unhandled Expand type in BSWAP!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002383 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002384 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2385 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2386 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002387 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002388 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2389 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2390 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2391 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2392 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
2393 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
2394 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2395 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2396 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Owen Anderson825b72b2009-08-11 20:47:22 +00002397 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00002398 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
2399 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
2400 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
2401 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
2402 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
2403 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
2404 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
2405 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
2406 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
2407 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
2408 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
2409 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
2410 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
2411 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
2412 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
2413 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
2414 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
2415 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
2416 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
2417 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
2418 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002419 }
2420}
2421
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002422/// SplatByte - Distribute ByteVal over NumBits bits.
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002423// FIXME: Move this helper to a common place.
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002424static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
2425 APInt Val = APInt(NumBits, ByteVal);
2426 unsigned Shift = 8;
2427 for (unsigned i = NumBits; i > 8; i >>= 1) {
2428 Val = (Val << Shift) | Val;
2429 Shift <<= 1;
2430 }
2431 return Val;
2432}
2433
Chris Lattner22cde6a2006-01-28 08:25:58 +00002434/// ExpandBitCount - Expand the specified bitcount instruction into operations.
2435///
Scott Michelfdc40a02009-02-17 22:15:04 +00002436SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00002437 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00002438 switch (Opc) {
Craig Topper5e25ee82012-02-05 08:31:47 +00002439 default: llvm_unreachable("Cannot expand this yet!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00002440 case ISD::CTPOP: {
Owen Andersone50ed302009-08-10 22:56:29 +00002441 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002442 EVT ShVT = TLI.getShiftAmountTy(VT);
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002443 unsigned Len = VT.getSizeInBits();
2444
Benjamin Kramer5df5a222011-01-15 21:19:37 +00002445 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2446 "CTPOP not implemented for this type.");
2447
Benjamin Kramerb6516ae2011-01-15 20:30:30 +00002448 // This is the "best" algorithm from
2449 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel
2450
2451 SDValue Mask55 = DAG.getConstant(SplatByte(Len, 0x55), VT);
2452 SDValue Mask33 = DAG.getConstant(SplatByte(Len, 0x33), VT);
2453 SDValue Mask0F = DAG.getConstant(SplatByte(Len, 0x0F), VT);
2454 SDValue Mask01 = DAG.getConstant(SplatByte(Len, 0x01), VT);
2455
2456 // v = v - ((v >> 1) & 0x55555555...)
2457 Op = DAG.getNode(ISD::SUB, dl, VT, Op,
2458 DAG.getNode(ISD::AND, dl, VT,
2459 DAG.getNode(ISD::SRL, dl, VT, Op,
2460 DAG.getConstant(1, ShVT)),
2461 Mask55));
2462 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...)
2463 Op = DAG.getNode(ISD::ADD, dl, VT,
2464 DAG.getNode(ISD::AND, dl, VT, Op, Mask33),
2465 DAG.getNode(ISD::AND, dl, VT,
2466 DAG.getNode(ISD::SRL, dl, VT, Op,
2467 DAG.getConstant(2, ShVT)),
2468 Mask33));
2469 // v = (v + (v >> 4)) & 0x0F0F0F0F...
2470 Op = DAG.getNode(ISD::AND, dl, VT,
2471 DAG.getNode(ISD::ADD, dl, VT, Op,
2472 DAG.getNode(ISD::SRL, dl, VT, Op,
2473 DAG.getConstant(4, ShVT))),
2474 Mask0F);
2475 // v = (v * 0x01010101...) >> (Len - 8)
2476 Op = DAG.getNode(ISD::SRL, dl, VT,
2477 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01),
2478 DAG.getConstant(Len - 8, ShVT));
Owen Anderson95771af2011-02-25 21:41:48 +00002479
Chris Lattner22cde6a2006-01-28 08:25:58 +00002480 return Op;
2481 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002482 case ISD::CTLZ_ZERO_UNDEF:
2483 // This trivially expands to CTLZ.
2484 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002485 case ISD::CTLZ: {
2486 // for now, we do this:
2487 // x = x | (x >> 1);
2488 // x = x | (x >> 2);
2489 // ...
2490 // x = x | (x >>16);
2491 // x = x | (x >>32); // for 64-bit input
2492 // return popcount(~x);
2493 //
2494 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002495 EVT VT = Op.getValueType();
Owen Anderson95771af2011-02-25 21:41:48 +00002496 EVT ShVT = TLI.getShiftAmountTy(VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002497 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00002498 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002499 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002500 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00002501 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002502 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00002503 Op = DAG.getNOT(dl, Op, VT);
2504 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002505 }
Chandler Carruth63974b22011-12-13 01:56:10 +00002506 case ISD::CTTZ_ZERO_UNDEF:
2507 // This trivially expands to CTTZ.
2508 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002509 case ISD::CTTZ: {
2510 // for now, we use: { return popcount(~x & (x - 1)); }
2511 // unless the target has ctlz but not ctpop, in which case we use:
2512 // { return 32 - nlz(~x & (x-1)); }
2513 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Owen Andersone50ed302009-08-10 22:56:29 +00002514 EVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00002515 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
2516 DAG.getNOT(dl, Op, VT),
2517 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00002518 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00002519 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002520 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
2521 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00002522 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002523 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00002524 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
2525 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00002526 }
2527 }
2528}
Chris Lattnere34b3962005-01-19 04:19:40 +00002529
Jim Grosbache03262f2010-06-18 21:43:38 +00002530std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) {
2531 unsigned Opc = Node->getOpcode();
2532 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT();
2533 RTLIB::Libcall LC;
2534
2535 switch (Opc) {
2536 default:
2537 llvm_unreachable("Unhandled atomic intrinsic Expand!");
Jim Grosbachef6eb9c2010-06-18 23:03:10 +00002538 case ISD::ATOMIC_SWAP:
2539 switch (VT.SimpleTy) {
2540 default: llvm_unreachable("Unexpected value type for atomic!");
2541 case MVT::i8: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_1; break;
2542 case MVT::i16: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_2; break;
2543 case MVT::i32: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_4; break;
2544 case MVT::i64: LC = RTLIB::SYNC_LOCK_TEST_AND_SET_8; break;
2545 }
2546 break;
Jim Grosbache03262f2010-06-18 21:43:38 +00002547 case ISD::ATOMIC_CMP_SWAP:
2548 switch (VT.SimpleTy) {
2549 default: llvm_unreachable("Unexpected value type for atomic!");
2550 case MVT::i8: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_1; break;
2551 case MVT::i16: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_2; break;
2552 case MVT::i32: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_4; break;
2553 case MVT::i64: LC = RTLIB::SYNC_VAL_COMPARE_AND_SWAP_8; break;
2554 }
2555 break;
2556 case ISD::ATOMIC_LOAD_ADD:
2557 switch (VT.SimpleTy) {
2558 default: llvm_unreachable("Unexpected value type for atomic!");
2559 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_ADD_1; break;
2560 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_ADD_2; break;
2561 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_ADD_4; break;
2562 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_ADD_8; break;
2563 }
2564 break;
2565 case ISD::ATOMIC_LOAD_SUB:
2566 switch (VT.SimpleTy) {
2567 default: llvm_unreachable("Unexpected value type for atomic!");
2568 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_SUB_1; break;
2569 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_SUB_2; break;
2570 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_SUB_4; break;
2571 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_SUB_8; break;
2572 }
2573 break;
2574 case ISD::ATOMIC_LOAD_AND:
2575 switch (VT.SimpleTy) {
2576 default: llvm_unreachable("Unexpected value type for atomic!");
2577 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_AND_1; break;
2578 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_AND_2; break;
2579 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_AND_4; break;
2580 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_AND_8; break;
2581 }
2582 break;
2583 case ISD::ATOMIC_LOAD_OR:
2584 switch (VT.SimpleTy) {
2585 default: llvm_unreachable("Unexpected value type for atomic!");
2586 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_OR_1; break;
2587 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_OR_2; break;
2588 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_OR_4; break;
2589 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_OR_8; break;
2590 }
2591 break;
2592 case ISD::ATOMIC_LOAD_XOR:
2593 switch (VT.SimpleTy) {
2594 default: llvm_unreachable("Unexpected value type for atomic!");
2595 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_XOR_1; break;
2596 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_XOR_2; break;
2597 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_XOR_4; break;
2598 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_XOR_8; break;
2599 }
2600 break;
2601 case ISD::ATOMIC_LOAD_NAND:
2602 switch (VT.SimpleTy) {
2603 default: llvm_unreachable("Unexpected value type for atomic!");
2604 case MVT::i8: LC = RTLIB::SYNC_FETCH_AND_NAND_1; break;
2605 case MVT::i16: LC = RTLIB::SYNC_FETCH_AND_NAND_2; break;
2606 case MVT::i32: LC = RTLIB::SYNC_FETCH_AND_NAND_4; break;
2607 case MVT::i64: LC = RTLIB::SYNC_FETCH_AND_NAND_8; break;
2608 }
2609 break;
2610 }
2611
2612 return ExpandChainLibCall(LC, Node, false);
2613}
2614
Dan Gohman65fd6562011-11-03 21:49:52 +00002615void SelectionDAGLegalize::ExpandNode(SDNode *Node) {
2616 SmallVector<SDValue, 8> Results;
Eli Friedman8c377c72009-05-27 01:25:56 +00002617 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanbbdd9032009-05-28 20:40:34 +00002618 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
Eli Friedman8c377c72009-05-27 01:25:56 +00002619 switch (Node->getOpcode()) {
2620 case ISD::CTPOP:
2621 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002622 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002623 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00002624 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00002625 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl);
2626 Results.push_back(Tmp1);
2627 break;
2628 case ISD::BSWAP:
Bill Wendling775db972009-12-23 00:28:23 +00002629 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl));
Eli Friedman8c377c72009-05-27 01:25:56 +00002630 break;
2631 case ISD::FRAMEADDR:
2632 case ISD::RETURNADDR:
2633 case ISD::FRAME_TO_ARGS_OFFSET:
2634 Results.push_back(DAG.getConstant(0, Node->getValueType(0)));
2635 break;
2636 case ISD::FLT_ROUNDS_:
2637 Results.push_back(DAG.getConstant(1, Node->getValueType(0)));
2638 break;
2639 case ISD::EH_RETURN:
Eli Friedman8c377c72009-05-27 01:25:56 +00002640 case ISD::EH_LABEL:
2641 case ISD::PREFETCH:
Eli Friedman8c377c72009-05-27 01:25:56 +00002642 case ISD::VAEND:
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002643 case ISD::EH_SJLJ_LONGJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002644 // If the target didn't expand these, there's nothing to do, so just
2645 // preserve the chain and be done.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002646 Results.push_back(Node->getOperand(0));
2647 break;
2648 case ISD::EH_SJLJ_SETJMP:
Jim Grosbache4ad3872010-10-19 23:27:08 +00002649 // If the target didn't expand this, just return 'zero' and preserve the
2650 // chain.
Jim Grosbachc66e150b2010-07-06 23:44:52 +00002651 Results.push_back(DAG.getConstant(0, MVT::i32));
Eli Friedman8c377c72009-05-27 01:25:56 +00002652 Results.push_back(Node->getOperand(0));
2653 break;
Eli Friedman14648462011-07-27 22:21:52 +00002654 case ISD::ATOMIC_FENCE:
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002655 case ISD::MEMBARRIER: {
2656 // If the target didn't lower this, lower it to '__sync_synchronize()' call
Eli Friedman14648462011-07-27 22:21:52 +00002657 // FIXME: handle "fence singlethread" more efficiently.
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002658 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002659 TargetLowering::
2660 CallLoweringInfo CLI(Node->getOperand(0),
2661 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002662 false, false, false, false, 0, CallingConv::C,
2663 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002664 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002665 DAG.getExternalSymbol("__sync_synchronize",
2666 TLI.getPointerTy()),
2667 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002668 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2669
Jim Grosbachbbfc0d22010-06-17 02:00:53 +00002670 Results.push_back(CallResult.second);
2671 break;
2672 }
Eli Friedman069e2ed2011-08-26 02:59:24 +00002673 case ISD::ATOMIC_LOAD: {
2674 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP.
Eli Friedman331120b2011-09-15 21:20:49 +00002675 SDValue Zero = DAG.getConstant(0, Node->getValueType(0));
Eli Friedman069e2ed2011-08-26 02:59:24 +00002676 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl,
2677 cast<AtomicSDNode>(Node)->getMemoryVT(),
2678 Node->getOperand(0),
2679 Node->getOperand(1), Zero, Zero,
2680 cast<AtomicSDNode>(Node)->getMemOperand(),
2681 cast<AtomicSDNode>(Node)->getOrdering(),
2682 cast<AtomicSDNode>(Node)->getSynchScope());
2683 Results.push_back(Swap.getValue(0));
2684 Results.push_back(Swap.getValue(1));
2685 break;
2686 }
2687 case ISD::ATOMIC_STORE: {
2688 // There is no libcall for atomic store; fake it with ATOMIC_SWAP.
2689 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
2690 cast<AtomicSDNode>(Node)->getMemoryVT(),
2691 Node->getOperand(0),
2692 Node->getOperand(1), Node->getOperand(2),
2693 cast<AtomicSDNode>(Node)->getMemOperand(),
2694 cast<AtomicSDNode>(Node)->getOrdering(),
2695 cast<AtomicSDNode>(Node)->getSynchScope());
2696 Results.push_back(Swap.getValue(1));
2697 break;
2698 }
Jim Grosbachb56ce812010-06-17 17:50:54 +00002699 // By default, atomic intrinsics are marked Legal and lowered. Targets
2700 // which don't support them directly, however, may want libcalls, in which
2701 // case they mark them Expand, and we get here.
Jim Grosbachb56ce812010-06-17 17:50:54 +00002702 case ISD::ATOMIC_SWAP:
2703 case ISD::ATOMIC_LOAD_ADD:
2704 case ISD::ATOMIC_LOAD_SUB:
2705 case ISD::ATOMIC_LOAD_AND:
2706 case ISD::ATOMIC_LOAD_OR:
2707 case ISD::ATOMIC_LOAD_XOR:
2708 case ISD::ATOMIC_LOAD_NAND:
2709 case ISD::ATOMIC_LOAD_MIN:
2710 case ISD::ATOMIC_LOAD_MAX:
2711 case ISD::ATOMIC_LOAD_UMIN:
2712 case ISD::ATOMIC_LOAD_UMAX:
Evan Chenga8457062010-06-18 22:01:37 +00002713 case ISD::ATOMIC_CMP_SWAP: {
Jim Grosbache03262f2010-06-18 21:43:38 +00002714 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node);
2715 Results.push_back(Tmp.first);
2716 Results.push_back(Tmp.second);
Jim Grosbach59c38f32010-06-17 17:58:54 +00002717 break;
Evan Chenga8457062010-06-18 22:01:37 +00002718 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00002719 case ISD::DYNAMIC_STACKALLOC:
2720 ExpandDYNAMIC_STACKALLOC(Node, Results);
2721 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00002722 case ISD::MERGE_VALUES:
2723 for (unsigned i = 0; i < Node->getNumValues(); i++)
2724 Results.push_back(Node->getOperand(i));
2725 break;
2726 case ISD::UNDEF: {
Owen Andersone50ed302009-08-10 22:56:29 +00002727 EVT VT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00002728 if (VT.isInteger())
2729 Results.push_back(DAG.getConstant(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002730 else {
2731 assert(VT.isFloatingPoint() && "Unknown value type!");
Eli Friedman8c377c72009-05-27 01:25:56 +00002732 Results.push_back(DAG.getConstantFP(0, VT));
Chris Lattner35a38932010-04-07 23:47:51 +00002733 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002734 break;
2735 }
2736 case ISD::TRAP: {
2737 // If this operation is not supported, lower it to 'abort()' call
2738 TargetLowering::ArgListTy Args;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002739 TargetLowering::
2740 CallLoweringInfo CLI(Node->getOperand(0),
2741 Type::getVoidTy(*DAG.getContext()),
Evan Cheng3d2125c2010-11-30 23:55:39 +00002742 false, false, false, false, 0, CallingConv::C,
2743 /*isTailCall=*/false,
Evan Cheng4bfcd4a2012-02-28 18:51:51 +00002744 /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
Eli Friedman8c377c72009-05-27 01:25:56 +00002745 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Bill Wendling46ada192010-03-02 01:55:18 +00002746 Args, DAG, dl);
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002747 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
2748
Eli Friedman8c377c72009-05-27 01:25:56 +00002749 Results.push_back(CallResult.second);
2750 break;
2751 }
2752 case ISD::FP_ROUND:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002753 case ISD::BITCAST:
Eli Friedman8c377c72009-05-27 01:25:56 +00002754 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
2755 Node->getValueType(0), dl);
2756 Results.push_back(Tmp1);
2757 break;
2758 case ISD::FP_EXTEND:
2759 Tmp1 = EmitStackConvert(Node->getOperand(0),
2760 Node->getOperand(0).getValueType(),
2761 Node->getValueType(0), dl);
2762 Results.push_back(Tmp1);
2763 break;
2764 case ISD::SIGN_EXTEND_INREG: {
2765 // NOTE: we could fall back on load/store here too for targets without
2766 // SAR. However, it is doubtful that any exist.
Owen Andersone50ed302009-08-10 22:56:29 +00002767 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00002768 EVT VT = Node->getValueType(0);
Owen Anderson95771af2011-02-25 21:41:48 +00002769 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT);
Dan Gohmand1996362010-01-09 02:13:55 +00002770 if (VT.isVector())
Dan Gohman87862e72009-12-11 21:31:27 +00002771 ShiftAmountTy = VT;
Dan Gohmand1996362010-01-09 02:13:55 +00002772 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
2773 ExtraVT.getScalarType().getSizeInBits();
Dan Gohman87862e72009-12-11 21:31:27 +00002774 SDValue ShiftCst = DAG.getConstant(BitsDiff, ShiftAmountTy);
Eli Friedman8c377c72009-05-27 01:25:56 +00002775 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
2776 Node->getOperand(0), ShiftCst);
Bill Wendling775db972009-12-23 00:28:23 +00002777 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst);
2778 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002779 break;
2780 }
2781 case ISD::FP_ROUND_INREG: {
2782 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002783 // EXTLOAD pair, targeting a temporary location (a stack slot).
Eli Friedman8c377c72009-05-27 01:25:56 +00002784
2785 // NOTE: there is a choice here between constantly creating new stack
2786 // slots and always reusing the same one. We currently always create
2787 // new ones, as reuse may inhibit scheduling.
Owen Andersone50ed302009-08-10 22:56:29 +00002788 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Eli Friedman8c377c72009-05-27 01:25:56 +00002789 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT,
2790 Node->getValueType(0), dl);
2791 Results.push_back(Tmp1);
2792 break;
2793 }
2794 case ISD::SINT_TO_FP:
2795 case ISD::UINT_TO_FP:
2796 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP,
2797 Node->getOperand(0), Node->getValueType(0), dl);
2798 Results.push_back(Tmp1);
2799 break;
2800 case ISD::FP_TO_UINT: {
2801 SDValue True, False;
Owen Andersone50ed302009-08-10 22:56:29 +00002802 EVT VT = Node->getOperand(0).getValueType();
2803 EVT NVT = Node->getValueType(0);
Benjamin Kramer3069cbf2010-12-04 15:28:22 +00002804 APFloat apf(APInt::getNullValue(VT.getSizeInBits()));
Eli Friedman8c377c72009-05-27 01:25:56 +00002805 APInt x = APInt::getSignBit(NVT.getSizeInBits());
2806 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
2807 Tmp1 = DAG.getConstantFP(apf, VT);
2808 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
2809 Node->getOperand(0),
2810 Tmp1, ISD::SETLT);
2811 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00002812 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
2813 DAG.getNode(ISD::FSUB, dl, VT,
2814 Node->getOperand(0), Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00002815 False = DAG.getNode(ISD::XOR, dl, NVT, False,
2816 DAG.getConstant(x, NVT));
2817 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2, True, False);
2818 Results.push_back(Tmp1);
2819 break;
2820 }
Eli Friedman509150f2009-05-27 07:58:35 +00002821 case ISD::VAARG: {
2822 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Owen Andersone50ed302009-08-10 22:56:29 +00002823 EVT VT = Node->getValueType(0);
Eli Friedman509150f2009-05-27 07:58:35 +00002824 Tmp1 = Node->getOperand(0);
2825 Tmp2 = Node->getOperand(1);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002826 unsigned Align = Node->getConstantOperandVal(3);
2827
Chris Lattnerecf42c42010-09-21 16:36:31 +00002828 SDValue VAListLoad = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002829 MachinePointerInfo(V),
2830 false, false, false, 0);
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002831 SDValue VAList = VAListLoad;
2832
Rafael Espindolacbeeae22010-07-11 04:01:49 +00002833 if (Align > TLI.getMinStackArgumentAlignment()) {
2834 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2");
2835
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002836 VAList = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
2837 DAG.getConstant(Align - 1,
2838 TLI.getPointerTy()));
2839
2840 VAList = DAG.getNode(ISD::AND, dl, TLI.getPointerTy(), VAList,
Chris Lattner07e3a382010-10-10 18:36:26 +00002841 DAG.getConstant(-(int64_t)Align,
Rafael Espindola72d13ff2010-06-26 18:22:20 +00002842 TLI.getPointerTy()));
2843 }
2844
Eli Friedman509150f2009-05-27 07:58:35 +00002845 // Increment the pointer, VAList, to the next vaarg
2846 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Micah Villmow3574eca2012-10-08 16:38:25 +00002847 DAG.getConstant(TLI.getDataLayout()->
Evan Chengadf97992010-04-15 01:25:27 +00002848 getTypeAllocSize(VT.getTypeForEVT(*DAG.getContext())),
Eli Friedman509150f2009-05-27 07:58:35 +00002849 TLI.getPointerTy()));
2850 // Store the incremented VAList to the legalized pointer
Chris Lattner6229d0a2010-09-21 18:41:36 +00002851 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2,
2852 MachinePointerInfo(V), false, false, 0);
Eli Friedman509150f2009-05-27 07:58:35 +00002853 // Load the actual argument out of the pointer VAList
Chris Lattnerecf42c42010-09-21 16:36:31 +00002854 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002855 false, false, false, 0));
Eli Friedman509150f2009-05-27 07:58:35 +00002856 Results.push_back(Results[0].getValue(1));
2857 break;
2858 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002859 case ISD::VACOPY: {
2860 // This defaults to loading a pointer from the input and storing it to the
2861 // output, returning the chain.
2862 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2863 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
2864 Tmp1 = DAG.getLoad(TLI.getPointerTy(), dl, Node->getOperand(0),
Chris Lattnerecf42c42010-09-21 16:36:31 +00002865 Node->getOperand(2), MachinePointerInfo(VS),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002866 false, false, false, 0);
Chris Lattnerecf42c42010-09-21 16:36:31 +00002867 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
2868 MachinePointerInfo(VD), false, false, 0);
Bill Wendling775db972009-12-23 00:28:23 +00002869 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00002870 break;
2871 }
2872 case ISD::EXTRACT_VECTOR_ELT:
2873 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1)
2874 // This must be an access of the only element. Return it.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002875 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0),
Eli Friedman8c377c72009-05-27 01:25:56 +00002876 Node->getOperand(0));
2877 else
2878 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0));
2879 Results.push_back(Tmp1);
2880 break;
2881 case ISD::EXTRACT_SUBVECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002882 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0)));
Eli Friedman8c377c72009-05-27 01:25:56 +00002883 break;
David Greenecfe33c42011-01-26 19:13:22 +00002884 case ISD::INSERT_SUBVECTOR:
2885 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0)));
2886 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002887 case ISD::CONCAT_VECTORS: {
Bill Wendling775db972009-12-23 00:28:23 +00002888 Results.push_back(ExpandVectorBuildThroughStack(Node));
Eli Friedman509150f2009-05-27 07:58:35 +00002889 break;
2890 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002891 case ISD::SCALAR_TO_VECTOR:
Bill Wendling775db972009-12-23 00:28:23 +00002892 Results.push_back(ExpandSCALAR_TO_VECTOR(Node));
Eli Friedman8c377c72009-05-27 01:25:56 +00002893 break;
Eli Friedman3f727d62009-05-27 02:16:40 +00002894 case ISD::INSERT_VECTOR_ELT:
Bill Wendling775db972009-12-23 00:28:23 +00002895 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0),
2896 Node->getOperand(1),
2897 Node->getOperand(2), dl));
Eli Friedman3f727d62009-05-27 02:16:40 +00002898 break;
Eli Friedman509150f2009-05-27 07:58:35 +00002899 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00002900 SmallVector<int, 32> NewMask;
2901 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00002902
Owen Andersone50ed302009-08-10 22:56:29 +00002903 EVT VT = Node->getValueType(0);
2904 EVT EltVT = VT.getVectorElementType();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002905 SDValue Op0 = Node->getOperand(0);
2906 SDValue Op1 = Node->getOperand(1);
2907 if (!TLI.isTypeLegal(EltVT)) {
2908
2909 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT);
2910
2911 // BUILD_VECTOR operands are allowed to be wider than the element type.
2912 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept it
2913 if (NewEltVT.bitsLT(EltVT)) {
2914
2915 // Convert shuffle node.
2916 // If original node was v4i64 and the new EltVT is i32,
2917 // cast operands to v8i32 and re-build the mask.
2918
2919 // Calculate new VT, the size of the new VT should be equal to original.
2920 EVT NewVT = EVT::getVectorVT(*DAG.getContext(), NewEltVT,
2921 VT.getSizeInBits()/NewEltVT.getSizeInBits());
2922 assert(NewVT.bitsEq(VT));
2923
2924 // cast operands to new VT
2925 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0);
2926 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1);
2927
2928 // Convert the shuffle mask
2929 unsigned int factor = NewVT.getVectorNumElements()/VT.getVectorNumElements();
2930
2931 // EltVT gets smaller
2932 assert(factor > 0);
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002933
2934 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
2935 if (Mask[i] < 0) {
2936 for (unsigned fi = 0; fi < factor; ++fi)
2937 NewMask.push_back(Mask[i]);
2938 }
2939 else {
2940 for (unsigned fi = 0; fi < factor; ++fi)
2941 NewMask.push_back(Mask[i]*factor+fi);
2942 }
2943 }
2944 Mask = NewMask;
2945 VT = NewVT;
2946 }
2947 EltVT = NewEltVT;
2948 }
Eli Friedman509150f2009-05-27 07:58:35 +00002949 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002950 SmallVector<SDValue, 16> Ops;
Eli Friedman509150f2009-05-27 07:58:35 +00002951 for (unsigned i = 0; i != NumElems; ++i) {
2952 if (Mask[i] < 0) {
2953 Ops.push_back(DAG.getUNDEF(EltVT));
2954 continue;
2955 }
2956 unsigned Idx = Mask[i];
2957 if (Idx < NumElems)
Bill Wendling775db972009-12-23 00:28:23 +00002958 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002959 Op0,
Bill Wendling775db972009-12-23 00:28:23 +00002960 DAG.getIntPtrConstant(Idx)));
Eli Friedman509150f2009-05-27 07:58:35 +00002961 else
Bill Wendling775db972009-12-23 00:28:23 +00002962 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
Elena Demikhovskyce58a032012-01-03 11:59:04 +00002963 Op1,
Bill Wendling775db972009-12-23 00:28:23 +00002964 DAG.getIntPtrConstant(Idx - NumElems)));
Eli Friedman509150f2009-05-27 07:58:35 +00002965 }
Nadav Rotem6c0366c2012-01-10 14:28:46 +00002966
Eli Friedman509150f2009-05-27 07:58:35 +00002967 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Nadav Rotem6c0366c2012-01-10 14:28:46 +00002968 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type.
2969 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00002970 Results.push_back(Tmp1);
2971 break;
2972 }
Eli Friedman8c377c72009-05-27 01:25:56 +00002973 case ISD::EXTRACT_ELEMENT: {
Owen Andersone50ed302009-08-10 22:56:29 +00002974 EVT OpTy = Node->getOperand(0).getValueType();
Eli Friedman8c377c72009-05-27 01:25:56 +00002975 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
2976 // 1 -> Hi
2977 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
2978 DAG.getConstant(OpTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00002979 TLI.getShiftAmountTy(Node->getOperand(0).getValueType())));
Eli Friedman8c377c72009-05-27 01:25:56 +00002980 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
2981 } else {
2982 // 0 -> Lo
2983 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
2984 Node->getOperand(0));
2985 }
2986 Results.push_back(Tmp1);
2987 break;
2988 }
Eli Friedman3f727d62009-05-27 02:16:40 +00002989 case ISD::STACKSAVE:
2990 // Expand to CopyFromReg if the target set
2991 // StackPointerRegisterToSaveRestore.
2992 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Bill Wendling775db972009-12-23 00:28:23 +00002993 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP,
2994 Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00002995 Results.push_back(Results[0].getValue(1));
2996 } else {
Bill Wendling775db972009-12-23 00:28:23 +00002997 Results.push_back(DAG.getUNDEF(Node->getValueType(0)));
Eli Friedman3f727d62009-05-27 02:16:40 +00002998 Results.push_back(Node->getOperand(0));
2999 }
3000 break;
3001 case ISD::STACKRESTORE:
Bill Wendling775db972009-12-23 00:28:23 +00003002 // Expand to CopyToReg if the target set
3003 // StackPointerRegisterToSaveRestore.
3004 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
3005 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP,
3006 Node->getOperand(1)));
3007 } else {
3008 Results.push_back(Node->getOperand(0));
3009 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003010 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003011 case ISD::FCOPYSIGN:
Bill Wendling775db972009-12-23 00:28:23 +00003012 Results.push_back(ExpandFCOPYSIGN(Node));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003013 break;
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003014 case ISD::FNEG:
3015 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3016 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3017 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1,
3018 Node->getOperand(0));
3019 Results.push_back(Tmp1);
3020 break;
3021 case ISD::FABS: {
3022 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Owen Andersone50ed302009-08-10 22:56:29 +00003023 EVT VT = Node->getValueType(0);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003024 Tmp1 = Node->getOperand(0);
3025 Tmp2 = DAG.getConstantFP(0.0, VT);
Bill Wendling775db972009-12-23 00:28:23 +00003026 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003027 Tmp1, Tmp2, ISD::SETUGT);
Bill Wendling775db972009-12-23 00:28:23 +00003028 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3029 Tmp1 = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003030 Results.push_back(Tmp1);
3031 break;
3032 }
3033 case ISD::FSQRT:
Bill Wendling775db972009-12-23 00:28:23 +00003034 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3035 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003036 break;
3037 case ISD::FSIN:
Bill Wendling775db972009-12-23 00:28:23 +00003038 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64,
3039 RTLIB::SIN_F80, RTLIB::SIN_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003040 break;
3041 case ISD::FCOS:
Bill Wendling775db972009-12-23 00:28:23 +00003042 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64,
3043 RTLIB::COS_F80, RTLIB::COS_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003044 break;
3045 case ISD::FLOG:
Bill Wendling775db972009-12-23 00:28:23 +00003046 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64,
3047 RTLIB::LOG_F80, RTLIB::LOG_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003048 break;
3049 case ISD::FLOG2:
Bill Wendling775db972009-12-23 00:28:23 +00003050 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3051 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003052 break;
3053 case ISD::FLOG10:
Bill Wendling775db972009-12-23 00:28:23 +00003054 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3055 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003056 break;
3057 case ISD::FEXP:
Bill Wendling775db972009-12-23 00:28:23 +00003058 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64,
3059 RTLIB::EXP_F80, RTLIB::EXP_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003060 break;
3061 case ISD::FEXP2:
Bill Wendling775db972009-12-23 00:28:23 +00003062 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3063 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003064 break;
3065 case ISD::FTRUNC:
Bill Wendling775db972009-12-23 00:28:23 +00003066 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3067 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003068 break;
3069 case ISD::FFLOOR:
Bill Wendling775db972009-12-23 00:28:23 +00003070 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3071 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003072 break;
3073 case ISD::FCEIL:
Bill Wendling775db972009-12-23 00:28:23 +00003074 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3075 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003076 break;
3077 case ISD::FRINT:
Bill Wendling775db972009-12-23 00:28:23 +00003078 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64,
3079 RTLIB::RINT_F80, RTLIB::RINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003080 break;
3081 case ISD::FNEARBYINT:
Bill Wendling775db972009-12-23 00:28:23 +00003082 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32,
3083 RTLIB::NEARBYINT_F64,
3084 RTLIB::NEARBYINT_F80,
3085 RTLIB::NEARBYINT_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003086 break;
3087 case ISD::FPOWI:
Bill Wendling775db972009-12-23 00:28:23 +00003088 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64,
3089 RTLIB::POWI_F80, RTLIB::POWI_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003090 break;
3091 case ISD::FPOW:
Bill Wendling775db972009-12-23 00:28:23 +00003092 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64,
3093 RTLIB::POW_F80, RTLIB::POW_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003094 break;
3095 case ISD::FDIV:
Bill Wendling775db972009-12-23 00:28:23 +00003096 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64,
3097 RTLIB::DIV_F80, RTLIB::DIV_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003098 break;
3099 case ISD::FREM:
Bill Wendling775db972009-12-23 00:28:23 +00003100 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64,
3101 RTLIB::REM_F80, RTLIB::REM_PPCF128));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003102 break;
Cameron Zwarich33390842011-07-08 21:39:21 +00003103 case ISD::FMA:
3104 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64,
3105 RTLIB::FMA_F80, RTLIB::FMA_PPCF128));
3106 break;
Anton Korobeynikov927411b2010-03-14 18:42:24 +00003107 case ISD::FP16_TO_FP32:
3108 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false));
3109 break;
3110 case ISD::FP32_TO_FP16:
3111 Results.push_back(ExpandLibCall(RTLIB::FPROUND_F32_F16, Node, false));
3112 break;
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003113 case ISD::ConstantFP: {
3114 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Bill Wendling775db972009-12-23 00:28:23 +00003115 // Check to see if this FP immediate is already legal.
3116 // If this is a legal constant, turn it into a TargetConstantFP node.
Dan Gohman65fd6562011-11-03 21:49:52 +00003117 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0)))
3118 Results.push_back(ExpandConstantFP(CFP, true));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003119 break;
3120 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003121 case ISD::EHSELECTION: {
3122 unsigned Reg = TLI.getExceptionSelectorRegister();
3123 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003124 Results.push_back(DAG.getCopyFromReg(Node->getOperand(1), dl, Reg,
3125 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003126 Results.push_back(Results[0].getValue(1));
3127 break;
3128 }
3129 case ISD::EXCEPTIONADDR: {
Lang Hames07961342012-02-14 04:45:49 +00003130 unsigned Reg = TLI.getExceptionPointerRegister();
Eli Friedman26ea8f92009-05-27 07:05:37 +00003131 assert(Reg && "Can't expand to unknown register!");
Bill Wendling775db972009-12-23 00:28:23 +00003132 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, Reg,
3133 Node->getValueType(0)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003134 Results.push_back(Results[0].getValue(1));
3135 break;
3136 }
Owen Andersonafd3d562012-03-06 00:29:31 +00003137 case ISD::FSUB: {
3138 EVT VT = Node->getValueType(0);
3139 assert(TLI.isOperationLegalOrCustom(ISD::FADD, VT) &&
3140 TLI.isOperationLegalOrCustom(ISD::FNEG, VT) &&
3141 "Don't know how to expand this FP subtraction!");
3142 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1));
3143 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1);
3144 Results.push_back(Tmp1);
3145 break;
3146 }
Eli Friedman26ea8f92009-05-27 07:05:37 +00003147 case ISD::SUB: {
Owen Andersone50ed302009-08-10 22:56:29 +00003148 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003149 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3150 TLI.isOperationLegalOrCustom(ISD::XOR, VT) &&
3151 "Don't know how to expand this subtraction!");
3152 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1),
3153 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
Owen Anderson4b6e6752012-05-21 22:39:20 +00003154 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, VT));
Bill Wendling775db972009-12-23 00:28:23 +00003155 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003156 break;
3157 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003158 case ISD::UREM:
3159 case ISD::SREM: {
Owen Andersone50ed302009-08-10 22:56:29 +00003160 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003161 SDVTList VTs = DAG.getVTList(VT, VT);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003162 bool isSigned = Node->getOpcode() == ISD::SREM;
3163 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3164 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
3165 Tmp2 = Node->getOperand(0);
3166 Tmp3 = Node->getOperand(1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003167 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3168 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Chengd36696c2012-10-12 01:15:47 +00003169 // If div is legal, it's better to do the normal expansion
3170 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003171 useDivRem(Node, isSigned, false))) {
Eli Friedman3be2e512009-05-28 03:06:16 +00003172 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1);
3173 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003174 // X % Y -> X-X/Y*Y
3175 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);
3176 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3);
3177 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1);
Evan Cheng65279cb2011-04-16 03:08:26 +00003178 } else if (isSigned)
3179 Tmp1 = ExpandIntLibCall(Node, true,
3180 RTLIB::SREM_I8,
3181 RTLIB::SREM_I16, RTLIB::SREM_I32,
3182 RTLIB::SREM_I64, RTLIB::SREM_I128);
3183 else
3184 Tmp1 = ExpandIntLibCall(Node, false,
3185 RTLIB::UREM_I8,
3186 RTLIB::UREM_I16, RTLIB::UREM_I32,
3187 RTLIB::UREM_I64, RTLIB::UREM_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003188 Results.push_back(Tmp1);
3189 break;
3190 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003191 case ISD::UDIV:
3192 case ISD::SDIV: {
3193 bool isSigned = Node->getOpcode() == ISD::SDIV;
3194 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM;
Owen Andersone50ed302009-08-10 22:56:29 +00003195 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003196 SDVTList VTs = DAG.getVTList(VT, VT);
Evan Cheng65279cb2011-04-16 03:08:26 +00003197 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) ||
3198 (isDivRemLibcallAvailable(Node, isSigned, TLI) &&
Evan Cheng8ef09682012-06-21 05:56:05 +00003199 useDivRem(Node, isSigned, true)))
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003200 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0),
3201 Node->getOperand(1));
Evan Cheng65279cb2011-04-16 03:08:26 +00003202 else if (isSigned)
3203 Tmp1 = ExpandIntLibCall(Node, true,
3204 RTLIB::SDIV_I8,
3205 RTLIB::SDIV_I16, RTLIB::SDIV_I32,
3206 RTLIB::SDIV_I64, RTLIB::SDIV_I128);
3207 else
3208 Tmp1 = ExpandIntLibCall(Node, false,
3209 RTLIB::UDIV_I8,
3210 RTLIB::UDIV_I16, RTLIB::UDIV_I32,
3211 RTLIB::UDIV_I64, RTLIB::UDIV_I128);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003212 Results.push_back(Tmp1);
3213 break;
3214 }
3215 case ISD::MULHU:
3216 case ISD::MULHS: {
3217 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI :
3218 ISD::SMUL_LOHI;
Owen Andersone50ed302009-08-10 22:56:29 +00003219 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003220 SDVTList VTs = DAG.getVTList(VT, VT);
3221 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) &&
3222 "If this wasn't legal, it shouldn't have been created!");
3223 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0),
3224 Node->getOperand(1));
3225 Results.push_back(Tmp1.getValue(1));
3226 break;
3227 }
Evan Cheng65279cb2011-04-16 03:08:26 +00003228 case ISD::SDIVREM:
3229 case ISD::UDIVREM:
3230 // Expand into divrem libcall
3231 ExpandDivRemLibCall(Node, Results);
3232 break;
Eli Friedman26ea8f92009-05-27 07:05:37 +00003233 case ISD::MUL: {
Owen Andersone50ed302009-08-10 22:56:29 +00003234 EVT VT = Node->getValueType(0);
Eli Friedman26ea8f92009-05-27 07:05:37 +00003235 SDVTList VTs = DAG.getVTList(VT, VT);
3236 // See if multiply or divide can be lowered using two-result operations.
3237 // We just need the low half of the multiply; try both the signed
3238 // and unsigned forms. If the target supports both SMUL_LOHI and
3239 // UMUL_LOHI, form a preference by checking which forms of plain
3240 // MULH it supports.
3241 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3242 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3243 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3244 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
3245 unsigned OpToUse = 0;
3246 if (HasSMUL_LOHI && !HasMULHS) {
3247 OpToUse = ISD::SMUL_LOHI;
3248 } else if (HasUMUL_LOHI && !HasMULHU) {
3249 OpToUse = ISD::UMUL_LOHI;
3250 } else if (HasSMUL_LOHI) {
3251 OpToUse = ISD::SMUL_LOHI;
3252 } else if (HasUMUL_LOHI) {
3253 OpToUse = ISD::UMUL_LOHI;
3254 }
3255 if (OpToUse) {
Bill Wendling775db972009-12-23 00:28:23 +00003256 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0),
3257 Node->getOperand(1)));
Eli Friedman26ea8f92009-05-27 07:05:37 +00003258 break;
3259 }
Anton Korobeynikov8983da72009-11-07 17:14:39 +00003260 Tmp1 = ExpandIntLibCall(Node, false,
3261 RTLIB::MUL_I8,
3262 RTLIB::MUL_I16, RTLIB::MUL_I32,
Eli Friedman26ea8f92009-05-27 07:05:37 +00003263 RTLIB::MUL_I64, RTLIB::MUL_I128);
3264 Results.push_back(Tmp1);
3265 break;
3266 }
Eli Friedman4bc8c712009-05-27 12:20:41 +00003267 case ISD::SADDO:
3268 case ISD::SSUBO: {
3269 SDValue LHS = Node->getOperand(0);
3270 SDValue RHS = Node->getOperand(1);
3271 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
3272 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3273 LHS, RHS);
3274 Results.push_back(Sum);
Bill Wendling122d06d2009-12-23 00:05:09 +00003275 EVT OType = Node->getValueType(1);
Bill Wendling775db972009-12-23 00:28:23 +00003276
Eli Friedman4bc8c712009-05-27 12:20:41 +00003277 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
3278
3279 // LHSSign -> LHS >= 0
3280 // RHSSign -> RHS >= 0
3281 // SumSign -> Sum >= 0
3282 //
3283 // Add:
3284 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
3285 // Sub:
3286 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
3287 //
3288 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
3289 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
3290 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
3291 Node->getOpcode() == ISD::SADDO ?
3292 ISD::SETEQ : ISD::SETNE);
3293
3294 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
3295 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
3296
3297 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
3298 Results.push_back(Cmp);
3299 break;
3300 }
3301 case ISD::UADDO:
3302 case ISD::USUBO: {
3303 SDValue LHS = Node->getOperand(0);
3304 SDValue RHS = Node->getOperand(1);
3305 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
3306 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
3307 LHS, RHS);
3308 Results.push_back(Sum);
Bill Wendling775db972009-12-23 00:28:23 +00003309 Results.push_back(DAG.getSetCC(dl, Node->getValueType(1), Sum, LHS,
3310 Node->getOpcode () == ISD::UADDO ?
3311 ISD::SETULT : ISD::SETUGT));
Eli Friedman4bc8c712009-05-27 12:20:41 +00003312 break;
3313 }
Eli Friedmandb3c1692009-06-16 06:58:29 +00003314 case ISD::UMULO:
3315 case ISD::SMULO: {
Owen Andersone50ed302009-08-10 22:56:29 +00003316 EVT VT = Node->getValueType(0);
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003317 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2);
Eli Friedmandb3c1692009-06-16 06:58:29 +00003318 SDValue LHS = Node->getOperand(0);
3319 SDValue RHS = Node->getOperand(1);
3320 SDValue BottomHalf;
3321 SDValue TopHalf;
Nuno Lopesec9d8b02009-12-23 17:48:10 +00003322 static const unsigned Ops[2][3] =
Eli Friedmandb3c1692009-06-16 06:58:29 +00003323 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND },
3324 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }};
3325 bool isSigned = Node->getOpcode() == ISD::SMULO;
3326 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) {
3327 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
3328 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS);
3329 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) {
3330 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS,
3331 RHS);
3332 TopHalf = BottomHalf.getValue(1);
Eric Christopher38a18262011-01-20 00:29:24 +00003333 } else if (TLI.isTypeLegal(EVT::getIntegerVT(*DAG.getContext(),
3334 VT.getSizeInBits() * 2))) {
Eli Friedmandb3c1692009-06-16 06:58:29 +00003335 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS);
3336 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS);
3337 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS);
3338 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3339 DAG.getIntPtrConstant(0));
3340 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1,
3341 DAG.getIntPtrConstant(1));
Eric Christopher38a18262011-01-20 00:29:24 +00003342 } else {
3343 // We can fall back to a libcall with an illegal type for the MUL if we
3344 // have a libcall big enough.
3345 // Also, we can fall back to a division in some cases, but that's a big
3346 // performance hit in the general case.
Eric Christopher38a18262011-01-20 00:29:24 +00003347 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3348 if (WideVT == MVT::i16)
3349 LC = RTLIB::MUL_I16;
3350 else if (WideVT == MVT::i32)
3351 LC = RTLIB::MUL_I32;
3352 else if (WideVT == MVT::i64)
3353 LC = RTLIB::MUL_I64;
3354 else if (WideVT == MVT::i128)
3355 LC = RTLIB::MUL_I128;
3356 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!");
Dan Gohmanf316eb72011-05-16 22:09:53 +00003357
3358 // The high part is obtained by SRA'ing all but one of the bits of low
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003359 // part.
3360 unsigned LoSize = VT.getSizeInBits();
3361 SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, RHS,
3362 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
3363 SDValue HiRHS = DAG.getNode(ISD::SRA, dl, VT, LHS,
3364 DAG.getConstant(LoSize-1, TLI.getPointerTy()));
Owen Anderson95771af2011-02-25 21:41:48 +00003365
Eric Christopherabbbfbd2011-04-20 01:19:45 +00003366 // Here we're passing the 2 arguments explicitly as 4 arguments that are
3367 // pre-lowered to the correct types. This all depends upon WideVT not
3368 // being a legal type for the architecture and thus has to be split to
3369 // two arguments.
3370 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS };
3371 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl);
3372 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3373 DAG.getIntPtrConstant(0));
3374 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret,
3375 DAG.getIntPtrConstant(1));
Dan Gohman65fd6562011-11-03 21:49:52 +00003376 // Ret is a node with an illegal type. Because such things are not
3377 // generally permitted during this phase of legalization, delete the
3378 // node. The above EXTRACT_ELEMENT nodes should have been folded.
3379 DAG.DeleteNode(Ret.getNode());
Eli Friedmandb3c1692009-06-16 06:58:29 +00003380 }
Dan Gohmanf316eb72011-05-16 22:09:53 +00003381
Eli Friedmandb3c1692009-06-16 06:58:29 +00003382 if (isSigned) {
Owen Anderson95771af2011-02-25 21:41:48 +00003383 Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1,
3384 TLI.getShiftAmountTy(BottomHalf.getValueType()));
Eli Friedmandb3c1692009-06-16 06:58:29 +00003385 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1);
3386 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf, Tmp1,
3387 ISD::SETNE);
3388 } else {
3389 TopHalf = DAG.getSetCC(dl, TLI.getSetCCResultType(VT), TopHalf,
3390 DAG.getConstant(0, VT), ISD::SETNE);
3391 }
3392 Results.push_back(BottomHalf);
3393 Results.push_back(TopHalf);
3394 break;
3395 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003396 case ISD::BUILD_PAIR: {
Owen Andersone50ed302009-08-10 22:56:29 +00003397 EVT PairTy = Node->getValueType(0);
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003398 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0));
3399 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1));
Bill Wendling775db972009-12-23 00:28:23 +00003400 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003401 DAG.getConstant(PairTy.getSizeInBits()/2,
Owen Anderson95771af2011-02-25 21:41:48 +00003402 TLI.getShiftAmountTy(PairTy)));
Bill Wendling775db972009-12-23 00:28:23 +00003403 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2));
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003404 break;
3405 }
Eli Friedman509150f2009-05-27 07:58:35 +00003406 case ISD::SELECT:
3407 Tmp1 = Node->getOperand(0);
3408 Tmp2 = Node->getOperand(1);
3409 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003410 if (Tmp1.getOpcode() == ISD::SETCC) {
Eli Friedman509150f2009-05-27 07:58:35 +00003411 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
3412 Tmp2, Tmp3,
3413 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
Bill Wendling775db972009-12-23 00:28:23 +00003414 } else {
Eli Friedman509150f2009-05-27 07:58:35 +00003415 Tmp1 = DAG.getSelectCC(dl, Tmp1,
3416 DAG.getConstant(0, Tmp1.getValueType()),
3417 Tmp2, Tmp3, ISD::SETNE);
Bill Wendling775db972009-12-23 00:28:23 +00003418 }
Eli Friedman509150f2009-05-27 07:58:35 +00003419 Results.push_back(Tmp1);
3420 break;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003421 case ISD::BR_JT: {
3422 SDValue Chain = Node->getOperand(0);
3423 SDValue Table = Node->getOperand(1);
3424 SDValue Index = Node->getOperand(2);
3425
Owen Andersone50ed302009-08-10 22:56:29 +00003426 EVT PTy = TLI.getPointerTy();
Chris Lattner071c62f2010-01-25 23:26:13 +00003427
Micah Villmow3574eca2012-10-08 16:38:25 +00003428 const DataLayout &TD = *TLI.getDataLayout();
Chris Lattner071c62f2010-01-25 23:26:13 +00003429 unsigned EntrySize =
3430 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD);
Jim Grosbach6e992612010-07-02 17:41:59 +00003431
Chris Lattner071c62f2010-01-25 23:26:13 +00003432 Index = DAG.getNode(ISD::MUL, dl, PTy,
Eli Friedman4bc8c712009-05-27 12:20:41 +00003433 Index, DAG.getConstant(EntrySize, PTy));
3434 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3435
Owen Anderson23b9b192009-08-12 00:36:31 +00003436 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
Stuart Hastingsa9011292011-02-16 16:23:55 +00003437 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Chris Lattner85ca1062010-09-21 07:32:19 +00003438 MachinePointerInfo::getJumpTable(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00003439 false, false, 0);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003440 Addr = LD;
Dan Gohman55e59c12010-04-19 19:05:59 +00003441 if (TM.getRelocationModel() == Reloc::PIC_) {
Eli Friedman4bc8c712009-05-27 12:20:41 +00003442 // For PIC, the sequence is:
Bill Wendling775db972009-12-23 00:28:23 +00003443 // BRIND(load(Jumptable + index) + RelocBase)
Eli Friedman4bc8c712009-05-27 12:20:41 +00003444 // RelocBase can be JumpTable, GOT or some sort of global base.
3445 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
3446 TLI.getPICJumpTableRelocBase(Table, DAG));
3447 }
Owen Anderson825b72b2009-08-11 20:47:22 +00003448 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Eli Friedman4bc8c712009-05-27 12:20:41 +00003449 Results.push_back(Tmp1);
3450 break;
3451 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003452 case ISD::BRCOND:
3453 // Expand brcond's setcc into its constituent parts and create a BR_CC
3454 // Node.
3455 Tmp1 = Node->getOperand(0);
3456 Tmp2 = Node->getOperand(1);
Bill Wendling775db972009-12-23 00:28:23 +00003457 if (Tmp2.getOpcode() == ISD::SETCC) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003458 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003459 Tmp1, Tmp2.getOperand(2),
3460 Tmp2.getOperand(0), Tmp2.getOperand(1),
3461 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003462 } else {
Stuart Hastings88882242011-05-13 00:51:54 +00003463 // We test only the i1 bit. Skip the AND if UNDEF.
3464 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 :
3465 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2,
3466 DAG.getConstant(1, Tmp2.getValueType()));
Owen Anderson825b72b2009-08-11 20:47:22 +00003467 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Stuart Hastings88882242011-05-13 00:51:54 +00003468 DAG.getCondCode(ISD::SETNE), Tmp3,
3469 DAG.getConstant(0, Tmp3.getValueType()),
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003470 Node->getOperand(2));
Bill Wendling775db972009-12-23 00:28:23 +00003471 }
Eli Friedmanf6f20a72009-05-27 07:32:27 +00003472 Results.push_back(Tmp1);
3473 break;
Eli Friedmanad754602009-05-28 03:56:57 +00003474 case ISD::SETCC: {
3475 Tmp1 = Node->getOperand(0);
3476 Tmp2 = Node->getOperand(1);
3477 Tmp3 = Node->getOperand(2);
Bill Wendling775db972009-12-23 00:28:23 +00003478 LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Eli Friedmanad754602009-05-28 03:56:57 +00003479
3480 // If we expanded the SETCC into an AND/OR, return the new node
3481 if (Tmp2.getNode() == 0) {
3482 Results.push_back(Tmp1);
3483 break;
3484 }
3485
3486 // Otherwise, SETCC for the given comparison type must be completely
3487 // illegal; expand it into a SELECT_CC.
Owen Andersone50ed302009-08-10 22:56:29 +00003488 EVT VT = Node->getValueType(0);
Eli Friedmanad754602009-05-28 03:56:57 +00003489 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
3490 DAG.getConstant(1, VT), DAG.getConstant(0, VT), Tmp3);
3491 Results.push_back(Tmp1);
3492 break;
3493 }
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003494 case ISD::SELECT_CC: {
3495 Tmp1 = Node->getOperand(0); // LHS
3496 Tmp2 = Node->getOperand(1); // RHS
3497 Tmp3 = Node->getOperand(2); // True
3498 Tmp4 = Node->getOperand(3); // False
3499 SDValue CC = Node->getOperand(4);
3500
3501 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp1.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003502 Tmp1, Tmp2, CC, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003503
3504 assert(!Tmp2.getNode() && "Can't legalize SELECT_CC with legal condition!");
3505 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3506 CC = DAG.getCondCode(ISD::SETNE);
3507 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, Tmp2,
3508 Tmp3, Tmp4, CC);
3509 Results.push_back(Tmp1);
3510 break;
3511 }
3512 case ISD::BR_CC: {
3513 Tmp1 = Node->getOperand(0); // Chain
3514 Tmp2 = Node->getOperand(2); // LHS
3515 Tmp3 = Node->getOperand(3); // RHS
3516 Tmp4 = Node->getOperand(1); // CC
3517
3518 LegalizeSetCCCondCode(TLI.getSetCCResultType(Tmp2.getValueType()),
Bill Wendling775db972009-12-23 00:28:23 +00003519 Tmp2, Tmp3, Tmp4, dl);
Eli Friedmanbbdd9032009-05-28 20:40:34 +00003520
3521 assert(!Tmp3.getNode() && "Can't legalize BR_CC with legal condition!");
3522 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
3523 Tmp4 = DAG.getCondCode(ISD::SETNE);
3524 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, Tmp2,
3525 Tmp3, Node->getOperand(4));
3526 Results.push_back(Tmp1);
3527 break;
3528 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003529 case ISD::BUILD_VECTOR:
3530 Results.push_back(ExpandBUILD_VECTOR(Node));
3531 break;
3532 case ISD::SRA:
3533 case ISD::SRL:
3534 case ISD::SHL: {
3535 // Scalarize vector SRA/SRL/SHL.
3536 EVT VT = Node->getValueType(0);
3537 assert(VT.isVector() && "Unable to legalize non-vector shift");
3538 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal");
3539 unsigned NumElem = VT.getVectorNumElements();
3540
3541 SmallVector<SDValue, 8> Scalars;
3542 for (unsigned Idx = 0; Idx < NumElem; Idx++) {
3543 SDValue Ex = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3544 VT.getScalarType(),
3545 Node->getOperand(0), DAG.getIntPtrConstant(Idx));
3546 SDValue Sh = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3547 VT.getScalarType(),
3548 Node->getOperand(1), DAG.getIntPtrConstant(Idx));
3549 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl,
3550 VT.getScalarType(), Ex, Sh));
3551 }
3552 SDValue Result =
3553 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
3554 &Scalars[0], Scalars.size());
Eli Friedman0e3642a2011-11-11 23:58:27 +00003555 ReplaceNode(SDValue(Node, 0), Result);
Dan Gohman65fd6562011-11-03 21:49:52 +00003556 break;
3557 }
Eli Friedman3f727d62009-05-27 02:16:40 +00003558 case ISD::GLOBAL_OFFSET_TABLE:
3559 case ISD::GlobalAddress:
3560 case ISD::GlobalTLSAddress:
3561 case ISD::ExternalSymbol:
3562 case ISD::ConstantPool:
3563 case ISD::JumpTable:
3564 case ISD::INTRINSIC_W_CHAIN:
3565 case ISD::INTRINSIC_WO_CHAIN:
3566 case ISD::INTRINSIC_VOID:
3567 // FIXME: Custom lowering for these operations shouldn't return null!
Eli Friedman3f727d62009-05-27 02:16:40 +00003568 break;
Eli Friedman8c377c72009-05-27 01:25:56 +00003569 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003570
3571 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003572 if (!Results.empty())
3573 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003574}
Dan Gohman65fd6562011-11-03 21:49:52 +00003575
3576void SelectionDAGLegalize::PromoteNode(SDNode *Node) {
3577 SmallVector<SDValue, 8> Results;
Owen Andersone50ed302009-08-10 22:56:29 +00003578 EVT OVT = Node->getValueType(0);
Eli Friedman8c377c72009-05-27 01:25:56 +00003579 if (Node->getOpcode() == ISD::UINT_TO_FP ||
Eli Friedmana64eb922009-07-17 05:16:04 +00003580 Node->getOpcode() == ISD::SINT_TO_FP ||
Bill Wendling775db972009-12-23 00:28:23 +00003581 Node->getOpcode() == ISD::SETCC) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003582 OVT = Node->getOperand(0).getValueType();
Bill Wendling775db972009-12-23 00:28:23 +00003583 }
Owen Andersone50ed302009-08-10 22:56:29 +00003584 EVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Eli Friedman8c377c72009-05-27 01:25:56 +00003585 DebugLoc dl = Node->getDebugLoc();
Eli Friedman509150f2009-05-27 07:58:35 +00003586 SDValue Tmp1, Tmp2, Tmp3;
Eli Friedman8c377c72009-05-27 01:25:56 +00003587 switch (Node->getOpcode()) {
3588 case ISD::CTTZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003589 case ISD::CTTZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003590 case ISD::CTLZ:
Chandler Carruth63974b22011-12-13 01:56:10 +00003591 case ISD::CTLZ_ZERO_UNDEF:
Eli Friedman8c377c72009-05-27 01:25:56 +00003592 case ISD::CTPOP:
3593 // Zero extend the argument.
3594 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Chandler Carruth63974b22011-12-13 01:56:10 +00003595 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is
3596 // already the correct result.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003597 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003598 if (Node->getOpcode() == ISD::CTTZ) {
Chandler Carruth63974b22011-12-13 01:56:10 +00003599 // FIXME: This should set a bit in the zero extended value instead.
Jakob Stoklund Olesen9a4ba452009-07-12 17:43:20 +00003600 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Eli Friedman8c377c72009-05-27 01:25:56 +00003601 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
3602 ISD::SETEQ);
3603 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
3604 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Chandler Carruth63974b22011-12-13 01:56:10 +00003605 } else if (Node->getOpcode() == ISD::CTLZ ||
3606 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) {
Eli Friedman8c377c72009-05-27 01:25:56 +00003607 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3608 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
3609 DAG.getConstant(NVT.getSizeInBits() -
3610 OVT.getSizeInBits(), NVT));
3611 }
Bill Wendling775db972009-12-23 00:28:23 +00003612 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1));
Eli Friedman8c377c72009-05-27 01:25:56 +00003613 break;
3614 case ISD::BSWAP: {
3615 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Bill Wendling167bea72009-12-22 22:53:39 +00003616 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Bill Wendling775db972009-12-23 00:28:23 +00003617 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3618 Tmp1 = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Owen Anderson95771af2011-02-25 21:41:48 +00003619 DAG.getConstant(DiffBits, TLI.getShiftAmountTy(NVT)));
Bill Wendling775db972009-12-23 00:28:23 +00003620 Results.push_back(Tmp1);
Eli Friedman8c377c72009-05-27 01:25:56 +00003621 break;
3622 }
3623 case ISD::FP_TO_UINT:
3624 case ISD::FP_TO_SINT:
3625 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0),
3626 Node->getOpcode() == ISD::FP_TO_SINT, dl);
3627 Results.push_back(Tmp1);
3628 break;
3629 case ISD::UINT_TO_FP:
3630 case ISD::SINT_TO_FP:
3631 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0),
3632 Node->getOpcode() == ISD::SINT_TO_FP, dl);
3633 Results.push_back(Tmp1);
3634 break;
Hal Finkel5194d6d2012-03-24 03:53:52 +00003635 case ISD::VAARG: {
3636 SDValue Chain = Node->getOperand(0); // Get the chain.
3637 SDValue Ptr = Node->getOperand(1); // Get the pointer.
3638
3639 unsigned TruncOp;
3640 if (OVT.isVector()) {
3641 TruncOp = ISD::BITCAST;
3642 } else {
3643 assert(OVT.isInteger()
3644 && "VAARG promotion is supported only for vectors or integer types");
3645 TruncOp = ISD::TRUNCATE;
3646 }
3647
3648 // Perform the larger operation, then convert back
3649 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2),
3650 Node->getConstantOperandVal(3));
3651 Chain = Tmp1.getValue(1);
3652
3653 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1);
3654
3655 // Modified the chain result - switch anything that used the old chain to
3656 // use the new one.
3657 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2);
3658 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain);
3659 ReplacedNode(Node);
3660 break;
3661 }
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003662 case ISD::AND:
3663 case ISD::OR:
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003664 case ISD::XOR: {
3665 unsigned ExtOp, TruncOp;
3666 if (OVT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003667 ExtOp = ISD::BITCAST;
3668 TruncOp = ISD::BITCAST;
Chris Lattner35a38932010-04-07 23:47:51 +00003669 } else {
3670 assert(OVT.isInteger() && "Cannot promote logic operation");
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003671 ExtOp = ISD::ANY_EXTEND;
3672 TruncOp = ISD::TRUNCATE;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003673 }
3674 // Promote each of the values to the new type.
3675 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3676 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3677 // Perform the larger operation, then convert back
Bill Wendling775db972009-12-23 00:28:23 +00003678 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
3679 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1));
Eli Friedmanf6b23bf2009-05-27 03:33:44 +00003680 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003681 }
3682 case ISD::SELECT: {
Eli Friedman509150f2009-05-27 07:58:35 +00003683 unsigned ExtOp, TruncOp;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003684 if (Node->getValueType(0).isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003685 ExtOp = ISD::BITCAST;
3686 TruncOp = ISD::BITCAST;
Eli Friedman4bc8c712009-05-27 12:20:41 +00003687 } else if (Node->getValueType(0).isInteger()) {
Eli Friedman509150f2009-05-27 07:58:35 +00003688 ExtOp = ISD::ANY_EXTEND;
3689 TruncOp = ISD::TRUNCATE;
3690 } else {
3691 ExtOp = ISD::FP_EXTEND;
3692 TruncOp = ISD::FP_ROUND;
3693 }
3694 Tmp1 = Node->getOperand(0);
3695 // Promote each of the values to the new type.
3696 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
3697 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2));
3698 // Perform the larger operation, then round down.
3699 Tmp1 = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
3700 if (TruncOp != ISD::FP_ROUND)
Bill Wendling775db972009-12-23 00:28:23 +00003701 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003702 else
Bill Wendling775db972009-12-23 00:28:23 +00003703 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1,
Eli Friedman509150f2009-05-27 07:58:35 +00003704 DAG.getIntPtrConstant(0));
Bill Wendling775db972009-12-23 00:28:23 +00003705 Results.push_back(Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003706 break;
Jakob Stoklund Olesenc8ca3ae2009-07-12 18:10:18 +00003707 }
Eli Friedman509150f2009-05-27 07:58:35 +00003708 case ISD::VECTOR_SHUFFLE: {
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003709 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask();
Eli Friedman509150f2009-05-27 07:58:35 +00003710
3711 // Cast the two input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003712 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0));
3713 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1));
Eli Friedman509150f2009-05-27 07:58:35 +00003714
3715 // Convert the shuffle mask to the right # elements.
Bill Wendling775db972009-12-23 00:28:23 +00003716 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003717 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1);
Eli Friedman509150f2009-05-27 07:58:35 +00003718 Results.push_back(Tmp1);
3719 break;
3720 }
Eli Friedmanad754602009-05-28 03:56:57 +00003721 case ISD::SETCC: {
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003722 unsigned ExtOp = ISD::FP_EXTEND;
3723 if (NVT.isInteger()) {
3724 ISD::CondCode CCCode =
3725 cast<CondCodeSDNode>(Node->getOperand(2))->get();
3726 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Eli Friedmanad754602009-05-28 03:56:57 +00003727 }
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00003728 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0));
3729 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1));
Eli Friedmanad754602009-05-28 03:56:57 +00003730 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0),
3731 Tmp1, Tmp2, Node->getOperand(2)));
3732 break;
3733 }
Pete Coopercfe29982012-03-19 23:38:12 +00003734 case ISD::FDIV:
Pete Cooper9751b812012-04-04 19:36:31 +00003735 case ISD::FREM:
Pete Cooperd578b902012-01-12 21:46:18 +00003736 case ISD::FPOW: {
3737 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3738 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1));
Pete Coopercfe29982012-03-19 23:38:12 +00003739 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Pete Cooperd578b902012-01-12 21:46:18 +00003740 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3741 Tmp3, DAG.getIntPtrConstant(0)));
3742 break;
3743 }
3744 case ISD::FLOG2:
3745 case ISD::FEXP2:
3746 case ISD::FLOG:
3747 case ISD::FEXP: {
3748 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0));
3749 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
3750 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT,
3751 Tmp2, DAG.getIntPtrConstant(0)));
3752 break;
3753 }
Eli Friedman8c377c72009-05-27 01:25:56 +00003754 }
Dan Gohman65fd6562011-11-03 21:49:52 +00003755
3756 // Replace the original node with the legalized result.
Eli Friedman0e3642a2011-11-11 23:58:27 +00003757 if (!Results.empty())
3758 ReplaceNode(Node, Results.data());
Eli Friedman8c377c72009-05-27 01:25:56 +00003759}
3760
Chris Lattner3e928bb2005-01-07 07:47:09 +00003761// SelectionDAG::Legalize - This is the entry point for the file.
3762//
Dan Gohman975716a2011-05-16 22:19:54 +00003763void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00003764 /// run - This is the main entry point to this class.
3765 ///
Dan Gohman975716a2011-05-16 22:19:54 +00003766 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00003767}