blob: c3ab3680b22707b0e5b4ed1c58db0509f636537a [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
15#include "llvm/CodeGen/MachineFunction.h"
16#include "llvm/CodeGen/MachineFrameInfo.h"
17#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner1b989192007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman12a9c082008-02-06 22:27:42 +000019#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Chenga448bc42007-08-16 23:50:06 +000020#include "llvm/Target/TargetFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/Target/TargetLowering.h"
22#include "llvm/Target/TargetData.h"
23#include "llvm/Target/TargetMachine.h"
24#include "llvm/Target/TargetOptions.h"
Dan Gohmane8b391e2008-04-12 04:36:06 +000025#include "llvm/Target/TargetSubtarget.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/CallingConv.h"
27#include "llvm/Constants.h"
28#include "llvm/DerivedTypes.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/Compiler.h"
Duncan Sandsa3691432007-10-28 12:59:45 +000031#include "llvm/Support/MathExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include "llvm/ADT/DenseMap.h"
33#include "llvm/ADT/SmallVector.h"
34#include "llvm/ADT/SmallPtrSet.h"
35#include <map>
36using namespace llvm;
37
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038//===----------------------------------------------------------------------===//
39/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
40/// hacks on it until the target machine can handle it. This involves
41/// eliminating value sizes the machine cannot handle (promoting small sizes to
42/// large sizes or splitting up large values into small values) as well as
43/// eliminating operations the machine cannot handle.
44///
45/// This code also does a small amount of optimization and recognition of idioms
46/// as part of its processing. For example, if a target does not support a
47/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
48/// will attempt merge setcc and brc instructions into brcc's.
49///
50namespace {
51class VISIBILITY_HIDDEN SelectionDAGLegalize {
52 TargetLowering &TLI;
53 SelectionDAG &DAG;
54
55 // Libcall insertion helpers.
56
57 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
58 /// legalized. We use this to ensure that calls are properly serialized
59 /// against each other, including inserted libcalls.
Dan Gohman8181bd12008-07-27 21:46:04 +000060 SDValue LastCALLSEQ_END;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061
62 /// IsLegalizingCall - This member is used *only* for purposes of providing
63 /// helpful assertions that a libcall isn't created while another call is
64 /// being legalized (which could lead to non-serialized call sequences).
65 bool IsLegalizingCall;
66
67 enum LegalizeAction {
68 Legal, // The target natively supports this operation.
69 Promote, // This operation should be executed in a larger type.
70 Expand // Try to expand this to other ops, otherwise use a libcall.
71 };
72
73 /// ValueTypeActions - This is a bitvector that contains two bits for each
74 /// value type, where the two bits correspond to the LegalizeAction enum.
75 /// This can be queried with "getTypeAction(VT)".
76 TargetLowering::ValueTypeActionImpl ValueTypeActions;
77
78 /// LegalizedNodes - For nodes that are of legal width, and that have more
79 /// than one use, this map indicates what regularized operand to use. This
80 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000081 DenseMap<SDValue, SDValue> LegalizedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082
83 /// PromotedNodes - For nodes that are below legal width, and that have more
84 /// than one use, this map indicates what promoted value to use. This allows
85 /// us to avoid promoting the same thing more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000086 DenseMap<SDValue, SDValue> PromotedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087
88 /// ExpandedNodes - For nodes that need to be expanded this map indicates
89 /// which which operands are the expanded version of the input. This allows
90 /// us to avoid expanding the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000091 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092
93 /// SplitNodes - For vector nodes that need to be split, this map indicates
94 /// which which operands are the split version of the input. This allows us
95 /// to avoid splitting the same node more than once.
Dan Gohman8181bd12008-07-27 21:46:04 +000096 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097
98 /// ScalarizedNodes - For nodes that need to be converted from vector types to
99 /// scalar types, this contains the mapping of ones we have already
100 /// processed to the result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000101 std::map<SDValue, SDValue> ScalarizedNodes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102
Dan Gohman8181bd12008-07-27 21:46:04 +0000103 void AddLegalizedOperand(SDValue From, SDValue To) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104 LegalizedNodes.insert(std::make_pair(From, To));
105 // If someone requests legalization of the new node, return itself.
106 if (From != To)
107 LegalizedNodes.insert(std::make_pair(To, To));
108 }
Dan Gohman8181bd12008-07-27 21:46:04 +0000109 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman55d19662008-07-07 17:46:23 +0000110 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111 assert(isNew && "Got into the map somehow?");
112 // If someone requests legalization of the new node, return itself.
113 LegalizedNodes.insert(std::make_pair(To, To));
114 }
115
116public:
Dan Gohmane887fdf2008-07-07 18:00:37 +0000117 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118
119 /// getTypeAction - Return how we should legalize values of this type, either
120 /// it is already legal or we need to expand it into multiple registers of
121 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands92c43912008-06-06 12:08:01 +0000122 LegalizeAction getTypeAction(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
124 }
125
126 /// isTypeLegal - Return true if this type is legal on this target.
127 ///
Duncan Sands92c43912008-06-06 12:08:01 +0000128 bool isTypeLegal(MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 return getTypeAction(VT) == Legal;
130 }
131
132 void LegalizeDAG();
133
134private:
135 /// HandleOp - Legalize, Promote, or Expand the specified operand as
136 /// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000137 void HandleOp(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138
139 /// LegalizeOp - We know that the specified value has a legal type.
140 /// Recursively ensure that the operands have legal types, then return the
141 /// result.
Dan Gohman8181bd12008-07-27 21:46:04 +0000142 SDValue LegalizeOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143
Dan Gohman6d05cac2007-10-11 23:57:53 +0000144 /// UnrollVectorOp - We know that the given vector has a legal type, however
145 /// the operation it performs is not legal and is an operation that we have
146 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
147 /// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000148 SDValue UnrollVectorOp(SDValue O);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000149
150 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
151 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
152 /// is necessary to spill the vector being inserted into to memory, perform
153 /// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000154 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
155 SDValue Idx);
Dan Gohman6d05cac2007-10-11 23:57:53 +0000156
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 /// PromoteOp - Given an operation that produces a value in an invalid type,
158 /// promote it to compute the value into a larger type. The produced value
159 /// will have the correct bits for the low portion of the register, but no
160 /// guarantee is made about the top bits: it may be zero, sign-extended, or
161 /// garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +0000162 SDValue PromoteOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163
Dan Gohman8181bd12008-07-27 21:46:04 +0000164 /// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
166 /// the LegalizeNodes map is filled in for any results that are not expanded,
167 /// the ExpandedNodes map is filled in for any results that are expanded, and
168 /// the Lo/Hi values are returned. This applies to integer types and Vector
169 /// types.
Dan Gohman8181bd12008-07-27 21:46:04 +0000170 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171
172 /// SplitVectorOp - Given an operand of vector type, break it down into
173 /// two smaller values.
Dan Gohman8181bd12008-07-27 21:46:04 +0000174 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175
176 /// ScalarizeVectorOp - Given an operand of single-element vector type
177 /// (e.g. v1f32), convert it into the equivalent operation that returns a
178 /// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +0000179 SDValue ScalarizeVectorOp(SDValue O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180
Duncan Sandsd3ace282008-07-21 10:20:31 +0000181 /// isShuffleLegal - Return non-null if a vector shuffle is legal with the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 /// specified mask and type. Targets can specify exactly which masks they
183 /// support and the code generator is tasked with not creating illegal masks.
184 ///
185 /// Note that this will also return true for shuffles that are promoted to a
186 /// different type.
187 ///
188 /// If this is a legal shuffle, this method returns the (possibly promoted)
189 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Dan Gohman8181bd12008-07-27 21:46:04 +0000190 SDNode *isShuffleLegal(MVT VT, SDValue Mask) const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191
192 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
193 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
194
Dan Gohman8181bd12008-07-27 21:46:04 +0000195 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196
Dan Gohman8181bd12008-07-27 21:46:04 +0000197 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
198 SDValue &Hi);
199 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200
Dan Gohman8181bd12008-07-27 21:46:04 +0000201 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT);
202 SDValue ExpandBUILD_VECTOR(SDNode *Node);
203 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Dan Gohman29c3cef2008-08-14 20:04:46 +0000204 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op);
Dan Gohman8181bd12008-07-27 21:46:04 +0000205 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT);
206 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned);
207 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208
Dan Gohman8181bd12008-07-27 21:46:04 +0000209 SDValue ExpandBSWAP(SDValue Op);
210 SDValue ExpandBitCount(unsigned Opc, SDValue Op);
211 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
212 SDValue &Lo, SDValue &Hi);
213 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
214 SDValue &Lo, SDValue &Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215
Dan Gohman8181bd12008-07-27 21:46:04 +0000216 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
217 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000218};
219}
220
221/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
222/// specified mask and type. Targets can specify exactly which masks they
223/// support and the code generator is tasked with not creating illegal masks.
224///
225/// Note that this will also return true for shuffles that are promoted to a
226/// different type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000227SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
229 default: return 0;
230 case TargetLowering::Legal:
231 case TargetLowering::Custom:
232 break;
233 case TargetLowering::Promote: {
234 // If this is promoted to a different type, convert the shuffle mask and
235 // ask if it is legal in the promoted type!
Duncan Sands92c43912008-06-06 12:08:01 +0000236 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsd3ace282008-07-21 10:20:31 +0000237 MVT EltVT = NVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238
239 // If we changed # elements, change the shuffle mask.
240 unsigned NumEltsGrowth =
Duncan Sands92c43912008-06-06 12:08:01 +0000241 NVT.getVectorNumElements() / VT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
243 if (NumEltsGrowth > 1) {
244 // Renumber the elements.
Dan Gohman8181bd12008-07-27 21:46:04 +0000245 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000247 SDValue InOp = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000248 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
249 if (InOp.getOpcode() == ISD::UNDEF)
Duncan Sandsd3ace282008-07-21 10:20:31 +0000250 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 else {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000252 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getZExtValue();
Duncan Sandsd3ace282008-07-21 10:20:31 +0000253 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 }
255 }
256 }
257 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
258 }
259 VT = NVT;
260 break;
261 }
262 }
Gabor Greif1c80d112008-08-28 21:40:38 +0000263 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.getNode() : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264}
265
266SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
267 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
268 ValueTypeActions(TLI.getValueTypeActions()) {
269 assert(MVT::LAST_VALUETYPE <= 32 &&
270 "Too many value types for ValueTypeActions to hold!");
271}
272
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000273void SelectionDAGLegalize::LegalizeDAG() {
274 LastCALLSEQ_END = DAG.getEntryNode();
275 IsLegalizingCall = false;
276
277 // The legalize process is inherently a bottom-up recursive process (users
278 // legalize their uses before themselves). Given infinite stack space, we
279 // could just start legalizing on the root and traverse the whole graph. In
280 // practice however, this causes us to run out of stack space on large basic
281 // blocks. To avoid this problem, compute an ordering of the nodes where each
282 // node is only legalized after all of its operands are legalized.
Dan Gohman509fca42008-08-26 21:42:18 +0000283 std::vector<SDNode *> TopOrder;
284 unsigned N = DAG.AssignTopologicalOrder(TopOrder);
285 for (unsigned i = N; i != 0; --i)
286 HandleOp(SDValue(TopOrder[i-1], 0));
287 TopOrder.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288
289 // Finally, it's possible the root changed. Get the new root.
Dan Gohman8181bd12008-07-27 21:46:04 +0000290 SDValue OldRoot = DAG.getRoot();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000291 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
292 DAG.setRoot(LegalizedNodes[OldRoot]);
293
294 ExpandedNodes.clear();
295 LegalizedNodes.clear();
296 PromotedNodes.clear();
297 SplitNodes.clear();
298 ScalarizedNodes.clear();
299
300 // Remove dead nodes now.
301 DAG.RemoveDeadNodes();
302}
303
304
305/// FindCallEndFromCallStart - Given a chained node that is part of a call
306/// sequence, find the CALLSEQ_END node that terminates the call sequence.
307static SDNode *FindCallEndFromCallStart(SDNode *Node) {
308 if (Node->getOpcode() == ISD::CALLSEQ_END)
309 return Node;
310 if (Node->use_empty())
311 return 0; // No CallSeqEnd
312
313 // The chain is usually at the end.
Dan Gohman8181bd12008-07-27 21:46:04 +0000314 SDValue TheChain(Node, Node->getNumValues()-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315 if (TheChain.getValueType() != MVT::Other) {
316 // Sometimes it's at the beginning.
Dan Gohman8181bd12008-07-27 21:46:04 +0000317 TheChain = SDValue(Node, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000318 if (TheChain.getValueType() != MVT::Other) {
319 // Otherwise, hunt for it.
320 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
321 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000322 TheChain = SDValue(Node, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323 break;
324 }
325
326 // Otherwise, we walked into a node without a chain.
327 if (TheChain.getValueType() != MVT::Other)
328 return 0;
329 }
330 }
331
332 for (SDNode::use_iterator UI = Node->use_begin(),
333 E = Node->use_end(); UI != E; ++UI) {
334
335 // Make sure to only follow users of our token chain.
Dan Gohman0c97f1d2008-07-27 20:43:25 +0000336 SDNode *User = *UI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000337 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
338 if (User->getOperand(i) == TheChain)
339 if (SDNode *Result = FindCallEndFromCallStart(User))
340 return Result;
341 }
342 return 0;
343}
344
345/// FindCallStartFromCallEnd - Given a chained node that is part of a call
346/// sequence, find the CALLSEQ_START node that initiates the call sequence.
347static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
348 assert(Node && "Didn't find callseq_start for a call??");
349 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
350
351 assert(Node->getOperand(0).getValueType() == MVT::Other &&
352 "Node doesn't have a token chain argument!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000353 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354}
355
356/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
357/// see if any uses can reach Dest. If no dest operands can get to dest,
358/// legalize them, legalize ourself, and return false, otherwise, return true.
359///
360/// Keep track of the nodes we fine that actually do lead to Dest in
361/// NodesLeadingTo. This avoids retraversing them exponential number of times.
362///
363bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
364 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
365 if (N == Dest) return true; // N certainly leads to Dest :)
366
367 // If we've already processed this node and it does lead to Dest, there is no
368 // need to reprocess it.
369 if (NodesLeadingTo.count(N)) return true;
370
371 // If the first result of this node has been already legalized, then it cannot
372 // reach N.
373 switch (getTypeAction(N->getValueType(0))) {
374 case Legal:
Dan Gohman8181bd12008-07-27 21:46:04 +0000375 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000376 break;
377 case Promote:
Dan Gohman8181bd12008-07-27 21:46:04 +0000378 if (PromotedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000379 break;
380 case Expand:
Dan Gohman8181bd12008-07-27 21:46:04 +0000381 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382 break;
383 }
384
385 // Okay, this node has not already been legalized. Check and legalize all
386 // operands. If none lead to Dest, then we can legalize this node.
387 bool OperandsLeadToDest = false;
388 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
389 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greif1c80d112008-08-28 21:40:38 +0000390 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391
392 if (OperandsLeadToDest) {
393 NodesLeadingTo.insert(N);
394 return true;
395 }
396
397 // Okay, this node looks safe, legalize it and return false.
Dan Gohman8181bd12008-07-27 21:46:04 +0000398 HandleOp(SDValue(N, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399 return false;
400}
401
402/// HandleOp - Legalize, Promote, or Expand the specified operand as
403/// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000404void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000405 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406 switch (getTypeAction(VT)) {
407 default: assert(0 && "Bad type action!");
408 case Legal: (void)LegalizeOp(Op); break;
409 case Promote: (void)PromoteOp(Op); break;
410 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +0000411 if (!VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 // If this is an illegal scalar, expand it into its two component
413 // pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +0000414 SDValue X, Y;
Chris Lattnerdad577b2007-08-25 01:00:22 +0000415 if (Op.getOpcode() == ISD::TargetConstant)
416 break; // Allow illegal target nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 ExpandOp(Op, X, Y);
Duncan Sands92c43912008-06-06 12:08:01 +0000418 } else if (VT.getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 // If this is an illegal single element vector, convert it to a
420 // scalar operation.
421 (void)ScalarizeVectorOp(Op);
422 } else {
423 // Otherwise, this is an illegal multiple element vector.
424 // Split it in half and legalize both parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000425 SDValue X, Y;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426 SplitVectorOp(Op, X, Y);
427 }
428 break;
429 }
430}
431
432/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
433/// a load from the constant pool.
Dan Gohman8181bd12008-07-27 21:46:04 +0000434static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435 SelectionDAG &DAG, TargetLowering &TLI) {
436 bool Extend = false;
437
438 // If a FP immediate is precise when represented as a float and if the
439 // target can do an extending load from float to double, we put it into
440 // the constant pool as a float, even if it's is statically typed as a
Chris Lattnere718cc52008-03-05 06:46:58 +0000441 // double. This shrinks FP constants and canonicalizes them for targets where
442 // an FP extending load is the same cost as a normal load (such as on the x87
443 // fp stack or PPC FP unit).
Duncan Sands92c43912008-06-06 12:08:01 +0000444 MVT VT = CFP->getValueType(0);
Dan Gohmanc1f3a072008-09-12 18:08:03 +0000445 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446 if (!UseCP) {
Dale Johannesen2fc20782007-09-14 22:26:36 +0000447 if (VT!=MVT::f64 && VT!=MVT::f32)
448 assert(0 && "Invalid type expansion");
Dan Gohman39509762008-03-11 00:11:06 +0000449 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
Evan Cheng354be062008-03-04 08:05:30 +0000450 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451 }
452
Duncan Sands92c43912008-06-06 12:08:01 +0000453 MVT OrigVT = VT;
454 MVT SVT = VT;
Evan Cheng354be062008-03-04 08:05:30 +0000455 while (SVT != MVT::f32) {
Duncan Sands92c43912008-06-06 12:08:01 +0000456 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Cheng354be062008-03-04 08:05:30 +0000457 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
458 // Only do this if the target has a native EXTLOAD instruction from
459 // smaller type.
Evan Cheng35190fd2008-03-05 01:30:59 +0000460 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattnere718cc52008-03-05 06:46:58 +0000461 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands92c43912008-06-06 12:08:01 +0000462 const Type *SType = SVT.getTypeForMVT();
Evan Cheng354be062008-03-04 08:05:30 +0000463 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
464 VT = SVT;
465 Extend = true;
466 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 }
468
Dan Gohman8181bd12008-07-27 21:46:04 +0000469 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +0000470 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Cheng354be062008-03-04 08:05:30 +0000471 if (Extend)
472 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohmanfb020b62008-02-07 18:41:25 +0000473 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman04637d12008-09-16 22:05:41 +0000474 0, VT, false, Alignment);
Evan Cheng354be062008-03-04 08:05:30 +0000475 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +0000476 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000477}
478
479
480/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
481/// operations.
482static
Dan Gohman8181bd12008-07-27 21:46:04 +0000483SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
484 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands92c43912008-06-06 12:08:01 +0000485 MVT VT = Node->getValueType(0);
486 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
488 "fcopysign expansion only supported for f32 and f64");
Duncan Sands92c43912008-06-06 12:08:01 +0000489 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000490
491 // First get the sign bit of second operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000492 SDValue Mask1 = (SrcVT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
494 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
495 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Dan Gohman8181bd12008-07-27 21:46:04 +0000496 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000497 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
498 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands92c43912008-06-06 12:08:01 +0000499 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500 if (SizeDiff > 0) {
501 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
502 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
503 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
Chris Lattnere6fa1452008-07-10 23:46:13 +0000504 } else if (SizeDiff < 0) {
505 SignBit = DAG.getNode(ISD::ZERO_EXTEND, NVT, SignBit);
506 SignBit = DAG.getNode(ISD::SHL, NVT, SignBit,
507 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
508 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509
510 // Clear the sign bit of first operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000511 SDValue Mask2 = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
513 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
514 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Dan Gohman8181bd12008-07-27 21:46:04 +0000515 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
517
518 // Or the value with the sign bit.
519 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
520 return Result;
521}
522
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000523/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
524static
Dan Gohman8181bd12008-07-27 21:46:04 +0000525SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
526 TargetLowering &TLI) {
527 SDValue Chain = ST->getChain();
528 SDValue Ptr = ST->getBasePtr();
529 SDValue Val = ST->getValue();
Duncan Sands92c43912008-06-06 12:08:01 +0000530 MVT VT = Val.getValueType();
Dale Johannesen08275382007-09-08 19:29:23 +0000531 int Alignment = ST->getAlignment();
532 int SVOffset = ST->getSrcValueOffset();
Duncan Sands92c43912008-06-06 12:08:01 +0000533 if (ST->getMemoryVT().isFloatingPoint() ||
534 ST->getMemoryVT().isVector()) {
Dale Johannesen08275382007-09-08 19:29:23 +0000535 // Expand to a bitconvert of the value to the integer type of the
536 // same size, then a (misaligned) int store.
Duncan Sands92c43912008-06-06 12:08:01 +0000537 MVT intVT;
538 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesendc0ee192008-02-27 22:36:00 +0000539 intVT = MVT::i128;
Duncan Sands92c43912008-06-06 12:08:01 +0000540 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen08275382007-09-08 19:29:23 +0000541 intVT = MVT::i64;
542 else if (VT==MVT::f32)
543 intVT = MVT::i32;
544 else
Dale Johannesenb1d1ab92008-02-28 18:36:51 +0000545 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen08275382007-09-08 19:29:23 +0000546
Dan Gohman8181bd12008-07-27 21:46:04 +0000547 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
Dale Johannesen08275382007-09-08 19:29:23 +0000548 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
549 SVOffset, ST->isVolatile(), Alignment);
550 }
Duncan Sands92c43912008-06-06 12:08:01 +0000551 assert(ST->getMemoryVT().isInteger() &&
552 !ST->getMemoryVT().isVector() &&
Dale Johannesen08275382007-09-08 19:29:23 +0000553 "Unaligned store of unknown type.");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000554 // Get the half-size VT
Duncan Sands92c43912008-06-06 12:08:01 +0000555 MVT NewStoredVT =
556 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
557 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000558 int IncrementSize = NumBits / 8;
559
560 // Divide the stored value in two parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000561 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
562 SDValue Lo = Val;
563 SDValue Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000564
565 // Store the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000566 SDValue Store1, Store2;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000567 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
568 ST->getSrcValue(), SVOffset, NewStoredVT,
569 ST->isVolatile(), Alignment);
570 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
571 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsa3691432007-10-28 12:59:45 +0000572 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000573 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
574 ST->getSrcValue(), SVOffset + IncrementSize,
575 NewStoredVT, ST->isVolatile(), Alignment);
576
577 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
578}
579
580/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
581static
Dan Gohman8181bd12008-07-27 21:46:04 +0000582SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
583 TargetLowering &TLI) {
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000584 int SVOffset = LD->getSrcValueOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +0000585 SDValue Chain = LD->getChain();
586 SDValue Ptr = LD->getBasePtr();
Duncan Sands92c43912008-06-06 12:08:01 +0000587 MVT VT = LD->getValueType(0);
588 MVT LoadedVT = LD->getMemoryVT();
589 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen08275382007-09-08 19:29:23 +0000590 // Expand to a (misaligned) integer load of the same size,
Dale Johannesendc0ee192008-02-27 22:36:00 +0000591 // then bitconvert to floating point or vector.
Duncan Sands92c43912008-06-06 12:08:01 +0000592 MVT intVT;
593 if (LoadedVT.is128BitVector() ||
Dale Johannesenf8c1e852008-03-01 03:40:57 +0000594 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesendc0ee192008-02-27 22:36:00 +0000595 intVT = MVT::i128;
Duncan Sands92c43912008-06-06 12:08:01 +0000596 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen08275382007-09-08 19:29:23 +0000597 intVT = MVT::i64;
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000598 else if (LoadedVT == MVT::f32)
Dale Johannesen08275382007-09-08 19:29:23 +0000599 intVT = MVT::i32;
600 else
Dale Johannesendc0ee192008-02-27 22:36:00 +0000601 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen08275382007-09-08 19:29:23 +0000602
Dan Gohman8181bd12008-07-27 21:46:04 +0000603 SDValue newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
Dale Johannesen08275382007-09-08 19:29:23 +0000604 SVOffset, LD->isVolatile(),
605 LD->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +0000606 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands92c43912008-06-06 12:08:01 +0000607 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen08275382007-09-08 19:29:23 +0000608 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
609
Dan Gohman8181bd12008-07-27 21:46:04 +0000610 SDValue Ops[] = { Result, Chain };
Duncan Sands698842f2008-07-02 17:40:58 +0000611 return DAG.getMergeValues(Ops, 2);
Dale Johannesen08275382007-09-08 19:29:23 +0000612 }
Duncan Sands92c43912008-06-06 12:08:01 +0000613 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000614 "Unaligned load of unsupported type.");
615
Dale Johannesendc0ee192008-02-27 22:36:00 +0000616 // Compute the new VT that is half the size of the old one. This is an
617 // integer MVT.
Duncan Sands92c43912008-06-06 12:08:01 +0000618 unsigned NumBits = LoadedVT.getSizeInBits();
619 MVT NewLoadedVT;
620 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000621 NumBits >>= 1;
622
623 unsigned Alignment = LD->getAlignment();
624 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000625 ISD::LoadExtType HiExtType = LD->getExtensionType();
626
627 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
628 if (HiExtType == ISD::NON_EXTLOAD)
629 HiExtType = ISD::ZEXTLOAD;
630
631 // Load the value in two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000632 SDValue Lo, Hi;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000633 if (TLI.isLittleEndian()) {
634 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
635 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
636 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
637 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
638 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
639 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000640 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000641 } else {
642 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
643 NewLoadedVT,LD->isVolatile(), Alignment);
644 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
645 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
646 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
647 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000648 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000649 }
650
651 // aggregate the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000652 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
653 SDValue Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000654 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
655
Dan Gohman8181bd12008-07-27 21:46:04 +0000656 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000657 Hi.getValue(1));
658
Dan Gohman8181bd12008-07-27 21:46:04 +0000659 SDValue Ops[] = { Result, TF };
Duncan Sands698842f2008-07-02 17:40:58 +0000660 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000661}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000662
Dan Gohman6d05cac2007-10-11 23:57:53 +0000663/// UnrollVectorOp - We know that the given vector has a legal type, however
664/// the operation it performs is not legal and is an operation that we have
665/// no way of lowering. "Unroll" the vector, splitting out the scalars and
666/// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000667SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000668 MVT VT = Op.getValueType();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000669 assert(isTypeLegal(VT) &&
670 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000671 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman6d05cac2007-10-11 23:57:53 +0000672 "Can't unroll a vector with multiple results!");
Duncan Sands92c43912008-06-06 12:08:01 +0000673 unsigned NE = VT.getVectorNumElements();
674 MVT EltVT = VT.getVectorElementType();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000675
Dan Gohman8181bd12008-07-27 21:46:04 +0000676 SmallVector<SDValue, 8> Scalars;
677 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman6d05cac2007-10-11 23:57:53 +0000678 for (unsigned i = 0; i != NE; ++i) {
679 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000680 SDValue Operand = Op.getOperand(j);
Duncan Sands92c43912008-06-06 12:08:01 +0000681 MVT OperandVT = Operand.getValueType();
682 if (OperandVT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +0000683 // A vector operand; extract a single element.
Duncan Sands92c43912008-06-06 12:08:01 +0000684 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000685 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
686 OperandEltVT,
687 Operand,
688 DAG.getConstant(i, MVT::i32));
689 } else {
690 // A scalar operand; just use it as is.
691 Operands[j] = Operand;
692 }
693 }
694 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
695 &Operands[0], Operands.size()));
696 }
697
698 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
699}
700
Duncan Sands37a3f472008-01-10 10:28:30 +0000701/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands92c43912008-06-06 12:08:01 +0000702static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands37a3f472008-01-10 10:28:30 +0000703 RTLIB::Libcall Call_F32,
704 RTLIB::Libcall Call_F64,
705 RTLIB::Libcall Call_F80,
706 RTLIB::Libcall Call_PPCF128) {
707 return
708 VT == MVT::f32 ? Call_F32 :
709 VT == MVT::f64 ? Call_F64 :
710 VT == MVT::f80 ? Call_F80 :
711 VT == MVT::ppcf128 ? Call_PPCF128 :
712 RTLIB::UNKNOWN_LIBCALL;
713}
714
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000715/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
716/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
717/// is necessary to spill the vector being inserted into to memory, perform
718/// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000719SDValue SelectionDAGLegalize::
720PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx) {
721 SDValue Tmp1 = Vec;
722 SDValue Tmp2 = Val;
723 SDValue Tmp3 = Idx;
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000724
725 // If the target doesn't support this, we have to spill the input vector
726 // to a temporary stack slot, update the element, then reload it. This is
727 // badness. We could also load the value into a vector register (either
728 // with a "move to register" or "extload into register" instruction, then
729 // permute it into place, if the idx is a constant and if the idx is
730 // supported by the target.
Duncan Sands92c43912008-06-06 12:08:01 +0000731 MVT VT = Tmp1.getValueType();
732 MVT EltVT = VT.getVectorElementType();
733 MVT IdxVT = Tmp3.getValueType();
734 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +0000735 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000736
Gabor Greif1c80d112008-08-28 21:40:38 +0000737 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000738
739 // Store the vector.
Dan Gohman8181bd12008-07-27 21:46:04 +0000740 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000741 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000742
743 // Truncate or zero extend offset to target pointer type.
Duncan Sandsec142ee2008-06-08 20:54:56 +0000744 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000745 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
746 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +0000747 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000748 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
Dan Gohman8181bd12008-07-27 21:46:04 +0000749 SDValue StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000750 // Store the scalar value.
751 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000752 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000753 // Load the updated vector.
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000754 return DAG.getLoad(VT, Ch, StackPtr,
755 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000756}
757
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758/// LegalizeOp - We know that the specified value has a legal type, and
759/// that its operands are legal. Now ensure that the operation itself
760/// is legal, recursively ensuring that the operands' operations remain
761/// legal.
Dan Gohman8181bd12008-07-27 21:46:04 +0000762SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattnerdad577b2007-08-25 01:00:22 +0000763 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
764 return Op;
765
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000766 assert(isTypeLegal(Op.getValueType()) &&
767 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000768 SDNode *Node = Op.getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769
770 // If this operation defines any values that cannot be represented in a
771 // register on this target, make sure to expand or promote them.
772 if (Node->getNumValues() > 1) {
773 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
774 if (getTypeAction(Node->getValueType(i)) != Legal) {
775 HandleOp(Op.getValue(i));
776 assert(LegalizedNodes.count(Op) &&
777 "Handling didn't add legal operands!");
778 return LegalizedNodes[Op];
779 }
780 }
781
782 // Note that LegalizeOp may be reentered even from single-use nodes, which
783 // means that we always must cache transformed nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +0000784 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000785 if (I != LegalizedNodes.end()) return I->second;
786
Dan Gohman8181bd12008-07-27 21:46:04 +0000787 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
788 SDValue Result = Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789 bool isCustom = false;
790
791 switch (Node->getOpcode()) {
792 case ISD::FrameIndex:
793 case ISD::EntryToken:
794 case ISD::Register:
795 case ISD::BasicBlock:
796 case ISD::TargetFrameIndex:
797 case ISD::TargetJumpTable:
798 case ISD::TargetConstant:
799 case ISD::TargetConstantFP:
800 case ISD::TargetConstantPool:
801 case ISD::TargetGlobalAddress:
802 case ISD::TargetGlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +0000803 case ISD::TargetExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000804 case ISD::VALUETYPE:
805 case ISD::SRCVALUE:
Dan Gohman12a9c082008-02-06 22:27:42 +0000806 case ISD::MEMOPERAND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000807 case ISD::CONDCODE:
Duncan Sandsc93fae32008-03-21 09:14:45 +0000808 case ISD::ARG_FLAGS:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000809 // Primitives must all be legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +0000810 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000811 "This must be legal!");
812 break;
813 default:
814 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
815 // If this is a target node, legalize it by legalizing the operands then
816 // passing it through.
Dan Gohman8181bd12008-07-27 21:46:04 +0000817 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
819 Ops.push_back(LegalizeOp(Node->getOperand(i)));
820
821 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
822
823 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
824 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +0000825 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000826 }
827 // Otherwise this is an unhandled builtin node. splat.
828#ifndef NDEBUG
829 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
830#endif
831 assert(0 && "Do not know how to legalize this operator!");
832 abort();
833 case ISD::GLOBAL_OFFSET_TABLE:
834 case ISD::GlobalAddress:
835 case ISD::GlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +0000836 case ISD::ExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000837 case ISD::ConstantPool:
838 case ISD::JumpTable: // Nothing to do.
839 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
840 default: assert(0 && "This action is not supported yet!");
841 case TargetLowering::Custom:
842 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000843 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000844 // FALLTHROUGH if the target doesn't want to lower this op after all.
845 case TargetLowering::Legal:
846 break;
847 }
848 break;
849 case ISD::FRAMEADDR:
850 case ISD::RETURNADDR:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851 // The only option for these nodes is to custom lower them. If the target
852 // does not custom lower them, then return zero.
853 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000854 if (Tmp1.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000855 Result = Tmp1;
856 else
857 Result = DAG.getConstant(0, TLI.getPointerTy());
858 break;
Anton Korobeynikove3d7f932007-08-29 23:18:48 +0000859 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands92c43912008-06-06 12:08:01 +0000860 MVT VT = Node->getValueType(0);
Anton Korobeynikov09386bd2007-08-29 19:28:29 +0000861 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
862 default: assert(0 && "This action is not supported yet!");
863 case TargetLowering::Custom:
864 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000865 if (Result.getNode()) break;
Anton Korobeynikov09386bd2007-08-29 19:28:29 +0000866 // Fall Thru
867 case TargetLowering::Legal:
868 Result = DAG.getConstant(0, VT);
869 break;
870 }
Anton Korobeynikove3d7f932007-08-29 23:18:48 +0000871 }
Anton Korobeynikov09386bd2007-08-29 19:28:29 +0000872 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000873 case ISD::EXCEPTIONADDR: {
874 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +0000875 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000876 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
877 default: assert(0 && "This action is not supported yet!");
878 case TargetLowering::Expand: {
879 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000880 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000881 }
882 break;
883 case TargetLowering::Custom:
884 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000885 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000886 // Fall Thru
887 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000888 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands698842f2008-07-02 17:40:58 +0000889 Result = DAG.getMergeValues(Ops, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000890 break;
891 }
892 }
893 }
Gabor Greif1c80d112008-08-28 21:40:38 +0000894 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000895
Gabor Greif1c80d112008-08-28 21:40:38 +0000896 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000897 "Cannot return more than two values!");
898
899 // Since we produced two values, make sure to remember that we
900 // legalized both of them.
901 Tmp1 = LegalizeOp(Result);
902 Tmp2 = LegalizeOp(Result.getValue(1));
903 AddLegalizedOperand(Op.getValue(0), Tmp1);
904 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +0000905 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000906 case ISD::EHSELECTION: {
907 Tmp1 = LegalizeOp(Node->getOperand(0));
908 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +0000909 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000910 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
911 default: assert(0 && "This action is not supported yet!");
912 case TargetLowering::Expand: {
913 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000914 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 }
916 break;
917 case TargetLowering::Custom:
918 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000919 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000920 // Fall Thru
921 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000922 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands698842f2008-07-02 17:40:58 +0000923 Result = DAG.getMergeValues(Ops, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924 break;
925 }
926 }
927 }
Gabor Greif1c80d112008-08-28 21:40:38 +0000928 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000929
Gabor Greif1c80d112008-08-28 21:40:38 +0000930 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000931 "Cannot return more than two values!");
932
933 // Since we produced two values, make sure to remember that we
934 // legalized both of them.
935 Tmp1 = LegalizeOp(Result);
936 Tmp2 = LegalizeOp(Result.getValue(1));
937 AddLegalizedOperand(Op.getValue(0), Tmp1);
938 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +0000939 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000940 case ISD::EH_RETURN: {
Duncan Sands92c43912008-06-06 12:08:01 +0000941 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000942 // The only "good" option for this node is to custom lower it.
943 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
944 default: assert(0 && "This action is not supported at all!");
945 case TargetLowering::Custom:
946 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000947 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000948 // Fall Thru
949 case TargetLowering::Legal:
950 // Target does not know, how to lower this, lower to noop
951 Result = LegalizeOp(Node->getOperand(0));
952 break;
953 }
954 }
955 break;
956 case ISD::AssertSext:
957 case ISD::AssertZext:
958 Tmp1 = LegalizeOp(Node->getOperand(0));
959 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
960 break;
961 case ISD::MERGE_VALUES:
962 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif46bf5472008-08-26 22:36:50 +0000963 Result = Node->getOperand(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000964 break;
965 case ISD::CopyFromReg:
966 Tmp1 = LegalizeOp(Node->getOperand(0));
967 Result = Op.getValue(0);
968 if (Node->getNumValues() == 2) {
969 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
970 } else {
971 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
972 if (Node->getNumOperands() == 3) {
973 Tmp2 = LegalizeOp(Node->getOperand(2));
974 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
975 } else {
976 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
977 }
978 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
979 }
980 // Since CopyFromReg produces two values, make sure to remember that we
981 // legalized both of them.
982 AddLegalizedOperand(Op.getValue(0), Result);
983 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +0000984 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000985 case ISD::UNDEF: {
Duncan Sands92c43912008-06-06 12:08:01 +0000986 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000987 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
988 default: assert(0 && "This action is not supported yet!");
989 case TargetLowering::Expand:
Duncan Sands92c43912008-06-06 12:08:01 +0000990 if (VT.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991 Result = DAG.getConstant(0, VT);
Duncan Sands92c43912008-06-06 12:08:01 +0000992 else if (VT.isFloatingPoint())
993 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesen20b76352007-09-26 17:26:49 +0000994 VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000995 else
996 assert(0 && "Unknown value type!");
997 break;
998 case TargetLowering::Legal:
999 break;
1000 }
1001 break;
1002 }
1003
1004 case ISD::INTRINSIC_W_CHAIN:
1005 case ISD::INTRINSIC_WO_CHAIN:
1006 case ISD::INTRINSIC_VOID: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001007 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1009 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1010 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1011
1012 // Allow the target to custom lower its intrinsics if it wants to.
1013 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
1014 TargetLowering::Custom) {
1015 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001016 if (Tmp3.getNode()) Result = Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001017 }
1018
Gabor Greif1c80d112008-08-28 21:40:38 +00001019 if (Result.getNode()->getNumValues() == 1) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020
1021 // Must have return value and chain result.
Gabor Greif1c80d112008-08-28 21:40:38 +00001022 assert(Result.getNode()->getNumValues() == 2 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001023 "Cannot return more than two values!");
1024
1025 // Since loads produce two values, make sure to remember that we
1026 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001027 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1028 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001029 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001030 }
1031
Dan Gohman472d12c2008-06-30 20:59:49 +00001032 case ISD::DBG_STOPPOINT:
1033 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001034 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1035
Dan Gohman472d12c2008-06-30 20:59:49 +00001036 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037 case TargetLowering::Promote:
1038 default: assert(0 && "This action is not supported yet!");
1039 case TargetLowering::Expand: {
1040 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
1041 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohmanfa607c92008-07-01 00:05:16 +00001042 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001043
Dan Gohman472d12c2008-06-30 20:59:49 +00001044 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman472d12c2008-06-30 20:59:49 +00001046 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1047 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048
Dan Gohman472d12c2008-06-30 20:59:49 +00001049 unsigned Line = DSP->getLine();
1050 unsigned Col = DSP->getColumn();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051
1052 if (useDEBUG_LOC) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001053 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Evan Chengd6f57682008-07-08 20:06:39 +00001054 DAG.getConstant(Col, MVT::i32),
1055 DAG.getConstant(SrcFile, MVT::i32) };
1056 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001057 } else {
Evan Cheng69eda822008-02-01 02:05:57 +00001058 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohmanfa607c92008-07-01 00:05:16 +00001059 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001060 }
1061 } else {
1062 Result = Tmp1; // chain
1063 }
1064 break;
1065 }
Evan Chengd6f57682008-07-08 20:06:39 +00001066 case TargetLowering::Legal: {
1067 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1068 if (Action == Legal && Tmp1 == Node->getOperand(0))
1069 break;
1070
Dan Gohman8181bd12008-07-27 21:46:04 +00001071 SmallVector<SDValue, 8> Ops;
Evan Chengd6f57682008-07-08 20:06:39 +00001072 Ops.push_back(Tmp1);
1073 if (Action == Legal) {
1074 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1075 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1076 } else {
1077 // Otherwise promote them.
1078 Ops.push_back(PromoteOp(Node->getOperand(1)));
1079 Ops.push_back(PromoteOp(Node->getOperand(2)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 }
Evan Chengd6f57682008-07-08 20:06:39 +00001081 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1082 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1083 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084 break;
1085 }
Evan Chengd6f57682008-07-08 20:06:39 +00001086 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001088
1089 case ISD::DECLARE:
1090 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1091 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1092 default: assert(0 && "This action is not supported yet!");
1093 case TargetLowering::Legal:
1094 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1095 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1096 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1097 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1098 break;
Chris Lattner203cd052008-02-28 05:53:40 +00001099 case TargetLowering::Expand:
1100 Result = LegalizeOp(Node->getOperand(0));
1101 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001102 }
1103 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104
1105 case ISD::DEBUG_LOC:
1106 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
1107 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
1108 default: assert(0 && "This action is not supported yet!");
Evan Chengd6f57682008-07-08 20:06:39 +00001109 case TargetLowering::Legal: {
1110 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001111 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Chengd6f57682008-07-08 20:06:39 +00001112 if (Action == Legal && Tmp1 == Node->getOperand(0))
1113 break;
1114 if (Action == Legal) {
1115 Tmp2 = Node->getOperand(1);
1116 Tmp3 = Node->getOperand(2);
1117 Tmp4 = Node->getOperand(3);
1118 } else {
1119 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1120 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1121 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1122 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001123 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1124 break;
1125 }
Evan Chengd6f57682008-07-08 20:06:39 +00001126 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127 break;
1128
Dan Gohmanfa607c92008-07-01 00:05:16 +00001129 case ISD::DBG_LABEL:
1130 case ISD::EH_LABEL:
1131 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1132 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001133 default: assert(0 && "This action is not supported yet!");
1134 case TargetLowering::Legal:
1135 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohmanfa607c92008-07-01 00:05:16 +00001136 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001137 break;
1138 case TargetLowering::Expand:
1139 Result = LegalizeOp(Node->getOperand(0));
1140 break;
1141 }
1142 break;
1143
Evan Chengd1d68072008-03-08 00:58:38 +00001144 case ISD::PREFETCH:
1145 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1146 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1147 default: assert(0 && "This action is not supported yet!");
1148 case TargetLowering::Legal:
1149 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1150 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1151 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1152 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1153 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1154 break;
1155 case TargetLowering::Expand:
1156 // It's a noop.
1157 Result = LegalizeOp(Node->getOperand(0));
1158 break;
1159 }
1160 break;
1161
Andrew Lenharth785610d2008-02-16 01:24:58 +00001162 case ISD::MEMBARRIER: {
1163 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001164 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1165 default: assert(0 && "This action is not supported yet!");
1166 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001167 SDValue Ops[6];
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001168 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sands3ee041a2008-02-27 08:53:44 +00001169 for (int x = 1; x < 6; ++x) {
1170 Ops[x] = Node->getOperand(x);
1171 if (!isTypeLegal(Ops[x].getValueType()))
1172 Ops[x] = PromoteOp(Ops[x]);
1173 }
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001174 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1175 break;
1176 }
1177 case TargetLowering::Expand:
1178 //There is no libgcc call for this op
1179 Result = Node->getOperand(0); // Noop
1180 break;
1181 }
Andrew Lenharth785610d2008-02-16 01:24:58 +00001182 break;
1183 }
1184
Dale Johannesenbc187662008-08-28 02:44:49 +00001185 case ISD::ATOMIC_CMP_SWAP_8:
1186 case ISD::ATOMIC_CMP_SWAP_16:
1187 case ISD::ATOMIC_CMP_SWAP_32:
1188 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001189 unsigned int num_operands = 4;
1190 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001191 SDValue Ops[4];
Mon P Wang078a62d2008-05-05 19:05:59 +00001192 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001193 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang078a62d2008-05-05 19:05:59 +00001194 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1195
1196 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1197 default: assert(0 && "This action is not supported yet!");
1198 case TargetLowering::Custom:
1199 Result = TLI.LowerOperation(Result, DAG);
1200 break;
1201 case TargetLowering::Legal:
1202 break;
1203 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001204 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1205 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001206 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001207 }
Dale Johannesenbc187662008-08-28 02:44:49 +00001208 case ISD::ATOMIC_LOAD_ADD_8:
1209 case ISD::ATOMIC_LOAD_SUB_8:
1210 case ISD::ATOMIC_LOAD_AND_8:
1211 case ISD::ATOMIC_LOAD_OR_8:
1212 case ISD::ATOMIC_LOAD_XOR_8:
1213 case ISD::ATOMIC_LOAD_NAND_8:
1214 case ISD::ATOMIC_LOAD_MIN_8:
1215 case ISD::ATOMIC_LOAD_MAX_8:
1216 case ISD::ATOMIC_LOAD_UMIN_8:
1217 case ISD::ATOMIC_LOAD_UMAX_8:
1218 case ISD::ATOMIC_SWAP_8:
1219 case ISD::ATOMIC_LOAD_ADD_16:
1220 case ISD::ATOMIC_LOAD_SUB_16:
1221 case ISD::ATOMIC_LOAD_AND_16:
1222 case ISD::ATOMIC_LOAD_OR_16:
1223 case ISD::ATOMIC_LOAD_XOR_16:
1224 case ISD::ATOMIC_LOAD_NAND_16:
1225 case ISD::ATOMIC_LOAD_MIN_16:
1226 case ISD::ATOMIC_LOAD_MAX_16:
1227 case ISD::ATOMIC_LOAD_UMIN_16:
1228 case ISD::ATOMIC_LOAD_UMAX_16:
1229 case ISD::ATOMIC_SWAP_16:
1230 case ISD::ATOMIC_LOAD_ADD_32:
1231 case ISD::ATOMIC_LOAD_SUB_32:
1232 case ISD::ATOMIC_LOAD_AND_32:
1233 case ISD::ATOMIC_LOAD_OR_32:
1234 case ISD::ATOMIC_LOAD_XOR_32:
1235 case ISD::ATOMIC_LOAD_NAND_32:
1236 case ISD::ATOMIC_LOAD_MIN_32:
1237 case ISD::ATOMIC_LOAD_MAX_32:
1238 case ISD::ATOMIC_LOAD_UMIN_32:
1239 case ISD::ATOMIC_LOAD_UMAX_32:
1240 case ISD::ATOMIC_SWAP_32:
1241 case ISD::ATOMIC_LOAD_ADD_64:
1242 case ISD::ATOMIC_LOAD_SUB_64:
1243 case ISD::ATOMIC_LOAD_AND_64:
1244 case ISD::ATOMIC_LOAD_OR_64:
1245 case ISD::ATOMIC_LOAD_XOR_64:
1246 case ISD::ATOMIC_LOAD_NAND_64:
1247 case ISD::ATOMIC_LOAD_MIN_64:
1248 case ISD::ATOMIC_LOAD_MAX_64:
1249 case ISD::ATOMIC_LOAD_UMIN_64:
1250 case ISD::ATOMIC_LOAD_UMAX_64:
1251 case ISD::ATOMIC_SWAP_64: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001252 unsigned int num_operands = 3;
1253 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001254 SDValue Ops[3];
Mon P Wang078a62d2008-05-05 19:05:59 +00001255 for (unsigned int x = 0; x < num_operands; ++x)
1256 Ops[x] = LegalizeOp(Node->getOperand(x));
1257 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sandsac496a12008-07-04 11:47:58 +00001258
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001259 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001260 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001261 case TargetLowering::Custom:
1262 Result = TLI.LowerOperation(Result, DAG);
1263 break;
1264 case TargetLowering::Legal:
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001265 break;
1266 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001267 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1268 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001269 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001270 }
Scott Michelf2e2b702007-08-08 23:23:31 +00001271 case ISD::Constant: {
1272 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1273 unsigned opAction =
1274 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1275
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001276 // We know we don't need to expand constants here, constants only have one
1277 // value and we check that it is fine above.
1278
Scott Michelf2e2b702007-08-08 23:23:31 +00001279 if (opAction == TargetLowering::Custom) {
1280 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001281 if (Tmp1.getNode())
Scott Michelf2e2b702007-08-08 23:23:31 +00001282 Result = Tmp1;
1283 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001284 break;
Scott Michelf2e2b702007-08-08 23:23:31 +00001285 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001286 case ISD::ConstantFP: {
1287 // Spill FP immediates to the constant pool if the target cannot directly
1288 // codegen them. Targets often have some immediate values that can be
1289 // efficiently generated into an FP register without a load. We explicitly
1290 // leave these constants as ConstantFP nodes for the target to deal with.
1291 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1292
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001293 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1294 default: assert(0 && "This action is not supported yet!");
Nate Begemane2ba64f2008-02-14 08:57:00 +00001295 case TargetLowering::Legal:
1296 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001297 case TargetLowering::Custom:
1298 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001299 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001300 Result = Tmp3;
1301 break;
1302 }
1303 // FALLTHROUGH
Nate Begemane2ba64f2008-02-14 08:57:00 +00001304 case TargetLowering::Expand: {
1305 // Check to see if this FP immediate is already legal.
1306 bool isLegal = false;
1307 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1308 E = TLI.legal_fpimm_end(); I != E; ++I) {
1309 if (CFP->isExactlyValue(*I)) {
1310 isLegal = true;
1311 break;
1312 }
1313 }
1314 // If this is a legal constant, turn it into a TargetConstantFP node.
1315 if (isLegal)
1316 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001317 Result = ExpandConstantFP(CFP, true, DAG, TLI);
1318 }
Nate Begemane2ba64f2008-02-14 08:57:00 +00001319 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001320 break;
1321 }
1322 case ISD::TokenFactor:
1323 if (Node->getNumOperands() == 2) {
1324 Tmp1 = LegalizeOp(Node->getOperand(0));
1325 Tmp2 = LegalizeOp(Node->getOperand(1));
1326 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1327 } else if (Node->getNumOperands() == 3) {
1328 Tmp1 = LegalizeOp(Node->getOperand(0));
1329 Tmp2 = LegalizeOp(Node->getOperand(1));
1330 Tmp3 = LegalizeOp(Node->getOperand(2));
1331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1332 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00001333 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001334 // Legalize the operands.
1335 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1336 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1337 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1338 }
1339 break;
1340
1341 case ISD::FORMAL_ARGUMENTS:
1342 case ISD::CALL:
1343 // The only option for this is to custom lower it.
1344 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001345 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesenac246272008-03-05 19:14:03 +00001346 // A call within a calling sequence must be legalized to something
1347 // other than the normal CALLSEQ_END. Violating this gets Legalize
1348 // into an infinite loop.
1349 assert ((!IsLegalizingCall ||
1350 Node->getOpcode() != ISD::CALL ||
Gabor Greif1c80d112008-08-28 21:40:38 +00001351 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesenac246272008-03-05 19:14:03 +00001352 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling22f8deb2007-11-13 00:44:25 +00001353
1354 // The number of incoming and outgoing values should match; unless the final
1355 // outgoing value is a flag.
Gabor Greif1c80d112008-08-28 21:40:38 +00001356 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1357 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1358 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling22f8deb2007-11-13 00:44:25 +00001359 MVT::Flag)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001360 "Lowering call/formal_arguments produced unexpected # results!");
1361
1362 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
1363 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greif1c80d112008-08-28 21:40:38 +00001364 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1365 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling22f8deb2007-11-13 00:44:25 +00001366 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001367 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001368 if (Op.getResNo() == i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001369 Tmp2 = Tmp1;
Dan Gohman8181bd12008-07-27 21:46:04 +00001370 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001371 }
1372 return Tmp2;
Christopher Lambb768c2e2007-07-26 07:34:40 +00001373 case ISD::EXTRACT_SUBREG: {
1374 Tmp1 = LegalizeOp(Node->getOperand(0));
1375 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1376 assert(idx && "Operand must be a constant");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001377 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001378 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1379 }
1380 break;
1381 case ISD::INSERT_SUBREG: {
1382 Tmp1 = LegalizeOp(Node->getOperand(0));
1383 Tmp2 = LegalizeOp(Node->getOperand(1));
1384 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1385 assert(idx && "Operand must be a constant");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001386 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001387 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1388 }
1389 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001390 case ISD::BUILD_VECTOR:
1391 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
1392 default: assert(0 && "This action is not supported yet!");
1393 case TargetLowering::Custom:
1394 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001395 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001396 Result = Tmp3;
1397 break;
1398 }
1399 // FALLTHROUGH
1400 case TargetLowering::Expand:
Gabor Greif1c80d112008-08-28 21:40:38 +00001401 Result = ExpandBUILD_VECTOR(Result.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001402 break;
1403 }
1404 break;
1405 case ISD::INSERT_VECTOR_ELT:
1406 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001407 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001408
1409 // The type of the value to insert may not be legal, even though the vector
1410 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1411 // here.
1412 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1413 default: assert(0 && "Cannot expand insert element operand");
1414 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1415 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1416 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001417 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1418
1419 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1420 Node->getValueType(0))) {
1421 default: assert(0 && "This action is not supported yet!");
1422 case TargetLowering::Legal:
1423 break;
1424 case TargetLowering::Custom:
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001425 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001426 if (Tmp4.getNode()) {
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001427 Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001428 break;
1429 }
1430 // FALLTHROUGH
1431 case TargetLowering::Expand: {
1432 // If the insert index is a constant, codegen this as a scalar_to_vector,
1433 // then a shuffle that inserts it into the right position in the vector.
1434 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001435 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1436 // match the element type of the vector being created.
1437 if (Tmp2.getValueType() ==
Duncan Sands92c43912008-06-06 12:08:01 +00001438 Op.getValueType().getVectorElementType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001439 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001440 Tmp1.getValueType(), Tmp2);
1441
Duncan Sands92c43912008-06-06 12:08:01 +00001442 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1443 MVT ShufMaskVT =
1444 MVT::getIntVectorWithNumElements(NumElts);
1445 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001446
1447 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1448 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1449 // elt 0 of the RHS.
Dan Gohman8181bd12008-07-27 21:46:04 +00001450 SmallVector<SDValue, 8> ShufOps;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001451 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001452 if (i != InsertPos->getZExtValue())
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001453 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1454 else
1455 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1456 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001457 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001458 &ShufOps[0], ShufOps.size());
1459
1460 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1461 Tmp1, ScVec, ShufMask);
1462 Result = LegalizeOp(Result);
1463 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001464 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001465 }
Nate Begeman7c9e4b72008-04-25 18:07:40 +00001466 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001467 break;
1468 }
1469 }
1470 break;
1471 case ISD::SCALAR_TO_VECTOR:
1472 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1473 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1474 break;
1475 }
1476
1477 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1478 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1479 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1480 Node->getValueType(0))) {
1481 default: assert(0 && "This action is not supported yet!");
1482 case TargetLowering::Legal:
1483 break;
1484 case TargetLowering::Custom:
1485 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001486 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001487 Result = Tmp3;
1488 break;
1489 }
1490 // FALLTHROUGH
1491 case TargetLowering::Expand:
1492 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1493 break;
1494 }
1495 break;
1496 case ISD::VECTOR_SHUFFLE:
1497 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1498 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1499 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1500
1501 // Allow targets to custom lower the SHUFFLEs they support.
1502 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1503 default: assert(0 && "Unknown operation action!");
1504 case TargetLowering::Legal:
1505 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1506 "vector shuffle should not be created if not legal!");
1507 break;
1508 case TargetLowering::Custom:
1509 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001510 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001511 Result = Tmp3;
1512 break;
1513 }
1514 // FALLTHROUGH
1515 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00001516 MVT VT = Node->getValueType(0);
1517 MVT EltVT = VT.getVectorElementType();
1518 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00001519 SDValue Mask = Node->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001520 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00001521 SmallVector<SDValue,8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001522 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001523 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001524 if (Arg.getOpcode() == ISD::UNDEF) {
1525 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1526 } else {
1527 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001528 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001529 if (Idx < NumElems)
1530 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1531 DAG.getConstant(Idx, PtrVT)));
1532 else
1533 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1534 DAG.getConstant(Idx - NumElems, PtrVT)));
1535 }
1536 }
1537 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
1538 break;
1539 }
1540 case TargetLowering::Promote: {
1541 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001542 MVT OVT = Node->getValueType(0);
1543 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001544
1545 // Cast the two input vectors.
1546 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1547 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1548
1549 // Convert the shuffle mask to the right # elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00001550 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001551 assert(Tmp3.getNode() && "Shuffle not legal?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001552 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1553 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1554 break;
1555 }
1556 }
1557 break;
1558
1559 case ISD::EXTRACT_VECTOR_ELT:
1560 Tmp1 = Node->getOperand(0);
1561 Tmp2 = LegalizeOp(Node->getOperand(1));
1562 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1563 Result = ExpandEXTRACT_VECTOR_ELT(Result);
1564 break;
1565
1566 case ISD::EXTRACT_SUBVECTOR:
1567 Tmp1 = Node->getOperand(0);
1568 Tmp2 = LegalizeOp(Node->getOperand(1));
1569 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1570 Result = ExpandEXTRACT_SUBVECTOR(Result);
1571 break;
1572
1573 case ISD::CALLSEQ_START: {
1574 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1575
1576 // Recursively Legalize all of the inputs of the call end that do not lead
1577 // to this call start. This ensures that any libcalls that need be inserted
1578 // are inserted *before* the CALLSEQ_START.
1579 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
1580 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greif1c80d112008-08-28 21:40:38 +00001581 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001582 NodesLeadingTo);
1583 }
1584
1585 // Now that we legalized all of the inputs (which may have inserted
1586 // libcalls) create the new CALLSEQ_START node.
1587 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1588
1589 // Merge in the last call, to ensure that this call start after the last
1590 // call ended.
1591 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
1592 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1593 Tmp1 = LegalizeOp(Tmp1);
1594 }
1595
1596 // Do not try to legalize the target-specific arguments (#1+).
1597 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001598 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001599 Ops[0] = Tmp1;
1600 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1601 }
1602
1603 // Remember that the CALLSEQ_START is legalized.
1604 AddLegalizedOperand(Op.getValue(0), Result);
1605 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1606 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1607
1608 // Now that the callseq_start and all of the non-call nodes above this call
1609 // sequence have been legalized, legalize the call itself. During this
1610 // process, no libcalls can/will be inserted, guaranteeing that no calls
1611 // can overlap.
1612 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001613 // Note that we are selecting this call!
Dan Gohman8181bd12008-07-27 21:46:04 +00001614 LastCALLSEQ_END = SDValue(CallEnd, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001615 IsLegalizingCall = true;
1616
1617 // Legalize the call, starting from the CALLSEQ_END.
1618 LegalizeOp(LastCALLSEQ_END);
1619 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1620 return Result;
1621 }
1622 case ISD::CALLSEQ_END:
1623 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1624 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greif1c80d112008-08-28 21:40:38 +00001625 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001626 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1627 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001628 assert(I != LegalizedNodes.end() &&
1629 "Legalizing the call start should have legalized this node!");
1630 return I->second;
1631 }
1632
1633 // Otherwise, the call start has been legalized and everything is going
1634 // according to plan. Just legalize ourselves normally here.
1635 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1636 // Do not try to legalize the target-specific arguments (#1+), except for
1637 // an optional flag input.
1638 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1639 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001640 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001641 Ops[0] = Tmp1;
1642 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1643 }
1644 } else {
1645 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1646 if (Tmp1 != Node->getOperand(0) ||
1647 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001648 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001649 Ops[0] = Tmp1;
1650 Ops.back() = Tmp2;
1651 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1652 }
1653 }
1654 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
1655 // This finishes up call legalization.
1656 IsLegalizingCall = false;
1657
1658 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001659 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001660 if (Node->getNumValues() == 2)
Dan Gohman8181bd12008-07-27 21:46:04 +00001661 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001662 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001663 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands92c43912008-06-06 12:08:01 +00001664 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001665 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1666 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1667 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
1668 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1669
1670 Tmp1 = Result.getValue(0);
1671 Tmp2 = Result.getValue(1);
Evan Chenga448bc42007-08-16 23:50:06 +00001672 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001673 default: assert(0 && "This action is not supported yet!");
1674 case TargetLowering::Expand: {
1675 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1676 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1677 " not tell us which reg is the stack pointer!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001678 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling22f8deb2007-11-13 00:44:25 +00001679
1680 // Chain the dynamic stack allocation so that it doesn't modify the stack
1681 // pointer when other instructions are using the stack.
1682 Chain = DAG.getCALLSEQ_START(Chain,
1683 DAG.getConstant(0, TLI.getPointerTy()));
1684
Dan Gohman8181bd12008-07-27 21:46:04 +00001685 SDValue Size = Tmp2.getOperand(1);
1686 SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT);
Evan Chenga448bc42007-08-16 23:50:06 +00001687 Chain = SP.getValue(1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001688 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Chenga448bc42007-08-16 23:50:06 +00001689 unsigned StackAlign =
1690 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1691 if (Align > StackAlign)
Evan Cheng51ce0382007-08-17 18:02:22 +00001692 SP = DAG.getNode(ISD::AND, VT, SP,
1693 DAG.getConstant(-(uint64_t)Align, VT));
Evan Chenga448bc42007-08-16 23:50:06 +00001694 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling22f8deb2007-11-13 00:44:25 +00001695 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1696
1697 Tmp2 =
1698 DAG.getCALLSEQ_END(Chain,
1699 DAG.getConstant(0, TLI.getPointerTy()),
1700 DAG.getConstant(0, TLI.getPointerTy()),
Dan Gohman8181bd12008-07-27 21:46:04 +00001701 SDValue());
Bill Wendling22f8deb2007-11-13 00:44:25 +00001702
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001703 Tmp1 = LegalizeOp(Tmp1);
1704 Tmp2 = LegalizeOp(Tmp2);
1705 break;
1706 }
1707 case TargetLowering::Custom:
1708 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001709 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001710 Tmp1 = LegalizeOp(Tmp3);
1711 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1712 }
1713 break;
1714 case TargetLowering::Legal:
1715 break;
1716 }
1717 // Since this op produce two values, make sure to remember that we
1718 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001719 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1720 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001721 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001722 }
1723 case ISD::INLINEASM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001724 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001725 bool Changed = false;
1726 // Legalize all of the operands of the inline asm, in case they are nodes
1727 // that need to be expanded or something. Note we skip the asm string and
1728 // all of the TargetConstant flags.
Dan Gohman8181bd12008-07-27 21:46:04 +00001729 SDValue Op = LegalizeOp(Ops[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001730 Changed = Op != Ops[0];
1731 Ops[0] = Op;
1732
1733 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1734 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001735 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001736 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001737 SDValue Op = LegalizeOp(Ops[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001738 if (Op != Ops[i]) {
1739 Changed = true;
1740 Ops[i] = Op;
1741 }
1742 }
1743 }
1744
1745 if (HasInFlag) {
1746 Op = LegalizeOp(Ops.back());
1747 Changed |= Op != Ops.back();
1748 Ops.back() = Op;
1749 }
1750
1751 if (Changed)
1752 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1753
1754 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman8181bd12008-07-27 21:46:04 +00001755 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1756 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001757 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001758 }
1759 case ISD::BR:
1760 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1761 // Ensure that libcalls are emitted before a branch.
1762 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1763 Tmp1 = LegalizeOp(Tmp1);
1764 LastCALLSEQ_END = DAG.getEntryNode();
1765
1766 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1767 break;
1768 case ISD::BRIND:
1769 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1770 // Ensure that libcalls are emitted before a branch.
1771 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1772 Tmp1 = LegalizeOp(Tmp1);
1773 LastCALLSEQ_END = DAG.getEntryNode();
1774
1775 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1776 default: assert(0 && "Indirect target must be legal type (pointer)!");
1777 case Legal:
1778 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1779 break;
1780 }
1781 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1782 break;
1783 case ISD::BR_JT:
1784 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1785 // Ensure that libcalls are emitted before a branch.
1786 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1787 Tmp1 = LegalizeOp(Tmp1);
1788 LastCALLSEQ_END = DAG.getEntryNode();
1789
1790 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1791 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1792
1793 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1794 default: assert(0 && "This action is not supported yet!");
1795 case TargetLowering::Legal: break;
1796 case TargetLowering::Custom:
1797 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001798 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001799 break;
1800 case TargetLowering::Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001801 SDValue Chain = Result.getOperand(0);
1802 SDValue Table = Result.getOperand(1);
1803 SDValue Index = Result.getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001804
Duncan Sands92c43912008-06-06 12:08:01 +00001805 MVT PTy = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001806 MachineFunction &MF = DAG.getMachineFunction();
1807 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
1808 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
Dan Gohman8181bd12008-07-27 21:46:04 +00001809 SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001810
Dan Gohman8181bd12008-07-27 21:46:04 +00001811 SDValue LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001812 switch (EntrySize) {
1813 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman12a9c082008-02-06 22:27:42 +00001814 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001815 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman12a9c082008-02-06 22:27:42 +00001816 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001817 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001818 }
1819
Evan Cheng6fb06762007-11-09 01:32:10 +00001820 Addr = LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001821 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
1822 // For PIC, the sequence is:
1823 // BRIND(load(Jumptable + index) + RelocBase)
Evan Cheng6fb06762007-11-09 01:32:10 +00001824 // RelocBase can be JumpTable, GOT or some sort of global base.
1825 if (PTy != MVT::i32)
1826 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1827 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1828 TLI.getPICJumpTableRelocBase(Table, DAG));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001829 }
Evan Cheng6fb06762007-11-09 01:32:10 +00001830 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001831 }
1832 }
1833 break;
1834 case ISD::BRCOND:
1835 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1836 // Ensure that libcalls are emitted before a return.
1837 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1838 Tmp1 = LegalizeOp(Tmp1);
1839 LastCALLSEQ_END = DAG.getEntryNode();
1840
1841 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1842 case Expand: assert(0 && "It's impossible to expand bools");
1843 case Legal:
1844 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1845 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00001846 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001847 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
1848
1849 // The top bits of the promoted condition are not necessarily zero, ensure
1850 // that the value is properly zero extended.
Dan Gohman07961cd2008-02-25 21:11:39 +00001851 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001852 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman07961cd2008-02-25 21:11:39 +00001853 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001854 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
1855 break;
1856 }
Dan Gohman07961cd2008-02-25 21:11:39 +00001857 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001858
1859 // Basic block destination (Op#2) is always legal.
1860 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1861
1862 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1863 default: assert(0 && "This action is not supported yet!");
1864 case TargetLowering::Legal: break;
1865 case TargetLowering::Custom:
1866 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001867 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001868 break;
1869 case TargetLowering::Expand:
1870 // Expand brcond's setcc into its constituent parts and create a BR_CC
1871 // Node.
1872 if (Tmp2.getOpcode() == ISD::SETCC) {
1873 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1874 Tmp2.getOperand(0), Tmp2.getOperand(1),
1875 Node->getOperand(2));
1876 } else {
1877 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1878 DAG.getCondCode(ISD::SETNE), Tmp2,
1879 DAG.getConstant(0, Tmp2.getValueType()),
1880 Node->getOperand(2));
1881 }
1882 break;
1883 }
1884 break;
1885 case ISD::BR_CC:
1886 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1887 // Ensure that libcalls are emitted before a branch.
1888 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1889 Tmp1 = LegalizeOp(Tmp1);
1890 Tmp2 = Node->getOperand(2); // LHS
1891 Tmp3 = Node->getOperand(3); // RHS
1892 Tmp4 = Node->getOperand(1); // CC
1893
1894 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1895 LastCALLSEQ_END = DAG.getEntryNode();
1896
1897 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1898 // the LHS is a legal SETCC itself. In this case, we need to compare
1899 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00001900 if (Tmp3.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001901 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1902 Tmp4 = DAG.getCondCode(ISD::SETNE);
1903 }
1904
1905 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1906 Node->getOperand(4));
1907
1908 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1909 default: assert(0 && "Unexpected action for BR_CC!");
1910 case TargetLowering::Legal: break;
1911 case TargetLowering::Custom:
1912 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001913 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001914 break;
1915 }
1916 break;
1917 case ISD::LOAD: {
1918 LoadSDNode *LD = cast<LoadSDNode>(Node);
1919 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1920 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
1921
1922 ISD::LoadExtType ExtType = LD->getExtensionType();
1923 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands92c43912008-06-06 12:08:01 +00001924 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001925 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1926 Tmp3 = Result.getValue(0);
1927 Tmp4 = Result.getValue(1);
1928
1929 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1930 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001931 case TargetLowering::Legal:
1932 // If this is an unaligned load and the target doesn't support it,
1933 // expand it.
1934 if (!TLI.allowsUnalignedMemoryAccesses()) {
1935 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00001936 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001937 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00001938 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001939 TLI);
1940 Tmp3 = Result.getOperand(0);
1941 Tmp4 = Result.getOperand(1);
Dale Johannesen08275382007-09-08 19:29:23 +00001942 Tmp3 = LegalizeOp(Tmp3);
1943 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001944 }
1945 }
1946 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001947 case TargetLowering::Custom:
1948 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001949 if (Tmp1.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001950 Tmp3 = LegalizeOp(Tmp1);
1951 Tmp4 = LegalizeOp(Tmp1.getValue(1));
1952 }
1953 break;
1954 case TargetLowering::Promote: {
1955 // Only promote a load of vector type to another.
Duncan Sands92c43912008-06-06 12:08:01 +00001956 assert(VT.isVector() && "Cannot promote this load!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001957 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001958 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001959
1960 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1961 LD->getSrcValueOffset(),
1962 LD->isVolatile(), LD->getAlignment());
1963 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1964 Tmp4 = LegalizeOp(Tmp1.getValue(1));
1965 break;
1966 }
1967 }
1968 // Since loads produce two values, make sure to remember that we
1969 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001970 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
1971 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif46bf5472008-08-26 22:36:50 +00001972 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001973 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00001974 MVT SrcVT = LD->getMemoryVT();
1975 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sands082524c2008-01-23 20:39:46 +00001976 int SVOffset = LD->getSrcValueOffset();
1977 unsigned Alignment = LD->getAlignment();
1978 bool isVolatile = LD->isVolatile();
1979
Duncan Sands92c43912008-06-06 12:08:01 +00001980 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sands082524c2008-01-23 20:39:46 +00001981 // Some targets pretend to have an i1 loading operation, and actually
1982 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1983 // bits are guaranteed to be zero; it helps the optimizers understand
1984 // that these bits are zero. It is also useful for EXTLOAD, since it
1985 // tells the optimizers that those bits are undefined. It would be
1986 // nice to have an effective generic way of getting these benefits...
1987 // Until such a way is found, don't insist on promoting i1 here.
1988 (SrcVT != MVT::i1 ||
1989 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1990 // Promote to a byte-sized load if not loading an integral number of
1991 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands92c43912008-06-06 12:08:01 +00001992 unsigned NewWidth = SrcVT.getStoreSizeInBits();
1993 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00001994 SDValue Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00001995
1996 // The extra bits are guaranteed to be zero, since we stored them that
1997 // way. A zext load from NVT thus automatically gives zext from SrcVT.
1998
1999 ISD::LoadExtType NewExtType =
2000 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2001
2002 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2003 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2004 NVT, isVolatile, Alignment);
2005
2006 Ch = Result.getValue(1); // The chain.
2007
2008 if (ExtType == ISD::SEXTLOAD)
2009 // Having the top bits zero doesn't help when sign extending.
2010 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2011 Result, DAG.getValueType(SrcVT));
2012 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2013 // All the top bits are guaranteed to be zero - inform the optimizers.
2014 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2015 DAG.getValueType(SrcVT));
2016
2017 Tmp1 = LegalizeOp(Result);
2018 Tmp2 = LegalizeOp(Ch);
2019 } else if (SrcWidth & (SrcWidth - 1)) {
2020 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands92c43912008-06-06 12:08:01 +00002021 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002022 "Unsupported extload!");
2023 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2024 assert(RoundWidth < SrcWidth);
2025 unsigned ExtraWidth = SrcWidth - RoundWidth;
2026 assert(ExtraWidth < RoundWidth);
2027 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2028 "Load size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002029 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2030 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002031 SDValue Lo, Hi, Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002032 unsigned IncrementSize;
2033
2034 if (TLI.isLittleEndian()) {
2035 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2036 // Load the bottom RoundWidth bits.
2037 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2038 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2039 Alignment);
2040
2041 // Load the remaining ExtraWidth bits.
2042 IncrementSize = RoundWidth / 8;
2043 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2044 DAG.getIntPtrConstant(IncrementSize));
2045 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2046 LD->getSrcValue(), SVOffset + IncrementSize,
2047 ExtraVT, isVolatile,
2048 MinAlign(Alignment, IncrementSize));
2049
2050 // Build a factor node to remember that this load is independent of the
2051 // other one.
2052 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2053 Hi.getValue(1));
2054
2055 // Move the top bits to the right place.
2056 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2057 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2058
2059 // Join the hi and lo parts.
2060 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002061 } else {
Duncan Sands082524c2008-01-23 20:39:46 +00002062 // Big endian - avoid unaligned loads.
2063 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2064 // Load the top RoundWidth bits.
2065 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2066 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2067 Alignment);
2068
2069 // Load the remaining ExtraWidth bits.
2070 IncrementSize = RoundWidth / 8;
2071 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2072 DAG.getIntPtrConstant(IncrementSize));
2073 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2074 LD->getSrcValue(), SVOffset + IncrementSize,
2075 ExtraVT, isVolatile,
2076 MinAlign(Alignment, IncrementSize));
2077
2078 // Build a factor node to remember that this load is independent of the
2079 // other one.
2080 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2081 Hi.getValue(1));
2082
2083 // Move the top bits to the right place.
2084 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2085 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2086
2087 // Join the hi and lo parts.
2088 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2089 }
2090
2091 Tmp1 = LegalizeOp(Result);
2092 Tmp2 = LegalizeOp(Ch);
2093 } else {
2094 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2095 default: assert(0 && "This action is not supported yet!");
2096 case TargetLowering::Custom:
2097 isCustom = true;
2098 // FALLTHROUGH
2099 case TargetLowering::Legal:
2100 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2101 Tmp1 = Result.getValue(0);
2102 Tmp2 = Result.getValue(1);
2103
2104 if (isCustom) {
2105 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002106 if (Tmp3.getNode()) {
Duncan Sands082524c2008-01-23 20:39:46 +00002107 Tmp1 = LegalizeOp(Tmp3);
2108 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2109 }
2110 } else {
2111 // If this is an unaligned load and the target doesn't support it,
2112 // expand it.
2113 if (!TLI.allowsUnalignedMemoryAccesses()) {
2114 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002115 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sands082524c2008-01-23 20:39:46 +00002116 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002117 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sands082524c2008-01-23 20:39:46 +00002118 TLI);
2119 Tmp1 = Result.getOperand(0);
2120 Tmp2 = Result.getOperand(1);
2121 Tmp1 = LegalizeOp(Tmp1);
2122 Tmp2 = LegalizeOp(Tmp2);
2123 }
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002124 }
2125 }
Duncan Sands082524c2008-01-23 20:39:46 +00002126 break;
2127 case TargetLowering::Expand:
2128 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2129 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002130 SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sands082524c2008-01-23 20:39:46 +00002131 LD->getSrcValueOffset(),
2132 LD->isVolatile(), LD->getAlignment());
2133 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2134 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2135 Tmp2 = LegalizeOp(Load.getValue(1));
2136 break;
2137 }
2138 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2139 // Turn the unsupported load into an EXTLOAD followed by an explicit
2140 // zero/sign extend inreg.
2141 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2142 Tmp1, Tmp2, LD->getSrcValue(),
2143 LD->getSrcValueOffset(), SrcVT,
2144 LD->isVolatile(), LD->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00002145 SDValue ValRes;
Duncan Sands082524c2008-01-23 20:39:46 +00002146 if (ExtType == ISD::SEXTLOAD)
2147 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2148 Result, DAG.getValueType(SrcVT));
2149 else
2150 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2151 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2152 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002153 break;
2154 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002155 }
Duncan Sands082524c2008-01-23 20:39:46 +00002156
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002157 // Since loads produce two values, make sure to remember that we legalized
2158 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002159 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2160 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002161 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002162 }
2163 }
2164 case ISD::EXTRACT_ELEMENT: {
Duncan Sands92c43912008-06-06 12:08:01 +00002165 MVT OpTy = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002166 switch (getTypeAction(OpTy)) {
2167 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
2168 case Legal:
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002169 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002170 // 1 -> Hi
2171 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands92c43912008-06-06 12:08:01 +00002172 DAG.getConstant(OpTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002173 TLI.getShiftAmountTy()));
2174 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2175 } else {
2176 // 0 -> Lo
2177 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2178 Node->getOperand(0));
2179 }
2180 break;
2181 case Expand:
2182 // Get both the low and high parts.
2183 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002184 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002185 Result = Tmp2; // 1 -> Hi
2186 else
2187 Result = Tmp1; // 0 -> Lo
2188 break;
2189 }
2190 break;
2191 }
2192
2193 case ISD::CopyToReg:
2194 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2195
2196 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
2197 "Register type must be legal!");
2198 // Legalize the incoming value (must be a legal type).
2199 Tmp2 = LegalizeOp(Node->getOperand(2));
2200 if (Node->getNumValues() == 1) {
2201 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
2202 } else {
2203 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
2204 if (Node->getNumOperands() == 4) {
2205 Tmp3 = LegalizeOp(Node->getOperand(3));
2206 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2207 Tmp3);
2208 } else {
2209 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
2210 }
2211
2212 // Since this produces two values, make sure to remember that we legalized
2213 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002214 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2215 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002216 return Result;
2217 }
2218 break;
2219
2220 case ISD::RET:
2221 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2222
2223 // Ensure that libcalls are emitted before a return.
2224 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2225 Tmp1 = LegalizeOp(Tmp1);
2226 LastCALLSEQ_END = DAG.getEntryNode();
2227
2228 switch (Node->getNumOperands()) {
2229 case 3: // ret val
2230 Tmp2 = Node->getOperand(1);
2231 Tmp3 = Node->getOperand(2); // Signness
2232 switch (getTypeAction(Tmp2.getValueType())) {
2233 case Legal:
2234 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
2235 break;
2236 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00002237 if (!Tmp2.getValueType().isVector()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002238 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002239 ExpandOp(Tmp2, Lo, Hi);
2240
2241 // Big endian systems want the hi reg first.
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002242 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002243 std::swap(Lo, Hi);
2244
Gabor Greif1c80d112008-08-28 21:40:38 +00002245 if (Hi.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002246 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2247 else
2248 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
2249 Result = LegalizeOp(Result);
2250 } else {
Gabor Greif1c80d112008-08-28 21:40:38 +00002251 SDNode *InVal = Tmp2.getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002252 int InIx = Tmp2.getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002253 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2254 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002255
2256 // Figure out if there is a simple type corresponding to this Vector
2257 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002258 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002259 if (TLI.isTypeLegal(TVT)) {
2260 // Turn this into a return of the vector type.
2261 Tmp2 = LegalizeOp(Tmp2);
2262 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2263 } else if (NumElems == 1) {
2264 // Turn this into a return of the scalar type.
2265 Tmp2 = ScalarizeVectorOp(Tmp2);
2266 Tmp2 = LegalizeOp(Tmp2);
2267 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2268
2269 // FIXME: Returns of gcc generic vectors smaller than a legal type
2270 // should be returned in integer registers!
2271
2272 // The scalarized value type may not be legal, e.g. it might require
2273 // promotion or expansion. Relegalize the return.
2274 Result = LegalizeOp(Result);
2275 } else {
2276 // FIXME: Returns of gcc generic vectors larger than a legal vector
2277 // type should be returned by reference!
Dan Gohman8181bd12008-07-27 21:46:04 +00002278 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002279 SplitVectorOp(Tmp2, Lo, Hi);
2280 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2281 Result = LegalizeOp(Result);
2282 }
2283 }
2284 break;
2285 case Promote:
2286 Tmp2 = PromoteOp(Node->getOperand(1));
2287 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2288 Result = LegalizeOp(Result);
2289 break;
2290 }
2291 break;
2292 case 1: // ret void
2293 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2294 break;
2295 default: { // ret <values>
Dan Gohman8181bd12008-07-27 21:46:04 +00002296 SmallVector<SDValue, 8> NewValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002297 NewValues.push_back(Tmp1);
2298 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
2299 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2300 case Legal:
2301 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
2302 NewValues.push_back(Node->getOperand(i+1));
2303 break;
2304 case Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002305 SDValue Lo, Hi;
Duncan Sands92c43912008-06-06 12:08:01 +00002306 assert(!Node->getOperand(i).getValueType().isExtended() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002307 "FIXME: TODO: implement returning non-legal vector types!");
2308 ExpandOp(Node->getOperand(i), Lo, Hi);
2309 NewValues.push_back(Lo);
2310 NewValues.push_back(Node->getOperand(i+1));
Gabor Greif1c80d112008-08-28 21:40:38 +00002311 if (Hi.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002312 NewValues.push_back(Hi);
2313 NewValues.push_back(Node->getOperand(i+1));
2314 }
2315 break;
2316 }
2317 case Promote:
2318 assert(0 && "Can't promote multiple return value yet!");
2319 }
2320
2321 if (NewValues.size() == Node->getNumOperands())
2322 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
2323 else
2324 Result = DAG.getNode(ISD::RET, MVT::Other,
2325 &NewValues[0], NewValues.size());
2326 break;
2327 }
2328 }
2329
2330 if (Result.getOpcode() == ISD::RET) {
2331 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2332 default: assert(0 && "This action is not supported yet!");
2333 case TargetLowering::Legal: break;
2334 case TargetLowering::Custom:
2335 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002336 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002337 break;
2338 }
2339 }
2340 break;
2341 case ISD::STORE: {
2342 StoreSDNode *ST = cast<StoreSDNode>(Node);
2343 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2344 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
2345 int SVOffset = ST->getSrcValueOffset();
2346 unsigned Alignment = ST->getAlignment();
2347 bool isVolatile = ST->isVolatile();
2348
2349 if (!ST->isTruncatingStore()) {
2350 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2351 // FIXME: We shouldn't do this for TargetConstantFP's.
2352 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2353 // to phase ordering between legalized code and the dag combiner. This
2354 // probably means that we need to integrate dag combiner and legalizer
2355 // together.
Dale Johannesen2fc20782007-09-14 22:26:36 +00002356 // We generally can't do this one for long doubles.
Chris Lattnere8671c52007-10-13 06:35:54 +00002357 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002358 if (CFP->getValueType(0) == MVT::f32 &&
2359 getTypeAction(MVT::i32) == Legal) {
Dan Gohman39509762008-03-11 00:11:06 +00002360 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2361 convertToAPInt().zextOrTrunc(32),
Dale Johannesen1616e902007-09-11 18:32:33 +00002362 MVT::i32);
Dale Johannesen2fc20782007-09-14 22:26:36 +00002363 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2364 SVOffset, isVolatile, Alignment);
2365 break;
2366 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002367 // If this target supports 64-bit registers, do a single 64-bit store.
2368 if (getTypeAction(MVT::i64) == Legal) {
2369 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman39509762008-03-11 00:11:06 +00002370 zextOrTrunc(64), MVT::i64);
Chris Lattner19f229a2007-10-15 05:46:06 +00002371 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2372 SVOffset, isVolatile, Alignment);
2373 break;
Duncan Sands2418bec2008-06-13 19:07:40 +00002374 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002375 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2376 // stores. If the target supports neither 32- nor 64-bits, this
2377 // xform is certainly not worth it.
Dan Gohman39509762008-03-11 00:11:06 +00002378 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
Dan Gohman8181bd12008-07-27 21:46:04 +00002379 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2380 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002381 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002382
2383 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2384 SVOffset, isVolatile, Alignment);
2385 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002386 DAG.getIntPtrConstant(4));
Chris Lattner19f229a2007-10-15 05:46:06 +00002387 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsa3691432007-10-28 12:59:45 +00002388 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner19f229a2007-10-15 05:46:06 +00002389
2390 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2391 break;
2392 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002393 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002394 }
2395
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002396 switch (getTypeAction(ST->getMemoryVT())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002397 case Legal: {
2398 Tmp3 = LegalizeOp(ST->getValue());
2399 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2400 ST->getOffset());
2401
Duncan Sands92c43912008-06-06 12:08:01 +00002402 MVT VT = Tmp3.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002403 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2404 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002405 case TargetLowering::Legal:
2406 // If this is an unaligned store and the target doesn't support it,
2407 // expand it.
2408 if (!TLI.allowsUnalignedMemoryAccesses()) {
2409 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002410 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002411 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002412 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002413 TLI);
2414 }
2415 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002416 case TargetLowering::Custom:
2417 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002418 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002419 break;
2420 case TargetLowering::Promote:
Duncan Sands92c43912008-06-06 12:08:01 +00002421 assert(VT.isVector() && "Unknown legal promote case!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002422 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2423 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2424 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
2425 ST->getSrcValue(), SVOffset, isVolatile,
2426 Alignment);
2427 break;
2428 }
2429 break;
2430 }
2431 case Promote:
2432 // Truncate the value and store the result.
2433 Tmp3 = PromoteOp(ST->getValue());
2434 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002435 SVOffset, ST->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002436 isVolatile, Alignment);
2437 break;
2438
2439 case Expand:
2440 unsigned IncrementSize = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002441 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002442
2443 // If this is a vector type, then we have to calculate the increment as
2444 // the product of the element size in bytes, and the number of elements
2445 // in the high half of the vector.
Duncan Sands92c43912008-06-06 12:08:01 +00002446 if (ST->getValue().getValueType().isVector()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002447 SDNode *InVal = ST->getValue().getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002448 int InIx = ST->getValue().getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002449 MVT InVT = InVal->getValueType(InIx);
2450 unsigned NumElems = InVT.getVectorNumElements();
2451 MVT EVT = InVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002452
2453 // Figure out if there is a simple type corresponding to this Vector
2454 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002455 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002456 if (TLI.isTypeLegal(TVT)) {
2457 // Turn this into a normal store of the vector type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002458 Tmp3 = LegalizeOp(ST->getValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002459 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2460 SVOffset, isVolatile, Alignment);
2461 Result = LegalizeOp(Result);
2462 break;
2463 } else if (NumElems == 1) {
2464 // Turn this into a normal store of the scalar type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002465 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002466 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2467 SVOffset, isVolatile, Alignment);
2468 // The scalarized value type may not be legal, e.g. it might require
2469 // promotion or expansion. Relegalize the scalar store.
2470 Result = LegalizeOp(Result);
2471 break;
2472 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002473 SplitVectorOp(ST->getValue(), Lo, Hi);
Gabor Greif1c80d112008-08-28 21:40:38 +00002474 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
Duncan Sands92c43912008-06-06 12:08:01 +00002475 EVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002476 }
2477 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002478 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greif1c80d112008-08-28 21:40:38 +00002479 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002480
Richard Pennington73ae9e42008-09-25 16:15:10 +00002481 if (Hi.getNode() && TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002482 std::swap(Lo, Hi);
2483 }
2484
2485 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2486 SVOffset, isVolatile, Alignment);
2487
Gabor Greif1c80d112008-08-28 21:40:38 +00002488 if (Hi.getNode() == NULL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002489 // Must be int <-> float one-to-one expansion.
2490 Result = Lo;
2491 break;
2492 }
2493
2494 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002495 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002496 assert(isTypeLegal(Tmp2.getValueType()) &&
2497 "Pointers must be legal!");
2498 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00002499 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002500 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2501 SVOffset, isVolatile, Alignment);
2502 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2503 break;
2504 }
2505 } else {
Chris Lattner3bc08502008-01-17 19:59:44 +00002506 switch (getTypeAction(ST->getValue().getValueType())) {
2507 case Legal:
2508 Tmp3 = LegalizeOp(ST->getValue());
2509 break;
2510 case Promote:
2511 // We can promote the value, the truncstore will still take care of it.
2512 Tmp3 = PromoteOp(ST->getValue());
2513 break;
2514 case Expand:
2515 // Just store the low part. This may become a non-trunc store, so make
2516 // sure to use getTruncStore, not UpdateNodeOperands below.
2517 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2518 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2519 SVOffset, MVT::i8, isVolatile, Alignment);
2520 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002521
Duncan Sands92c43912008-06-06 12:08:01 +00002522 MVT StVT = ST->getMemoryVT();
2523 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands40676662008-01-22 07:17:34 +00002524
Duncan Sands92c43912008-06-06 12:08:01 +00002525 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands40676662008-01-22 07:17:34 +00002526 // Promote to a byte-sized store with upper bits zero if not
2527 // storing an integral number of bytes. For example, promote
2528 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands92c43912008-06-06 12:08:01 +00002529 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands40676662008-01-22 07:17:34 +00002530 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2531 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2532 SVOffset, NVT, isVolatile, Alignment);
2533 } else if (StWidth & (StWidth - 1)) {
2534 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands92c43912008-06-06 12:08:01 +00002535 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands40676662008-01-22 07:17:34 +00002536 "Unsupported truncstore!");
2537 unsigned RoundWidth = 1 << Log2_32(StWidth);
2538 assert(RoundWidth < StWidth);
2539 unsigned ExtraWidth = StWidth - RoundWidth;
2540 assert(ExtraWidth < RoundWidth);
2541 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2542 "Store size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002543 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2544 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002545 SDValue Lo, Hi;
Duncan Sands40676662008-01-22 07:17:34 +00002546 unsigned IncrementSize;
2547
2548 if (TLI.isLittleEndian()) {
2549 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2550 // Store the bottom RoundWidth bits.
2551 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2552 SVOffset, RoundVT,
2553 isVolatile, Alignment);
2554
2555 // Store the remaining ExtraWidth bits.
2556 IncrementSize = RoundWidth / 8;
2557 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2558 DAG.getIntPtrConstant(IncrementSize));
2559 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2560 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2561 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2562 SVOffset + IncrementSize, ExtraVT, isVolatile,
2563 MinAlign(Alignment, IncrementSize));
2564 } else {
2565 // Big endian - avoid unaligned stores.
2566 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2567 // Store the top RoundWidth bits.
2568 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2569 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2570 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2571 RoundVT, isVolatile, Alignment);
2572
2573 // Store the remaining ExtraWidth bits.
2574 IncrementSize = RoundWidth / 8;
2575 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2576 DAG.getIntPtrConstant(IncrementSize));
2577 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2578 SVOffset + IncrementSize, ExtraVT, isVolatile,
2579 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002580 }
Duncan Sands40676662008-01-22 07:17:34 +00002581
2582 // The order of the stores doesn't matter.
2583 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2584 } else {
2585 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2586 Tmp2 != ST->getBasePtr())
2587 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2588 ST->getOffset());
2589
2590 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2591 default: assert(0 && "This action is not supported yet!");
2592 case TargetLowering::Legal:
2593 // If this is an unaligned store and the target doesn't support it,
2594 // expand it.
2595 if (!TLI.allowsUnalignedMemoryAccesses()) {
2596 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002597 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands40676662008-01-22 07:17:34 +00002598 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002599 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands40676662008-01-22 07:17:34 +00002600 TLI);
2601 }
2602 break;
2603 case TargetLowering::Custom:
2604 Result = TLI.LowerOperation(Result, DAG);
2605 break;
2606 case Expand:
2607 // TRUNCSTORE:i16 i32 -> STORE i16
2608 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2609 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2610 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2611 isVolatile, Alignment);
2612 break;
2613 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002614 }
2615 }
2616 break;
2617 }
2618 case ISD::PCMARKER:
2619 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2620 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2621 break;
2622 case ISD::STACKSAVE:
2623 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2624 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2625 Tmp1 = Result.getValue(0);
2626 Tmp2 = Result.getValue(1);
2627
2628 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2629 default: assert(0 && "This action is not supported yet!");
2630 case TargetLowering::Legal: break;
2631 case TargetLowering::Custom:
2632 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002633 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002634 Tmp1 = LegalizeOp(Tmp3);
2635 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2636 }
2637 break;
2638 case TargetLowering::Expand:
2639 // Expand to CopyFromReg if the target set
2640 // StackPointerRegisterToSaveRestore.
2641 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2642 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
2643 Node->getValueType(0));
2644 Tmp2 = Tmp1.getValue(1);
2645 } else {
2646 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2647 Tmp2 = Node->getOperand(0);
2648 }
2649 break;
2650 }
2651
2652 // Since stacksave produce two values, make sure to remember that we
2653 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002654 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2655 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002656 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002657
2658 case ISD::STACKRESTORE:
2659 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2660 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2661 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2662
2663 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2664 default: assert(0 && "This action is not supported yet!");
2665 case TargetLowering::Legal: break;
2666 case TargetLowering::Custom:
2667 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002668 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002669 break;
2670 case TargetLowering::Expand:
2671 // Expand to CopyToReg if the target set
2672 // StackPointerRegisterToSaveRestore.
2673 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2674 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2675 } else {
2676 Result = Tmp1;
2677 }
2678 break;
2679 }
2680 break;
2681
2682 case ISD::READCYCLECOUNTER:
2683 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
2684 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2685 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2686 Node->getValueType(0))) {
2687 default: assert(0 && "This action is not supported yet!");
2688 case TargetLowering::Legal:
2689 Tmp1 = Result.getValue(0);
2690 Tmp2 = Result.getValue(1);
2691 break;
2692 case TargetLowering::Custom:
2693 Result = TLI.LowerOperation(Result, DAG);
2694 Tmp1 = LegalizeOp(Result.getValue(0));
2695 Tmp2 = LegalizeOp(Result.getValue(1));
2696 break;
2697 }
2698
2699 // Since rdcc produce two values, make sure to remember that we legalized
2700 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002701 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2702 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002703 return Result;
2704
2705 case ISD::SELECT:
2706 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2707 case Expand: assert(0 && "It's impossible to expand bools");
2708 case Legal:
2709 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2710 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002711 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002712 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
2713 // Make sure the condition is either zero or one.
Dan Gohman07961cd2008-02-25 21:11:39 +00002714 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002715 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman07961cd2008-02-25 21:11:39 +00002716 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002717 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
2718 break;
2719 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002720 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002721 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
2722 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
2723
2724 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2725
2726 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
2727 default: assert(0 && "This action is not supported yet!");
2728 case TargetLowering::Legal: break;
2729 case TargetLowering::Custom: {
2730 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002731 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002732 break;
2733 }
2734 case TargetLowering::Expand:
2735 if (Tmp1.getOpcode() == ISD::SETCC) {
2736 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2737 Tmp2, Tmp3,
2738 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2739 } else {
2740 Result = DAG.getSelectCC(Tmp1,
2741 DAG.getConstant(0, Tmp1.getValueType()),
2742 Tmp2, Tmp3, ISD::SETNE);
2743 }
2744 break;
2745 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00002746 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002747 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2748 unsigned ExtOp, TruncOp;
Duncan Sands92c43912008-06-06 12:08:01 +00002749 if (Tmp2.getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002750 ExtOp = ISD::BIT_CONVERT;
2751 TruncOp = ISD::BIT_CONVERT;
Duncan Sands92c43912008-06-06 12:08:01 +00002752 } else if (Tmp2.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002753 ExtOp = ISD::ANY_EXTEND;
2754 TruncOp = ISD::TRUNCATE;
2755 } else {
2756 ExtOp = ISD::FP_EXTEND;
2757 TruncOp = ISD::FP_ROUND;
2758 }
2759 // Promote each of the values to the new type.
2760 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2761 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2762 // Perform the larger operation, then round down.
2763 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner5872a362008-01-17 07:00:52 +00002764 if (TruncOp != ISD::FP_ROUND)
2765 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2766 else
2767 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2768 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002769 break;
2770 }
2771 }
2772 break;
2773 case ISD::SELECT_CC: {
2774 Tmp1 = Node->getOperand(0); // LHS
2775 Tmp2 = Node->getOperand(1); // RHS
2776 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2777 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman8181bd12008-07-27 21:46:04 +00002778 SDValue CC = Node->getOperand(4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002779
2780 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2781
2782 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2783 // the LHS is a legal SETCC itself. In this case, we need to compare
2784 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00002785 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002786 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2787 CC = DAG.getCondCode(ISD::SETNE);
2788 }
2789 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2790
2791 // Everything is legal, see if we should expand this op or something.
2792 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2793 default: assert(0 && "This action is not supported yet!");
2794 case TargetLowering::Legal: break;
2795 case TargetLowering::Custom:
2796 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002797 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002798 break;
2799 }
2800 break;
2801 }
2802 case ISD::SETCC:
2803 Tmp1 = Node->getOperand(0);
2804 Tmp2 = Node->getOperand(1);
2805 Tmp3 = Node->getOperand(2);
2806 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2807
2808 // If we had to Expand the SetCC operands into a SELECT node, then it may
2809 // not always be possible to return a true LHS & RHS. In this case, just
2810 // return the value we legalized, returned in the LHS
Gabor Greif1c80d112008-08-28 21:40:38 +00002811 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002812 Result = Tmp1;
2813 break;
2814 }
2815
2816 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
2817 default: assert(0 && "Cannot handle this action for SETCC yet!");
2818 case TargetLowering::Custom:
2819 isCustom = true;
2820 // FALLTHROUGH.
2821 case TargetLowering::Legal:
2822 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2823 if (isCustom) {
2824 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002825 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002826 }
2827 break;
2828 case TargetLowering::Promote: {
2829 // First step, figure out the appropriate operation to use.
2830 // Allow SETCC to not be supported for all legal data types
2831 // Mostly this targets FP
Duncan Sands92c43912008-06-06 12:08:01 +00002832 MVT NewInTy = Node->getOperand(0).getValueType();
2833 MVT OldVT = NewInTy; OldVT = OldVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002834
2835 // Scan for the appropriate larger type to use.
2836 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00002837 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002838
Duncan Sands92c43912008-06-06 12:08:01 +00002839 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002840 "Fell off of the edge of the integer world");
Duncan Sands92c43912008-06-06 12:08:01 +00002841 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002842 "Fell off of the edge of the floating point world");
2843
2844 // If the target supports SETCC of this type, use it.
2845 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
2846 break;
2847 }
Duncan Sands92c43912008-06-06 12:08:01 +00002848 if (NewInTy.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002849 assert(0 && "Cannot promote Legal Integer SETCC yet");
2850 else {
2851 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2852 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2853 }
2854 Tmp1 = LegalizeOp(Tmp1);
2855 Tmp2 = LegalizeOp(Tmp2);
2856 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2857 Result = LegalizeOp(Result);
2858 break;
2859 }
2860 case TargetLowering::Expand:
2861 // Expand a setcc node into a select_cc of the same condition, lhs, and
2862 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands92c43912008-06-06 12:08:01 +00002863 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002864 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2865 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2866 Tmp3);
2867 break;
2868 }
2869 break;
Nate Begeman9a1ce152008-05-12 19:40:03 +00002870 case ISD::VSETCC: {
2871 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2872 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman8181bd12008-07-27 21:46:04 +00002873 SDValue CC = Node->getOperand(2);
Nate Begeman9a1ce152008-05-12 19:40:03 +00002874
2875 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2876
2877 // Everything is legal, see if we should expand this op or something.
2878 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2879 default: assert(0 && "This action is not supported yet!");
2880 case TargetLowering::Legal: break;
2881 case TargetLowering::Custom:
2882 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002883 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9a1ce152008-05-12 19:40:03 +00002884 break;
2885 }
2886 break;
2887 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002888
2889 case ISD::SHL_PARTS:
2890 case ISD::SRA_PARTS:
2891 case ISD::SRL_PARTS: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002892 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002893 bool Changed = false;
2894 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2895 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2896 Changed |= Ops.back() != Node->getOperand(i);
2897 }
2898 if (Changed)
2899 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
2900
2901 switch (TLI.getOperationAction(Node->getOpcode(),
2902 Node->getValueType(0))) {
2903 default: assert(0 && "This action is not supported yet!");
2904 case TargetLowering::Legal: break;
2905 case TargetLowering::Custom:
2906 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002907 if (Tmp1.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002908 SDValue Tmp2, RetVal(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002909 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
2910 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman8181bd12008-07-27 21:46:04 +00002911 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002912 if (i == Op.getResNo())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002913 RetVal = Tmp2;
2914 }
Gabor Greif1c80d112008-08-28 21:40:38 +00002915 assert(RetVal.getNode() && "Illegal result number");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002916 return RetVal;
2917 }
2918 break;
2919 }
2920
2921 // Since these produce multiple values, make sure to remember that we
2922 // legalized all of them.
2923 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00002924 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00002925 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002926 }
2927
2928 // Binary operators
2929 case ISD::ADD:
2930 case ISD::SUB:
2931 case ISD::MUL:
2932 case ISD::MULHS:
2933 case ISD::MULHU:
2934 case ISD::UDIV:
2935 case ISD::SDIV:
2936 case ISD::AND:
2937 case ISD::OR:
2938 case ISD::XOR:
2939 case ISD::SHL:
2940 case ISD::SRL:
2941 case ISD::SRA:
2942 case ISD::FADD:
2943 case ISD::FSUB:
2944 case ISD::FMUL:
2945 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00002946 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002947 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2948 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2949 case Expand: assert(0 && "Not possible");
2950 case Legal:
2951 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2952 break;
2953 case Promote:
2954 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2955 break;
2956 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00002957
2958 if ((Node->getOpcode() == ISD::SHL ||
2959 Node->getOpcode() == ISD::SRL ||
2960 Node->getOpcode() == ISD::SRA) &&
2961 !Node->getValueType(0).isVector()) {
2962 if (TLI.getShiftAmountTy().bitsLT(Tmp2.getValueType()))
2963 Tmp2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Tmp2);
2964 else if (TLI.getShiftAmountTy().bitsGT(Tmp2.getValueType()))
2965 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Tmp2);
2966 }
2967
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002968 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2969
2970 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2971 default: assert(0 && "BinOp legalize operation not supported");
2972 case TargetLowering::Legal: break;
2973 case TargetLowering::Custom:
2974 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002975 if (Tmp1.getNode()) {
Nate Begemanbb1ce942008-07-29 15:49:41 +00002976 Result = Tmp1;
2977 break;
Nate Begeman7569e762008-07-29 19:07:27 +00002978 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00002979 // Fall through if the custom lower can't deal with the operation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002980 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00002981 MVT VT = Op.getValueType();
Dan Gohman5a199552007-10-08 18:33:35 +00002982
2983 // See if multiply or divide can be lowered using two-result operations.
2984 SDVTList VTs = DAG.getVTList(VT, VT);
2985 if (Node->getOpcode() == ISD::MUL) {
2986 // We just need the low half of the multiply; try both the signed
2987 // and unsigned forms. If the target supports both SMUL_LOHI and
2988 // UMUL_LOHI, form a preference by checking which forms of plain
2989 // MULH it supports.
2990 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2991 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2992 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2993 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2994 unsigned OpToUse = 0;
2995 if (HasSMUL_LOHI && !HasMULHS) {
2996 OpToUse = ISD::SMUL_LOHI;
2997 } else if (HasUMUL_LOHI && !HasMULHU) {
2998 OpToUse = ISD::UMUL_LOHI;
2999 } else if (HasSMUL_LOHI) {
3000 OpToUse = ISD::SMUL_LOHI;
3001 } else if (HasUMUL_LOHI) {
3002 OpToUse = ISD::UMUL_LOHI;
3003 }
3004 if (OpToUse) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003005 Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003006 break;
3007 }
3008 }
3009 if (Node->getOpcode() == ISD::MULHS &&
3010 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003011 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003012 break;
3013 }
3014 if (Node->getOpcode() == ISD::MULHU &&
3015 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003016 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003017 break;
3018 }
3019 if (Node->getOpcode() == ISD::SDIV &&
3020 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003021 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003022 break;
3023 }
3024 if (Node->getOpcode() == ISD::UDIV &&
3025 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003026 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003027 break;
3028 }
3029
Dan Gohman6d05cac2007-10-11 23:57:53 +00003030 // Check to see if we have a libcall for this operator.
3031 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3032 bool isSigned = false;
3033 switch (Node->getOpcode()) {
3034 case ISD::UDIV:
3035 case ISD::SDIV:
3036 if (VT == MVT::i32) {
3037 LC = Node->getOpcode() == ISD::UDIV
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003038 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003039 isSigned = Node->getOpcode() == ISD::SDIV;
3040 }
3041 break;
3042 case ISD::FPOW:
Duncan Sands37a3f472008-01-10 10:28:30 +00003043 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3044 RTLIB::POW_PPCF128);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003045 break;
3046 default: break;
3047 }
3048 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003049 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003050 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003051 break;
3052 }
3053
Duncan Sands92c43912008-06-06 12:08:01 +00003054 assert(Node->getValueType(0).isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003055 "Cannot expand this binary operator!");
3056 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman6d05cac2007-10-11 23:57:53 +00003057 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003058 break;
3059 }
3060 case TargetLowering::Promote: {
3061 switch (Node->getOpcode()) {
3062 default: assert(0 && "Do not know how to promote this BinOp!");
3063 case ISD::AND:
3064 case ISD::OR:
3065 case ISD::XOR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003066 MVT OVT = Node->getValueType(0);
3067 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3068 assert(OVT.isVector() && "Cannot promote this BinOp!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003069 // Bit convert each of the values to the new type.
3070 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3071 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3072 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3073 // Bit convert the result back the original type.
3074 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3075 break;
3076 }
3077 }
3078 }
3079 }
3080 break;
3081
Dan Gohman475cd732007-10-05 14:17:22 +00003082 case ISD::SMUL_LOHI:
3083 case ISD::UMUL_LOHI:
3084 case ISD::SDIVREM:
3085 case ISD::UDIVREM:
3086 // These nodes will only be produced by target-specific lowering, so
3087 // they shouldn't be here if they aren't legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00003088 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohman475cd732007-10-05 14:17:22 +00003089 "This must be legal!");
Dan Gohman5a199552007-10-08 18:33:35 +00003090
3091 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3092 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3093 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman475cd732007-10-05 14:17:22 +00003094 break;
3095
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003096 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3097 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3098 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3099 case Expand: assert(0 && "Not possible");
3100 case Legal:
3101 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3102 break;
3103 case Promote:
3104 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3105 break;
3106 }
3107
3108 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3109
3110 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3111 default: assert(0 && "Operation not supported");
3112 case TargetLowering::Custom:
3113 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003114 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003115 break;
3116 case TargetLowering::Legal: break;
3117 case TargetLowering::Expand: {
3118 // If this target supports fabs/fneg natively and select is cheap,
3119 // do this efficiently.
3120 if (!TLI.isSelectExpensive() &&
3121 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3122 TargetLowering::Legal &&
3123 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
3124 TargetLowering::Legal) {
3125 // Get the sign bit of the RHS.
Duncan Sands92c43912008-06-06 12:08:01 +00003126 MVT IVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003127 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman8181bd12008-07-27 21:46:04 +00003128 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel502151f2008-03-10 15:42:14 +00003129 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003130 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3131 // Get the absolute value of the result.
Dan Gohman8181bd12008-07-27 21:46:04 +00003132 SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003133 // Select between the nabs and abs value based on the sign bit of
3134 // the input.
3135 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3136 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3137 AbsVal),
3138 AbsVal);
3139 Result = LegalizeOp(Result);
3140 break;
3141 }
3142
3143 // Otherwise, do bitwise ops!
Duncan Sands92c43912008-06-06 12:08:01 +00003144 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003145 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3146 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3147 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3148 Result = LegalizeOp(Result);
3149 break;
3150 }
3151 }
3152 break;
3153
3154 case ISD::ADDC:
3155 case ISD::SUBC:
3156 Tmp1 = LegalizeOp(Node->getOperand(0));
3157 Tmp2 = LegalizeOp(Node->getOperand(1));
3158 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3159 // Since this produces two values, make sure to remember that we legalized
3160 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003161 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3162 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003163 return Result;
3164
3165 case ISD::ADDE:
3166 case ISD::SUBE:
3167 Tmp1 = LegalizeOp(Node->getOperand(0));
3168 Tmp2 = LegalizeOp(Node->getOperand(1));
3169 Tmp3 = LegalizeOp(Node->getOperand(2));
3170 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3171 // Since this produces two values, make sure to remember that we legalized
3172 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003173 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3174 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003175 return Result;
3176
3177 case ISD::BUILD_PAIR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003178 MVT PairTy = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003179 // TODO: handle the case where the Lo and Hi operands are not of legal type
3180 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3181 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3182 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
3183 case TargetLowering::Promote:
3184 case TargetLowering::Custom:
3185 assert(0 && "Cannot promote/custom this yet!");
3186 case TargetLowering::Legal:
3187 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3188 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3189 break;
3190 case TargetLowering::Expand:
3191 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3192 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3193 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003194 DAG.getConstant(PairTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003195 TLI.getShiftAmountTy()));
3196 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
3197 break;
3198 }
3199 break;
3200 }
3201
3202 case ISD::UREM:
3203 case ISD::SREM:
3204 case ISD::FREM:
3205 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3206 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3207
3208 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3209 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3210 case TargetLowering::Custom:
3211 isCustom = true;
3212 // FALLTHROUGH
3213 case TargetLowering::Legal:
3214 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3215 if (isCustom) {
3216 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003217 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003218 }
3219 break;
Dan Gohman5a199552007-10-08 18:33:35 +00003220 case TargetLowering::Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003221 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
3222 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands92c43912008-06-06 12:08:01 +00003223 MVT VT = Node->getValueType(0);
Dan Gohman5a199552007-10-08 18:33:35 +00003224
3225 // See if remainder can be lowered using two-result operations.
3226 SDVTList VTs = DAG.getVTList(VT, VT);
3227 if (Node->getOpcode() == ISD::SREM &&
3228 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003229 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003230 break;
3231 }
3232 if (Node->getOpcode() == ISD::UREM &&
3233 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003234 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003235 break;
3236 }
3237
Duncan Sands92c43912008-06-06 12:08:01 +00003238 if (VT.isInteger()) {
Dan Gohman5a199552007-10-08 18:33:35 +00003239 if (TLI.getOperationAction(DivOpc, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003240 TargetLowering::Legal) {
3241 // X % Y -> X-X/Y*Y
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003242 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
3243 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3244 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands92c43912008-06-06 12:08:01 +00003245 } else if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003246 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003247 } else {
Dan Gohman5a199552007-10-08 18:33:35 +00003248 assert(VT == MVT::i32 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003249 "Cannot expand this binary operator!");
3250 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3251 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman8181bd12008-07-27 21:46:04 +00003252 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003253 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003254 }
Dan Gohman59b4b102007-11-06 22:11:54 +00003255 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00003256 assert(VT.isFloatingPoint() &&
Dan Gohman59b4b102007-11-06 22:11:54 +00003257 "remainder op must have integer or floating-point type");
Duncan Sands92c43912008-06-06 12:08:01 +00003258 if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003259 Result = LegalizeOp(UnrollVectorOp(Op));
3260 } else {
3261 // Floating point mod -> fmod libcall.
Duncan Sands37a3f472008-01-10 10:28:30 +00003262 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3263 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003264 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003265 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003266 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003267 }
3268 break;
3269 }
Dan Gohman5a199552007-10-08 18:33:35 +00003270 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003271 break;
3272 case ISD::VAARG: {
3273 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3274 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3275
Duncan Sands92c43912008-06-06 12:08:01 +00003276 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003277 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3278 default: assert(0 && "This action is not supported yet!");
3279 case TargetLowering::Custom:
3280 isCustom = true;
3281 // FALLTHROUGH
3282 case TargetLowering::Legal:
3283 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3284 Result = Result.getValue(0);
3285 Tmp1 = Result.getValue(1);
3286
3287 if (isCustom) {
3288 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003289 if (Tmp2.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003290 Result = LegalizeOp(Tmp2);
3291 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3292 }
3293 }
3294 break;
3295 case TargetLowering::Expand: {
Dan Gohman12a9c082008-02-06 22:27:42 +00003296 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00003297 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003298 // Increment the pointer, VAList, to the next vaarg
3299 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00003300 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003301 TLI.getPointerTy()));
3302 // Store the incremented VAList to the legalized pointer
Dan Gohman12a9c082008-02-06 22:27:42 +00003303 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003304 // Load the actual argument out of the pointer VAList
3305 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
3306 Tmp1 = LegalizeOp(Result.getValue(1));
3307 Result = LegalizeOp(Result);
3308 break;
3309 }
3310 }
3311 // Since VAARG produces two values, make sure to remember that we
3312 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003313 AddLegalizedOperand(SDValue(Node, 0), Result);
3314 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003315 return Op.getResNo() ? Tmp1 : Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003316 }
3317
3318 case ISD::VACOPY:
3319 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3320 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3321 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3322
3323 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3324 default: assert(0 && "This action is not supported yet!");
3325 case TargetLowering::Custom:
3326 isCustom = true;
3327 // FALLTHROUGH
3328 case TargetLowering::Legal:
3329 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3330 Node->getOperand(3), Node->getOperand(4));
3331 if (isCustom) {
3332 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003333 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003334 }
3335 break;
3336 case TargetLowering::Expand:
3337 // This defaults to loading a pointer from the input and storing it to the
3338 // output, returning the chain.
Dan Gohman12a9c082008-02-06 22:27:42 +00003339 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3340 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman6b9a08e2008-04-17 02:09:26 +00003341 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3342 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003343 break;
3344 }
3345 break;
3346
3347 case ISD::VAEND:
3348 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3349 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3350
3351 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3352 default: assert(0 && "This action is not supported yet!");
3353 case TargetLowering::Custom:
3354 isCustom = true;
3355 // FALLTHROUGH
3356 case TargetLowering::Legal:
3357 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3358 if (isCustom) {
3359 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003360 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003361 }
3362 break;
3363 case TargetLowering::Expand:
3364 Result = Tmp1; // Default to a no-op, return the chain
3365 break;
3366 }
3367 break;
3368
3369 case ISD::VASTART:
3370 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3371 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3372
3373 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3374
3375 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3376 default: assert(0 && "This action is not supported yet!");
3377 case TargetLowering::Legal: break;
3378 case TargetLowering::Custom:
3379 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003380 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003381 break;
3382 }
3383 break;
3384
3385 case ISD::ROTL:
3386 case ISD::ROTR:
3387 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3388 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3389 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3390 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3391 default:
3392 assert(0 && "ROTL/ROTR legalize operation not supported");
3393 break;
3394 case TargetLowering::Legal:
3395 break;
3396 case TargetLowering::Custom:
3397 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003398 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003399 break;
3400 case TargetLowering::Promote:
3401 assert(0 && "Do not know how to promote ROTL/ROTR");
3402 break;
3403 case TargetLowering::Expand:
3404 assert(0 && "Do not know how to expand ROTL/ROTR");
3405 break;
3406 }
3407 break;
3408
3409 case ISD::BSWAP:
3410 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3411 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3412 case TargetLowering::Custom:
3413 assert(0 && "Cannot custom legalize this yet!");
3414 case TargetLowering::Legal:
3415 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3416 break;
3417 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003418 MVT OVT = Tmp1.getValueType();
3419 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3420 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003421
3422 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3423 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3424 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3425 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3426 break;
3427 }
3428 case TargetLowering::Expand:
3429 Result = ExpandBSWAP(Tmp1);
3430 break;
3431 }
3432 break;
3433
3434 case ISD::CTPOP:
3435 case ISD::CTTZ:
3436 case ISD::CTLZ:
3437 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3438 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel48b63e62007-07-30 21:00:31 +00003439 case TargetLowering::Custom:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003440 case TargetLowering::Legal:
3441 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel48b63e62007-07-30 21:00:31 +00003442 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michelbc62b412007-08-02 02:22:46 +00003443 TargetLowering::Custom) {
3444 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003445 if (Tmp1.getNode()) {
Scott Michelbc62b412007-08-02 02:22:46 +00003446 Result = Tmp1;
3447 }
Scott Michel48b63e62007-07-30 21:00:31 +00003448 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003449 break;
3450 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003451 MVT OVT = Tmp1.getValueType();
3452 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003453
3454 // Zero extend the argument.
3455 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3456 // Perform the larger operation, then subtract if needed.
3457 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
3458 switch (Node->getOpcode()) {
3459 case ISD::CTPOP:
3460 Result = Tmp1;
3461 break;
3462 case ISD::CTTZ:
3463 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel502151f2008-03-10 15:42:14 +00003464 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003465 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003466 ISD::SETEQ);
3467 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003468 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003469 break;
3470 case ISD::CTLZ:
3471 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3472 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003473 DAG.getConstant(NVT.getSizeInBits() -
3474 OVT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003475 break;
3476 }
3477 break;
3478 }
3479 case TargetLowering::Expand:
3480 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
3481 break;
3482 }
3483 break;
3484
3485 // Unary operators
3486 case ISD::FABS:
3487 case ISD::FNEG:
3488 case ISD::FSQRT:
3489 case ISD::FSIN:
3490 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003491 case ISD::FLOG:
3492 case ISD::FLOG2:
3493 case ISD::FLOG10:
3494 case ISD::FEXP:
3495 case ISD::FEXP2:
Dan Gohmanc8b20e22008-08-21 17:55:02 +00003496 case ISD::FTRUNC:
3497 case ISD::FFLOOR:
3498 case ISD::FCEIL:
3499 case ISD::FRINT:
3500 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003501 Tmp1 = LegalizeOp(Node->getOperand(0));
3502 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3503 case TargetLowering::Promote:
3504 case TargetLowering::Custom:
3505 isCustom = true;
3506 // FALLTHROUGH
3507 case TargetLowering::Legal:
3508 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3509 if (isCustom) {
3510 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003511 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003512 }
3513 break;
3514 case TargetLowering::Expand:
3515 switch (Node->getOpcode()) {
3516 default: assert(0 && "Unreachable!");
3517 case ISD::FNEG:
3518 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3519 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3520 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
3521 break;
3522 case ISD::FABS: {
3523 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands92c43912008-06-06 12:08:01 +00003524 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003525 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel502151f2008-03-10 15:42:14 +00003526 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00003527 ISD::SETUGT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003528 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3529 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
3530 break;
3531 }
Evan Cheng1fac6952008-09-09 23:35:53 +00003532 case ISD::FSQRT:
3533 case ISD::FSIN:
3534 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003535 case ISD::FLOG:
3536 case ISD::FLOG2:
3537 case ISD::FLOG10:
3538 case ISD::FEXP:
3539 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00003540 case ISD::FTRUNC:
3541 case ISD::FFLOOR:
3542 case ISD::FCEIL:
3543 case ISD::FRINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00003544 case ISD::FNEARBYINT: {
Duncan Sands92c43912008-06-06 12:08:01 +00003545 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003546
3547 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003548 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003549 Result = LegalizeOp(UnrollVectorOp(Op));
3550 break;
3551 }
3552
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003553 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3554 switch(Node->getOpcode()) {
3555 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00003556 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3557 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003558 break;
3559 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00003560 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3561 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003562 break;
3563 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00003564 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3565 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003566 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00003567 case ISD::FLOG:
3568 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3569 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3570 break;
3571 case ISD::FLOG2:
3572 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3573 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3574 break;
3575 case ISD::FLOG10:
3576 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3577 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3578 break;
3579 case ISD::FEXP:
3580 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3581 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3582 break;
3583 case ISD::FEXP2:
3584 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3585 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3586 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00003587 case ISD::FTRUNC:
3588 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3589 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3590 break;
3591 case ISD::FFLOOR:
3592 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3593 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3594 break;
3595 case ISD::FCEIL:
3596 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3597 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3598 break;
3599 case ISD::FRINT:
3600 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3601 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3602 break;
3603 case ISD::FNEARBYINT:
3604 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3605 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3606 break;
Evan Cheng1fac6952008-09-09 23:35:53 +00003607 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003608 default: assert(0 && "Unreachable!");
3609 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003610 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003611 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003612 break;
3613 }
3614 }
3615 break;
3616 }
3617 break;
3618 case ISD::FPOWI: {
Duncan Sands92c43912008-06-06 12:08:01 +00003619 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003620
3621 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003622 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003623 Result = LegalizeOp(UnrollVectorOp(Op));
3624 break;
3625 }
3626
3627 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands37a3f472008-01-10 10:28:30 +00003628 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3629 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003630 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003631 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003632 break;
3633 }
3634 case ISD::BIT_CONVERT:
3635 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003636 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3637 Node->getValueType(0));
Duncan Sands92c43912008-06-06 12:08:01 +00003638 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003639 // The input has to be a vector type, we have to either scalarize it, pack
3640 // it, or convert it based on whether the input vector type is legal.
Gabor Greif1c80d112008-08-28 21:40:38 +00003641 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00003642 int InIx = Node->getOperand(0).getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00003643 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3644 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003645
3646 // Figure out if there is a simple type corresponding to this Vector
3647 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00003648 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003649 if (TLI.isTypeLegal(TVT)) {
3650 // Turn this into a bit convert of the vector input.
3651 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3652 LegalizeOp(Node->getOperand(0)));
3653 break;
3654 } else if (NumElems == 1) {
3655 // Turn this into a bit convert of the scalar input.
3656 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3657 ScalarizeVectorOp(Node->getOperand(0)));
3658 break;
3659 } else {
3660 // FIXME: UNIMP! Store then reload
3661 assert(0 && "Cast from unsupported vector type not implemented yet!");
3662 }
3663 } else {
3664 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3665 Node->getOperand(0).getValueType())) {
3666 default: assert(0 && "Unknown operation action!");
3667 case TargetLowering::Expand:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003668 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3669 Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003670 break;
3671 case TargetLowering::Legal:
3672 Tmp1 = LegalizeOp(Node->getOperand(0));
3673 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3674 break;
3675 }
3676 }
3677 break;
3678
3679 // Conversion operators. The source and destination have different types.
3680 case ISD::SINT_TO_FP:
3681 case ISD::UINT_TO_FP: {
3682 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman29c3cef2008-08-14 20:04:46 +00003683 Result = LegalizeINT_TO_FP(Result, isSigned,
3684 Node->getValueType(0), Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003685 break;
3686 }
3687 case ISD::TRUNCATE:
3688 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3689 case Legal:
3690 Tmp1 = LegalizeOp(Node->getOperand(0));
3691 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3692 break;
3693 case Expand:
3694 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3695
3696 // Since the result is legal, we should just be able to truncate the low
3697 // part of the source.
3698 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3699 break;
3700 case Promote:
3701 Result = PromoteOp(Node->getOperand(0));
3702 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3703 break;
3704 }
3705 break;
3706
3707 case ISD::FP_TO_SINT:
3708 case ISD::FP_TO_UINT:
3709 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3710 case Legal:
3711 Tmp1 = LegalizeOp(Node->getOperand(0));
3712
3713 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3714 default: assert(0 && "Unknown operation action!");
3715 case TargetLowering::Custom:
3716 isCustom = true;
3717 // FALLTHROUGH
3718 case TargetLowering::Legal:
3719 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3720 if (isCustom) {
3721 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003722 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003723 }
3724 break;
3725 case TargetLowering::Promote:
3726 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3727 Node->getOpcode() == ISD::FP_TO_SINT);
3728 break;
3729 case TargetLowering::Expand:
3730 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003731 SDValue True, False;
Duncan Sands92c43912008-06-06 12:08:01 +00003732 MVT VT = Node->getOperand(0).getValueType();
3733 MVT NVT = Node->getValueType(0);
Dale Johannesen958b08b2007-09-19 23:55:34 +00003734 const uint64_t zero[] = {0, 0};
Duncan Sands92c43912008-06-06 12:08:01 +00003735 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3736 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohman88ae8c52008-02-29 01:44:25 +00003737 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen958b08b2007-09-19 23:55:34 +00003738 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel502151f2008-03-10 15:42:14 +00003739 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003740 Node->getOperand(0), Tmp2, ISD::SETLT);
3741 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3742 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
3743 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
3744 Tmp2));
3745 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohman88ae8c52008-02-29 01:44:25 +00003746 DAG.getConstant(x, NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003747 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3748 break;
3749 } else {
3750 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3751 }
3752 break;
3753 }
3754 break;
3755 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00003756 MVT VT = Op.getValueType();
3757 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesend3b6af32007-10-11 23:32:15 +00003758 // Convert ppcf128 to i32
Dale Johannesen3d8578b2007-10-10 01:01:31 +00003759 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner5872a362008-01-17 07:00:52 +00003760 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3761 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3762 Node->getOperand(0), DAG.getValueType(MVT::f64));
3763 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3764 DAG.getIntPtrConstant(1));
3765 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3766 } else {
Dale Johannesend3b6af32007-10-11 23:32:15 +00003767 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3768 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3769 Tmp2 = DAG.getConstantFP(apf, OVT);
3770 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3771 // FIXME: generated code sucks.
3772 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3773 DAG.getNode(ISD::ADD, MVT::i32,
3774 DAG.getNode(ISD::FP_TO_SINT, VT,
3775 DAG.getNode(ISD::FSUB, OVT,
3776 Node->getOperand(0), Tmp2)),
3777 DAG.getConstant(0x80000000, MVT::i32)),
3778 DAG.getNode(ISD::FP_TO_SINT, VT,
3779 Node->getOperand(0)),
3780 DAG.getCondCode(ISD::SETGE));
3781 }
Dale Johannesen3d8578b2007-10-10 01:01:31 +00003782 break;
3783 }
Dan Gohmanec51f642008-03-10 23:03:31 +00003784 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsf68dffb2008-07-17 02:36:29 +00003785 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
3786 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
3787 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman8181bd12008-07-27 21:46:04 +00003788 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003789 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003790 break;
3791 }
3792 case Promote:
3793 Tmp1 = PromoteOp(Node->getOperand(0));
3794 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3795 Result = LegalizeOp(Result);
3796 break;
3797 }
3798 break;
3799
Chris Lattner56ecde32008-01-16 06:57:07 +00003800 case ISD::FP_EXTEND: {
Duncan Sands92c43912008-06-06 12:08:01 +00003801 MVT DstVT = Op.getValueType();
3802 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00003803 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3804 // The only other way we can lower this is to turn it into a STORE,
3805 // LOAD pair, targetting a temporary location (a stack slot).
3806 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3807 break;
Chris Lattner56ecde32008-01-16 06:57:07 +00003808 }
3809 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3810 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3811 case Legal:
3812 Tmp1 = LegalizeOp(Node->getOperand(0));
3813 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3814 break;
3815 case Promote:
3816 Tmp1 = PromoteOp(Node->getOperand(0));
3817 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3818 break;
3819 }
3820 break;
Chris Lattner5872a362008-01-17 07:00:52 +00003821 }
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00003822 case ISD::FP_ROUND: {
Duncan Sands92c43912008-06-06 12:08:01 +00003823 MVT DstVT = Op.getValueType();
3824 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00003825 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3826 if (SrcVT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003827 SDValue Lo;
Dale Johannesena0d36082008-01-20 01:18:38 +00003828 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00003829 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesena0d36082008-01-20 01:18:38 +00003830 if (DstVT!=MVT::f64)
3831 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner5872a362008-01-17 07:00:52 +00003832 break;
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00003833 }
Chris Lattner5872a362008-01-17 07:00:52 +00003834 // The only other way we can lower this is to turn it into a STORE,
3835 // LOAD pair, targetting a temporary location (a stack slot).
3836 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3837 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003838 }
Chris Lattner56ecde32008-01-16 06:57:07 +00003839 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3840 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3841 case Legal:
3842 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00003843 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00003844 break;
3845 case Promote:
3846 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00003847 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3848 Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00003849 break;
3850 }
3851 break;
Chris Lattner5872a362008-01-17 07:00:52 +00003852 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003853 case ISD::ANY_EXTEND:
3854 case ISD::ZERO_EXTEND:
3855 case ISD::SIGN_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003856 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3857 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3858 case Legal:
3859 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelac54d002008-04-30 00:26:38 +00003860 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michelac7091c2008-02-15 23:05:48 +00003861 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3862 TargetLowering::Custom) {
Scott Michelac54d002008-04-30 00:26:38 +00003863 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003864 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelac7091c2008-02-15 23:05:48 +00003865 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003866 break;
3867 case Promote:
3868 switch (Node->getOpcode()) {
3869 case ISD::ANY_EXTEND:
3870 Tmp1 = PromoteOp(Node->getOperand(0));
3871 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
3872 break;
3873 case ISD::ZERO_EXTEND:
3874 Result = PromoteOp(Node->getOperand(0));
3875 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
3876 Result = DAG.getZeroExtendInReg(Result,
3877 Node->getOperand(0).getValueType());
3878 break;
3879 case ISD::SIGN_EXTEND:
3880 Result = PromoteOp(Node->getOperand(0));
3881 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
3882 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
3883 Result,
3884 DAG.getValueType(Node->getOperand(0).getValueType()));
3885 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003886 }
3887 }
3888 break;
3889 case ISD::FP_ROUND_INREG:
3890 case ISD::SIGN_EXTEND_INREG: {
3891 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00003892 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003893
3894 // If this operation is not supported, convert it to a shl/shr or load/store
3895 // pair.
3896 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3897 default: assert(0 && "This action not supported for this op yet!");
3898 case TargetLowering::Legal:
3899 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
3900 break;
3901 case TargetLowering::Expand:
3902 // If this is an integer extend and shifts are supported, do that.
3903 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
3904 // NOTE: we could fall back on load/store here too for targets without
3905 // SAR. However, it is doubtful that any exist.
Duncan Sands92c43912008-06-06 12:08:01 +00003906 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3907 ExtraVT.getSizeInBits();
Dan Gohman8181bd12008-07-27 21:46:04 +00003908 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003909 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3910 Node->getOperand(0), ShiftCst);
3911 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3912 Result, ShiftCst);
3913 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
3914 // The only way we can lower this is to turn it into a TRUNCSTORE,
3915 // EXTLOAD pair, targetting a temporary location (a stack slot).
3916
3917 // NOTE: there is a choice here between constantly creating new stack
3918 // slots and always reusing the same one. We currently always create
3919 // new ones, as reuse may inhibit scheduling.
Chris Lattner59370bd2008-01-16 07:51:34 +00003920 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3921 Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003922 } else {
3923 assert(0 && "Unknown op");
3924 }
3925 break;
3926 }
3927 break;
3928 }
Duncan Sands38947cd2007-07-27 12:58:54 +00003929 case ISD::TRAMPOLINE: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003930 SDValue Ops[6];
Duncan Sands38947cd2007-07-27 12:58:54 +00003931 for (unsigned i = 0; i != 6; ++i)
3932 Ops[i] = LegalizeOp(Node->getOperand(i));
3933 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3934 // The only option for this node is to custom lower it.
3935 Result = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003936 assert(Result.getNode() && "Should always custom lower!");
Duncan Sands7407a9f2007-09-11 14:10:23 +00003937
3938 // Since trampoline produces two values, make sure to remember that we
3939 // legalized both of them.
3940 Tmp1 = LegalizeOp(Result.getValue(1));
3941 Result = LegalizeOp(Result);
Dan Gohman8181bd12008-07-27 21:46:04 +00003942 AddLegalizedOperand(SDValue(Node, 0), Result);
3943 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003944 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands38947cd2007-07-27 12:58:54 +00003945 }
Dan Gohmane8e4a412008-05-14 00:43:10 +00003946 case ISD::FLT_ROUNDS_: {
Duncan Sands92c43912008-06-06 12:08:01 +00003947 MVT VT = Node->getValueType(0);
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003948 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3949 default: assert(0 && "This action not supported for this op yet!");
3950 case TargetLowering::Custom:
3951 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003952 if (Result.getNode()) break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003953 // Fall Thru
3954 case TargetLowering::Legal:
3955 // If this operation is not supported, lower it to constant 1
3956 Result = DAG.getConstant(1, VT);
3957 break;
3958 }
Dan Gohmane09dc8c2008-05-12 16:07:15 +00003959 break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003960 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00003961 case ISD::TRAP: {
Duncan Sands92c43912008-06-06 12:08:01 +00003962 MVT VT = Node->getValueType(0);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003963 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3964 default: assert(0 && "This action not supported for this op yet!");
Chris Lattnere99bbb72008-01-15 21:58:08 +00003965 case TargetLowering::Legal:
3966 Tmp1 = LegalizeOp(Node->getOperand(0));
3967 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3968 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003969 case TargetLowering::Custom:
3970 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003971 if (Result.getNode()) break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003972 // Fall Thru
Chris Lattnere99bbb72008-01-15 21:58:08 +00003973 case TargetLowering::Expand:
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003974 // If this operation is not supported, lower it to 'abort()' call
Chris Lattnere99bbb72008-01-15 21:58:08 +00003975 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003976 TargetLowering::ArgListTy Args;
Dan Gohman8181bd12008-07-27 21:46:04 +00003977 std::pair<SDValue,SDValue> CallResult =
Duncan Sandsead972e2008-02-14 17:28:50 +00003978 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen67cc9b62008-09-26 19:31:26 +00003979 false, false, false, false, CallingConv::C, false,
Bill Wendlingfef06052008-09-16 21:48:12 +00003980 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Chris Lattner88e03932008-01-15 22:09:33 +00003981 Args, DAG);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003982 Result = CallResult.second;
3983 break;
3984 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00003985 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003986 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003987 }
3988
3989 assert(Result.getValueType() == Op.getValueType() &&
3990 "Bad legalization!");
3991
3992 // Make sure that the generated code is itself legal.
3993 if (Result != Op)
3994 Result = LegalizeOp(Result);
3995
3996 // Note that LegalizeOp may be reentered even from single-use nodes, which
3997 // means that we always must cache transformed nodes.
3998 AddLegalizedOperand(Op, Result);
3999 return Result;
4000}
4001
4002/// PromoteOp - Given an operation that produces a value in an invalid type,
4003/// promote it to compute the value into a larger type. The produced value will
4004/// have the correct bits for the low portion of the register, but no guarantee
4005/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +00004006SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00004007 MVT VT = Op.getValueType();
4008 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004009 assert(getTypeAction(VT) == Promote &&
4010 "Caller should expand or legalize operands that are not promotable!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004011 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004012 "Cannot promote to smaller type!");
4013
Dan Gohman8181bd12008-07-27 21:46:04 +00004014 SDValue Tmp1, Tmp2, Tmp3;
4015 SDValue Result;
Gabor Greif1c80d112008-08-28 21:40:38 +00004016 SDNode *Node = Op.getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004017
Dan Gohman8181bd12008-07-27 21:46:04 +00004018 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004019 if (I != PromotedNodes.end()) return I->second;
4020
4021 switch (Node->getOpcode()) {
4022 case ISD::CopyFromReg:
4023 assert(0 && "CopyFromReg must be legal!");
4024 default:
4025#ifndef NDEBUG
4026 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
4027#endif
4028 assert(0 && "Do not know how to promote this operator!");
4029 abort();
4030 case ISD::UNDEF:
4031 Result = DAG.getNode(ISD::UNDEF, NVT);
4032 break;
4033 case ISD::Constant:
4034 if (VT != MVT::i1)
4035 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4036 else
4037 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
4038 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4039 break;
4040 case ISD::ConstantFP:
4041 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4042 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4043 break;
4044
4045 case ISD::SETCC:
Scott Michel502151f2008-03-10 15:42:14 +00004046 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004047 && "SetCC type is not legal??");
Scott Michel502151f2008-03-10 15:42:14 +00004048 Result = DAG.getNode(ISD::SETCC,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004049 TLI.getSetCCResultType(Node->getOperand(0)),
4050 Node->getOperand(0), Node->getOperand(1),
4051 Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004052 break;
4053
4054 case ISD::TRUNCATE:
4055 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4056 case Legal:
4057 Result = LegalizeOp(Node->getOperand(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00004058 assert(Result.getValueType().bitsGE(NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004059 "This truncation doesn't make sense!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004060 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004061 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4062 break;
4063 case Promote:
4064 // The truncation is not required, because we don't guarantee anything
4065 // about high bits anyway.
4066 Result = PromoteOp(Node->getOperand(0));
4067 break;
4068 case Expand:
4069 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4070 // Truncate the low part of the expanded value to the result type
4071 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
4072 }
4073 break;
4074 case ISD::SIGN_EXTEND:
4075 case ISD::ZERO_EXTEND:
4076 case ISD::ANY_EXTEND:
4077 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4078 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4079 case Legal:
4080 // Input is legal? Just do extend all the way to the larger type.
4081 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
4082 break;
4083 case Promote:
4084 // Promote the reg if it's smaller.
4085 Result = PromoteOp(Node->getOperand(0));
4086 // The high bits are not guaranteed to be anything. Insert an extend.
4087 if (Node->getOpcode() == ISD::SIGN_EXTEND)
4088 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4089 DAG.getValueType(Node->getOperand(0).getValueType()));
4090 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
4091 Result = DAG.getZeroExtendInReg(Result,
4092 Node->getOperand(0).getValueType());
4093 break;
4094 }
4095 break;
4096 case ISD::BIT_CONVERT:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004097 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4098 Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004099 Result = PromoteOp(Result);
4100 break;
4101
4102 case ISD::FP_EXTEND:
4103 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4104 case ISD::FP_ROUND:
4105 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4106 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4107 case Promote: assert(0 && "Unreachable with 2 FP types!");
4108 case Legal:
Chris Lattner5872a362008-01-17 07:00:52 +00004109 if (Node->getConstantOperandVal(1) == 0) {
4110 // Input is legal? Do an FP_ROUND_INREG.
4111 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4112 DAG.getValueType(VT));
4113 } else {
4114 // Just remove the truncate, it isn't affecting the value.
4115 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4116 Node->getOperand(1));
4117 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004118 break;
4119 }
4120 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004121 case ISD::SINT_TO_FP:
4122 case ISD::UINT_TO_FP:
4123 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4124 case Legal:
4125 // No extra round required here.
4126 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
4127 break;
4128
4129 case Promote:
4130 Result = PromoteOp(Node->getOperand(0));
4131 if (Node->getOpcode() == ISD::SINT_TO_FP)
4132 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
4133 Result,
4134 DAG.getValueType(Node->getOperand(0).getValueType()));
4135 else
4136 Result = DAG.getZeroExtendInReg(Result,
4137 Node->getOperand(0).getValueType());
4138 // No extra round required here.
4139 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
4140 break;
4141 case Expand:
4142 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4143 Node->getOperand(0));
4144 // Round if we cannot tolerate excess precision.
4145 if (NoExcessFPPrecision)
4146 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4147 DAG.getValueType(VT));
4148 break;
4149 }
4150 break;
4151
4152 case ISD::SIGN_EXTEND_INREG:
4153 Result = PromoteOp(Node->getOperand(0));
4154 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4155 Node->getOperand(1));
4156 break;
4157 case ISD::FP_TO_SINT:
4158 case ISD::FP_TO_UINT:
4159 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4160 case Legal:
4161 case Expand:
4162 Tmp1 = Node->getOperand(0);
4163 break;
4164 case Promote:
4165 // The input result is prerounded, so we don't have to do anything
4166 // special.
4167 Tmp1 = PromoteOp(Node->getOperand(0));
4168 break;
4169 }
4170 // If we're promoting a UINT to a larger size, check to see if the new node
4171 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4172 // we can use that instead. This allows us to generate better code for
4173 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4174 // legal, such as PowerPC.
4175 if (Node->getOpcode() == ISD::FP_TO_UINT &&
4176 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
4177 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4178 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
4179 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4180 } else {
4181 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4182 }
4183 break;
4184
4185 case ISD::FABS:
4186 case ISD::FNEG:
4187 Tmp1 = PromoteOp(Node->getOperand(0));
4188 assert(Tmp1.getValueType() == NVT);
4189 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4190 // NOTE: we do not have to do any extra rounding here for
4191 // NoExcessFPPrecision, because we know the input will have the appropriate
4192 // precision, and these operations don't modify precision at all.
4193 break;
4194
Dale Johannesen92b33082008-09-04 00:47:13 +00004195 case ISD::FLOG:
4196 case ISD::FLOG2:
4197 case ISD::FLOG10:
4198 case ISD::FEXP:
4199 case ISD::FEXP2:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004200 case ISD::FSQRT:
4201 case ISD::FSIN:
4202 case ISD::FCOS:
Dan Gohmanb2158232008-08-21 18:38:14 +00004203 case ISD::FTRUNC:
4204 case ISD::FFLOOR:
4205 case ISD::FCEIL:
4206 case ISD::FRINT:
4207 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004208 Tmp1 = PromoteOp(Node->getOperand(0));
4209 assert(Tmp1.getValueType() == NVT);
4210 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4211 if (NoExcessFPPrecision)
4212 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4213 DAG.getValueType(VT));
4214 break;
4215
Evan Cheng1fac6952008-09-09 23:35:53 +00004216 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004217 case ISD::FPOWI: {
Evan Cheng1fac6952008-09-09 23:35:53 +00004218 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004219 // directly as well, which may be better.
4220 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng1fac6952008-09-09 23:35:53 +00004221 Tmp2 = Node->getOperand(1);
4222 if (Node->getOpcode() == ISD::FPOW)
4223 Tmp2 = PromoteOp(Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004224 assert(Tmp1.getValueType() == NVT);
Evan Cheng1fac6952008-09-09 23:35:53 +00004225 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004226 if (NoExcessFPPrecision)
4227 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4228 DAG.getValueType(VT));
4229 break;
4230 }
4231
Dale Johannesenbc187662008-08-28 02:44:49 +00004232 case ISD::ATOMIC_CMP_SWAP_8:
4233 case ISD::ATOMIC_CMP_SWAP_16:
4234 case ISD::ATOMIC_CMP_SWAP_32:
4235 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004236 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004237 Tmp2 = PromoteOp(Node->getOperand(2));
4238 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004239 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4240 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004241 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004242 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004243 // Remember that we legalized the chain.
4244 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4245 break;
4246 }
Dale Johannesenbc187662008-08-28 02:44:49 +00004247 case ISD::ATOMIC_LOAD_ADD_8:
4248 case ISD::ATOMIC_LOAD_SUB_8:
4249 case ISD::ATOMIC_LOAD_AND_8:
4250 case ISD::ATOMIC_LOAD_OR_8:
4251 case ISD::ATOMIC_LOAD_XOR_8:
4252 case ISD::ATOMIC_LOAD_NAND_8:
4253 case ISD::ATOMIC_LOAD_MIN_8:
4254 case ISD::ATOMIC_LOAD_MAX_8:
4255 case ISD::ATOMIC_LOAD_UMIN_8:
4256 case ISD::ATOMIC_LOAD_UMAX_8:
4257 case ISD::ATOMIC_SWAP_8:
4258 case ISD::ATOMIC_LOAD_ADD_16:
4259 case ISD::ATOMIC_LOAD_SUB_16:
4260 case ISD::ATOMIC_LOAD_AND_16:
4261 case ISD::ATOMIC_LOAD_OR_16:
4262 case ISD::ATOMIC_LOAD_XOR_16:
4263 case ISD::ATOMIC_LOAD_NAND_16:
4264 case ISD::ATOMIC_LOAD_MIN_16:
4265 case ISD::ATOMIC_LOAD_MAX_16:
4266 case ISD::ATOMIC_LOAD_UMIN_16:
4267 case ISD::ATOMIC_LOAD_UMAX_16:
4268 case ISD::ATOMIC_SWAP_16:
4269 case ISD::ATOMIC_LOAD_ADD_32:
4270 case ISD::ATOMIC_LOAD_SUB_32:
4271 case ISD::ATOMIC_LOAD_AND_32:
4272 case ISD::ATOMIC_LOAD_OR_32:
4273 case ISD::ATOMIC_LOAD_XOR_32:
4274 case ISD::ATOMIC_LOAD_NAND_32:
4275 case ISD::ATOMIC_LOAD_MIN_32:
4276 case ISD::ATOMIC_LOAD_MAX_32:
4277 case ISD::ATOMIC_LOAD_UMIN_32:
4278 case ISD::ATOMIC_LOAD_UMAX_32:
4279 case ISD::ATOMIC_SWAP_32:
4280 case ISD::ATOMIC_LOAD_ADD_64:
4281 case ISD::ATOMIC_LOAD_SUB_64:
4282 case ISD::ATOMIC_LOAD_AND_64:
4283 case ISD::ATOMIC_LOAD_OR_64:
4284 case ISD::ATOMIC_LOAD_XOR_64:
4285 case ISD::ATOMIC_LOAD_NAND_64:
4286 case ISD::ATOMIC_LOAD_MIN_64:
4287 case ISD::ATOMIC_LOAD_MAX_64:
4288 case ISD::ATOMIC_LOAD_UMIN_64:
4289 case ISD::ATOMIC_LOAD_UMAX_64:
4290 case ISD::ATOMIC_SWAP_64: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004291 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004292 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004293 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4294 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004295 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004296 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004297 // Remember that we legalized the chain.
4298 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4299 break;
4300 }
4301
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004302 case ISD::AND:
4303 case ISD::OR:
4304 case ISD::XOR:
4305 case ISD::ADD:
4306 case ISD::SUB:
4307 case ISD::MUL:
4308 // The input may have strange things in the top bits of the registers, but
4309 // these operations don't care. They may have weird bits going out, but
4310 // that too is okay if they are integer operations.
4311 Tmp1 = PromoteOp(Node->getOperand(0));
4312 Tmp2 = PromoteOp(Node->getOperand(1));
4313 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4314 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4315 break;
4316 case ISD::FADD:
4317 case ISD::FSUB:
4318 case ISD::FMUL:
4319 Tmp1 = PromoteOp(Node->getOperand(0));
4320 Tmp2 = PromoteOp(Node->getOperand(1));
4321 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4322 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4323
4324 // Floating point operations will give excess precision that we may not be
4325 // able to tolerate. If we DO allow excess precision, just leave it,
4326 // otherwise excise it.
4327 // FIXME: Why would we need to round FP ops more than integer ones?
4328 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
4329 if (NoExcessFPPrecision)
4330 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4331 DAG.getValueType(VT));
4332 break;
4333
4334 case ISD::SDIV:
4335 case ISD::SREM:
4336 // These operators require that their input be sign extended.
4337 Tmp1 = PromoteOp(Node->getOperand(0));
4338 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004339 if (NVT.isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004340 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4341 DAG.getValueType(VT));
4342 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4343 DAG.getValueType(VT));
4344 }
4345 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4346
4347 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands92c43912008-06-06 12:08:01 +00004348 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004349 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4350 DAG.getValueType(VT));
4351 break;
4352 case ISD::FDIV:
4353 case ISD::FREM:
4354 case ISD::FCOPYSIGN:
4355 // These operators require that their input be fp extended.
4356 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004357 case Expand: assert(0 && "not implemented");
4358 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4359 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004360 }
4361 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004362 case Expand: assert(0 && "not implemented");
4363 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4364 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004365 }
4366 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4367
4368 // Perform FP_ROUND: this is probably overly pessimistic.
4369 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
4370 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4371 DAG.getValueType(VT));
4372 break;
4373
4374 case ISD::UDIV:
4375 case ISD::UREM:
4376 // These operators require that their input be zero extended.
4377 Tmp1 = PromoteOp(Node->getOperand(0));
4378 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004379 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004380 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4381 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4382 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4383 break;
4384
4385 case ISD::SHL:
4386 Tmp1 = PromoteOp(Node->getOperand(0));
4387 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
4388 break;
4389 case ISD::SRA:
4390 // The input value must be properly sign extended.
4391 Tmp1 = PromoteOp(Node->getOperand(0));
4392 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4393 DAG.getValueType(VT));
4394 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
4395 break;
4396 case ISD::SRL:
4397 // The input value must be properly zero extended.
4398 Tmp1 = PromoteOp(Node->getOperand(0));
4399 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4400 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
4401 break;
4402
4403 case ISD::VAARG:
4404 Tmp1 = Node->getOperand(0); // Get the chain.
4405 Tmp2 = Node->getOperand(1); // Get the pointer.
4406 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4407 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sandsac496a12008-07-04 11:47:58 +00004408 Result = TLI.LowerOperation(Tmp3, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004409 } else {
Dan Gohman12a9c082008-02-06 22:27:42 +00004410 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00004411 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004412 // Increment the pointer, VAList, to the next vaarg
4413 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00004414 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004415 TLI.getPointerTy()));
4416 // Store the incremented VAList to the legalized pointer
Dan Gohman12a9c082008-02-06 22:27:42 +00004417 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004418 // Load the actual argument out of the pointer VAList
4419 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
4420 }
4421 // Remember that we legalized the chain.
4422 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4423 break;
4424
4425 case ISD::LOAD: {
4426 LoadSDNode *LD = cast<LoadSDNode>(Node);
4427 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4428 ? ISD::EXTLOAD : LD->getExtensionType();
4429 Result = DAG.getExtLoad(ExtType, NVT,
4430 LD->getChain(), LD->getBasePtr(),
4431 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004432 LD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004433 LD->isVolatile(),
4434 LD->getAlignment());
4435 // Remember that we legalized the chain.
4436 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4437 break;
4438 }
Scott Michel67224b22008-06-02 22:18:03 +00004439 case ISD::SELECT: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004440 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4441 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel67224b22008-06-02 22:18:03 +00004442
Duncan Sands92c43912008-06-06 12:08:01 +00004443 MVT VT2 = Tmp2.getValueType();
Scott Michel67224b22008-06-02 22:18:03 +00004444 assert(VT2 == Tmp3.getValueType()
Scott Michel7b54de02008-06-03 19:13:20 +00004445 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4446 // Ensure that the resulting node is at least the same size as the operands'
4447 // value types, because we cannot assume that TLI.getSetCCValueType() is
4448 // constant.
4449 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004450 break;
Scott Michel67224b22008-06-02 22:18:03 +00004451 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004452 case ISD::SELECT_CC:
4453 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4454 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4455 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4456 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
4457 break;
4458 case ISD::BSWAP:
4459 Tmp1 = Node->getOperand(0);
4460 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4461 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4462 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004463 DAG.getConstant(NVT.getSizeInBits() -
4464 VT.getSizeInBits(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004465 TLI.getShiftAmountTy()));
4466 break;
4467 case ISD::CTPOP:
4468 case ISD::CTTZ:
4469 case ISD::CTLZ:
4470 // Zero extend the argument
4471 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
4472 // Perform the larger operation, then subtract if needed.
4473 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4474 switch(Node->getOpcode()) {
4475 case ISD::CTPOP:
4476 Result = Tmp1;
4477 break;
4478 case ISD::CTTZ:
4479 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel502151f2008-03-10 15:42:14 +00004480 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004481 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004482 ISD::SETEQ);
4483 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00004484 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004485 break;
4486 case ISD::CTLZ:
4487 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4488 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004489 DAG.getConstant(NVT.getSizeInBits() -
4490 VT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004491 break;
4492 }
4493 break;
4494 case ISD::EXTRACT_SUBVECTOR:
4495 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
4496 break;
4497 case ISD::EXTRACT_VECTOR_ELT:
4498 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4499 break;
4500 }
4501
Gabor Greif1c80d112008-08-28 21:40:38 +00004502 assert(Result.getNode() && "Didn't set a result!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004503
4504 // Make sure the result is itself legal.
4505 Result = LegalizeOp(Result);
4506
4507 // Remember that we promoted this!
4508 AddPromotedOperand(Op, Result);
4509 return Result;
4510}
4511
4512/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4513/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4514/// based on the vector type. The return type of this matches the element type
4515/// of the vector, which may not be legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00004516SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004517 // We know that operand #0 is the Vec vector. If the index is a constant
4518 // or if the invec is a supported hardware type, we can use it. Otherwise,
4519 // lower to a store then an indexed load.
Dan Gohman8181bd12008-07-27 21:46:04 +00004520 SDValue Vec = Op.getOperand(0);
4521 SDValue Idx = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004522
Duncan Sands92c43912008-06-06 12:08:01 +00004523 MVT TVT = Vec.getValueType();
4524 unsigned NumElems = TVT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004525
4526 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4527 default: assert(0 && "This action is not supported yet!");
4528 case TargetLowering::Custom: {
4529 Vec = LegalizeOp(Vec);
4530 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00004531 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004532 if (Tmp3.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004533 return Tmp3;
4534 break;
4535 }
4536 case TargetLowering::Legal:
4537 if (isTypeLegal(TVT)) {
4538 Vec = LegalizeOp(Vec);
4539 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lambcc021a02007-07-26 03:33:13 +00004540 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004541 }
4542 break;
4543 case TargetLowering::Expand:
4544 break;
4545 }
4546
4547 if (NumElems == 1) {
4548 // This must be an access of the only element. Return it.
4549 Op = ScalarizeVectorOp(Vec);
4550 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman2b10fde2008-01-29 02:24:00 +00004551 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004552 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00004553 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004554 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004555 if (CIdx->getZExtValue() < NumLoElts) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004556 Vec = Lo;
4557 } else {
4558 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004559 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004560 Idx.getValueType());
4561 }
4562
4563 // It's now an extract from the appropriate high or low part. Recurse.
4564 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4565 Op = ExpandEXTRACT_VECTOR_ELT(Op);
4566 } else {
4567 // Store the value to a temporary stack slot, then LOAD the scalar
4568 // element back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00004569 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
4570 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004571
4572 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +00004573 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004574 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4575 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling60f7b4d2007-10-18 08:32:37 +00004576
Duncan Sandsec142ee2008-06-08 20:54:56 +00004577 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattner9f9b8802007-10-19 16:47:35 +00004578 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00004579 else
Chris Lattner9f9b8802007-10-19 16:47:35 +00004580 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00004581
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004582 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4583
4584 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
4585 }
4586 return Op;
4587}
4588
4589/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
4590/// we assume the operation can be split if it is not already legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00004591SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004592 // We know that operand #0 is the Vec vector. For now we assume the index
4593 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman8181bd12008-07-27 21:46:04 +00004594 SDValue Vec = Op.getOperand(0);
4595 SDValue Idx = LegalizeOp(Op.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004596
Duncan Sands92c43912008-06-06 12:08:01 +00004597 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004598
Duncan Sands92c43912008-06-06 12:08:01 +00004599 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004600 // This must be an access of the desired vector length. Return it.
4601 return Vec;
4602 }
4603
4604 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00004605 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004606 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004607 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004608 Vec = Lo;
4609 } else {
4610 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004611 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
4612 Idx.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004613 }
4614
4615 // It's now an extract from the appropriate high or low part. Recurse.
4616 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4617 return ExpandEXTRACT_SUBVECTOR(Op);
4618}
4619
4620/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4621/// with condition CC on the current target. This usually involves legalizing
4622/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4623/// there may be no choice but to create a new SetCC node to represent the
4624/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman8181bd12008-07-27 21:46:04 +00004625/// LHS, and the SDValue returned in RHS has a nil SDNode value.
4626void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
4627 SDValue &RHS,
4628 SDValue &CC) {
4629 SDValue Tmp1, Tmp2, Tmp3, Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004630
4631 switch (getTypeAction(LHS.getValueType())) {
4632 case Legal:
4633 Tmp1 = LegalizeOp(LHS); // LHS
4634 Tmp2 = LegalizeOp(RHS); // RHS
4635 break;
4636 case Promote:
4637 Tmp1 = PromoteOp(LHS); // LHS
4638 Tmp2 = PromoteOp(RHS); // RHS
4639
4640 // If this is an FP compare, the operands have already been extended.
Duncan Sands92c43912008-06-06 12:08:01 +00004641 if (LHS.getValueType().isInteger()) {
4642 MVT VT = LHS.getValueType();
4643 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004644
4645 // Otherwise, we have to insert explicit sign or zero extends. Note
4646 // that we could insert sign extends for ALL conditions, but zero extend
4647 // is cheaper on many machines (an AND instead of two shifts), so prefer
4648 // it.
4649 switch (cast<CondCodeSDNode>(CC)->get()) {
4650 default: assert(0 && "Unknown integer comparison!");
4651 case ISD::SETEQ:
4652 case ISD::SETNE:
4653 case ISD::SETUGE:
4654 case ISD::SETUGT:
4655 case ISD::SETULE:
4656 case ISD::SETULT:
4657 // ALL of these operations will work if we either sign or zero extend
4658 // the operands (including the unsigned comparisons!). Zero extend is
4659 // usually a simpler/cheaper operation, so prefer it.
4660 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4661 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4662 break;
4663 case ISD::SETGE:
4664 case ISD::SETGT:
4665 case ISD::SETLT:
4666 case ISD::SETLE:
4667 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4668 DAG.getValueType(VT));
4669 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4670 DAG.getValueType(VT));
4671 break;
4672 }
4673 }
4674 break;
4675 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00004676 MVT VT = LHS.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004677 if (VT == MVT::f32 || VT == MVT::f64) {
4678 // Expand into one or more soft-fp libcall(s).
Evan Cheng24108632008-07-01 21:35:46 +00004679 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004680 switch (cast<CondCodeSDNode>(CC)->get()) {
4681 case ISD::SETEQ:
4682 case ISD::SETOEQ:
4683 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
4684 break;
4685 case ISD::SETNE:
4686 case ISD::SETUNE:
4687 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
4688 break;
4689 case ISD::SETGE:
4690 case ISD::SETOGE:
4691 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
4692 break;
4693 case ISD::SETLT:
4694 case ISD::SETOLT:
4695 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4696 break;
4697 case ISD::SETLE:
4698 case ISD::SETOLE:
4699 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
4700 break;
4701 case ISD::SETGT:
4702 case ISD::SETOGT:
4703 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
4704 break;
4705 case ISD::SETUO:
4706 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4707 break;
4708 case ISD::SETO:
4709 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
4710 break;
4711 default:
4712 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4713 switch (cast<CondCodeSDNode>(CC)->get()) {
4714 case ISD::SETONE:
4715 // SETONE = SETOLT | SETOGT
4716 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4717 // Fallthrough
4718 case ISD::SETUGT:
4719 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
4720 break;
4721 case ISD::SETUGE:
4722 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
4723 break;
4724 case ISD::SETULT:
4725 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4726 break;
4727 case ISD::SETULE:
4728 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
4729 break;
4730 case ISD::SETUEQ:
4731 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
4732 break;
4733 default: assert(0 && "Unsupported FP setcc!");
4734 }
4735 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00004736
Dan Gohman8181bd12008-07-27 21:46:04 +00004737 SDValue Dummy;
4738 SDValue Ops[2] = { LHS, RHS };
Gabor Greif1c80d112008-08-28 21:40:38 +00004739 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004740 false /*sign irrelevant*/, Dummy);
4741 Tmp2 = DAG.getConstant(0, MVT::i32);
4742 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
4743 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel502151f2008-03-10 15:42:14 +00004744 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004745 CC);
Gabor Greif1c80d112008-08-28 21:40:38 +00004746 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004747 false /*sign irrelevant*/, Dummy);
Scott Michel502151f2008-03-10 15:42:14 +00004748 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004749 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
4750 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman8181bd12008-07-27 21:46:04 +00004751 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004752 }
Evan Cheng18a1ab12008-07-07 07:18:09 +00004753 LHS = LegalizeOp(Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004754 RHS = Tmp2;
4755 return;
4756 }
4757
Dan Gohman8181bd12008-07-27 21:46:04 +00004758 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004759 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen472d15d2007-10-06 01:24:11 +00004760 ExpandOp(RHS, RHSLo, RHSHi);
4761 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4762
4763 if (VT==MVT::ppcf128) {
4764 // FIXME: This generated code sucks. We want to generate
Dale Johannesen26317b62008-09-12 00:30:56 +00004765 // FCMPU crN, hi1, hi2
Dale Johannesen472d15d2007-10-06 01:24:11 +00004766 // BNE crN, L:
Dale Johannesen26317b62008-09-12 00:30:56 +00004767 // FCMPU crN, lo1, lo2
Dale Johannesen472d15d2007-10-06 01:24:11 +00004768 // The following can be improved, but not that much.
Dale Johannesen26317b62008-09-12 00:30:56 +00004769 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4770 ISD::SETOEQ);
Scott Michel502151f2008-03-10 15:42:14 +00004771 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen472d15d2007-10-06 01:24:11 +00004772 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Dale Johannesen26317b62008-09-12 00:30:56 +00004773 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4774 ISD::SETUNE);
Scott Michel502151f2008-03-10 15:42:14 +00004775 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen472d15d2007-10-06 01:24:11 +00004776 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4777 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman8181bd12008-07-27 21:46:04 +00004778 Tmp2 = SDValue();
Dale Johannesen472d15d2007-10-06 01:24:11 +00004779 break;
4780 }
4781
4782 switch (CCCode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004783 case ISD::SETEQ:
4784 case ISD::SETNE:
4785 if (RHSLo == RHSHi)
4786 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4787 if (RHSCST->isAllOnesValue()) {
4788 // Comparison to -1.
4789 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4790 Tmp2 = RHSLo;
4791 break;
4792 }
4793
4794 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4795 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4796 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4797 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4798 break;
4799 default:
4800 // If this is a comparison of the sign bit, just look at the top part.
4801 // X > -1, x < 0
4802 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4803 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00004804 CST->isNullValue()) || // X < 0
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004805 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4806 CST->isAllOnesValue())) { // X > -1
4807 Tmp1 = LHSHi;
4808 Tmp2 = RHSHi;
4809 break;
4810 }
4811
4812 // FIXME: This generated code sucks.
4813 ISD::CondCode LowCC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004814 switch (CCCode) {
4815 default: assert(0 && "Unknown integer setcc!");
4816 case ISD::SETLT:
4817 case ISD::SETULT: LowCC = ISD::SETULT; break;
4818 case ISD::SETGT:
4819 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4820 case ISD::SETLE:
4821 case ISD::SETULE: LowCC = ISD::SETULE; break;
4822 case ISD::SETGE:
4823 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4824 }
4825
4826 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4827 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4828 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4829
4830 // NOTE: on targets without efficient SELECT of bools, we can always use
4831 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
4832 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel502151f2008-03-10 15:42:14 +00004833 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004834 LowCC, false, DagCombineInfo);
Gabor Greif1c80d112008-08-28 21:40:38 +00004835 if (!Tmp1.getNode())
Scott Michel502151f2008-03-10 15:42:14 +00004836 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4837 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004838 CCCode, false, DagCombineInfo);
Gabor Greif1c80d112008-08-28 21:40:38 +00004839 if (!Tmp2.getNode())
Scott Michel502151f2008-03-10 15:42:14 +00004840 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004841 RHSHi,CC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004842
Gabor Greif1c80d112008-08-28 21:40:38 +00004843 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
4844 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman9d24dc72008-03-13 22:13:53 +00004845 if ((Tmp1C && Tmp1C->isNullValue()) ||
4846 (Tmp2C && Tmp2C->isNullValue() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004847 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4848 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman9d24dc72008-03-13 22:13:53 +00004849 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004850 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4851 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4852 // low part is known false, returns high part.
4853 // For LE / GE, if high part is known false, ignore the low part.
4854 // For LT / GT, if high part is known true, ignore the low part.
4855 Tmp1 = Tmp2;
Dan Gohman8181bd12008-07-27 21:46:04 +00004856 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004857 } else {
Scott Michel502151f2008-03-10 15:42:14 +00004858 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004859 ISD::SETEQ, false, DagCombineInfo);
Gabor Greif1c80d112008-08-28 21:40:38 +00004860 if (!Result.getNode())
Scott Michel502151f2008-03-10 15:42:14 +00004861 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004862 ISD::SETEQ);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004863 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4864 Result, Tmp1, Tmp2));
4865 Tmp1 = Result;
Dan Gohman8181bd12008-07-27 21:46:04 +00004866 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004867 }
4868 }
4869 }
4870 }
4871 LHS = Tmp1;
4872 RHS = Tmp2;
4873}
4874
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004875/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4876/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4877/// a load from the stack slot to DestVT, extending it if needed.
4878/// The resultant code need not be legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00004879SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
4880 MVT SlotVT,
4881 MVT DestVT) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004882 // Create the stack frame object.
Mon P Wang55854cc2008-07-05 20:40:31 +00004883 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4884 SrcOp.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00004885 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Mon P Wang55854cc2008-07-05 20:40:31 +00004886
Dan Gohman20e37962008-02-11 18:58:42 +00004887 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00004888 int SPFI = StackPtrFI->getIndex();
Mon P Wang55854cc2008-07-05 20:40:31 +00004889
Duncan Sands92c43912008-06-06 12:08:01 +00004890 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4891 unsigned SlotSize = SlotVT.getSizeInBits();
4892 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang55854cc2008-07-05 20:40:31 +00004893 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4894 DestVT.getTypeForMVT());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004895
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004896 // Emit a store to the stack slot. Use a truncstore if the input value is
4897 // later than DestVT.
Dan Gohman8181bd12008-07-27 21:46:04 +00004898 SDValue Store;
Mon P Wang55854cc2008-07-05 20:40:31 +00004899
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004900 if (SrcSize > SlotSize)
Dan Gohman12a9c082008-02-06 22:27:42 +00004901 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004902 PseudoSourceValue::getFixedStack(SPFI), 0,
4903 SlotVT, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004904 else {
4905 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman12a9c082008-02-06 22:27:42 +00004906 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004907 PseudoSourceValue::getFixedStack(SPFI), 0,
Mon P Wang55854cc2008-07-05 20:40:31 +00004908 false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004909 }
4910
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004911 // Result is a load from the stack slot.
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004912 if (SlotSize == DestSize)
Mon P Wang55854cc2008-07-05 20:40:31 +00004913 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004914
4915 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang55854cc2008-07-05 20:40:31 +00004916 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4917 false, DestAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004918}
4919
Dan Gohman8181bd12008-07-27 21:46:04 +00004920SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004921 // Create a vector sized/aligned stack slot, store the value to element #0,
4922 // then load the whole vector back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00004923 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman12a9c082008-02-06 22:27:42 +00004924
Dan Gohman20e37962008-02-11 18:58:42 +00004925 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00004926 int SPFI = StackPtrFI->getIndex();
4927
Dan Gohman8181bd12008-07-27 21:46:04 +00004928 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004929 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman12a9c082008-02-06 22:27:42 +00004930 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004931 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004932}
4933
4934
4935/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
4936/// support the operation, but do support the resultant vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00004937SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004938
4939 // If the only non-undef value is the low element, turn this into a
4940 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
4941 unsigned NumElems = Node->getNumOperands();
4942 bool isOnlyLowElement = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00004943 SDValue SplatValue = Node->getOperand(0);
Chris Lattnerd8cee732008-03-09 00:29:42 +00004944
Dan Gohman8181bd12008-07-27 21:46:04 +00004945 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerd8cee732008-03-09 00:29:42 +00004946 // and use a bitmask instead of a list of elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00004947 std::map<SDValue, std::vector<unsigned> > Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004948 Values[SplatValue].push_back(0);
4949 bool isConstant = true;
4950 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4951 SplatValue.getOpcode() != ISD::UNDEF)
4952 isConstant = false;
4953
4954 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004955 SDValue V = Node->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004956 Values[V].push_back(i);
4957 if (V.getOpcode() != ISD::UNDEF)
4958 isOnlyLowElement = false;
4959 if (SplatValue != V)
Dan Gohman8181bd12008-07-27 21:46:04 +00004960 SplatValue = SDValue(0,0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004961
4962 // If this isn't a constant element or an undef, we can't use a constant
4963 // pool load.
4964 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4965 V.getOpcode() != ISD::UNDEF)
4966 isConstant = false;
4967 }
4968
4969 if (isOnlyLowElement) {
4970 // If the low element is an undef too, then this whole things is an undef.
4971 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4972 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4973 // Otherwise, turn this into a scalar_to_vector node.
4974 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4975 Node->getOperand(0));
4976 }
4977
4978 // If all elements are constants, create a load from the constant pool.
4979 if (isConstant) {
Duncan Sands92c43912008-06-06 12:08:01 +00004980 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004981 std::vector<Constant*> CV;
4982 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4983 if (ConstantFPSDNode *V =
4984 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00004985 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004986 } else if (ConstantSDNode *V =
Chris Lattner5e0610f2008-04-20 00:41:09 +00004987 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00004988 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004989 } else {
4990 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner5e0610f2008-04-20 00:41:09 +00004991 const Type *OpNTy =
Duncan Sands92c43912008-06-06 12:08:01 +00004992 Node->getOperand(0).getValueType().getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004993 CV.push_back(UndefValue::get(OpNTy));
4994 }
4995 }
4996 Constant *CP = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00004997 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +00004998 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman12a9c082008-02-06 22:27:42 +00004999 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005000 PseudoSourceValue::getConstantPool(), 0,
5001 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005002 }
5003
Gabor Greif1c80d112008-08-28 21:40:38 +00005004 if (SplatValue.getNode()) { // Splat of one value?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005005 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands92c43912008-06-06 12:08:01 +00005006 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman8181bd12008-07-27 21:46:04 +00005007 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5008 std::vector<SDValue> ZeroVec(NumElems, Zero);
5009 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005010 &ZeroVec[0], ZeroVec.size());
5011
5012 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
5013 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
5014 // Get the splatted value into the low element of a vector register.
Dan Gohman8181bd12008-07-27 21:46:04 +00005015 SDValue LowValVec =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005016 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5017
5018 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5019 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5020 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5021 SplatMask);
5022 }
5023 }
5024
5025 // If there are only two unique elements, we may be able to turn this into a
5026 // vector shuffle.
5027 if (Values.size() == 2) {
Chris Lattnerd8cee732008-03-09 00:29:42 +00005028 // Get the two values in deterministic order.
Dan Gohman8181bd12008-07-27 21:46:04 +00005029 SDValue Val1 = Node->getOperand(1);
5030 SDValue Val2;
5031 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerd8cee732008-03-09 00:29:42 +00005032 if (MI->first != Val1)
5033 Val2 = MI->first;
5034 else
5035 Val2 = (++MI)->first;
5036
5037 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5038 // vector shuffle has the undef vector on the RHS.
5039 if (Val1.getOpcode() == ISD::UNDEF)
5040 std::swap(Val1, Val2);
5041
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005042 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands92c43912008-06-06 12:08:01 +00005043 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5044 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005045 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerd8cee732008-03-09 00:29:42 +00005046
5047 // Set elements of the shuffle mask for Val1.
5048 std::vector<unsigned> &Val1Elts = Values[Val1];
5049 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5050 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5051
5052 // Set elements of the shuffle mask for Val2.
5053 std::vector<unsigned> &Val2Elts = Values[Val2];
5054 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5055 if (Val2.getOpcode() != ISD::UNDEF)
5056 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5057 else
5058 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5059
Dan Gohman8181bd12008-07-27 21:46:04 +00005060 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005061 &MaskVec[0], MaskVec.size());
5062
Chris Lattnerd8cee732008-03-09 00:29:42 +00005063 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005064 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5065 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerd8cee732008-03-09 00:29:42 +00005066 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5067 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005068 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005069
5070 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerd8cee732008-03-09 00:29:42 +00005071 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005072 }
5073 }
5074
5075 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5076 // aligned object on the stack, store each element into it, then load
5077 // the result as a vector.
Duncan Sands92c43912008-06-06 12:08:01 +00005078 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005079 // Create the stack frame object.
Dan Gohman8181bd12008-07-27 21:46:04 +00005080 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005081
5082 // Emit a store of each element to the stack slot.
Dan Gohman8181bd12008-07-27 21:46:04 +00005083 SmallVector<SDValue, 8> Stores;
Duncan Sands92c43912008-06-06 12:08:01 +00005084 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005085 // Store (in the right endianness) the elements to memory.
5086 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5087 // Ignore undef elements.
5088 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5089
5090 unsigned Offset = TypeByteSize*i;
5091
Dan Gohman8181bd12008-07-27 21:46:04 +00005092 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005093 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5094
5095 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
5096 NULL, 0));
5097 }
5098
Dan Gohman8181bd12008-07-27 21:46:04 +00005099 SDValue StoreChain;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005100 if (!Stores.empty()) // Not all undef elements?
5101 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5102 &Stores[0], Stores.size());
5103 else
5104 StoreChain = DAG.getEntryNode();
5105
5106 // Result is a load from the stack slot.
5107 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
5108}
5109
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005110void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman8181bd12008-07-27 21:46:04 +00005111 SDValue Op, SDValue Amt,
5112 SDValue &Lo, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005113 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00005114 SDValue LHSL, LHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005115 ExpandOp(Op, LHSL, LHSH);
5116
Dan Gohman8181bd12008-07-27 21:46:04 +00005117 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands92c43912008-06-06 12:08:01 +00005118 MVT VT = LHSL.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005119 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
5120 Hi = Lo.getValue(1);
5121}
5122
5123
5124/// ExpandShift - Try to find a clever way to expand this shift operation out to
5125/// smaller elements. If we can't find a way that is more efficient than a
5126/// libcall on this target, return false. Otherwise, return true with the
5127/// low-parts expanded into Lo and Hi.
Dan Gohman8181bd12008-07-27 21:46:04 +00005128bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
5129 SDValue &Lo, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005130 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5131 "This is not a shift!");
5132
Duncan Sands92c43912008-06-06 12:08:01 +00005133 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman8181bd12008-07-27 21:46:04 +00005134 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands92c43912008-06-06 12:08:01 +00005135 MVT ShTy = ShAmt.getValueType();
5136 unsigned ShBits = ShTy.getSizeInBits();
5137 unsigned VTBits = Op.getValueType().getSizeInBits();
5138 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005139
Chris Lattner8c931452007-10-14 20:35:12 +00005140 // Handle the case when Amt is an immediate.
Gabor Greif1c80d112008-08-28 21:40:38 +00005141 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005142 unsigned Cst = CN->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005143 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005144 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005145 ExpandOp(Op, InL, InH);
5146 switch(Opc) {
5147 case ISD::SHL:
5148 if (Cst > VTBits) {
5149 Lo = DAG.getConstant(0, NVT);
5150 Hi = DAG.getConstant(0, NVT);
5151 } else if (Cst > NVTBits) {
5152 Lo = DAG.getConstant(0, NVT);
5153 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
5154 } else if (Cst == NVTBits) {
5155 Lo = DAG.getConstant(0, NVT);
5156 Hi = InL;
5157 } else {
5158 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5159 Hi = DAG.getNode(ISD::OR, NVT,
5160 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5161 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5162 }
5163 return true;
5164 case ISD::SRL:
5165 if (Cst > VTBits) {
5166 Lo = DAG.getConstant(0, NVT);
5167 Hi = DAG.getConstant(0, NVT);
5168 } else if (Cst > NVTBits) {
5169 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5170 Hi = DAG.getConstant(0, NVT);
5171 } else if (Cst == NVTBits) {
5172 Lo = InH;
5173 Hi = DAG.getConstant(0, NVT);
5174 } else {
5175 Lo = DAG.getNode(ISD::OR, NVT,
5176 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5177 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5178 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5179 }
5180 return true;
5181 case ISD::SRA:
5182 if (Cst > VTBits) {
5183 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
5184 DAG.getConstant(NVTBits-1, ShTy));
5185 } else if (Cst > NVTBits) {
5186 Lo = DAG.getNode(ISD::SRA, NVT, InH,
5187 DAG.getConstant(Cst-NVTBits, ShTy));
5188 Hi = DAG.getNode(ISD::SRA, NVT, InH,
5189 DAG.getConstant(NVTBits-1, ShTy));
5190 } else if (Cst == NVTBits) {
5191 Lo = InH;
5192 Hi = DAG.getNode(ISD::SRA, NVT, InH,
5193 DAG.getConstant(NVTBits-1, ShTy));
5194 } else {
5195 Lo = DAG.getNode(ISD::OR, NVT,
5196 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5197 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5198 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5199 }
5200 return true;
5201 }
5202 }
5203
5204 // Okay, the shift amount isn't constant. However, if we can tell that it is
5205 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohmanece0a882008-02-20 16:57:27 +00005206 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5207 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005208 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
5209
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005210 // If we know that if any of the high bits of the shift amount are one, then
5211 // we can do this as a couple of simple shifts.
Dan Gohmanece0a882008-02-20 16:57:27 +00005212 if (KnownOne.intersects(Mask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005213 // Mask out the high bit, which we know is set.
5214 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohmanece0a882008-02-20 16:57:27 +00005215 DAG.getConstant(~Mask, Amt.getValueType()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005216
5217 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005218 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005219 ExpandOp(Op, InL, InH);
5220 switch(Opc) {
5221 case ISD::SHL:
5222 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5223 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5224 return true;
5225 case ISD::SRL:
5226 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5227 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5228 return true;
5229 case ISD::SRA:
5230 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5231 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5232 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5233 return true;
5234 }
5235 }
5236
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005237 // If we know that the high bits of the shift amount are all zero, then we can
5238 // do this as a couple of simple shifts.
5239 if ((KnownZero & Mask) == Mask) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005240 // Compute 32-amt.
Dan Gohman8181bd12008-07-27 21:46:04 +00005241 SDValue Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005242 DAG.getConstant(NVTBits, Amt.getValueType()),
5243 Amt);
5244
5245 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005246 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005247 ExpandOp(Op, InL, InH);
5248 switch(Opc) {
5249 case ISD::SHL:
5250 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5251 Hi = DAG.getNode(ISD::OR, NVT,
5252 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5253 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5254 return true;
5255 case ISD::SRL:
5256 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5257 Lo = DAG.getNode(ISD::OR, NVT,
5258 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5259 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5260 return true;
5261 case ISD::SRA:
5262 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5263 Lo = DAG.getNode(ISD::OR, NVT,
5264 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5265 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5266 return true;
5267 }
5268 }
5269
5270 return false;
5271}
5272
5273
5274// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5275// does not fit into a register, return the lo part and set the hi part to the
5276// by-reg argument. If it does fit into a single register, return the result
5277// and leave the Hi part unset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005278SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5279 bool isSigned, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005280 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5281 // The input chain to this libcall is the entry node of the function.
5282 // Legalizing the call will automatically add the previous call to the
5283 // dependence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005284 SDValue InChain = DAG.getEntryNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005285
5286 TargetLowering::ArgListTy Args;
5287 TargetLowering::ArgListEntry Entry;
5288 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00005289 MVT ArgVT = Node->getOperand(i).getValueType();
5290 const Type *ArgTy = ArgVT.getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005291 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
5292 Entry.isSExt = isSigned;
Duncan Sandsead972e2008-02-14 17:28:50 +00005293 Entry.isZExt = !isSigned;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005294 Args.push_back(Entry);
5295 }
Bill Wendlingfef06052008-09-16 21:48:12 +00005296 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5297 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005298
5299 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands92c43912008-06-06 12:08:01 +00005300 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman8181bd12008-07-27 21:46:04 +00005301 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen67cc9b62008-09-26 19:31:26 +00005302 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
5303 CallingConv::C, false, Callee, Args, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005304
5305 // Legalize the call sequence, starting with the chain. This will advance
5306 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5307 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5308 LegalizeOp(CallInfo.second);
Dan Gohman8181bd12008-07-27 21:46:04 +00005309 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005310 switch (getTypeAction(CallInfo.first.getValueType())) {
5311 default: assert(0 && "Unknown thing");
5312 case Legal:
5313 Result = CallInfo.first;
5314 break;
5315 case Expand:
5316 ExpandOp(CallInfo.first, Result, Hi);
5317 break;
5318 }
5319 return Result;
5320}
5321
Dan Gohman29c3cef2008-08-14 20:04:46 +00005322/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5323///
5324SDValue SelectionDAGLegalize::
5325LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op) {
5326 bool isCustom = false;
5327 SDValue Tmp1;
5328 switch (getTypeAction(Op.getValueType())) {
5329 case Legal:
5330 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5331 Op.getValueType())) {
5332 default: assert(0 && "Unknown operation action!");
5333 case TargetLowering::Custom:
5334 isCustom = true;
5335 // FALLTHROUGH
5336 case TargetLowering::Legal:
5337 Tmp1 = LegalizeOp(Op);
Gabor Greif1c80d112008-08-28 21:40:38 +00005338 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005339 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5340 else
5341 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5342 DestTy, Tmp1);
5343 if (isCustom) {
5344 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005345 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005346 }
5347 break;
5348 case TargetLowering::Expand:
5349 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy);
5350 break;
5351 case TargetLowering::Promote:
5352 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned);
5353 break;
5354 }
5355 break;
5356 case Expand:
5357 Result = ExpandIntToFP(isSigned, DestTy, Op);
5358 break;
5359 case Promote:
5360 Tmp1 = PromoteOp(Op);
5361 if (isSigned) {
5362 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
5363 Tmp1, DAG.getValueType(Op.getValueType()));
5364 } else {
5365 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
5366 Op.getValueType());
5367 }
Gabor Greif1c80d112008-08-28 21:40:38 +00005368 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005369 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5370 else
5371 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5372 DestTy, Tmp1);
5373 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5374 break;
5375 }
5376 return Result;
5377}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005378
5379/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5380///
Dan Gohman8181bd12008-07-27 21:46:04 +00005381SDValue SelectionDAGLegalize::
5382ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source) {
Duncan Sands92c43912008-06-06 12:08:01 +00005383 MVT SourceVT = Source.getValueType();
Dan Gohman8b232ff2008-03-11 01:59:03 +00005384 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005385
Dan Gohman29c3cef2008-08-14 20:04:46 +00005386 // Expand unsupported int-to-fp vector casts by unrolling them.
5387 if (DestTy.isVector()) {
5388 if (!ExpandSource)
5389 return LegalizeOp(UnrollVectorOp(Source));
5390 MVT DestEltTy = DestTy.getVectorElementType();
5391 if (DestTy.getVectorNumElements() == 1) {
5392 SDValue Scalar = ScalarizeVectorOp(Source);
5393 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
5394 DestEltTy, Scalar);
5395 return DAG.getNode(ISD::BUILD_VECTOR, DestTy, Result);
5396 }
5397 SDValue Lo, Hi;
5398 SplitVectorOp(Source, Lo, Hi);
5399 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5400 DestTy.getVectorNumElements() / 2);
5401 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Lo);
5402 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Hi);
5403 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, DestTy, LoResult, HiResult));
5404 }
5405
Evan Chengf99a7752008-04-01 02:18:22 +00005406 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5407 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohmana193dba2008-03-05 02:07:31 +00005408 // The integer value loaded will be incorrectly if the 'sign bit' of the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005409 // incoming integer is set. To handle this, we dynamically test to see if
5410 // it is set, and, if so, add a fudge factor.
Dan Gohman8181bd12008-07-27 21:46:04 +00005411 SDValue Hi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005412 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005413 SDValue Lo;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005414 ExpandOp(Source, Lo, Hi);
5415 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5416 } else {
5417 // The comparison for the sign bit will use the entire operand.
5418 Hi = Source;
5419 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005420
5421 // If this is unsigned, and not supported, first perform the conversion to
5422 // signed, then adjust the result if the sign bit is set.
Dan Gohman8181bd12008-07-27 21:46:04 +00005423 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005424
Dan Gohman8181bd12008-07-27 21:46:04 +00005425 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005426 DAG.getConstant(0, Hi.getValueType()),
5427 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005428 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5429 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005430 SignSet, Four, Zero);
5431 uint64_t FF = 0x5f800000ULL;
5432 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohmana193dba2008-03-05 02:07:31 +00005433 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005434
Dan Gohman8181bd12008-07-27 21:46:04 +00005435 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +00005436 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005437 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00005438 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00005439 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005440 if (DestTy == MVT::f32)
Dan Gohman12a9c082008-02-06 22:27:42 +00005441 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005442 PseudoSourceValue::getConstantPool(), 0,
5443 false, Alignment);
Duncan Sandsec142ee2008-06-08 20:54:56 +00005444 else if (DestTy.bitsGT(MVT::f32))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005445 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenb17a7a22007-09-16 16:51:49 +00005446 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00005447 CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005448 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00005449 MVT::f32, false, Alignment);
Dale Johannesen2fc20782007-09-14 22:26:36 +00005450 else
5451 assert(0 && "Unexpected conversion");
5452
Duncan Sands92c43912008-06-06 12:08:01 +00005453 MVT SCVT = SignedConv.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005454 if (SCVT != DestTy) {
5455 // Destination type needs to be expanded as well. The FADD now we are
5456 // constructing will be expanded into a libcall.
Duncan Sands92c43912008-06-06 12:08:01 +00005457 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5458 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmanc98645c2008-03-05 01:08:17 +00005459 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005460 SignedConv, SignedConv.getValue(1));
5461 }
5462 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5463 }
5464 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
5465 }
5466
5467 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmanc98645c2008-03-05 01:08:17 +00005468 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005469 default: assert(0 && "This action not implemented for this operation!");
5470 case TargetLowering::Legal:
5471 case TargetLowering::Expand:
5472 break; // This case is handled below.
5473 case TargetLowering::Custom: {
Dan Gohman8181bd12008-07-27 21:46:04 +00005474 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005475 Source), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005476 if (NV.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005477 return LegalizeOp(NV);
5478 break; // The target decided this was legal after all
5479 }
5480 }
5481
5482 // Expand the source, then glue it back together for the call. We must expand
5483 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman8b232ff2008-03-11 01:59:03 +00005484 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005485 SDValue SrcLo, SrcHi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005486 ExpandOp(Source, SrcLo, SrcHi);
5487 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5488 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005489
Duncan Sandsf68dffb2008-07-17 02:36:29 +00005490 RTLIB::Libcall LC = isSigned ?
5491 RTLIB::getSINTTOFP(SourceVT, DestTy) :
5492 RTLIB::getUINTTOFP(SourceVT, DestTy);
5493 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
5494
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005495 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohman8181bd12008-07-27 21:46:04 +00005496 SDValue HiPart;
Gabor Greif1c80d112008-08-28 21:40:38 +00005497 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
5498 if (Result.getValueType() != DestTy && HiPart.getNode())
Dan Gohmanec51f642008-03-10 23:03:31 +00005499 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5500 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005501}
5502
5503/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5504/// INT_TO_FP operation of the specified operand when the target requests that
5505/// we expand it. At this point, we know that the result and operand types are
5506/// legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00005507SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5508 SDValue Op0,
5509 MVT DestVT) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005510 if (Op0.getValueType() == MVT::i32) {
5511 // simple 32-bit [signed|unsigned] integer to float/double expansion
5512
Chris Lattner0aeb1d02008-01-16 07:03:22 +00005513 // Get the stack frame index of a 8 byte buffer.
Dan Gohman8181bd12008-07-27 21:46:04 +00005514 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Chris Lattner0aeb1d02008-01-16 07:03:22 +00005515
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005516 // word offset constant for Hi/Lo address computation
Dan Gohman8181bd12008-07-27 21:46:04 +00005517 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005518 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman8181bd12008-07-27 21:46:04 +00005519 SDValue Hi = StackSlot;
5520 SDValue Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005521 if (TLI.isLittleEndian())
5522 std::swap(Hi, Lo);
5523
5524 // if signed map to unsigned space
Dan Gohman8181bd12008-07-27 21:46:04 +00005525 SDValue Op0Mapped;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005526 if (isSigned) {
5527 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman8181bd12008-07-27 21:46:04 +00005528 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005529 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5530 } else {
5531 Op0Mapped = Op0;
5532 }
5533 // store the lo of the constructed double - based on integer input
Dan Gohman8181bd12008-07-27 21:46:04 +00005534 SDValue Store1 = DAG.getStore(DAG.getEntryNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005535 Op0Mapped, Lo, NULL, 0);
5536 // initial hi portion of constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00005537 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005538 // store the hi of the constructed double - biased exponent
Dan Gohman8181bd12008-07-27 21:46:04 +00005539 SDValue Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005540 // load the constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00005541 SDValue Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005542 // FP constant to bias correct the final result
Dan Gohman8181bd12008-07-27 21:46:04 +00005543 SDValue Bias = DAG.getConstantFP(isSigned ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005544 BitsToDouble(0x4330000080000000ULL)
5545 : BitsToDouble(0x4330000000000000ULL),
5546 MVT::f64);
5547 // subtract the bias
Dan Gohman8181bd12008-07-27 21:46:04 +00005548 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005549 // final result
Dan Gohman8181bd12008-07-27 21:46:04 +00005550 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005551 // handle final rounding
5552 if (DestVT == MVT::f64) {
5553 // do nothing
5554 Result = Sub;
Duncan Sandsec142ee2008-06-08 20:54:56 +00005555 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner5872a362008-01-17 07:00:52 +00005556 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5557 DAG.getIntPtrConstant(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00005558 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenb17a7a22007-09-16 16:51:49 +00005559 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005560 }
5561 return Result;
5562 }
5563 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dan Gohman8181bd12008-07-27 21:46:04 +00005564 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005565
Dan Gohman8181bd12008-07-27 21:46:04 +00005566 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005567 DAG.getConstant(0, Op0.getValueType()),
5568 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005569 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5570 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005571 SignSet, Four, Zero);
5572
5573 // If the sign bit of the integer is set, the large number will be treated
5574 // as a negative number. To counteract this, the dynamic code adds an
5575 // offset depending on the data type.
5576 uint64_t FF;
Duncan Sands92c43912008-06-06 12:08:01 +00005577 switch (Op0.getValueType().getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005578 default: assert(0 && "Unsupported integer type!");
5579 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5580 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5581 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5582 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5583 }
5584 if (TLI.isLittleEndian()) FF <<= 32;
5585 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
5586
Dan Gohman8181bd12008-07-27 21:46:04 +00005587 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +00005588 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005589 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00005590 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00005591 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005592 if (DestVT == MVT::f32)
Dan Gohman12a9c082008-02-06 22:27:42 +00005593 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005594 PseudoSourceValue::getConstantPool(), 0,
5595 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005596 else {
Dan Gohman12a9c082008-02-06 22:27:42 +00005597 FudgeInReg =
5598 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5599 DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005600 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00005601 MVT::f32, false, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005602 }
5603
5604 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5605}
5606
5607/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5608/// *INT_TO_FP operation of the specified operand when the target requests that
5609/// we promote it. At this point, we know that the result and operand types are
5610/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5611/// operation that takes a larger input.
Dan Gohman8181bd12008-07-27 21:46:04 +00005612SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
5613 MVT DestVT,
5614 bool isSigned) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005615 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00005616 MVT NewInTy = LegalOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005617
5618 unsigned OpToUse = 0;
5619
5620 // Scan for the appropriate larger type to use.
5621 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00005622 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5623 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005624
5625 // If the target supports SINT_TO_FP of this type, use it.
5626 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5627 default: break;
5628 case TargetLowering::Legal:
5629 if (!TLI.isTypeLegal(NewInTy))
5630 break; // Can't use this datatype.
5631 // FALL THROUGH.
5632 case TargetLowering::Custom:
5633 OpToUse = ISD::SINT_TO_FP;
5634 break;
5635 }
5636 if (OpToUse) break;
5637 if (isSigned) continue;
5638
5639 // If the target supports UINT_TO_FP of this type, use it.
5640 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5641 default: break;
5642 case TargetLowering::Legal:
5643 if (!TLI.isTypeLegal(NewInTy))
5644 break; // Can't use this datatype.
5645 // FALL THROUGH.
5646 case TargetLowering::Custom:
5647 OpToUse = ISD::UINT_TO_FP;
5648 break;
5649 }
5650 if (OpToUse) break;
5651
5652 // Otherwise, try a larger type.
5653 }
5654
5655 // Okay, we found the operation and type to use. Zero extend our input to the
5656 // desired type then run the operation on it.
5657 return DAG.getNode(OpToUse, DestVT,
5658 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5659 NewInTy, LegalOp));
5660}
5661
5662/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5663/// FP_TO_*INT operation of the specified operand when the target requests that
5664/// we promote it. At this point, we know that the result and operand types are
5665/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5666/// operation that returns a larger result.
Dan Gohman8181bd12008-07-27 21:46:04 +00005667SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
5668 MVT DestVT,
5669 bool isSigned) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005670 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00005671 MVT NewOutTy = DestVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005672
5673 unsigned OpToUse = 0;
5674
5675 // Scan for the appropriate larger type to use.
5676 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00005677 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5678 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005679
5680 // If the target supports FP_TO_SINT returning this type, use it.
5681 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5682 default: break;
5683 case TargetLowering::Legal:
5684 if (!TLI.isTypeLegal(NewOutTy))
5685 break; // Can't use this datatype.
5686 // FALL THROUGH.
5687 case TargetLowering::Custom:
5688 OpToUse = ISD::FP_TO_SINT;
5689 break;
5690 }
5691 if (OpToUse) break;
5692
5693 // If the target supports FP_TO_UINT of this type, use it.
5694 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5695 default: break;
5696 case TargetLowering::Legal:
5697 if (!TLI.isTypeLegal(NewOutTy))
5698 break; // Can't use this datatype.
5699 // FALL THROUGH.
5700 case TargetLowering::Custom:
5701 OpToUse = ISD::FP_TO_UINT;
5702 break;
5703 }
5704 if (OpToUse) break;
5705
5706 // Otherwise, try a larger type.
5707 }
5708
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005709
5710 // Okay, we found the operation and type to use.
Dan Gohman8181bd12008-07-27 21:46:04 +00005711 SDValue Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sandsac496a12008-07-04 11:47:58 +00005712
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005713 // If the operation produces an invalid type, it must be custom lowered. Use
5714 // the target lowering hooks to expand it. Just keep the low part of the
5715 // expanded operation, we know that we're truncating anyway.
5716 if (getTypeAction(NewOutTy) == Expand) {
Gabor Greif1c80d112008-08-28 21:40:38 +00005717 Operation = SDValue(TLI.ReplaceNodeResults(Operation.getNode(), DAG), 0);
5718 assert(Operation.getNode() && "Didn't return anything");
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005719 }
Duncan Sandsac496a12008-07-04 11:47:58 +00005720
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005721 // Truncate the result of the extended FP_TO_*INT operation to the desired
5722 // size.
5723 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005724}
5725
5726/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5727///
Dan Gohman8181bd12008-07-27 21:46:04 +00005728SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00005729 MVT VT = Op.getValueType();
5730 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00005731 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands92c43912008-06-06 12:08:01 +00005732 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005733 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5734 case MVT::i16:
5735 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5736 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5737 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5738 case MVT::i32:
5739 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5740 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5741 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5742 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5743 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5744 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5745 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5746 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5747 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5748 case MVT::i64:
5749 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5750 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5751 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5752 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5753 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5754 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5755 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5756 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5757 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5758 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5759 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5760 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5761 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5762 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5763 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5764 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5765 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5766 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5767 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5768 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5769 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5770 }
5771}
5772
5773/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5774///
Dan Gohman8181bd12008-07-27 21:46:04 +00005775SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005776 switch (Opc) {
5777 default: assert(0 && "Cannot expand this yet!");
5778 case ISD::CTPOP: {
5779 static const uint64_t mask[6] = {
5780 0x5555555555555555ULL, 0x3333333333333333ULL,
5781 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5782 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5783 };
Duncan Sands92c43912008-06-06 12:08:01 +00005784 MVT VT = Op.getValueType();
5785 MVT ShVT = TLI.getShiftAmountTy();
5786 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005787 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5788 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Dan Gohman8181bd12008-07-27 21:46:04 +00005789 SDValue Tmp2 = DAG.getConstant(mask[i], VT);
5790 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005791 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5792 DAG.getNode(ISD::AND, VT,
5793 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5794 }
5795 return Op;
5796 }
5797 case ISD::CTLZ: {
5798 // for now, we do this:
5799 // x = x | (x >> 1);
5800 // x = x | (x >> 2);
5801 // ...
5802 // x = x | (x >>16);
5803 // x = x | (x >>32); // for 64-bit input
5804 // return popcount(~x);
5805 //
5806 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00005807 MVT VT = Op.getValueType();
5808 MVT ShVT = TLI.getShiftAmountTy();
5809 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005810 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005811 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005812 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5813 }
5814 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5815 return DAG.getNode(ISD::CTPOP, VT, Op);
5816 }
5817 case ISD::CTTZ: {
5818 // for now, we use: { return popcount(~x & (x - 1)); }
5819 // unless the target has ctlz but not ctpop, in which case we use:
5820 // { return 32 - nlz(~x & (x-1)); }
5821 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00005822 MVT VT = Op.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005823 SDValue Tmp2 = DAG.getConstant(~0ULL, VT);
5824 SDValue Tmp3 = DAG.getNode(ISD::AND, VT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005825 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5826 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5827 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5828 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5829 TLI.isOperationLegal(ISD::CTLZ, VT))
5830 return DAG.getNode(ISD::SUB, VT,
Duncan Sands92c43912008-06-06 12:08:01 +00005831 DAG.getConstant(VT.getSizeInBits(), VT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005832 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5833 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5834 }
5835 }
5836}
5837
Dan Gohman8181bd12008-07-27 21:46:04 +00005838/// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005839/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5840/// LegalizeNodes map is filled in for any results that are not expanded, the
5841/// ExpandedNodes map is filled in for any results that are expanded, and the
5842/// Lo/Hi values are returned.
Dan Gohman8181bd12008-07-27 21:46:04 +00005843void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands92c43912008-06-06 12:08:01 +00005844 MVT VT = Op.getValueType();
5845 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greif1c80d112008-08-28 21:40:38 +00005846 SDNode *Node = Op.getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005847 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00005848 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands92c43912008-06-06 12:08:01 +00005849 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005850
5851 // See if we already expanded it.
Dan Gohman8181bd12008-07-27 21:46:04 +00005852 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005853 = ExpandedNodes.find(Op);
5854 if (I != ExpandedNodes.end()) {
5855 Lo = I->second.first;
5856 Hi = I->second.second;
5857 return;
5858 }
5859
5860 switch (Node->getOpcode()) {
5861 case ISD::CopyFromReg:
5862 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen3d8578b2007-10-10 01:01:31 +00005863 case ISD::FP_ROUND_INREG:
5864 if (VT == MVT::ppcf128 &&
5865 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5866 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005867 SDValue SrcLo, SrcHi, Src;
Dale Johannesend3b6af32007-10-11 23:32:15 +00005868 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5869 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005870 SDValue Result = TLI.LowerOperation(
Dale Johannesend3b6af32007-10-11 23:32:15 +00005871 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005872 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
5873 Lo = Result.getNode()->getOperand(0);
5874 Hi = Result.getNode()->getOperand(1);
Dale Johannesen3d8578b2007-10-10 01:01:31 +00005875 break;
5876 }
5877 // fall through
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005878 default:
5879#ifndef NDEBUG
5880 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
5881#endif
5882 assert(0 && "Do not know how to expand this operator!");
5883 abort();
Dan Gohman550c8462008-02-27 01:52:30 +00005884 case ISD::EXTRACT_ELEMENT:
5885 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005886 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman550c8462008-02-27 01:52:30 +00005887 return ExpandOp(Hi, Lo, Hi);
Dan Gohman7e7aa2c2008-02-27 19:44:57 +00005888 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen2ff963d2007-10-31 00:32:36 +00005889 case ISD::EXTRACT_VECTOR_ELT:
5890 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5891 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5892 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5893 return ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005894 case ISD::UNDEF:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005895 Lo = DAG.getNode(ISD::UNDEF, NVT);
5896 Hi = DAG.getNode(ISD::UNDEF, NVT);
5897 break;
5898 case ISD::Constant: {
Duncan Sands92c43912008-06-06 12:08:01 +00005899 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman97f1f8e2008-03-03 22:20:46 +00005900 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5901 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5902 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005903 break;
5904 }
5905 case ISD::ConstantFP: {
5906 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesen2aef5692007-10-11 18:07:22 +00005907 if (CFP->getValueType(0) == MVT::ppcf128) {
5908 APInt api = CFP->getValueAPF().convertToAPInt();
5909 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5910 MVT::f64);
5911 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5912 MVT::f64);
5913 break;
5914 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005915 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
5916 if (getTypeAction(Lo.getValueType()) == Expand)
5917 ExpandOp(Lo, Lo, Hi);
5918 break;
5919 }
5920 case ISD::BUILD_PAIR:
5921 // Return the operands.
5922 Lo = Node->getOperand(0);
5923 Hi = Node->getOperand(1);
5924 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005925
5926 case ISD::MERGE_VALUES:
Chris Lattner1b66f822007-11-24 19:12:15 +00005927 if (Node->getNumValues() == 1) {
5928 ExpandOp(Op.getOperand(0), Lo, Hi);
5929 break;
5930 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005931 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif46bf5472008-08-26 22:36:50 +00005932 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005933 Op.getValue(1).getValueType() == MVT::Other &&
5934 "unhandled MERGE_VALUES");
5935 ExpandOp(Op.getOperand(0), Lo, Hi);
5936 // Remember that we legalized the chain.
5937 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5938 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005939
5940 case ISD::SIGN_EXTEND_INREG:
5941 ExpandOp(Node->getOperand(0), Lo, Hi);
5942 // sext_inreg the low part if needed.
5943 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5944
5945 // The high part gets the sign extension from the lo-part. This handles
5946 // things like sextinreg V:i64 from i8.
5947 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands92c43912008-06-06 12:08:01 +00005948 DAG.getConstant(NVT.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005949 TLI.getShiftAmountTy()));
5950 break;
5951
5952 case ISD::BSWAP: {
5953 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005954 SDValue TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005955 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5956 Lo = TempLo;
5957 break;
5958 }
5959
5960 case ISD::CTPOP:
5961 ExpandOp(Node->getOperand(0), Lo, Hi);
5962 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5963 DAG.getNode(ISD::CTPOP, NVT, Lo),
5964 DAG.getNode(ISD::CTPOP, NVT, Hi));
5965 Hi = DAG.getConstant(0, NVT);
5966 break;
5967
5968 case ISD::CTLZ: {
5969 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
5970 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005971 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5972 SDValue HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
5973 SDValue TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005974 ISD::SETNE);
Dan Gohman8181bd12008-07-27 21:46:04 +00005975 SDValue LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005976 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5977
5978 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5979 Hi = DAG.getConstant(0, NVT);
5980 break;
5981 }
5982
5983 case ISD::CTTZ: {
5984 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
5985 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005986 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5987 SDValue LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
5988 SDValue BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005989 ISD::SETNE);
Dan Gohman8181bd12008-07-27 21:46:04 +00005990 SDValue HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005991 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5992
5993 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5994 Hi = DAG.getConstant(0, NVT);
5995 break;
5996 }
5997
5998 case ISD::VAARG: {
Dan Gohman8181bd12008-07-27 21:46:04 +00005999 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6000 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006001 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
6002 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
6003
6004 // Remember that we legalized the chain.
6005 Hi = LegalizeOp(Hi);
6006 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006007 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006008 std::swap(Lo, Hi);
6009 break;
6010 }
6011
6012 case ISD::LOAD: {
6013 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00006014 SDValue Ch = LD->getChain(); // Legalize the chain.
6015 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006016 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman29c3cef2008-08-14 20:04:46 +00006017 const Value *SV = LD->getSrcValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006018 int SVOffset = LD->getSrcValueOffset();
6019 unsigned Alignment = LD->getAlignment();
6020 bool isVolatile = LD->isVolatile();
6021
6022 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman29c3cef2008-08-14 20:04:46 +00006023 Lo = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006024 isVolatile, Alignment);
6025 if (VT == MVT::f32 || VT == MVT::f64) {
6026 // f32->i32 or f64->i64 one to one expansion.
6027 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006028 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006029 // Recursively expand the new load.
6030 if (getTypeAction(NVT) == Expand)
6031 ExpandOp(Lo, Lo, Hi);
6032 break;
6033 }
6034
6035 // Increment the pointer to the other half.
Duncan Sands92c43912008-06-06 12:08:01 +00006036 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006037 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00006038 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006039 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00006040 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman29c3cef2008-08-14 20:04:46 +00006041 Hi = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006042 isVolatile, Alignment);
6043
6044 // Build a factor node to remember that this load is independent of the
6045 // other one.
Dan Gohman8181bd12008-07-27 21:46:04 +00006046 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006047 Hi.getValue(1));
6048
6049 // Remember that we legalized the chain.
6050 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006051 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006052 std::swap(Lo, Hi);
6053 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00006054 MVT EVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006055
Dale Johannesen2550e3a2007-10-19 20:29:00 +00006056 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6057 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006058 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dan Gohman29c3cef2008-08-14 20:04:46 +00006059 SDValue Load = DAG.getLoad(EVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006060 SVOffset, isVolatile, Alignment);
6061 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006062 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006063 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6064 break;
6065 }
6066
6067 if (EVT == NVT)
Dan Gohman29c3cef2008-08-14 20:04:46 +00006068 Lo = DAG.getLoad(NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006069 SVOffset, isVolatile, Alignment);
6070 else
Dan Gohman29c3cef2008-08-14 20:04:46 +00006071 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006072 SVOffset, EVT, isVolatile,
6073 Alignment);
6074
6075 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006076 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006077
6078 if (ExtType == ISD::SEXTLOAD) {
6079 // The high part is obtained by SRA'ing all but one of the bits of the
6080 // lo part.
Duncan Sands92c43912008-06-06 12:08:01 +00006081 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006082 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6083 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6084 } else if (ExtType == ISD::ZEXTLOAD) {
6085 // The high part is just a zero.
6086 Hi = DAG.getConstant(0, NVT);
6087 } else /* if (ExtType == ISD::EXTLOAD) */ {
6088 // The high part is undefined.
6089 Hi = DAG.getNode(ISD::UNDEF, NVT);
6090 }
6091 }
6092 break;
6093 }
6094 case ISD::AND:
6095 case ISD::OR:
6096 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +00006097 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006098 ExpandOp(Node->getOperand(0), LL, LH);
6099 ExpandOp(Node->getOperand(1), RL, RH);
6100 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6101 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6102 break;
6103 }
6104 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006105 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006106 ExpandOp(Node->getOperand(1), LL, LH);
6107 ExpandOp(Node->getOperand(2), RL, RH);
6108 if (getTypeAction(NVT) == Expand)
6109 NVT = TLI.getTypeToExpandTo(NVT);
6110 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
6111 if (VT != MVT::f32)
6112 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
6113 break;
6114 }
6115 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006116 SDValue TL, TH, FL, FH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006117 ExpandOp(Node->getOperand(2), TL, TH);
6118 ExpandOp(Node->getOperand(3), FL, FH);
6119 if (getTypeAction(NVT) == Expand)
6120 NVT = TLI.getTypeToExpandTo(NVT);
6121 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6122 Node->getOperand(1), TL, FL, Node->getOperand(4));
6123 if (VT != MVT::f32)
6124 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6125 Node->getOperand(1), TH, FH, Node->getOperand(4));
6126 break;
6127 }
6128 case ISD::ANY_EXTEND:
6129 // The low part is any extension of the input (which degenerates to a copy).
6130 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6131 // The high part is undefined.
6132 Hi = DAG.getNode(ISD::UNDEF, NVT);
6133 break;
6134 case ISD::SIGN_EXTEND: {
6135 // The low part is just a sign extension of the input (which degenerates to
6136 // a copy).
6137 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
6138
6139 // The high part is obtained by SRA'ing all but one of the bits of the lo
6140 // part.
Duncan Sands92c43912008-06-06 12:08:01 +00006141 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006142 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6143 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6144 break;
6145 }
6146 case ISD::ZERO_EXTEND:
6147 // The low part is just a zero extension of the input (which degenerates to
6148 // a copy).
6149 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
6150
6151 // The high part is just a zero.
6152 Hi = DAG.getConstant(0, NVT);
6153 break;
6154
6155 case ISD::TRUNCATE: {
6156 // The input value must be larger than this value. Expand *it*.
Dan Gohman8181bd12008-07-27 21:46:04 +00006157 SDValue NewLo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006158 ExpandOp(Node->getOperand(0), NewLo, Hi);
6159
6160 // The low part is now either the right size, or it is closer. If not the
6161 // right size, make an illegal truncate so we recursively expand it.
6162 if (NewLo.getValueType() != Node->getValueType(0))
6163 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6164 ExpandOp(NewLo, Lo, Hi);
6165 break;
6166 }
6167
6168 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006169 SDValue Tmp;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006170 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6171 // If the target wants to, allow it to lower this itself.
6172 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6173 case Expand: assert(0 && "cannot expand FP!");
6174 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6175 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6176 }
6177 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6178 }
6179
6180 // f32 / f64 must be expanded to i32 / i64.
6181 if (VT == MVT::f32 || VT == MVT::f64) {
6182 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6183 if (getTypeAction(NVT) == Expand)
6184 ExpandOp(Lo, Lo, Hi);
6185 break;
6186 }
6187
6188 // If source operand will be expanded to the same type as VT, i.e.
6189 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands92c43912008-06-06 12:08:01 +00006190 MVT VT0 = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006191 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6192 ExpandOp(Node->getOperand(0), Lo, Hi);
6193 break;
6194 }
6195
6196 // Turn this into a load/store pair by default.
Gabor Greif1c80d112008-08-28 21:40:38 +00006197 if (Tmp.getNode() == 0)
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00006198 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006199
6200 ExpandOp(Tmp, Lo, Hi);
6201 break;
6202 }
6203
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006204 case ISD::READCYCLECOUNTER: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006205 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6206 TargetLowering::Custom &&
6207 "Must custom expand ReadCycleCounter");
Dan Gohman8181bd12008-07-27 21:46:04 +00006208 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006209 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006210 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006211 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006212 LegalizeOp(Tmp.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006213 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006214 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006215
Dale Johannesenbc187662008-08-28 02:44:49 +00006216 // FIXME: should the LOAD_BIN and SWAP atomics get here too? Probably.
6217 case ISD::ATOMIC_CMP_SWAP_8:
6218 case ISD::ATOMIC_CMP_SWAP_16:
6219 case ISD::ATOMIC_CMP_SWAP_32:
6220 case ISD::ATOMIC_CMP_SWAP_64: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006221 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006222 assert(Tmp.getNode() && "Node must be custom expanded!");
Andrew Lenharth81580822008-03-05 01:15:49 +00006223 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006224 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Andrew Lenharth81580822008-03-05 01:15:49 +00006225 LegalizeOp(Tmp.getValue(1)));
6226 break;
6227 }
6228
6229
6230
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006231 // These operators cannot be expanded directly, emit them as calls to
6232 // library functions.
6233 case ISD::FP_TO_SINT: {
6234 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006235 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006236 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6237 case Expand: assert(0 && "cannot expand FP!");
6238 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6239 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6240 }
6241
6242 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6243
6244 // Now that the custom expander is done, expand the result, which is still
6245 // VT.
Gabor Greif1c80d112008-08-28 21:40:38 +00006246 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006247 ExpandOp(Op, Lo, Hi);
6248 break;
6249 }
6250 }
6251
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006252 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6253 VT);
6254 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6255 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006256 break;
6257 }
6258
6259 case ISD::FP_TO_UINT: {
6260 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006261 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006262 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6263 case Expand: assert(0 && "cannot expand FP!");
6264 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6265 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6266 }
6267
6268 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6269
6270 // Now that the custom expander is done, expand the result.
Gabor Greif1c80d112008-08-28 21:40:38 +00006271 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006272 ExpandOp(Op, Lo, Hi);
6273 break;
6274 }
6275 }
6276
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006277 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6278 VT);
6279 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6280 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006281 break;
6282 }
6283
6284 case ISD::SHL: {
6285 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006286 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006287 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006288 SDValue Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006289 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006290 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006291 // Now that the custom expander is done, expand the result, which is
6292 // still VT.
6293 ExpandOp(Op, Lo, Hi);
6294 break;
6295 }
6296 }
6297
6298 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6299 // this X << 1 as X+X.
6300 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman9d24dc72008-03-13 22:13:53 +00006301 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006302 TLI.isOperationLegal(ISD::ADDE, NVT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006303 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006304 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6305 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6306 LoOps[1] = LoOps[0];
6307 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6308
6309 HiOps[1] = HiOps[0];
6310 HiOps[2] = Lo.getValue(1);
6311 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6312 break;
6313 }
6314 }
6315
6316 // If we can emit an efficient shift operation, do so now.
6317 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
6318 break;
6319
6320 // If this target supports SHL_PARTS, use it.
6321 TargetLowering::LegalizeAction Action =
6322 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6323 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6324 Action == TargetLowering::Custom) {
6325 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6326 break;
6327 }
6328
6329 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006330 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006331 break;
6332 }
6333
6334 case ISD::SRA: {
6335 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006336 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006337 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006338 SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006339 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006340 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006341 // Now that the custom expander is done, expand the result, which is
6342 // still VT.
6343 ExpandOp(Op, Lo, Hi);
6344 break;
6345 }
6346 }
6347
6348 // If we can emit an efficient shift operation, do so now.
6349 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
6350 break;
6351
6352 // If this target supports SRA_PARTS, use it.
6353 TargetLowering::LegalizeAction Action =
6354 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6355 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6356 Action == TargetLowering::Custom) {
6357 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6358 break;
6359 }
6360
6361 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006362 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006363 break;
6364 }
6365
6366 case ISD::SRL: {
6367 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006368 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006369 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006370 SDValue Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006371 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006372 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006373 // Now that the custom expander is done, expand the result, which is
6374 // still VT.
6375 ExpandOp(Op, Lo, Hi);
6376 break;
6377 }
6378 }
6379
6380 // If we can emit an efficient shift operation, do so now.
6381 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
6382 break;
6383
6384 // If this target supports SRL_PARTS, use it.
6385 TargetLowering::LegalizeAction Action =
6386 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6387 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6388 Action == TargetLowering::Custom) {
6389 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6390 break;
6391 }
6392
6393 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006394 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006395 break;
6396 }
6397
6398 case ISD::ADD:
6399 case ISD::SUB: {
6400 // If the target wants to custom expand this, let them.
6401 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6402 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006403 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006404 if (Result.getNode()) {
Duncan Sands4c3885b2008-06-22 09:42:16 +00006405 ExpandOp(Result, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006406 break;
6407 }
6408 }
6409
6410 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00006411 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006412 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6413 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6414 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006415 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006416 LoOps[0] = LHSL;
6417 LoOps[1] = RHSL;
6418 HiOps[0] = LHSH;
6419 HiOps[1] = RHSH;
6420 if (Node->getOpcode() == ISD::ADD) {
6421 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6422 HiOps[2] = Lo.getValue(1);
6423 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6424 } else {
6425 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6426 HiOps[2] = Lo.getValue(1);
6427 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6428 }
6429 break;
6430 }
6431
6432 case ISD::ADDC:
6433 case ISD::SUBC: {
6434 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00006435 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006436 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6437 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6438 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006439 SDValue LoOps[2] = { LHSL, RHSL };
6440 SDValue HiOps[3] = { LHSH, RHSH };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006441
6442 if (Node->getOpcode() == ISD::ADDC) {
6443 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6444 HiOps[2] = Lo.getValue(1);
6445 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6446 } else {
6447 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6448 HiOps[2] = Lo.getValue(1);
6449 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6450 }
6451 // Remember that we legalized the flag.
6452 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6453 break;
6454 }
6455 case ISD::ADDE:
6456 case ISD::SUBE: {
6457 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00006458 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006459 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6460 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6461 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006462 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6463 SDValue HiOps[3] = { LHSH, RHSH };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006464
6465 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6466 HiOps[2] = Lo.getValue(1);
6467 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6468
6469 // Remember that we legalized the flag.
6470 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6471 break;
6472 }
6473 case ISD::MUL: {
6474 // If the target wants to custom expand this, let them.
6475 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006476 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006477 if (New.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006478 ExpandOp(New, Lo, Hi);
6479 break;
6480 }
6481 }
6482
6483 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6484 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman5a199552007-10-08 18:33:35 +00006485 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6486 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6487 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006488 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006489 ExpandOp(Node->getOperand(0), LL, LH);
6490 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman07961cd2008-02-25 21:11:39 +00006491 unsigned OuterBitSize = Op.getValueSizeInBits();
6492 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman5a199552007-10-08 18:33:35 +00006493 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6494 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman2594d942008-03-10 20:42:19 +00006495 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6496 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6497 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman5a199552007-10-08 18:33:35 +00006498 // The inputs are both zero-extended.
6499 if (HasUMUL_LOHI) {
6500 // We can emit a umul_lohi.
6501 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00006502 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00006503 break;
6504 }
6505 if (HasMULHU) {
6506 // We can emit a mulhu+mul.
6507 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6508 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6509 break;
6510 }
Dan Gohman5a199552007-10-08 18:33:35 +00006511 }
Dan Gohman07961cd2008-02-25 21:11:39 +00006512 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman5a199552007-10-08 18:33:35 +00006513 // The input values are both sign-extended.
6514 if (HasSMUL_LOHI) {
6515 // We can emit a smul_lohi.
6516 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00006517 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00006518 break;
6519 }
6520 if (HasMULHS) {
6521 // We can emit a mulhs+mul.
6522 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6523 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6524 break;
6525 }
6526 }
6527 if (HasUMUL_LOHI) {
6528 // Lo,Hi = umul LHS, RHS.
Dan Gohman8181bd12008-07-27 21:46:04 +00006529 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
Dan Gohman5a199552007-10-08 18:33:35 +00006530 DAG.getVTList(NVT, NVT), LL, RL);
6531 Lo = UMulLOHI;
6532 Hi = UMulLOHI.getValue(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006533 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6534 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6535 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6536 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6537 break;
6538 }
Dale Johannesen612c88b2007-10-24 22:26:08 +00006539 if (HasMULHU) {
6540 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6541 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6542 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6543 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6544 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6545 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6546 break;
6547 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006548 }
6549
Dan Gohman5a199552007-10-08 18:33:35 +00006550 // If nothing else, we can make a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006551 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006552 break;
6553 }
6554 case ISD::SDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006555 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006556 break;
6557 case ISD::UDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006558 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006559 break;
6560 case ISD::SREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006561 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006562 break;
6563 case ISD::UREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006564 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006565 break;
6566
6567 case ISD::FADD:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006568 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6569 RTLIB::ADD_F64,
6570 RTLIB::ADD_F80,
6571 RTLIB::ADD_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006572 Node, false, Hi);
6573 break;
6574 case ISD::FSUB:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006575 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6576 RTLIB::SUB_F64,
6577 RTLIB::SUB_F80,
6578 RTLIB::SUB_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006579 Node, false, Hi);
6580 break;
6581 case ISD::FMUL:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006582 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6583 RTLIB::MUL_F64,
6584 RTLIB::MUL_F80,
6585 RTLIB::MUL_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006586 Node, false, Hi);
6587 break;
6588 case ISD::FDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006589 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6590 RTLIB::DIV_F64,
6591 RTLIB::DIV_F80,
6592 RTLIB::DIV_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006593 Node, false, Hi);
6594 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006595 case ISD::FP_EXTEND: {
Dale Johannesen4c14d512007-10-12 01:37:08 +00006596 if (VT == MVT::ppcf128) {
6597 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6598 Node->getOperand(0).getValueType()==MVT::f64);
6599 const uint64_t zero = 0;
6600 if (Node->getOperand(0).getValueType()==MVT::f32)
6601 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6602 else
6603 Hi = Node->getOperand(0);
6604 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6605 break;
6606 }
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006607 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
6608 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
6609 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006610 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006611 }
6612 case ISD::FP_ROUND: {
6613 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
6614 VT);
6615 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
6616 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006617 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006618 }
Evan Cheng5316b392008-09-09 23:02:14 +00006619 case ISD::FSQRT:
6620 case ISD::FSIN:
6621 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00006622 case ISD::FLOG:
6623 case ISD::FLOG2:
6624 case ISD::FLOG10:
6625 case ISD::FEXP:
6626 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00006627 case ISD::FTRUNC:
6628 case ISD::FFLOOR:
6629 case ISD::FCEIL:
6630 case ISD::FRINT:
6631 case ISD::FNEARBYINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00006632 case ISD::FPOW:
6633 case ISD::FPOWI: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006634 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
6635 switch(Node->getOpcode()) {
6636 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00006637 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6638 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006639 break;
6640 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00006641 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6642 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006643 break;
6644 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00006645 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6646 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006647 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00006648 case ISD::FLOG:
6649 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
6650 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
6651 break;
6652 case ISD::FLOG2:
6653 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
6654 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
6655 break;
6656 case ISD::FLOG10:
6657 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
6658 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
6659 break;
6660 case ISD::FEXP:
6661 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
6662 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
6663 break;
6664 case ISD::FEXP2:
6665 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
6666 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
6667 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00006668 case ISD::FTRUNC:
6669 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
6670 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
6671 break;
6672 case ISD::FFLOOR:
6673 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
6674 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
6675 break;
6676 case ISD::FCEIL:
6677 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
6678 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
6679 break;
6680 case ISD::FRINT:
6681 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
6682 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
6683 break;
6684 case ISD::FNEARBYINT:
6685 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
6686 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
6687 break;
Evan Cheng5316b392008-09-09 23:02:14 +00006688 case ISD::FPOW:
6689 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
6690 RTLIB::POW_PPCF128);
6691 break;
6692 case ISD::FPOWI:
6693 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
6694 RTLIB::POWI_PPCF128);
6695 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006696 default: assert(0 && "Unreachable!");
6697 }
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006698 Lo = ExpandLibCall(LC, Node, false, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006699 break;
6700 }
6701 case ISD::FABS: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00006702 if (VT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006703 SDValue Tmp;
Dale Johannesen5707ef82007-10-12 19:02:17 +00006704 ExpandOp(Node->getOperand(0), Lo, Tmp);
6705 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6706 // lo = hi==fabs(hi) ? lo : -lo;
6707 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6708 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6709 DAG.getCondCode(ISD::SETEQ));
6710 break;
6711 }
Dan Gohman8181bd12008-07-27 21:46:04 +00006712 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006713 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6714 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6715 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6716 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6717 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6718 if (getTypeAction(NVT) == Expand)
6719 ExpandOp(Lo, Lo, Hi);
6720 break;
6721 }
6722 case ISD::FNEG: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00006723 if (VT == MVT::ppcf128) {
6724 ExpandOp(Node->getOperand(0), Lo, Hi);
6725 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6726 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6727 break;
6728 }
Dan Gohman8181bd12008-07-27 21:46:04 +00006729 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006730 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6731 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6732 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6733 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6734 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6735 if (getTypeAction(NVT) == Expand)
6736 ExpandOp(Lo, Lo, Hi);
6737 break;
6738 }
6739 case ISD::FCOPYSIGN: {
6740 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6741 if (getTypeAction(NVT) == Expand)
6742 ExpandOp(Lo, Lo, Hi);
6743 break;
6744 }
6745 case ISD::SINT_TO_FP:
6746 case ISD::UINT_TO_FP: {
6747 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands92c43912008-06-06 12:08:01 +00006748 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6a779c82008-03-18 17:28:38 +00006749
6750 // Promote the operand if needed. Do this before checking for
6751 // ppcf128 so conversions of i16 and i8 work.
6752 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006753 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesen6a779c82008-03-18 17:28:38 +00006754 Tmp = isSigned
6755 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6756 DAG.getValueType(SrcVT))
6757 : DAG.getZeroExtendInReg(Tmp, SrcVT);
Gabor Greif1c80d112008-08-28 21:40:38 +00006758 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesen6a779c82008-03-18 17:28:38 +00006759 SrcVT = Node->getOperand(0).getValueType();
6760 }
6761
Dan Gohmanec51f642008-03-10 23:03:31 +00006762 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohman84d00962008-02-25 21:39:34 +00006763 static const uint64_t zero = 0;
Dale Johannesen4c14d512007-10-12 01:37:08 +00006764 if (isSigned) {
6765 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6766 Node->getOperand(0)));
6767 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6768 } else {
Dan Gohman84d00962008-02-25 21:39:34 +00006769 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesen4c14d512007-10-12 01:37:08 +00006770 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6771 Node->getOperand(0)));
6772 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6773 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00006774 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen4c14d512007-10-12 01:37:08 +00006775 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6776 DAG.getConstant(0, MVT::i32),
6777 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6778 DAG.getConstantFP(
6779 APFloat(APInt(128, 2, TwoE32)),
6780 MVT::ppcf128)),
6781 Hi,
6782 DAG.getCondCode(ISD::SETLT)),
6783 Lo, Hi);
6784 }
6785 break;
6786 }
Dale Johannesen9aec5b22007-10-12 17:52:03 +00006787 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6788 // si64->ppcf128 done by libcall, below
Dan Gohman84d00962008-02-25 21:39:34 +00006789 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen9aec5b22007-10-12 17:52:03 +00006790 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6791 Lo, Hi);
6792 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6793 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6794 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6795 DAG.getConstant(0, MVT::i64),
6796 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6797 DAG.getConstantFP(
6798 APFloat(APInt(128, 2, TwoE64)),
6799 MVT::ppcf128)),
6800 Hi,
6801 DAG.getCondCode(ISD::SETLT)),
6802 Lo, Hi);
6803 break;
6804 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006805
Dan Gohmanec51f642008-03-10 23:03:31 +00006806 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6807 Node->getOperand(0));
Evan Chenga8740032008-04-01 01:50:16 +00006808 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng4a2f6df2008-04-01 01:51:26 +00006809 // float to i32 etc. can be 'expanded' to a single node.
Evan Chenga8740032008-04-01 01:50:16 +00006810 ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006811 break;
6812 }
6813 }
6814
6815 // Make sure the resultant values have been legalized themselves, unless this
6816 // is a type that requires multi-step expansion.
6817 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6818 Lo = LegalizeOp(Lo);
Gabor Greif1c80d112008-08-28 21:40:38 +00006819 if (Hi.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006820 // Don't legalize the high part if it is expanded to a single node.
6821 Hi = LegalizeOp(Hi);
6822 }
6823
6824 // Remember in a map if the values will be reused later.
Dan Gohman55d19662008-07-07 17:46:23 +00006825 bool isNew =
6826 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006827 assert(isNew && "Value already expanded?!?");
6828}
6829
6830/// SplitVectorOp - Given an operand of vector type, break it down into
6831/// two smaller values, still of vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00006832void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
6833 SDValue &Hi) {
Duncan Sands92c43912008-06-06 12:08:01 +00006834 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greif1c80d112008-08-28 21:40:38 +00006835 SDNode *Node = Op.getNode();
Duncan Sands92c43912008-06-06 12:08:01 +00006836 unsigned NumElements = Op.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006837 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman4a365ad2007-11-15 21:15:26 +00006838
Duncan Sands92c43912008-06-06 12:08:01 +00006839 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman4a365ad2007-11-15 21:15:26 +00006840
6841 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6842 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6843
Duncan Sands92c43912008-06-06 12:08:01 +00006844 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6845 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00006846
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006847 // See if we already split it.
Dan Gohman8181bd12008-07-27 21:46:04 +00006848 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006849 = SplitNodes.find(Op);
6850 if (I != SplitNodes.end()) {
6851 Lo = I->second.first;
6852 Hi = I->second.second;
6853 return;
6854 }
6855
6856 switch (Node->getOpcode()) {
6857 default:
6858#ifndef NDEBUG
6859 Node->dump(&DAG);
6860#endif
6861 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattner3dec33a2007-11-19 20:21:32 +00006862 case ISD::UNDEF:
6863 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6864 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6865 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006866 case ISD::BUILD_PAIR:
6867 Lo = Node->getOperand(0);
6868 Hi = Node->getOperand(1);
6869 break;
Dan Gohmanb3228dc2007-09-28 23:53:40 +00006870 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman7c9e4b72008-04-25 18:07:40 +00006871 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6872 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006873 unsigned Index = Idx->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00006874 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00006875 if (Index < NewNumElts_Lo)
6876 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6877 DAG.getIntPtrConstant(Index));
6878 else
6879 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6880 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6881 break;
6882 }
Dan Gohman8181bd12008-07-27 21:46:04 +00006883 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman7c9e4b72008-04-25 18:07:40 +00006884 Node->getOperand(1),
6885 Node->getOperand(2));
6886 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohmanb3228dc2007-09-28 23:53:40 +00006887 break;
6888 }
Chris Lattner587c46d2007-11-19 21:16:54 +00006889 case ISD::VECTOR_SHUFFLE: {
6890 // Build the low part.
Dan Gohman8181bd12008-07-27 21:46:04 +00006891 SDValue Mask = Node->getOperand(2);
6892 SmallVector<SDValue, 8> Ops;
Duncan Sands92c43912008-06-06 12:08:01 +00006893 MVT PtrVT = TLI.getPointerTy();
Chris Lattner587c46d2007-11-19 21:16:54 +00006894
6895 // Insert all of the elements from the input that are needed. We use
6896 // buildvector of extractelement here because the input vectors will have
6897 // to be legalized, so this makes the code simpler.
6898 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006899 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00006900 if (IdxNode.getOpcode() == ISD::UNDEF) {
6901 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6902 continue;
6903 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006904 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00006905 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00006906 if (Idx >= NumElements) {
6907 InVec = Node->getOperand(1);
6908 Idx -= NumElements;
6909 }
6910 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6911 DAG.getConstant(Idx, PtrVT)));
6912 }
6913 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6914 Ops.clear();
6915
6916 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006917 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00006918 if (IdxNode.getOpcode() == ISD::UNDEF) {
6919 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6920 continue;
6921 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006922 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00006923 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00006924 if (Idx >= NumElements) {
6925 InVec = Node->getOperand(1);
6926 Idx -= NumElements;
6927 }
6928 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6929 DAG.getConstant(Idx, PtrVT)));
6930 }
Mon P Wang2e89b112008-07-25 01:30:26 +00006931 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00006932 break;
6933 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006934 case ISD::BUILD_VECTOR: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006935 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman4a365ad2007-11-15 21:15:26 +00006936 Node->op_begin()+NewNumElts_Lo);
6937 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006938
Dan Gohman8181bd12008-07-27 21:46:04 +00006939 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006940 Node->op_end());
Nate Begeman4a365ad2007-11-15 21:15:26 +00006941 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006942 break;
6943 }
6944 case ISD::CONCAT_VECTORS: {
Nate Begeman4a365ad2007-11-15 21:15:26 +00006945 // FIXME: Handle non-power-of-two vectors?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006946 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6947 if (NewNumSubvectors == 1) {
6948 Lo = Node->getOperand(0);
6949 Hi = Node->getOperand(1);
6950 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00006951 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006952 Node->op_begin()+NewNumSubvectors);
Nate Begeman4a365ad2007-11-15 21:15:26 +00006953 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006954
Dan Gohman8181bd12008-07-27 21:46:04 +00006955 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006956 Node->op_end());
Nate Begeman4a365ad2007-11-15 21:15:26 +00006957 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006958 }
6959 break;
6960 }
Dan Gohmand5d4c872007-10-17 14:48:28 +00006961 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006962 SDValue Cond = Node->getOperand(0);
Dan Gohmand5d4c872007-10-17 14:48:28 +00006963
Dan Gohman8181bd12008-07-27 21:46:04 +00006964 SDValue LL, LH, RL, RH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00006965 SplitVectorOp(Node->getOperand(1), LL, LH);
6966 SplitVectorOp(Node->getOperand(2), RL, RH);
6967
Duncan Sands92c43912008-06-06 12:08:01 +00006968 if (Cond.getValueType().isVector()) {
Dan Gohmand5d4c872007-10-17 14:48:28 +00006969 // Handle a vector merge.
Dan Gohman8181bd12008-07-27 21:46:04 +00006970 SDValue CL, CH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00006971 SplitVectorOp(Cond, CL, CH);
Nate Begeman4a365ad2007-11-15 21:15:26 +00006972 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6973 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00006974 } else {
6975 // Handle a simple select with vector operands.
Nate Begeman4a365ad2007-11-15 21:15:26 +00006976 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6977 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00006978 }
6979 break;
6980 }
Chris Lattnerc7471452008-06-30 02:43:01 +00006981 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006982 SDValue CondLHS = Node->getOperand(0);
6983 SDValue CondRHS = Node->getOperand(1);
6984 SDValue CondCode = Node->getOperand(4);
Chris Lattnerc7471452008-06-30 02:43:01 +00006985
Dan Gohman8181bd12008-07-27 21:46:04 +00006986 SDValue LL, LH, RL, RH;
Chris Lattnerc7471452008-06-30 02:43:01 +00006987 SplitVectorOp(Node->getOperand(2), LL, LH);
6988 SplitVectorOp(Node->getOperand(3), RL, RH);
6989
6990 // Handle a simple select with vector operands.
6991 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6992 LL, RL, CondCode);
6993 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
6994 LH, RH, CondCode);
6995 break;
6996 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00006997 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006998 SDValue LL, LH, RL, RH;
Nate Begeman9a1ce152008-05-12 19:40:03 +00006999 SplitVectorOp(Node->getOperand(0), LL, LH);
7000 SplitVectorOp(Node->getOperand(1), RL, RH);
7001 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
7002 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
7003 break;
7004 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007005 case ISD::ADD:
7006 case ISD::SUB:
7007 case ISD::MUL:
7008 case ISD::FADD:
7009 case ISD::FSUB:
7010 case ISD::FMUL:
7011 case ISD::SDIV:
7012 case ISD::UDIV:
7013 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007014 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007015 case ISD::AND:
7016 case ISD::OR:
Dan Gohman9e1b7ee2007-11-19 15:15:03 +00007017 case ISD::XOR:
7018 case ISD::UREM:
7019 case ISD::SREM:
7020 case ISD::FREM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007021 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007022 SplitVectorOp(Node->getOperand(0), LL, LH);
7023 SplitVectorOp(Node->getOperand(1), RL, RH);
7024
Nate Begeman4a365ad2007-11-15 21:15:26 +00007025 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
7026 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007027 break;
7028 }
Dan Gohman29c3cef2008-08-14 20:04:46 +00007029 case ISD::FP_ROUND:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007030 case ISD::FPOWI: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007031 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007032 SplitVectorOp(Node->getOperand(0), L, H);
7033
Nate Begeman4a365ad2007-11-15 21:15:26 +00007034 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
7035 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman6d05cac2007-10-11 23:57:53 +00007036 break;
7037 }
7038 case ISD::CTTZ:
7039 case ISD::CTLZ:
7040 case ISD::CTPOP:
7041 case ISD::FNEG:
7042 case ISD::FABS:
7043 case ISD::FSQRT:
7044 case ISD::FSIN:
Nate Begeman78246ca2007-11-17 03:58:34 +00007045 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007046 case ISD::FLOG:
7047 case ISD::FLOG2:
7048 case ISD::FLOG10:
7049 case ISD::FEXP:
7050 case ISD::FEXP2:
Nate Begeman78246ca2007-11-17 03:58:34 +00007051 case ISD::FP_TO_SINT:
7052 case ISD::FP_TO_UINT:
7053 case ISD::SINT_TO_FP:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007054 case ISD::UINT_TO_FP:
7055 case ISD::TRUNCATE:
7056 case ISD::ANY_EXTEND:
7057 case ISD::SIGN_EXTEND:
7058 case ISD::ZERO_EXTEND:
7059 case ISD::FP_EXTEND: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007060 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007061 SplitVectorOp(Node->getOperand(0), L, H);
7062
Nate Begeman4a365ad2007-11-15 21:15:26 +00007063 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
7064 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman6d05cac2007-10-11 23:57:53 +00007065 break;
7066 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007067 case ISD::LOAD: {
7068 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007069 SDValue Ch = LD->getChain();
7070 SDValue Ptr = LD->getBasePtr();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007071 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007072 const Value *SV = LD->getSrcValue();
7073 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007074 MVT MemoryVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007075 unsigned Alignment = LD->getAlignment();
7076 bool isVolatile = LD->isVolatile();
7077
Dan Gohman29c3cef2008-08-14 20:04:46 +00007078 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7079 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7080
7081 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7082 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7083 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7084
7085 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType,
7086 NewVT_Lo, Ch, Ptr, Offset,
7087 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7088 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007089 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00007090 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007091 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00007092 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman29c3cef2008-08-14 20:04:46 +00007093 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType,
7094 NewVT_Hi, Ch, Ptr, Offset,
7095 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007096
7097 // Build a factor node to remember that this load is independent of the
7098 // other one.
Dan Gohman8181bd12008-07-27 21:46:04 +00007099 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007100 Hi.getValue(1));
7101
7102 // Remember that we legalized the chain.
7103 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
7104 break;
7105 }
7106 case ISD::BIT_CONVERT: {
7107 // We know the result is a vector. The input may be either a vector or a
7108 // scalar value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007109 SDValue InOp = Node->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007110 if (!InOp.getValueType().isVector() ||
7111 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007112 // The input is a scalar or single-element vector.
7113 // Lower to a store/load so that it can be split.
7114 // FIXME: this could be improved probably.
Mon P Wang36b59ac2008-07-15 05:28:34 +00007115 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7116 Op.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00007117 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greif1c80d112008-08-28 21:40:38 +00007118 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007119
Dan Gohman8181bd12008-07-27 21:46:04 +00007120 SDValue St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00007121 InOp, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007122 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman12a9c082008-02-06 22:27:42 +00007123 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007124 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007125 }
7126 // Split the vector and convert each of the pieces now.
7127 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00007128 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7129 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007130 break;
7131 }
7132 }
7133
7134 // Remember in a map if the values will be reused later.
7135 bool isNew =
7136 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
7137 assert(isNew && "Value already split?!?");
7138}
7139
7140
7141/// ScalarizeVectorOp - Given an operand of single-element vector type
7142/// (e.g. v1f32), convert it into the equivalent operation that returns a
7143/// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007144SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00007145 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007146 SDNode *Node = Op.getNode();
Duncan Sands92c43912008-06-06 12:08:01 +00007147 MVT NewVT = Op.getValueType().getVectorElementType();
7148 assert(Op.getValueType().getVectorNumElements() == 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007149
7150 // See if we already scalarized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007151 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007152 if (I != ScalarizedNodes.end()) return I->second;
7153
Dan Gohman8181bd12008-07-27 21:46:04 +00007154 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007155 switch (Node->getOpcode()) {
7156 default:
7157#ifndef NDEBUG
7158 Node->dump(&DAG); cerr << "\n";
7159#endif
7160 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7161 case ISD::ADD:
7162 case ISD::FADD:
7163 case ISD::SUB:
7164 case ISD::FSUB:
7165 case ISD::MUL:
7166 case ISD::FMUL:
7167 case ISD::SDIV:
7168 case ISD::UDIV:
7169 case ISD::FDIV:
7170 case ISD::SREM:
7171 case ISD::UREM:
7172 case ISD::FREM:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007173 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007174 case ISD::AND:
7175 case ISD::OR:
7176 case ISD::XOR:
7177 Result = DAG.getNode(Node->getOpcode(),
7178 NewVT,
7179 ScalarizeVectorOp(Node->getOperand(0)),
7180 ScalarizeVectorOp(Node->getOperand(1)));
7181 break;
7182 case ISD::FNEG:
7183 case ISD::FABS:
7184 case ISD::FSQRT:
7185 case ISD::FSIN:
7186 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007187 case ISD::FLOG:
7188 case ISD::FLOG2:
7189 case ISD::FLOG10:
7190 case ISD::FEXP:
7191 case ISD::FEXP2:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007192 case ISD::FP_TO_SINT:
7193 case ISD::FP_TO_UINT:
7194 case ISD::SINT_TO_FP:
7195 case ISD::UINT_TO_FP:
7196 case ISD::SIGN_EXTEND:
7197 case ISD::ZERO_EXTEND:
7198 case ISD::ANY_EXTEND:
7199 case ISD::TRUNCATE:
7200 case ISD::FP_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007201 Result = DAG.getNode(Node->getOpcode(),
7202 NewVT,
7203 ScalarizeVectorOp(Node->getOperand(0)));
7204 break;
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007205 case ISD::FPOWI:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007206 case ISD::FP_ROUND:
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007207 Result = DAG.getNode(Node->getOpcode(),
7208 NewVT,
7209 ScalarizeVectorOp(Node->getOperand(0)),
7210 Node->getOperand(1));
7211 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007212 case ISD::LOAD: {
7213 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007214 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7215 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman29c3cef2008-08-14 20:04:46 +00007216 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007217 const Value *SV = LD->getSrcValue();
7218 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007219 MVT MemoryVT = LD->getMemoryVT();
7220 unsigned Alignment = LD->getAlignment();
7221 bool isVolatile = LD->isVolatile();
7222
7223 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7224 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7225
7226 Result = DAG.getLoad(ISD::UNINDEXED, ExtType,
7227 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7228 MemoryVT.getVectorElementType(),
7229 isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007230
7231 // Remember that we legalized the chain.
7232 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7233 break;
7234 }
7235 case ISD::BUILD_VECTOR:
7236 Result = Node->getOperand(0);
7237 break;
7238 case ISD::INSERT_VECTOR_ELT:
7239 // Returning the inserted scalar element.
7240 Result = Node->getOperand(1);
7241 break;
7242 case ISD::CONCAT_VECTORS:
7243 assert(Node->getOperand(0).getValueType() == NewVT &&
7244 "Concat of non-legal vectors not yet supported!");
7245 Result = Node->getOperand(0);
7246 break;
7247 case ISD::VECTOR_SHUFFLE: {
7248 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007249 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007250 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007251 Result = ScalarizeVectorOp(Node->getOperand(1));
7252 else
7253 Result = ScalarizeVectorOp(Node->getOperand(0));
7254 break;
7255 }
7256 case ISD::EXTRACT_SUBVECTOR:
7257 Result = Node->getOperand(0);
7258 assert(Result.getValueType() == NewVT);
7259 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007260 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007261 SDValue Op0 = Op.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007262 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng2cc16e72008-05-16 17:19:05 +00007263 Op0 = ScalarizeVectorOp(Op0);
7264 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007265 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007266 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007267 case ISD::SELECT:
7268 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
7269 ScalarizeVectorOp(Op.getOperand(1)),
7270 ScalarizeVectorOp(Op.getOperand(2)));
7271 break;
Chris Lattnerc7471452008-06-30 02:43:01 +00007272 case ISD::SELECT_CC:
7273 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7274 Node->getOperand(1),
7275 ScalarizeVectorOp(Op.getOperand(2)),
7276 ScalarizeVectorOp(Op.getOperand(3)),
7277 Node->getOperand(4));
7278 break;
Nate Begeman78ca4f92008-05-12 23:09:43 +00007279 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007280 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7281 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Nate Begeman78ca4f92008-05-12 23:09:43 +00007282 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7283 Op.getOperand(2));
7284 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7285 DAG.getConstant(-1ULL, NewVT),
7286 DAG.getConstant(0ULL, NewVT));
7287 break;
7288 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007289 }
7290
7291 if (TLI.isTypeLegal(NewVT))
7292 Result = LegalizeOp(Result);
7293 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7294 assert(isNew && "Value already scalarized?");
7295 return Result;
7296}
7297
7298
7299// SelectionDAG::Legalize - This is the entry point for the file.
7300//
7301void SelectionDAG::Legalize() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007302 /// run - This is the main entry point to this class.
7303 ///
7304 SelectionDAGLegalize(*this).LegalizeDAG();
7305}
7306