blob: 9fa06280294981abc01b4214d4a9a567f41ce770 [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,
Dan Gohman4fc03742008-10-01 15:07:49 +0000166 /// the LegalizedNodes map is filled in for any results that are not expanded,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167 /// 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 Gohman2d2a7a32008-09-30 18:30:35 +0000283 DAG.AssignTopologicalOrder();
284 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
285 E = prior(DAG.allnodes_end()); I != next(E); ++I)
286 HandleOp(SDValue(I, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287
288 // Finally, it's possible the root changed. Get the new root.
Dan Gohman8181bd12008-07-27 21:46:04 +0000289 SDValue OldRoot = DAG.getRoot();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000290 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
291 DAG.setRoot(LegalizedNodes[OldRoot]);
292
293 ExpandedNodes.clear();
294 LegalizedNodes.clear();
295 PromotedNodes.clear();
296 SplitNodes.clear();
297 ScalarizedNodes.clear();
298
299 // Remove dead nodes now.
300 DAG.RemoveDeadNodes();
301}
302
303
304/// FindCallEndFromCallStart - Given a chained node that is part of a call
305/// sequence, find the CALLSEQ_END node that terminates the call sequence.
306static SDNode *FindCallEndFromCallStart(SDNode *Node) {
307 if (Node->getOpcode() == ISD::CALLSEQ_END)
308 return Node;
309 if (Node->use_empty())
310 return 0; // No CallSeqEnd
311
312 // The chain is usually at the end.
Dan Gohman8181bd12008-07-27 21:46:04 +0000313 SDValue TheChain(Node, Node->getNumValues()-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000314 if (TheChain.getValueType() != MVT::Other) {
315 // Sometimes it's at the beginning.
Dan Gohman8181bd12008-07-27 21:46:04 +0000316 TheChain = SDValue(Node, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317 if (TheChain.getValueType() != MVT::Other) {
318 // Otherwise, hunt for it.
319 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
320 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000321 TheChain = SDValue(Node, i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 break;
323 }
324
325 // Otherwise, we walked into a node without a chain.
326 if (TheChain.getValueType() != MVT::Other)
327 return 0;
328 }
329 }
330
331 for (SDNode::use_iterator UI = Node->use_begin(),
332 E = Node->use_end(); UI != E; ++UI) {
333
334 // Make sure to only follow users of our token chain.
Dan Gohman0c97f1d2008-07-27 20:43:25 +0000335 SDNode *User = *UI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000336 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
337 if (User->getOperand(i) == TheChain)
338 if (SDNode *Result = FindCallEndFromCallStart(User))
339 return Result;
340 }
341 return 0;
342}
343
344/// FindCallStartFromCallEnd - Given a chained node that is part of a call
345/// sequence, find the CALLSEQ_START node that initiates the call sequence.
346static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
347 assert(Node && "Didn't find callseq_start for a call??");
348 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
349
350 assert(Node->getOperand(0).getValueType() == MVT::Other &&
351 "Node doesn't have a token chain argument!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000352 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000353}
354
355/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
356/// see if any uses can reach Dest. If no dest operands can get to dest,
357/// legalize them, legalize ourself, and return false, otherwise, return true.
358///
359/// Keep track of the nodes we fine that actually do lead to Dest in
360/// NodesLeadingTo. This avoids retraversing them exponential number of times.
361///
362bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
363 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
364 if (N == Dest) return true; // N certainly leads to Dest :)
365
366 // If we've already processed this node and it does lead to Dest, there is no
367 // need to reprocess it.
368 if (NodesLeadingTo.count(N)) return true;
369
370 // If the first result of this node has been already legalized, then it cannot
371 // reach N.
372 switch (getTypeAction(N->getValueType(0))) {
373 case Legal:
Dan Gohman8181bd12008-07-27 21:46:04 +0000374 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 break;
376 case Promote:
Dan Gohman8181bd12008-07-27 21:46:04 +0000377 if (PromotedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378 break;
379 case Expand:
Dan Gohman8181bd12008-07-27 21:46:04 +0000380 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381 break;
382 }
383
384 // Okay, this node has not already been legalized. Check and legalize all
385 // operands. If none lead to Dest, then we can legalize this node.
386 bool OperandsLeadToDest = false;
387 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
388 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greif1c80d112008-08-28 21:40:38 +0000389 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390
391 if (OperandsLeadToDest) {
392 NodesLeadingTo.insert(N);
393 return true;
394 }
395
396 // Okay, this node looks safe, legalize it and return false.
Dan Gohman8181bd12008-07-27 21:46:04 +0000397 HandleOp(SDValue(N, 0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398 return false;
399}
400
401/// HandleOp - Legalize, Promote, or Expand the specified operand as
402/// appropriate for its type.
Dan Gohman8181bd12008-07-27 21:46:04 +0000403void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000404 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000405 switch (getTypeAction(VT)) {
406 default: assert(0 && "Bad type action!");
407 case Legal: (void)LegalizeOp(Op); break;
408 case Promote: (void)PromoteOp(Op); break;
409 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +0000410 if (!VT.isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 // If this is an illegal scalar, expand it into its two component
412 // pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +0000413 SDValue X, Y;
Chris Lattnerdad577b2007-08-25 01:00:22 +0000414 if (Op.getOpcode() == ISD::TargetConstant)
415 break; // Allow illegal target nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000416 ExpandOp(Op, X, Y);
Duncan Sands92c43912008-06-06 12:08:01 +0000417 } else if (VT.getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 // If this is an illegal single element vector, convert it to a
419 // scalar operation.
420 (void)ScalarizeVectorOp(Op);
421 } else {
422 // Otherwise, this is an illegal multiple element vector.
423 // Split it in half and legalize both parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000424 SDValue X, Y;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425 SplitVectorOp(Op, X, Y);
426 }
427 break;
428 }
429}
430
431/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
432/// a load from the constant pool.
Dan Gohman8181bd12008-07-27 21:46:04 +0000433static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434 SelectionDAG &DAG, TargetLowering &TLI) {
435 bool Extend = false;
436
437 // If a FP immediate is precise when represented as a float and if the
438 // target can do an extending load from float to double, we put it into
439 // the constant pool as a float, even if it's is statically typed as a
Chris Lattnere718cc52008-03-05 06:46:58 +0000440 // double. This shrinks FP constants and canonicalizes them for targets where
441 // an FP extending load is the same cost as a normal load (such as on the x87
442 // fp stack or PPC FP unit).
Duncan Sands92c43912008-06-06 12:08:01 +0000443 MVT VT = CFP->getValueType(0);
Dan Gohmanc1f3a072008-09-12 18:08:03 +0000444 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445 if (!UseCP) {
Dale Johannesen2fc20782007-09-14 22:26:36 +0000446 if (VT!=MVT::f64 && VT!=MVT::f32)
447 assert(0 && "Invalid type expansion");
Dale Johannesen49cc7ce2008-10-09 18:53:47 +0000448 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Cheng354be062008-03-04 08:05:30 +0000449 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 }
451
Duncan Sands92c43912008-06-06 12:08:01 +0000452 MVT OrigVT = VT;
453 MVT SVT = VT;
Evan Cheng354be062008-03-04 08:05:30 +0000454 while (SVT != MVT::f32) {
Duncan Sands92c43912008-06-06 12:08:01 +0000455 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Cheng354be062008-03-04 08:05:30 +0000456 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
457 // Only do this if the target has a native EXTLOAD instruction from
458 // smaller type.
Evan Cheng08c171a2008-10-14 21:26:46 +0000459 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattnere718cc52008-03-05 06:46:58 +0000460 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands92c43912008-06-06 12:08:01 +0000461 const Type *SType = SVT.getTypeForMVT();
Evan Cheng354be062008-03-04 08:05:30 +0000462 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
463 VT = SVT;
464 Extend = true;
465 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466 }
467
Dan Gohman8181bd12008-07-27 21:46:04 +0000468 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +0000469 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Cheng354be062008-03-04 08:05:30 +0000470 if (Extend)
471 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohmanfb020b62008-02-07 18:41:25 +0000472 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman04637d12008-09-16 22:05:41 +0000473 0, VT, false, Alignment);
Evan Cheng354be062008-03-04 08:05:30 +0000474 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +0000475 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000476}
477
478
479/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
480/// operations.
481static
Dan Gohman8181bd12008-07-27 21:46:04 +0000482SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
483 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands92c43912008-06-06 12:08:01 +0000484 MVT VT = Node->getValueType(0);
485 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
487 "fcopysign expansion only supported for f32 and f64");
Duncan Sands92c43912008-06-06 12:08:01 +0000488 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489
490 // First get the sign bit of second operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000491 SDValue Mask1 = (SrcVT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000492 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
493 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
494 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Dan Gohman8181bd12008-07-27 21:46:04 +0000495 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000496 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
497 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands92c43912008-06-06 12:08:01 +0000498 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499 if (SizeDiff > 0) {
500 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
501 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
502 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
Chris Lattnere6fa1452008-07-10 23:46:13 +0000503 } else if (SizeDiff < 0) {
504 SignBit = DAG.getNode(ISD::ZERO_EXTEND, NVT, SignBit);
505 SignBit = DAG.getNode(ISD::SHL, NVT, SignBit,
506 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
507 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508
509 // Clear the sign bit of first operand.
Dan Gohman8181bd12008-07-27 21:46:04 +0000510 SDValue Mask2 = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
512 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
513 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Dan Gohman8181bd12008-07-27 21:46:04 +0000514 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
516
517 // Or the value with the sign bit.
518 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
519 return Result;
520}
521
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000522/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
523static
Dan Gohman8181bd12008-07-27 21:46:04 +0000524SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
525 TargetLowering &TLI) {
526 SDValue Chain = ST->getChain();
527 SDValue Ptr = ST->getBasePtr();
528 SDValue Val = ST->getValue();
Duncan Sands92c43912008-06-06 12:08:01 +0000529 MVT VT = Val.getValueType();
Dale Johannesen08275382007-09-08 19:29:23 +0000530 int Alignment = ST->getAlignment();
531 int SVOffset = ST->getSrcValueOffset();
Duncan Sands92c43912008-06-06 12:08:01 +0000532 if (ST->getMemoryVT().isFloatingPoint() ||
533 ST->getMemoryVT().isVector()) {
Dale Johannesen08275382007-09-08 19:29:23 +0000534 // Expand to a bitconvert of the value to the integer type of the
535 // same size, then a (misaligned) int store.
Duncan Sands92c43912008-06-06 12:08:01 +0000536 MVT intVT;
537 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesendc0ee192008-02-27 22:36:00 +0000538 intVT = MVT::i128;
Duncan Sands92c43912008-06-06 12:08:01 +0000539 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen08275382007-09-08 19:29:23 +0000540 intVT = MVT::i64;
541 else if (VT==MVT::f32)
542 intVT = MVT::i32;
543 else
Dale Johannesenb1d1ab92008-02-28 18:36:51 +0000544 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen08275382007-09-08 19:29:23 +0000545
Dan Gohman8181bd12008-07-27 21:46:04 +0000546 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
Dale Johannesen08275382007-09-08 19:29:23 +0000547 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
548 SVOffset, ST->isVolatile(), Alignment);
549 }
Duncan Sands92c43912008-06-06 12:08:01 +0000550 assert(ST->getMemoryVT().isInteger() &&
551 !ST->getMemoryVT().isVector() &&
Dale Johannesen08275382007-09-08 19:29:23 +0000552 "Unaligned store of unknown type.");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000553 // Get the half-size VT
Duncan Sands92c43912008-06-06 12:08:01 +0000554 MVT NewStoredVT =
555 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
556 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000557 int IncrementSize = NumBits / 8;
558
559 // Divide the stored value in two parts.
Dan Gohman8181bd12008-07-27 21:46:04 +0000560 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
561 SDValue Lo = Val;
562 SDValue Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000563
564 // Store the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000565 SDValue Store1, Store2;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000566 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
567 ST->getSrcValue(), SVOffset, NewStoredVT,
568 ST->isVolatile(), Alignment);
569 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
570 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsa3691432007-10-28 12:59:45 +0000571 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000572 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
573 ST->getSrcValue(), SVOffset + IncrementSize,
574 NewStoredVT, ST->isVolatile(), Alignment);
575
576 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
577}
578
579/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
580static
Dan Gohman8181bd12008-07-27 21:46:04 +0000581SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
582 TargetLowering &TLI) {
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000583 int SVOffset = LD->getSrcValueOffset();
Dan Gohman8181bd12008-07-27 21:46:04 +0000584 SDValue Chain = LD->getChain();
585 SDValue Ptr = LD->getBasePtr();
Duncan Sands92c43912008-06-06 12:08:01 +0000586 MVT VT = LD->getValueType(0);
587 MVT LoadedVT = LD->getMemoryVT();
588 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen08275382007-09-08 19:29:23 +0000589 // Expand to a (misaligned) integer load of the same size,
Dale Johannesendc0ee192008-02-27 22:36:00 +0000590 // then bitconvert to floating point or vector.
Duncan Sands92c43912008-06-06 12:08:01 +0000591 MVT intVT;
592 if (LoadedVT.is128BitVector() ||
Dale Johannesenf8c1e852008-03-01 03:40:57 +0000593 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesendc0ee192008-02-27 22:36:00 +0000594 intVT = MVT::i128;
Duncan Sands92c43912008-06-06 12:08:01 +0000595 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen08275382007-09-08 19:29:23 +0000596 intVT = MVT::i64;
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000597 else if (LoadedVT == MVT::f32)
Dale Johannesen08275382007-09-08 19:29:23 +0000598 intVT = MVT::i32;
599 else
Dale Johannesendc0ee192008-02-27 22:36:00 +0000600 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen08275382007-09-08 19:29:23 +0000601
Dan Gohman8181bd12008-07-27 21:46:04 +0000602 SDValue newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
Dale Johannesen08275382007-09-08 19:29:23 +0000603 SVOffset, LD->isVolatile(),
604 LD->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +0000605 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands92c43912008-06-06 12:08:01 +0000606 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen08275382007-09-08 19:29:23 +0000607 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
608
Dan Gohman8181bd12008-07-27 21:46:04 +0000609 SDValue Ops[] = { Result, Chain };
Duncan Sands698842f2008-07-02 17:40:58 +0000610 return DAG.getMergeValues(Ops, 2);
Dale Johannesen08275382007-09-08 19:29:23 +0000611 }
Duncan Sands92c43912008-06-06 12:08:01 +0000612 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000613 "Unaligned load of unsupported type.");
614
Dale Johannesendc0ee192008-02-27 22:36:00 +0000615 // Compute the new VT that is half the size of the old one. This is an
616 // integer MVT.
Duncan Sands92c43912008-06-06 12:08:01 +0000617 unsigned NumBits = LoadedVT.getSizeInBits();
618 MVT NewLoadedVT;
619 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattner4cf8a5b2007-11-19 21:38:03 +0000620 NumBits >>= 1;
621
622 unsigned Alignment = LD->getAlignment();
623 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000624 ISD::LoadExtType HiExtType = LD->getExtensionType();
625
626 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
627 if (HiExtType == ISD::NON_EXTLOAD)
628 HiExtType = ISD::ZEXTLOAD;
629
630 // Load the value in two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000631 SDValue Lo, Hi;
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000632 if (TLI.isLittleEndian()) {
633 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
634 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
635 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
636 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
637 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
638 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000639 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000640 } else {
641 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
642 NewLoadedVT,LD->isVolatile(), Alignment);
643 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
644 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
645 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
646 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsa3691432007-10-28 12:59:45 +0000647 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000648 }
649
650 // aggregate the two parts
Dan Gohman8181bd12008-07-27 21:46:04 +0000651 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
652 SDValue Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000653 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
654
Dan Gohman8181bd12008-07-27 21:46:04 +0000655 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000656 Hi.getValue(1));
657
Dan Gohman8181bd12008-07-27 21:46:04 +0000658 SDValue Ops[] = { Result, TF };
Duncan Sands698842f2008-07-02 17:40:58 +0000659 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +0000660}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000661
Dan Gohman6d05cac2007-10-11 23:57:53 +0000662/// UnrollVectorOp - We know that the given vector has a legal type, however
663/// the operation it performs is not legal and is an operation that we have
664/// no way of lowering. "Unroll" the vector, splitting out the scalars and
665/// operating on each element individually.
Dan Gohman8181bd12008-07-27 21:46:04 +0000666SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +0000667 MVT VT = Op.getValueType();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000668 assert(isTypeLegal(VT) &&
669 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000670 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman6d05cac2007-10-11 23:57:53 +0000671 "Can't unroll a vector with multiple results!");
Duncan Sands92c43912008-06-06 12:08:01 +0000672 unsigned NE = VT.getVectorNumElements();
673 MVT EltVT = VT.getVectorElementType();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000674
Dan Gohman8181bd12008-07-27 21:46:04 +0000675 SmallVector<SDValue, 8> Scalars;
676 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman6d05cac2007-10-11 23:57:53 +0000677 for (unsigned i = 0; i != NE; ++i) {
678 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman8181bd12008-07-27 21:46:04 +0000679 SDValue Operand = Op.getOperand(j);
Duncan Sands92c43912008-06-06 12:08:01 +0000680 MVT OperandVT = Operand.getValueType();
681 if (OperandVT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +0000682 // A vector operand; extract a single element.
Duncan Sands92c43912008-06-06 12:08:01 +0000683 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman6d05cac2007-10-11 23:57:53 +0000684 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
685 OperandEltVT,
686 Operand,
687 DAG.getConstant(i, MVT::i32));
688 } else {
689 // A scalar operand; just use it as is.
690 Operands[j] = Operand;
691 }
692 }
693 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
694 &Operands[0], Operands.size()));
695 }
696
697 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
698}
699
Duncan Sands37a3f472008-01-10 10:28:30 +0000700/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands92c43912008-06-06 12:08:01 +0000701static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands37a3f472008-01-10 10:28:30 +0000702 RTLIB::Libcall Call_F32,
703 RTLIB::Libcall Call_F64,
704 RTLIB::Libcall Call_F80,
705 RTLIB::Libcall Call_PPCF128) {
706 return
707 VT == MVT::f32 ? Call_F32 :
708 VT == MVT::f64 ? Call_F64 :
709 VT == MVT::f80 ? Call_F80 :
710 VT == MVT::ppcf128 ? Call_PPCF128 :
711 RTLIB::UNKNOWN_LIBCALL;
712}
713
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000714/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
715/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
716/// is necessary to spill the vector being inserted into to memory, perform
717/// the insert there, and then read the result back.
Dan Gohman8181bd12008-07-27 21:46:04 +0000718SDValue SelectionDAGLegalize::
719PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx) {
720 SDValue Tmp1 = Vec;
721 SDValue Tmp2 = Val;
722 SDValue Tmp3 = Idx;
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000723
724 // If the target doesn't support this, we have to spill the input vector
725 // to a temporary stack slot, update the element, then reload it. This is
726 // badness. We could also load the value into a vector register (either
727 // with a "move to register" or "extload into register" instruction, then
728 // permute it into place, if the idx is a constant and if the idx is
729 // supported by the target.
Duncan Sands92c43912008-06-06 12:08:01 +0000730 MVT VT = Tmp1.getValueType();
731 MVT EltVT = VT.getVectorElementType();
732 MVT IdxVT = Tmp3.getValueType();
733 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +0000734 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000735
Gabor Greif1c80d112008-08-28 21:40:38 +0000736 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000737
738 // Store the vector.
Dan Gohman8181bd12008-07-27 21:46:04 +0000739 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000740 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000741
742 // Truncate or zero extend offset to target pointer type.
Duncan Sandsec142ee2008-06-08 20:54:56 +0000743 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000744 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
745 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +0000746 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000747 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
Dan Gohman8181bd12008-07-27 21:46:04 +0000748 SDValue StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000749 // Store the scalar value.
750 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000751 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000752 // Load the updated vector.
Dan Gohman1fc34bc2008-07-11 22:44:52 +0000753 return DAG.getLoad(VT, Ch, StackPtr,
754 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman7c9e4b72008-04-25 18:07:40 +0000755}
756
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757/// LegalizeOp - We know that the specified value has a legal type, and
758/// that its operands are legal. Now ensure that the operation itself
759/// is legal, recursively ensuring that the operands' operations remain
760/// legal.
Dan Gohman8181bd12008-07-27 21:46:04 +0000761SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattnerdad577b2007-08-25 01:00:22 +0000762 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
763 return Op;
764
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765 assert(isTypeLegal(Op.getValueType()) &&
766 "Caller should expand or promote operands that are not legal!");
Gabor Greif1c80d112008-08-28 21:40:38 +0000767 SDNode *Node = Op.getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768
769 // If this operation defines any values that cannot be represented in a
770 // register on this target, make sure to expand or promote them.
771 if (Node->getNumValues() > 1) {
772 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
773 if (getTypeAction(Node->getValueType(i)) != Legal) {
774 HandleOp(Op.getValue(i));
775 assert(LegalizedNodes.count(Op) &&
776 "Handling didn't add legal operands!");
777 return LegalizedNodes[Op];
778 }
779 }
780
781 // Note that LegalizeOp may be reentered even from single-use nodes, which
782 // means that we always must cache transformed nodes.
Dan Gohman8181bd12008-07-27 21:46:04 +0000783 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784 if (I != LegalizedNodes.end()) return I->second;
785
Dan Gohman8181bd12008-07-27 21:46:04 +0000786 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
787 SDValue Result = Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788 bool isCustom = false;
789
790 switch (Node->getOpcode()) {
791 case ISD::FrameIndex:
792 case ISD::EntryToken:
793 case ISD::Register:
794 case ISD::BasicBlock:
795 case ISD::TargetFrameIndex:
796 case ISD::TargetJumpTable:
797 case ISD::TargetConstant:
798 case ISD::TargetConstantFP:
799 case ISD::TargetConstantPool:
800 case ISD::TargetGlobalAddress:
801 case ISD::TargetGlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +0000802 case ISD::TargetExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000803 case ISD::VALUETYPE:
804 case ISD::SRCVALUE:
Dan Gohman12a9c082008-02-06 22:27:42 +0000805 case ISD::MEMOPERAND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000806 case ISD::CONDCODE:
Duncan Sandsc93fae32008-03-21 09:14:45 +0000807 case ISD::ARG_FLAGS:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000808 // Primitives must all be legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +0000809 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000810 "This must be legal!");
811 break;
812 default:
813 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
814 // If this is a target node, legalize it by legalizing the operands then
815 // passing it through.
Dan Gohman8181bd12008-07-27 21:46:04 +0000816 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000817 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
818 Ops.push_back(LegalizeOp(Node->getOperand(i)));
819
820 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
821
822 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
823 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +0000824 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000825 }
826 // Otherwise this is an unhandled builtin node. splat.
827#ifndef NDEBUG
828 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
829#endif
830 assert(0 && "Do not know how to legalize this operator!");
831 abort();
832 case ISD::GLOBAL_OFFSET_TABLE:
833 case ISD::GlobalAddress:
834 case ISD::GlobalTLSAddress:
Bill Wendlingfef06052008-09-16 21:48:12 +0000835 case ISD::ExternalSymbol:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836 case ISD::ConstantPool:
837 case ISD::JumpTable: // Nothing to do.
838 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
839 default: assert(0 && "This action is not supported yet!");
840 case TargetLowering::Custom:
841 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000842 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843 // FALLTHROUGH if the target doesn't want to lower this op after all.
844 case TargetLowering::Legal:
845 break;
846 }
847 break;
848 case ISD::FRAMEADDR:
849 case ISD::RETURNADDR:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000850 // The only option for these nodes is to custom lower them. If the target
851 // does not custom lower them, then return zero.
852 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000853 if (Tmp1.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854 Result = Tmp1;
855 else
856 Result = DAG.getConstant(0, TLI.getPointerTy());
857 break;
Anton Korobeynikove3d7f932007-08-29 23:18:48 +0000858 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands92c43912008-06-06 12:08:01 +0000859 MVT VT = Node->getValueType(0);
Anton Korobeynikov09386bd2007-08-29 19:28:29 +0000860 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
861 default: assert(0 && "This action is not supported yet!");
862 case TargetLowering::Custom:
863 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000864 if (Result.getNode()) break;
Anton Korobeynikov09386bd2007-08-29 19:28:29 +0000865 // Fall Thru
866 case TargetLowering::Legal:
867 Result = DAG.getConstant(0, VT);
868 break;
869 }
Anton Korobeynikove3d7f932007-08-29 23:18:48 +0000870 }
Anton Korobeynikov09386bd2007-08-29 19:28:29 +0000871 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000872 case ISD::EXCEPTIONADDR: {
873 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +0000874 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000875 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
876 default: assert(0 && "This action is not supported yet!");
877 case TargetLowering::Expand: {
878 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000879 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 }
881 break;
882 case TargetLowering::Custom:
883 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000884 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000885 // Fall Thru
886 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000887 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands698842f2008-07-02 17:40:58 +0000888 Result = DAG.getMergeValues(Ops, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000889 break;
890 }
891 }
892 }
Gabor Greif1c80d112008-08-28 21:40:38 +0000893 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000894
Gabor Greif1c80d112008-08-28 21:40:38 +0000895 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000896 "Cannot return more than two values!");
897
898 // Since we produced two values, make sure to remember that we
899 // legalized both of them.
900 Tmp1 = LegalizeOp(Result);
901 Tmp2 = LegalizeOp(Result.getValue(1));
902 AddLegalizedOperand(Op.getValue(0), Tmp1);
903 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +0000904 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905 case ISD::EHSELECTION: {
906 Tmp1 = LegalizeOp(Node->getOperand(0));
907 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +0000908 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000909 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
910 default: assert(0 && "This action is not supported yet!");
911 case TargetLowering::Expand: {
912 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000913 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000914 }
915 break;
916 case TargetLowering::Custom:
917 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000918 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000919 // Fall Thru
920 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +0000921 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands698842f2008-07-02 17:40:58 +0000922 Result = DAG.getMergeValues(Ops, 2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000923 break;
924 }
925 }
926 }
Gabor Greif1c80d112008-08-28 21:40:38 +0000927 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000928
Gabor Greif1c80d112008-08-28 21:40:38 +0000929 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsc7f7d5e2007-12-31 18:35:50 +0000930 "Cannot return more than two values!");
931
932 // Since we produced two values, make sure to remember that we
933 // legalized both of them.
934 Tmp1 = LegalizeOp(Result);
935 Tmp2 = LegalizeOp(Result.getValue(1));
936 AddLegalizedOperand(Op.getValue(0), Tmp1);
937 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +0000938 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939 case ISD::EH_RETURN: {
Duncan Sands92c43912008-06-06 12:08:01 +0000940 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000941 // The only "good" option for this node is to custom lower it.
942 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
943 default: assert(0 && "This action is not supported at all!");
944 case TargetLowering::Custom:
945 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +0000946 if (Result.getNode()) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000947 // Fall Thru
948 case TargetLowering::Legal:
949 // Target does not know, how to lower this, lower to noop
950 Result = LegalizeOp(Node->getOperand(0));
951 break;
952 }
953 }
954 break;
955 case ISD::AssertSext:
956 case ISD::AssertZext:
957 Tmp1 = LegalizeOp(Node->getOperand(0));
958 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
959 break;
960 case ISD::MERGE_VALUES:
961 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif46bf5472008-08-26 22:36:50 +0000962 Result = Node->getOperand(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000963 break;
964 case ISD::CopyFromReg:
965 Tmp1 = LegalizeOp(Node->getOperand(0));
966 Result = Op.getValue(0);
967 if (Node->getNumValues() == 2) {
968 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
969 } else {
970 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
971 if (Node->getNumOperands() == 3) {
972 Tmp2 = LegalizeOp(Node->getOperand(2));
973 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
974 } else {
975 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
976 }
977 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
978 }
979 // Since CopyFromReg produces two values, make sure to remember that we
980 // legalized both of them.
981 AddLegalizedOperand(Op.getValue(0), Result);
982 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +0000983 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000984 case ISD::UNDEF: {
Duncan Sands92c43912008-06-06 12:08:01 +0000985 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000986 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
987 default: assert(0 && "This action is not supported yet!");
988 case TargetLowering::Expand:
Duncan Sands92c43912008-06-06 12:08:01 +0000989 if (VT.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000990 Result = DAG.getConstant(0, VT);
Duncan Sands92c43912008-06-06 12:08:01 +0000991 else if (VT.isFloatingPoint())
992 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesen20b76352007-09-26 17:26:49 +0000993 VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000994 else
995 assert(0 && "Unknown value type!");
996 break;
997 case TargetLowering::Legal:
998 break;
999 }
1000 break;
1001 }
1002
1003 case ISD::INTRINSIC_W_CHAIN:
1004 case ISD::INTRINSIC_WO_CHAIN:
1005 case ISD::INTRINSIC_VOID: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001006 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001007 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1008 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1009 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1010
1011 // Allow the target to custom lower its intrinsics if it wants to.
1012 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
1013 TargetLowering::Custom) {
1014 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001015 if (Tmp3.getNode()) Result = Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001016 }
1017
Gabor Greif1c80d112008-08-28 21:40:38 +00001018 if (Result.getNode()->getNumValues() == 1) break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019
1020 // Must have return value and chain result.
Gabor Greif1c80d112008-08-28 21:40:38 +00001021 assert(Result.getNode()->getNumValues() == 2 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001022 "Cannot return more than two values!");
1023
1024 // Since loads produce two values, make sure to remember that we
1025 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001026 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1027 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001028 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001029 }
1030
Dan Gohman472d12c2008-06-30 20:59:49 +00001031 case ISD::DBG_STOPPOINT:
1032 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001033 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1034
Dan Gohman472d12c2008-06-30 20:59:49 +00001035 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001036 case TargetLowering::Promote:
1037 default: assert(0 && "This action is not supported yet!");
1038 case TargetLowering::Expand: {
1039 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
1040 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohmanfa607c92008-07-01 00:05:16 +00001041 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042
Dan Gohman472d12c2008-06-30 20:59:49 +00001043 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001044 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman472d12c2008-06-30 20:59:49 +00001045 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1046 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047
Dan Gohman472d12c2008-06-30 20:59:49 +00001048 unsigned Line = DSP->getLine();
1049 unsigned Col = DSP->getColumn();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050
1051 if (useDEBUG_LOC) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001052 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Evan Chengd6f57682008-07-08 20:06:39 +00001053 DAG.getConstant(Col, MVT::i32),
1054 DAG.getConstant(SrcFile, MVT::i32) };
1055 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056 } else {
Evan Cheng69eda822008-02-01 02:05:57 +00001057 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohmanfa607c92008-07-01 00:05:16 +00001058 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059 }
1060 } else {
1061 Result = Tmp1; // chain
1062 }
1063 break;
1064 }
Evan Chengd6f57682008-07-08 20:06:39 +00001065 case TargetLowering::Legal: {
1066 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1067 if (Action == Legal && Tmp1 == Node->getOperand(0))
1068 break;
1069
Dan Gohman8181bd12008-07-27 21:46:04 +00001070 SmallVector<SDValue, 8> Ops;
Evan Chengd6f57682008-07-08 20:06:39 +00001071 Ops.push_back(Tmp1);
1072 if (Action == Legal) {
1073 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1074 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1075 } else {
1076 // Otherwise promote them.
1077 Ops.push_back(PromoteOp(Node->getOperand(1)));
1078 Ops.push_back(PromoteOp(Node->getOperand(2)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 }
Evan Chengd6f57682008-07-08 20:06:39 +00001080 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1081 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1082 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001083 break;
1084 }
Evan Chengd6f57682008-07-08 20:06:39 +00001085 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001086 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001087
1088 case ISD::DECLARE:
1089 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1090 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1091 default: assert(0 && "This action is not supported yet!");
1092 case TargetLowering::Legal:
1093 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1094 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1095 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1096 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1097 break;
Chris Lattner203cd052008-02-28 05:53:40 +00001098 case TargetLowering::Expand:
1099 Result = LegalizeOp(Node->getOperand(0));
1100 break;
Evan Cheng2e28d622008-02-02 04:07:54 +00001101 }
1102 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001103
1104 case ISD::DEBUG_LOC:
1105 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
1106 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
1107 default: assert(0 && "This action is not supported yet!");
Evan Chengd6f57682008-07-08 20:06:39 +00001108 case TargetLowering::Legal: {
1109 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Chengd6f57682008-07-08 20:06:39 +00001111 if (Action == Legal && Tmp1 == Node->getOperand(0))
1112 break;
1113 if (Action == Legal) {
1114 Tmp2 = Node->getOperand(1);
1115 Tmp3 = Node->getOperand(2);
1116 Tmp4 = Node->getOperand(3);
1117 } else {
1118 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1119 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1120 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1121 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1123 break;
1124 }
Evan Chengd6f57682008-07-08 20:06:39 +00001125 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001126 break;
1127
Dan Gohmanfa607c92008-07-01 00:05:16 +00001128 case ISD::DBG_LABEL:
1129 case ISD::EH_LABEL:
1130 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1131 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001132 default: assert(0 && "This action is not supported yet!");
1133 case TargetLowering::Legal:
1134 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohmanfa607c92008-07-01 00:05:16 +00001135 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001136 break;
1137 case TargetLowering::Expand:
1138 Result = LegalizeOp(Node->getOperand(0));
1139 break;
1140 }
1141 break;
1142
Evan Chengd1d68072008-03-08 00:58:38 +00001143 case ISD::PREFETCH:
1144 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1145 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1146 default: assert(0 && "This action is not supported yet!");
1147 case TargetLowering::Legal:
1148 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1149 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1150 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1151 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1152 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1153 break;
1154 case TargetLowering::Expand:
1155 // It's a noop.
1156 Result = LegalizeOp(Node->getOperand(0));
1157 break;
1158 }
1159 break;
1160
Andrew Lenharth785610d2008-02-16 01:24:58 +00001161 case ISD::MEMBARRIER: {
1162 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001163 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1164 default: assert(0 && "This action is not supported yet!");
1165 case TargetLowering::Legal: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001166 SDValue Ops[6];
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001167 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sands3ee041a2008-02-27 08:53:44 +00001168 for (int x = 1; x < 6; ++x) {
1169 Ops[x] = Node->getOperand(x);
1170 if (!isTypeLegal(Ops[x].getValueType()))
1171 Ops[x] = PromoteOp(Ops[x]);
1172 }
Andrew Lenharth0531ec52008-02-16 14:46:26 +00001173 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1174 break;
1175 }
1176 case TargetLowering::Expand:
1177 //There is no libgcc call for this op
1178 Result = Node->getOperand(0); // Noop
1179 break;
1180 }
Andrew Lenharth785610d2008-02-16 01:24:58 +00001181 break;
1182 }
1183
Dale Johannesenbc187662008-08-28 02:44:49 +00001184 case ISD::ATOMIC_CMP_SWAP_8:
1185 case ISD::ATOMIC_CMP_SWAP_16:
1186 case ISD::ATOMIC_CMP_SWAP_32:
1187 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001188 unsigned int num_operands = 4;
1189 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001190 SDValue Ops[4];
Mon P Wang078a62d2008-05-05 19:05:59 +00001191 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001192 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang078a62d2008-05-05 19:05:59 +00001193 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1194
1195 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1196 default: assert(0 && "This action is not supported yet!");
1197 case TargetLowering::Custom:
1198 Result = TLI.LowerOperation(Result, DAG);
1199 break;
1200 case TargetLowering::Legal:
1201 break;
1202 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001203 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1204 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001205 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001206 }
Dale Johannesenbc187662008-08-28 02:44:49 +00001207 case ISD::ATOMIC_LOAD_ADD_8:
1208 case ISD::ATOMIC_LOAD_SUB_8:
1209 case ISD::ATOMIC_LOAD_AND_8:
1210 case ISD::ATOMIC_LOAD_OR_8:
1211 case ISD::ATOMIC_LOAD_XOR_8:
1212 case ISD::ATOMIC_LOAD_NAND_8:
1213 case ISD::ATOMIC_LOAD_MIN_8:
1214 case ISD::ATOMIC_LOAD_MAX_8:
1215 case ISD::ATOMIC_LOAD_UMIN_8:
1216 case ISD::ATOMIC_LOAD_UMAX_8:
1217 case ISD::ATOMIC_SWAP_8:
1218 case ISD::ATOMIC_LOAD_ADD_16:
1219 case ISD::ATOMIC_LOAD_SUB_16:
1220 case ISD::ATOMIC_LOAD_AND_16:
1221 case ISD::ATOMIC_LOAD_OR_16:
1222 case ISD::ATOMIC_LOAD_XOR_16:
1223 case ISD::ATOMIC_LOAD_NAND_16:
1224 case ISD::ATOMIC_LOAD_MIN_16:
1225 case ISD::ATOMIC_LOAD_MAX_16:
1226 case ISD::ATOMIC_LOAD_UMIN_16:
1227 case ISD::ATOMIC_LOAD_UMAX_16:
1228 case ISD::ATOMIC_SWAP_16:
1229 case ISD::ATOMIC_LOAD_ADD_32:
1230 case ISD::ATOMIC_LOAD_SUB_32:
1231 case ISD::ATOMIC_LOAD_AND_32:
1232 case ISD::ATOMIC_LOAD_OR_32:
1233 case ISD::ATOMIC_LOAD_XOR_32:
1234 case ISD::ATOMIC_LOAD_NAND_32:
1235 case ISD::ATOMIC_LOAD_MIN_32:
1236 case ISD::ATOMIC_LOAD_MAX_32:
1237 case ISD::ATOMIC_LOAD_UMIN_32:
1238 case ISD::ATOMIC_LOAD_UMAX_32:
1239 case ISD::ATOMIC_SWAP_32:
1240 case ISD::ATOMIC_LOAD_ADD_64:
1241 case ISD::ATOMIC_LOAD_SUB_64:
1242 case ISD::ATOMIC_LOAD_AND_64:
1243 case ISD::ATOMIC_LOAD_OR_64:
1244 case ISD::ATOMIC_LOAD_XOR_64:
1245 case ISD::ATOMIC_LOAD_NAND_64:
1246 case ISD::ATOMIC_LOAD_MIN_64:
1247 case ISD::ATOMIC_LOAD_MAX_64:
1248 case ISD::ATOMIC_LOAD_UMIN_64:
1249 case ISD::ATOMIC_LOAD_UMAX_64:
1250 case ISD::ATOMIC_SWAP_64: {
Mon P Wang078a62d2008-05-05 19:05:59 +00001251 unsigned int num_operands = 3;
1252 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001253 SDValue Ops[3];
Mon P Wang078a62d2008-05-05 19:05:59 +00001254 for (unsigned int x = 0; x < num_operands; ++x)
1255 Ops[x] = LegalizeOp(Node->getOperand(x));
1256 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sandsac496a12008-07-04 11:47:58 +00001257
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001258 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001259 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth7dfe23f2008-03-01 21:52:34 +00001260 case TargetLowering::Custom:
1261 Result = TLI.LowerOperation(Result, DAG);
1262 break;
1263 case TargetLowering::Legal:
Andrew Lenharthe44f3902008-02-21 06:45:13 +00001264 break;
1265 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001266 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1267 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001268 return Result.getValue(Op.getResNo());
Duncan Sandsac496a12008-07-04 11:47:58 +00001269 }
Scott Michelf2e2b702007-08-08 23:23:31 +00001270 case ISD::Constant: {
1271 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1272 unsigned opAction =
1273 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1274
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001275 // We know we don't need to expand constants here, constants only have one
1276 // value and we check that it is fine above.
1277
Scott Michelf2e2b702007-08-08 23:23:31 +00001278 if (opAction == TargetLowering::Custom) {
1279 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001280 if (Tmp1.getNode())
Scott Michelf2e2b702007-08-08 23:23:31 +00001281 Result = Tmp1;
1282 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001283 break;
Scott Michelf2e2b702007-08-08 23:23:31 +00001284 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001285 case ISD::ConstantFP: {
1286 // Spill FP immediates to the constant pool if the target cannot directly
1287 // codegen them. Targets often have some immediate values that can be
1288 // efficiently generated into an FP register without a load. We explicitly
1289 // leave these constants as ConstantFP nodes for the target to deal with.
1290 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1291
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001292 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1293 default: assert(0 && "This action is not supported yet!");
Nate Begemane2ba64f2008-02-14 08:57:00 +00001294 case TargetLowering::Legal:
1295 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001296 case TargetLowering::Custom:
1297 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001298 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001299 Result = Tmp3;
1300 break;
1301 }
1302 // FALLTHROUGH
Nate Begemane2ba64f2008-02-14 08:57:00 +00001303 case TargetLowering::Expand: {
1304 // Check to see if this FP immediate is already legal.
1305 bool isLegal = false;
1306 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1307 E = TLI.legal_fpimm_end(); I != E; ++I) {
1308 if (CFP->isExactlyValue(*I)) {
1309 isLegal = true;
1310 break;
1311 }
1312 }
1313 // If this is a legal constant, turn it into a TargetConstantFP node.
1314 if (isLegal)
1315 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001316 Result = ExpandConstantFP(CFP, true, DAG, TLI);
1317 }
Nate Begemane2ba64f2008-02-14 08:57:00 +00001318 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001319 break;
1320 }
1321 case ISD::TokenFactor:
1322 if (Node->getNumOperands() == 2) {
1323 Tmp1 = LegalizeOp(Node->getOperand(0));
1324 Tmp2 = LegalizeOp(Node->getOperand(1));
1325 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1326 } else if (Node->getNumOperands() == 3) {
1327 Tmp1 = LegalizeOp(Node->getOperand(0));
1328 Tmp2 = LegalizeOp(Node->getOperand(1));
1329 Tmp3 = LegalizeOp(Node->getOperand(2));
1330 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1331 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00001332 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001333 // Legalize the operands.
1334 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1335 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1336 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1337 }
1338 break;
1339
1340 case ISD::FORMAL_ARGUMENTS:
1341 case ISD::CALL:
1342 // The only option for this is to custom lower it.
1343 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001344 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesenac246272008-03-05 19:14:03 +00001345 // A call within a calling sequence must be legalized to something
1346 // other than the normal CALLSEQ_END. Violating this gets Legalize
1347 // into an infinite loop.
1348 assert ((!IsLegalizingCall ||
1349 Node->getOpcode() != ISD::CALL ||
Gabor Greif1c80d112008-08-28 21:40:38 +00001350 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesenac246272008-03-05 19:14:03 +00001351 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling22f8deb2007-11-13 00:44:25 +00001352
1353 // The number of incoming and outgoing values should match; unless the final
1354 // outgoing value is a flag.
Gabor Greif1c80d112008-08-28 21:40:38 +00001355 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1356 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1357 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling22f8deb2007-11-13 00:44:25 +00001358 MVT::Flag)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001359 "Lowering call/formal_arguments produced unexpected # results!");
1360
1361 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
1362 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greif1c80d112008-08-28 21:40:38 +00001363 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1364 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling22f8deb2007-11-13 00:44:25 +00001365 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001366 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00001367 if (Op.getResNo() == i)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001368 Tmp2 = Tmp1;
Dan Gohman8181bd12008-07-27 21:46:04 +00001369 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001370 }
1371 return Tmp2;
Christopher Lambb768c2e2007-07-26 07:34:40 +00001372 case ISD::EXTRACT_SUBREG: {
1373 Tmp1 = LegalizeOp(Node->getOperand(0));
1374 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1375 assert(idx && "Operand must be a constant");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001376 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001377 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1378 }
1379 break;
1380 case ISD::INSERT_SUBREG: {
1381 Tmp1 = LegalizeOp(Node->getOperand(0));
1382 Tmp2 = LegalizeOp(Node->getOperand(1));
1383 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1384 assert(idx && "Operand must be a constant");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001385 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lambb768c2e2007-07-26 07:34:40 +00001386 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1387 }
1388 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001389 case ISD::BUILD_VECTOR:
1390 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
1391 default: assert(0 && "This action is not supported yet!");
1392 case TargetLowering::Custom:
1393 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001394 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001395 Result = Tmp3;
1396 break;
1397 }
1398 // FALLTHROUGH
1399 case TargetLowering::Expand:
Gabor Greif1c80d112008-08-28 21:40:38 +00001400 Result = ExpandBUILD_VECTOR(Result.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001401 break;
1402 }
1403 break;
1404 case ISD::INSERT_VECTOR_ELT:
1405 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001406 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001407
1408 // The type of the value to insert may not be legal, even though the vector
1409 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1410 // here.
1411 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1412 default: assert(0 && "Cannot expand insert element operand");
1413 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1414 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1415 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001416 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1417
1418 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1419 Node->getValueType(0))) {
1420 default: assert(0 && "This action is not supported yet!");
1421 case TargetLowering::Legal:
1422 break;
1423 case TargetLowering::Custom:
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001424 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001425 if (Tmp4.getNode()) {
Nate Begeman11f2e1d2008-01-05 20:47:37 +00001426 Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001427 break;
1428 }
1429 // FALLTHROUGH
1430 case TargetLowering::Expand: {
1431 // If the insert index is a constant, codegen this as a scalar_to_vector,
1432 // then a shuffle that inserts it into the right position in the vector.
1433 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001434 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1435 // match the element type of the vector being created.
1436 if (Tmp2.getValueType() ==
Duncan Sands92c43912008-06-06 12:08:01 +00001437 Op.getValueType().getVectorElementType()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001438 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001439 Tmp1.getValueType(), Tmp2);
1440
Duncan Sands92c43912008-06-06 12:08:01 +00001441 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1442 MVT ShufMaskVT =
1443 MVT::getIntVectorWithNumElements(NumElts);
1444 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001445
1446 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1447 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1448 // elt 0 of the RHS.
Dan Gohman8181bd12008-07-27 21:46:04 +00001449 SmallVector<SDValue, 8> ShufOps;
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001450 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001451 if (i != InsertPos->getZExtValue())
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001452 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1453 else
1454 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1455 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001456 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
Nate Begeman6fb7ebd2008-02-13 06:43:04 +00001457 &ShufOps[0], ShufOps.size());
1458
1459 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1460 Tmp1, ScVec, ShufMask);
1461 Result = LegalizeOp(Result);
1462 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001463 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001464 }
Nate Begeman7c9e4b72008-04-25 18:07:40 +00001465 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001466 break;
1467 }
1468 }
1469 break;
1470 case ISD::SCALAR_TO_VECTOR:
1471 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1472 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1473 break;
1474 }
1475
1476 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1477 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1478 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1479 Node->getValueType(0))) {
1480 default: assert(0 && "This action is not supported yet!");
1481 case TargetLowering::Legal:
1482 break;
1483 case TargetLowering::Custom:
1484 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001485 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001486 Result = Tmp3;
1487 break;
1488 }
1489 // FALLTHROUGH
1490 case TargetLowering::Expand:
1491 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1492 break;
1493 }
1494 break;
1495 case ISD::VECTOR_SHUFFLE:
1496 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1497 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1498 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1499
1500 // Allow targets to custom lower the SHUFFLEs they support.
1501 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1502 default: assert(0 && "Unknown operation action!");
1503 case TargetLowering::Legal:
1504 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1505 "vector shuffle should not be created if not legal!");
1506 break;
1507 case TargetLowering::Custom:
1508 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001509 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001510 Result = Tmp3;
1511 break;
1512 }
1513 // FALLTHROUGH
1514 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00001515 MVT VT = Node->getValueType(0);
1516 MVT EltVT = VT.getVectorElementType();
1517 MVT PtrVT = TLI.getPointerTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00001518 SDValue Mask = Node->getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001519 unsigned NumElems = Mask.getNumOperands();
Dan Gohman8181bd12008-07-27 21:46:04 +00001520 SmallVector<SDValue,8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001521 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001522 SDValue Arg = Mask.getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001523 if (Arg.getOpcode() == ISD::UNDEF) {
1524 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1525 } else {
1526 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001527 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001528 if (Idx < NumElems)
1529 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1530 DAG.getConstant(Idx, PtrVT)));
1531 else
1532 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1533 DAG.getConstant(Idx - NumElems, PtrVT)));
1534 }
1535 }
1536 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
1537 break;
1538 }
1539 case TargetLowering::Promote: {
1540 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001541 MVT OVT = Node->getValueType(0);
1542 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001543
1544 // Cast the two input vectors.
1545 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1546 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1547
1548 // Convert the shuffle mask to the right # elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00001549 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greif1c80d112008-08-28 21:40:38 +00001550 assert(Tmp3.getNode() && "Shuffle not legal?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001551 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1552 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1553 break;
1554 }
1555 }
1556 break;
1557
1558 case ISD::EXTRACT_VECTOR_ELT:
1559 Tmp1 = Node->getOperand(0);
1560 Tmp2 = LegalizeOp(Node->getOperand(1));
1561 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1562 Result = ExpandEXTRACT_VECTOR_ELT(Result);
1563 break;
1564
1565 case ISD::EXTRACT_SUBVECTOR:
1566 Tmp1 = Node->getOperand(0);
1567 Tmp2 = LegalizeOp(Node->getOperand(1));
1568 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1569 Result = ExpandEXTRACT_SUBVECTOR(Result);
1570 break;
1571
1572 case ISD::CALLSEQ_START: {
1573 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1574
1575 // Recursively Legalize all of the inputs of the call end that do not lead
1576 // to this call start. This ensures that any libcalls that need be inserted
1577 // are inserted *before* the CALLSEQ_START.
1578 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
1579 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greif1c80d112008-08-28 21:40:38 +00001580 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001581 NodesLeadingTo);
1582 }
1583
1584 // Now that we legalized all of the inputs (which may have inserted
1585 // libcalls) create the new CALLSEQ_START node.
1586 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1587
1588 // Merge in the last call, to ensure that this call start after the last
1589 // call ended.
1590 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
1591 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1592 Tmp1 = LegalizeOp(Tmp1);
1593 }
1594
1595 // Do not try to legalize the target-specific arguments (#1+).
1596 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001597 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001598 Ops[0] = Tmp1;
1599 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1600 }
1601
1602 // Remember that the CALLSEQ_START is legalized.
1603 AddLegalizedOperand(Op.getValue(0), Result);
1604 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1605 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1606
1607 // Now that the callseq_start and all of the non-call nodes above this call
1608 // sequence have been legalized, legalize the call itself. During this
1609 // process, no libcalls can/will be inserted, guaranteeing that no calls
1610 // can overlap.
1611 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001612 // Note that we are selecting this call!
Dan Gohman8181bd12008-07-27 21:46:04 +00001613 LastCALLSEQ_END = SDValue(CallEnd, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001614 IsLegalizingCall = true;
1615
1616 // Legalize the call, starting from the CALLSEQ_END.
1617 LegalizeOp(LastCALLSEQ_END);
1618 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1619 return Result;
1620 }
1621 case ISD::CALLSEQ_END:
1622 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1623 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greif1c80d112008-08-28 21:40:38 +00001624 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001625 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1626 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001627 assert(I != LegalizedNodes.end() &&
1628 "Legalizing the call start should have legalized this node!");
1629 return I->second;
1630 }
1631
1632 // Otherwise, the call start has been legalized and everything is going
1633 // according to plan. Just legalize ourselves normally here.
1634 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1635 // Do not try to legalize the target-specific arguments (#1+), except for
1636 // an optional flag input.
1637 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1638 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001639 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001640 Ops[0] = Tmp1;
1641 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1642 }
1643 } else {
1644 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1645 if (Tmp1 != Node->getOperand(0) ||
1646 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001647 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001648 Ops[0] = Tmp1;
1649 Ops.back() = Tmp2;
1650 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1651 }
1652 }
1653 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
1654 // This finishes up call legalization.
1655 IsLegalizingCall = false;
1656
1657 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001658 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001659 if (Node->getNumValues() == 2)
Dan Gohman8181bd12008-07-27 21:46:04 +00001660 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001661 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001662 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands92c43912008-06-06 12:08:01 +00001663 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001664 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1665 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1666 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
1667 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1668
1669 Tmp1 = Result.getValue(0);
1670 Tmp2 = Result.getValue(1);
Evan Chenga448bc42007-08-16 23:50:06 +00001671 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001672 default: assert(0 && "This action is not supported yet!");
1673 case TargetLowering::Expand: {
1674 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1675 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1676 " not tell us which reg is the stack pointer!");
Dan Gohman8181bd12008-07-27 21:46:04 +00001677 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling22f8deb2007-11-13 00:44:25 +00001678
1679 // Chain the dynamic stack allocation so that it doesn't modify the stack
1680 // pointer when other instructions are using the stack.
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001681 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling22f8deb2007-11-13 00:44:25 +00001682
Dan Gohman8181bd12008-07-27 21:46:04 +00001683 SDValue Size = Tmp2.getOperand(1);
1684 SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT);
Evan Chenga448bc42007-08-16 23:50:06 +00001685 Chain = SP.getValue(1);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001686 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Chenga448bc42007-08-16 23:50:06 +00001687 unsigned StackAlign =
1688 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1689 if (Align > StackAlign)
Evan Cheng51ce0382007-08-17 18:02:22 +00001690 SP = DAG.getNode(ISD::AND, VT, SP,
1691 DAG.getConstant(-(uint64_t)Align, VT));
Evan Chenga448bc42007-08-16 23:50:06 +00001692 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling22f8deb2007-11-13 00:44:25 +00001693 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1694
Chris Lattnerfe5d4022008-10-11 22:08:30 +00001695 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1696 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling22f8deb2007-11-13 00:44:25 +00001697
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001698 Tmp1 = LegalizeOp(Tmp1);
1699 Tmp2 = LegalizeOp(Tmp2);
1700 break;
1701 }
1702 case TargetLowering::Custom:
1703 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001704 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001705 Tmp1 = LegalizeOp(Tmp3);
1706 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1707 }
1708 break;
1709 case TargetLowering::Legal:
1710 break;
1711 }
1712 // Since this op produce two values, make sure to remember that we
1713 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001714 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1715 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00001716 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001717 }
1718 case ISD::INLINEASM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001719 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001720 bool Changed = false;
1721 // Legalize all of the operands of the inline asm, in case they are nodes
1722 // that need to be expanded or something. Note we skip the asm string and
1723 // all of the TargetConstant flags.
Dan Gohman8181bd12008-07-27 21:46:04 +00001724 SDValue Op = LegalizeOp(Ops[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001725 Changed = Op != Ops[0];
1726 Ops[0] = Op;
1727
1728 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1729 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001730 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001731 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001732 SDValue Op = LegalizeOp(Ops[i]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001733 if (Op != Ops[i]) {
1734 Changed = true;
1735 Ops[i] = Op;
1736 }
1737 }
1738 }
1739
1740 if (HasInFlag) {
1741 Op = LegalizeOp(Ops.back());
1742 Changed |= Op != Ops.back();
1743 Ops.back() = Op;
1744 }
1745
1746 if (Changed)
1747 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1748
1749 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman8181bd12008-07-27 21:46:04 +00001750 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1751 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif46bf5472008-08-26 22:36:50 +00001752 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001753 }
1754 case ISD::BR:
1755 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1756 // Ensure that libcalls are emitted before a branch.
1757 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1758 Tmp1 = LegalizeOp(Tmp1);
1759 LastCALLSEQ_END = DAG.getEntryNode();
1760
1761 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1762 break;
1763 case ISD::BRIND:
1764 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1765 // Ensure that libcalls are emitted before a branch.
1766 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1767 Tmp1 = LegalizeOp(Tmp1);
1768 LastCALLSEQ_END = DAG.getEntryNode();
1769
1770 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1771 default: assert(0 && "Indirect target must be legal type (pointer)!");
1772 case Legal:
1773 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1774 break;
1775 }
1776 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1777 break;
1778 case ISD::BR_JT:
1779 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1780 // Ensure that libcalls are emitted before a branch.
1781 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1782 Tmp1 = LegalizeOp(Tmp1);
1783 LastCALLSEQ_END = DAG.getEntryNode();
1784
1785 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1786 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1787
1788 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1789 default: assert(0 && "This action is not supported yet!");
1790 case TargetLowering::Legal: break;
1791 case TargetLowering::Custom:
1792 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001793 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001794 break;
1795 case TargetLowering::Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00001796 SDValue Chain = Result.getOperand(0);
1797 SDValue Table = Result.getOperand(1);
1798 SDValue Index = Result.getOperand(2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001799
Duncan Sands92c43912008-06-06 12:08:01 +00001800 MVT PTy = TLI.getPointerTy();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001801 MachineFunction &MF = DAG.getMachineFunction();
1802 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
1803 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
Dan Gohman8181bd12008-07-27 21:46:04 +00001804 SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001805
Dan Gohman8181bd12008-07-27 21:46:04 +00001806 SDValue LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001807 switch (EntrySize) {
1808 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman12a9c082008-02-06 22:27:42 +00001809 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001810 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman12a9c082008-02-06 22:27:42 +00001811 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohmanfb020b62008-02-07 18:41:25 +00001812 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001813 }
1814
Evan Cheng6fb06762007-11-09 01:32:10 +00001815 Addr = LD;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001816 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
1817 // For PIC, the sequence is:
1818 // BRIND(load(Jumptable + index) + RelocBase)
Evan Cheng6fb06762007-11-09 01:32:10 +00001819 // RelocBase can be JumpTable, GOT or some sort of global base.
1820 if (PTy != MVT::i32)
1821 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1822 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1823 TLI.getPICJumpTableRelocBase(Table, DAG));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001824 }
Evan Cheng6fb06762007-11-09 01:32:10 +00001825 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001826 }
1827 }
1828 break;
1829 case ISD::BRCOND:
1830 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1831 // Ensure that libcalls are emitted before a return.
1832 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1833 Tmp1 = LegalizeOp(Tmp1);
1834 LastCALLSEQ_END = DAG.getEntryNode();
1835
1836 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1837 case Expand: assert(0 && "It's impossible to expand bools");
1838 case Legal:
1839 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1840 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00001841 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001842 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
1843
1844 // The top bits of the promoted condition are not necessarily zero, ensure
1845 // that the value is properly zero extended.
Dan Gohman07961cd2008-02-25 21:11:39 +00001846 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001847 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman07961cd2008-02-25 21:11:39 +00001848 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001849 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
1850 break;
1851 }
Dan Gohman07961cd2008-02-25 21:11:39 +00001852 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001853
1854 // Basic block destination (Op#2) is always legal.
1855 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1856
1857 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1858 default: assert(0 && "This action is not supported yet!");
1859 case TargetLowering::Legal: break;
1860 case TargetLowering::Custom:
1861 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001862 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001863 break;
1864 case TargetLowering::Expand:
1865 // Expand brcond's setcc into its constituent parts and create a BR_CC
1866 // Node.
1867 if (Tmp2.getOpcode() == ISD::SETCC) {
1868 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1869 Tmp2.getOperand(0), Tmp2.getOperand(1),
1870 Node->getOperand(2));
1871 } else {
1872 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1873 DAG.getCondCode(ISD::SETNE), Tmp2,
1874 DAG.getConstant(0, Tmp2.getValueType()),
1875 Node->getOperand(2));
1876 }
1877 break;
1878 }
1879 break;
1880 case ISD::BR_CC:
1881 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1882 // Ensure that libcalls are emitted before a branch.
1883 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1884 Tmp1 = LegalizeOp(Tmp1);
1885 Tmp2 = Node->getOperand(2); // LHS
1886 Tmp3 = Node->getOperand(3); // RHS
1887 Tmp4 = Node->getOperand(1); // CC
1888
1889 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1890 LastCALLSEQ_END = DAG.getEntryNode();
1891
1892 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1893 // the LHS is a legal SETCC itself. In this case, we need to compare
1894 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00001895 if (Tmp3.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001896 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1897 Tmp4 = DAG.getCondCode(ISD::SETNE);
1898 }
1899
1900 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1901 Node->getOperand(4));
1902
1903 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1904 default: assert(0 && "Unexpected action for BR_CC!");
1905 case TargetLowering::Legal: break;
1906 case TargetLowering::Custom:
1907 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001908 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001909 break;
1910 }
1911 break;
1912 case ISD::LOAD: {
1913 LoadSDNode *LD = cast<LoadSDNode>(Node);
1914 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1915 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
1916
1917 ISD::LoadExtType ExtType = LD->getExtensionType();
1918 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands92c43912008-06-06 12:08:01 +00001919 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001920 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1921 Tmp3 = Result.getValue(0);
1922 Tmp4 = Result.getValue(1);
1923
1924 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1925 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001926 case TargetLowering::Legal:
1927 // If this is an unaligned load and the target doesn't support it,
1928 // expand it.
1929 if (!TLI.allowsUnalignedMemoryAccesses()) {
1930 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00001931 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001932 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00001933 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001934 TLI);
1935 Tmp3 = Result.getOperand(0);
1936 Tmp4 = Result.getOperand(1);
Dale Johannesen08275382007-09-08 19:29:23 +00001937 Tmp3 = LegalizeOp(Tmp3);
1938 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00001939 }
1940 }
1941 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001942 case TargetLowering::Custom:
1943 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00001944 if (Tmp1.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001945 Tmp3 = LegalizeOp(Tmp1);
1946 Tmp4 = LegalizeOp(Tmp1.getValue(1));
1947 }
1948 break;
1949 case TargetLowering::Promote: {
1950 // Only promote a load of vector type to another.
Duncan Sands92c43912008-06-06 12:08:01 +00001951 assert(VT.isVector() && "Cannot promote this load!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001952 // Change base type to a different vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00001953 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001954
1955 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
1956 LD->getSrcValueOffset(),
1957 LD->isVolatile(), LD->getAlignment());
1958 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1959 Tmp4 = LegalizeOp(Tmp1.getValue(1));
1960 break;
1961 }
1962 }
1963 // Since loads produce two values, make sure to remember that we
1964 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00001965 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
1966 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif46bf5472008-08-26 22:36:50 +00001967 return Op.getResNo() ? Tmp4 : Tmp3;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001968 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00001969 MVT SrcVT = LD->getMemoryVT();
1970 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sands082524c2008-01-23 20:39:46 +00001971 int SVOffset = LD->getSrcValueOffset();
1972 unsigned Alignment = LD->getAlignment();
1973 bool isVolatile = LD->isVolatile();
1974
Duncan Sands92c43912008-06-06 12:08:01 +00001975 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sands082524c2008-01-23 20:39:46 +00001976 // Some targets pretend to have an i1 loading operation, and actually
1977 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1978 // bits are guaranteed to be zero; it helps the optimizers understand
1979 // that these bits are zero. It is also useful for EXTLOAD, since it
1980 // tells the optimizers that those bits are undefined. It would be
1981 // nice to have an effective generic way of getting these benefits...
1982 // Until such a way is found, don't insist on promoting i1 here.
1983 (SrcVT != MVT::i1 ||
Evan Cheng08c171a2008-10-14 21:26:46 +00001984 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sands082524c2008-01-23 20:39:46 +00001985 // Promote to a byte-sized load if not loading an integral number of
1986 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands92c43912008-06-06 12:08:01 +00001987 unsigned NewWidth = SrcVT.getStoreSizeInBits();
1988 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00001989 SDValue Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00001990
1991 // The extra bits are guaranteed to be zero, since we stored them that
1992 // way. A zext load from NVT thus automatically gives zext from SrcVT.
1993
1994 ISD::LoadExtType NewExtType =
1995 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
1996
1997 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
1998 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
1999 NVT, isVolatile, Alignment);
2000
2001 Ch = Result.getValue(1); // The chain.
2002
2003 if (ExtType == ISD::SEXTLOAD)
2004 // Having the top bits zero doesn't help when sign extending.
2005 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2006 Result, DAG.getValueType(SrcVT));
2007 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2008 // All the top bits are guaranteed to be zero - inform the optimizers.
2009 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2010 DAG.getValueType(SrcVT));
2011
2012 Tmp1 = LegalizeOp(Result);
2013 Tmp2 = LegalizeOp(Ch);
2014 } else if (SrcWidth & (SrcWidth - 1)) {
2015 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands92c43912008-06-06 12:08:01 +00002016 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sands082524c2008-01-23 20:39:46 +00002017 "Unsupported extload!");
2018 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2019 assert(RoundWidth < SrcWidth);
2020 unsigned ExtraWidth = SrcWidth - RoundWidth;
2021 assert(ExtraWidth < RoundWidth);
2022 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2023 "Load size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002024 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2025 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002026 SDValue Lo, Hi, Ch;
Duncan Sands082524c2008-01-23 20:39:46 +00002027 unsigned IncrementSize;
2028
2029 if (TLI.isLittleEndian()) {
2030 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2031 // Load the bottom RoundWidth bits.
2032 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2033 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2034 Alignment);
2035
2036 // Load the remaining ExtraWidth bits.
2037 IncrementSize = RoundWidth / 8;
2038 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2039 DAG.getIntPtrConstant(IncrementSize));
2040 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2041 LD->getSrcValue(), SVOffset + IncrementSize,
2042 ExtraVT, isVolatile,
2043 MinAlign(Alignment, IncrementSize));
2044
2045 // Build a factor node to remember that this load is independent of the
2046 // other one.
2047 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2048 Hi.getValue(1));
2049
2050 // Move the top bits to the right place.
2051 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2052 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2053
2054 // Join the hi and lo parts.
2055 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002056 } else {
Duncan Sands082524c2008-01-23 20:39:46 +00002057 // Big endian - avoid unaligned loads.
2058 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2059 // Load the top RoundWidth bits.
2060 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2061 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2062 Alignment);
2063
2064 // Load the remaining ExtraWidth bits.
2065 IncrementSize = RoundWidth / 8;
2066 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2067 DAG.getIntPtrConstant(IncrementSize));
2068 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2069 LD->getSrcValue(), SVOffset + IncrementSize,
2070 ExtraVT, isVolatile,
2071 MinAlign(Alignment, IncrementSize));
2072
2073 // Build a factor node to remember that this load is independent of the
2074 // other one.
2075 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2076 Hi.getValue(1));
2077
2078 // Move the top bits to the right place.
2079 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2080 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2081
2082 // Join the hi and lo parts.
2083 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2084 }
2085
2086 Tmp1 = LegalizeOp(Result);
2087 Tmp2 = LegalizeOp(Ch);
2088 } else {
Evan Cheng08c171a2008-10-14 21:26:46 +00002089 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sands082524c2008-01-23 20:39:46 +00002090 default: assert(0 && "This action is not supported yet!");
2091 case TargetLowering::Custom:
2092 isCustom = true;
2093 // FALLTHROUGH
2094 case TargetLowering::Legal:
2095 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2096 Tmp1 = Result.getValue(0);
2097 Tmp2 = Result.getValue(1);
2098
2099 if (isCustom) {
2100 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002101 if (Tmp3.getNode()) {
Duncan Sands082524c2008-01-23 20:39:46 +00002102 Tmp1 = LegalizeOp(Tmp3);
2103 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2104 }
2105 } else {
2106 // If this is an unaligned load and the target doesn't support it,
2107 // expand it.
2108 if (!TLI.allowsUnalignedMemoryAccesses()) {
2109 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002110 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sands082524c2008-01-23 20:39:46 +00002111 if (LD->getAlignment() < ABIAlignment){
Gabor Greif1c80d112008-08-28 21:40:38 +00002112 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sands082524c2008-01-23 20:39:46 +00002113 TLI);
2114 Tmp1 = Result.getOperand(0);
2115 Tmp2 = Result.getOperand(1);
2116 Tmp1 = LegalizeOp(Tmp1);
2117 Tmp2 = LegalizeOp(Tmp2);
2118 }
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002119 }
2120 }
Duncan Sands082524c2008-01-23 20:39:46 +00002121 break;
2122 case TargetLowering::Expand:
2123 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2124 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002125 SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sands082524c2008-01-23 20:39:46 +00002126 LD->getSrcValueOffset(),
2127 LD->isVolatile(), LD->getAlignment());
2128 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2129 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2130 Tmp2 = LegalizeOp(Load.getValue(1));
2131 break;
2132 }
2133 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2134 // Turn the unsupported load into an EXTLOAD followed by an explicit
2135 // zero/sign extend inreg.
2136 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2137 Tmp1, Tmp2, LD->getSrcValue(),
2138 LD->getSrcValueOffset(), SrcVT,
2139 LD->isVolatile(), LD->getAlignment());
Dan Gohman8181bd12008-07-27 21:46:04 +00002140 SDValue ValRes;
Duncan Sands082524c2008-01-23 20:39:46 +00002141 if (ExtType == ISD::SEXTLOAD)
2142 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2143 Result, DAG.getValueType(SrcVT));
2144 else
2145 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2146 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2147 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002148 break;
2149 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002150 }
Duncan Sands082524c2008-01-23 20:39:46 +00002151
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002152 // Since loads produce two values, make sure to remember that we legalized
2153 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002154 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2155 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002156 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002157 }
2158 }
2159 case ISD::EXTRACT_ELEMENT: {
Duncan Sands92c43912008-06-06 12:08:01 +00002160 MVT OpTy = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002161 switch (getTypeAction(OpTy)) {
2162 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
2163 case Legal:
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002164 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002165 // 1 -> Hi
2166 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands92c43912008-06-06 12:08:01 +00002167 DAG.getConstant(OpTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002168 TLI.getShiftAmountTy()));
2169 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2170 } else {
2171 // 0 -> Lo
2172 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2173 Node->getOperand(0));
2174 }
2175 break;
2176 case Expand:
2177 // Get both the low and high parts.
2178 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00002179 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002180 Result = Tmp2; // 1 -> Hi
2181 else
2182 Result = Tmp1; // 0 -> Lo
2183 break;
2184 }
2185 break;
2186 }
2187
2188 case ISD::CopyToReg:
2189 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2190
2191 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
2192 "Register type must be legal!");
2193 // Legalize the incoming value (must be a legal type).
2194 Tmp2 = LegalizeOp(Node->getOperand(2));
2195 if (Node->getNumValues() == 1) {
2196 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
2197 } else {
2198 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
2199 if (Node->getNumOperands() == 4) {
2200 Tmp3 = LegalizeOp(Node->getOperand(3));
2201 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2202 Tmp3);
2203 } else {
2204 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
2205 }
2206
2207 // Since this produces two values, make sure to remember that we legalized
2208 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002209 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2210 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002211 return Result;
2212 }
2213 break;
2214
2215 case ISD::RET:
2216 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2217
2218 // Ensure that libcalls are emitted before a return.
2219 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2220 Tmp1 = LegalizeOp(Tmp1);
2221 LastCALLSEQ_END = DAG.getEntryNode();
2222
2223 switch (Node->getNumOperands()) {
2224 case 3: // ret val
2225 Tmp2 = Node->getOperand(1);
2226 Tmp3 = Node->getOperand(2); // Signness
2227 switch (getTypeAction(Tmp2.getValueType())) {
2228 case Legal:
2229 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
2230 break;
2231 case Expand:
Duncan Sands92c43912008-06-06 12:08:01 +00002232 if (!Tmp2.getValueType().isVector()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002233 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002234 ExpandOp(Tmp2, Lo, Hi);
2235
2236 // Big endian systems want the hi reg first.
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002237 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002238 std::swap(Lo, Hi);
2239
Gabor Greif1c80d112008-08-28 21:40:38 +00002240 if (Hi.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002241 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2242 else
2243 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
2244 Result = LegalizeOp(Result);
2245 } else {
Gabor Greif1c80d112008-08-28 21:40:38 +00002246 SDNode *InVal = Tmp2.getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002247 int InIx = Tmp2.getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002248 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2249 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002250
2251 // Figure out if there is a simple type corresponding to this Vector
2252 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002253 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002254 if (TLI.isTypeLegal(TVT)) {
2255 // Turn this into a return of the vector type.
2256 Tmp2 = LegalizeOp(Tmp2);
2257 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2258 } else if (NumElems == 1) {
2259 // Turn this into a return of the scalar type.
2260 Tmp2 = ScalarizeVectorOp(Tmp2);
2261 Tmp2 = LegalizeOp(Tmp2);
2262 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2263
2264 // FIXME: Returns of gcc generic vectors smaller than a legal type
2265 // should be returned in integer registers!
2266
2267 // The scalarized value type may not be legal, e.g. it might require
2268 // promotion or expansion. Relegalize the return.
2269 Result = LegalizeOp(Result);
2270 } else {
2271 // FIXME: Returns of gcc generic vectors larger than a legal vector
2272 // type should be returned by reference!
Dan Gohman8181bd12008-07-27 21:46:04 +00002273 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002274 SplitVectorOp(Tmp2, Lo, Hi);
2275 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2276 Result = LegalizeOp(Result);
2277 }
2278 }
2279 break;
2280 case Promote:
2281 Tmp2 = PromoteOp(Node->getOperand(1));
2282 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2283 Result = LegalizeOp(Result);
2284 break;
2285 }
2286 break;
2287 case 1: // ret void
2288 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2289 break;
2290 default: { // ret <values>
Dan Gohman8181bd12008-07-27 21:46:04 +00002291 SmallVector<SDValue, 8> NewValues;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002292 NewValues.push_back(Tmp1);
2293 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
2294 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2295 case Legal:
2296 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
2297 NewValues.push_back(Node->getOperand(i+1));
2298 break;
2299 case Expand: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002300 SDValue Lo, Hi;
Duncan Sands92c43912008-06-06 12:08:01 +00002301 assert(!Node->getOperand(i).getValueType().isExtended() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002302 "FIXME: TODO: implement returning non-legal vector types!");
2303 ExpandOp(Node->getOperand(i), Lo, Hi);
2304 NewValues.push_back(Lo);
2305 NewValues.push_back(Node->getOperand(i+1));
Gabor Greif1c80d112008-08-28 21:40:38 +00002306 if (Hi.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002307 NewValues.push_back(Hi);
2308 NewValues.push_back(Node->getOperand(i+1));
2309 }
2310 break;
2311 }
2312 case Promote:
2313 assert(0 && "Can't promote multiple return value yet!");
2314 }
2315
2316 if (NewValues.size() == Node->getNumOperands())
2317 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
2318 else
2319 Result = DAG.getNode(ISD::RET, MVT::Other,
2320 &NewValues[0], NewValues.size());
2321 break;
2322 }
2323 }
2324
2325 if (Result.getOpcode() == ISD::RET) {
2326 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2327 default: assert(0 && "This action is not supported yet!");
2328 case TargetLowering::Legal: break;
2329 case TargetLowering::Custom:
2330 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002331 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002332 break;
2333 }
2334 }
2335 break;
2336 case ISD::STORE: {
2337 StoreSDNode *ST = cast<StoreSDNode>(Node);
2338 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2339 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
2340 int SVOffset = ST->getSrcValueOffset();
2341 unsigned Alignment = ST->getAlignment();
2342 bool isVolatile = ST->isVolatile();
2343
2344 if (!ST->isTruncatingStore()) {
2345 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2346 // FIXME: We shouldn't do this for TargetConstantFP's.
2347 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2348 // to phase ordering between legalized code and the dag combiner. This
2349 // probably means that we need to integrate dag combiner and legalizer
2350 // together.
Dale Johannesen2fc20782007-09-14 22:26:36 +00002351 // We generally can't do this one for long doubles.
Chris Lattnere8671c52007-10-13 06:35:54 +00002352 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002353 if (CFP->getValueType(0) == MVT::f32 &&
2354 getTypeAction(MVT::i32) == Legal) {
Dan Gohman39509762008-03-11 00:11:06 +00002355 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002356 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen1616e902007-09-11 18:32:33 +00002357 MVT::i32);
Dale Johannesen2fc20782007-09-14 22:26:36 +00002358 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2359 SVOffset, isVolatile, Alignment);
2360 break;
2361 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002362 // If this target supports 64-bit registers, do a single 64-bit store.
2363 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002364 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman39509762008-03-11 00:11:06 +00002365 zextOrTrunc(64), MVT::i64);
Chris Lattner19f229a2007-10-15 05:46:06 +00002366 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2367 SVOffset, isVolatile, Alignment);
2368 break;
Duncan Sands2418bec2008-06-13 19:07:40 +00002369 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner19f229a2007-10-15 05:46:06 +00002370 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2371 // stores. If the target supports neither 32- nor 64-bits, this
2372 // xform is certainly not worth it.
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00002373 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman8181bd12008-07-27 21:46:04 +00002374 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2375 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00002376 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner19f229a2007-10-15 05:46:06 +00002377
2378 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2379 SVOffset, isVolatile, Alignment);
2380 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002381 DAG.getIntPtrConstant(4));
Chris Lattner19f229a2007-10-15 05:46:06 +00002382 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsa3691432007-10-28 12:59:45 +00002383 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner19f229a2007-10-15 05:46:06 +00002384
2385 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2386 break;
2387 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002388 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002389 }
2390
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002391 switch (getTypeAction(ST->getMemoryVT())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002392 case Legal: {
2393 Tmp3 = LegalizeOp(ST->getValue());
2394 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2395 ST->getOffset());
2396
Duncan Sands92c43912008-06-06 12:08:01 +00002397 MVT VT = Tmp3.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002398 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2399 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002400 case TargetLowering::Legal:
2401 // If this is an unaligned store and the target doesn't support it,
2402 // expand it.
2403 if (!TLI.allowsUnalignedMemoryAccesses()) {
2404 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002405 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002406 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002407 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002408 TLI);
2409 }
2410 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002411 case TargetLowering::Custom:
2412 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002413 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002414 break;
2415 case TargetLowering::Promote:
Duncan Sands92c43912008-06-06 12:08:01 +00002416 assert(VT.isVector() && "Unknown legal promote case!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002417 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2418 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2419 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
2420 ST->getSrcValue(), SVOffset, isVolatile,
2421 Alignment);
2422 break;
2423 }
2424 break;
2425 }
2426 case Promote:
2427 // Truncate the value and store the result.
2428 Tmp3 = PromoteOp(ST->getValue());
2429 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00002430 SVOffset, ST->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002431 isVolatile, Alignment);
2432 break;
2433
2434 case Expand:
2435 unsigned IncrementSize = 0;
Dan Gohman8181bd12008-07-27 21:46:04 +00002436 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002437
2438 // If this is a vector type, then we have to calculate the increment as
2439 // the product of the element size in bytes, and the number of elements
2440 // in the high half of the vector.
Duncan Sands92c43912008-06-06 12:08:01 +00002441 if (ST->getValue().getValueType().isVector()) {
Gabor Greif1c80d112008-08-28 21:40:38 +00002442 SDNode *InVal = ST->getValue().getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00002443 int InIx = ST->getValue().getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00002444 MVT InVT = InVal->getValueType(InIx);
2445 unsigned NumElems = InVT.getVectorNumElements();
2446 MVT EVT = InVT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002447
2448 // Figure out if there is a simple type corresponding to this Vector
2449 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00002450 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002451 if (TLI.isTypeLegal(TVT)) {
2452 // Turn this into a normal store of the vector type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002453 Tmp3 = LegalizeOp(ST->getValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002454 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2455 SVOffset, isVolatile, Alignment);
2456 Result = LegalizeOp(Result);
2457 break;
2458 } else if (NumElems == 1) {
2459 // Turn this into a normal store of the scalar type.
Dan Gohmane9f633d2008-02-15 18:11:59 +00002460 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002461 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2462 SVOffset, isVolatile, Alignment);
2463 // The scalarized value type may not be legal, e.g. it might require
2464 // promotion or expansion. Relegalize the scalar store.
2465 Result = LegalizeOp(Result);
2466 break;
2467 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002468 SplitVectorOp(ST->getValue(), Lo, Hi);
Gabor Greif1c80d112008-08-28 21:40:38 +00002469 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
Duncan Sands92c43912008-06-06 12:08:01 +00002470 EVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002471 }
2472 } else {
Dan Gohmane9f633d2008-02-15 18:11:59 +00002473 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greif1c80d112008-08-28 21:40:38 +00002474 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002475
Richard Pennington73ae9e42008-09-25 16:15:10 +00002476 if (Hi.getNode() && TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002477 std::swap(Lo, Hi);
2478 }
2479
2480 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2481 SVOffset, isVolatile, Alignment);
2482
Gabor Greif1c80d112008-08-28 21:40:38 +00002483 if (Hi.getNode() == NULL) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002484 // Must be int <-> float one-to-one expansion.
2485 Result = Lo;
2486 break;
2487 }
2488
2489 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner5872a362008-01-17 07:00:52 +00002490 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002491 assert(isTypeLegal(Tmp2.getValueType()) &&
2492 "Pointers must be legal!");
2493 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00002494 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002495 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2496 SVOffset, isVolatile, Alignment);
2497 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2498 break;
2499 }
2500 } else {
Chris Lattner3bc08502008-01-17 19:59:44 +00002501 switch (getTypeAction(ST->getValue().getValueType())) {
2502 case Legal:
2503 Tmp3 = LegalizeOp(ST->getValue());
2504 break;
2505 case Promote:
2506 // We can promote the value, the truncstore will still take care of it.
2507 Tmp3 = PromoteOp(ST->getValue());
2508 break;
2509 case Expand:
2510 // Just store the low part. This may become a non-trunc store, so make
2511 // sure to use getTruncStore, not UpdateNodeOperands below.
2512 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2513 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2514 SVOffset, MVT::i8, isVolatile, Alignment);
2515 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002516
Duncan Sands92c43912008-06-06 12:08:01 +00002517 MVT StVT = ST->getMemoryVT();
2518 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands40676662008-01-22 07:17:34 +00002519
Duncan Sands92c43912008-06-06 12:08:01 +00002520 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands40676662008-01-22 07:17:34 +00002521 // Promote to a byte-sized store with upper bits zero if not
2522 // storing an integral number of bytes. For example, promote
2523 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands92c43912008-06-06 12:08:01 +00002524 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands40676662008-01-22 07:17:34 +00002525 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2526 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2527 SVOffset, NVT, isVolatile, Alignment);
2528 } else if (StWidth & (StWidth - 1)) {
2529 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands92c43912008-06-06 12:08:01 +00002530 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands40676662008-01-22 07:17:34 +00002531 "Unsupported truncstore!");
2532 unsigned RoundWidth = 1 << Log2_32(StWidth);
2533 assert(RoundWidth < StWidth);
2534 unsigned ExtraWidth = StWidth - RoundWidth;
2535 assert(ExtraWidth < RoundWidth);
2536 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2537 "Store size not an integral number of bytes!");
Duncan Sands92c43912008-06-06 12:08:01 +00002538 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2539 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman8181bd12008-07-27 21:46:04 +00002540 SDValue Lo, Hi;
Duncan Sands40676662008-01-22 07:17:34 +00002541 unsigned IncrementSize;
2542
2543 if (TLI.isLittleEndian()) {
2544 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2545 // Store the bottom RoundWidth bits.
2546 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2547 SVOffset, RoundVT,
2548 isVolatile, Alignment);
2549
2550 // Store the remaining ExtraWidth bits.
2551 IncrementSize = RoundWidth / 8;
2552 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2553 DAG.getIntPtrConstant(IncrementSize));
2554 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2555 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2556 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2557 SVOffset + IncrementSize, ExtraVT, isVolatile,
2558 MinAlign(Alignment, IncrementSize));
2559 } else {
2560 // Big endian - avoid unaligned stores.
2561 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2562 // Store the top RoundWidth bits.
2563 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2564 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2565 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2566 RoundVT, isVolatile, Alignment);
2567
2568 // Store the remaining ExtraWidth bits.
2569 IncrementSize = RoundWidth / 8;
2570 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2571 DAG.getIntPtrConstant(IncrementSize));
2572 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2573 SVOffset + IncrementSize, ExtraVT, isVolatile,
2574 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio578434f2007-08-01 19:34:21 +00002575 }
Duncan Sands40676662008-01-22 07:17:34 +00002576
2577 // The order of the stores doesn't matter.
2578 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2579 } else {
2580 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2581 Tmp2 != ST->getBasePtr())
2582 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2583 ST->getOffset());
2584
2585 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2586 default: assert(0 && "This action is not supported yet!");
2587 case TargetLowering::Legal:
2588 // If this is an unaligned store and the target doesn't support it,
2589 // expand it.
2590 if (!TLI.allowsUnalignedMemoryAccesses()) {
2591 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands92c43912008-06-06 12:08:01 +00002592 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands40676662008-01-22 07:17:34 +00002593 if (ST->getAlignment() < ABIAlignment)
Gabor Greif1c80d112008-08-28 21:40:38 +00002594 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands40676662008-01-22 07:17:34 +00002595 TLI);
2596 }
2597 break;
2598 case TargetLowering::Custom:
2599 Result = TLI.LowerOperation(Result, DAG);
2600 break;
2601 case Expand:
2602 // TRUNCSTORE:i16 i32 -> STORE i16
2603 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2604 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2605 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2606 isVolatile, Alignment);
2607 break;
2608 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002609 }
2610 }
2611 break;
2612 }
2613 case ISD::PCMARKER:
2614 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2615 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
2616 break;
2617 case ISD::STACKSAVE:
2618 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2619 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2620 Tmp1 = Result.getValue(0);
2621 Tmp2 = Result.getValue(1);
2622
2623 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2624 default: assert(0 && "This action is not supported yet!");
2625 case TargetLowering::Legal: break;
2626 case TargetLowering::Custom:
2627 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002628 if (Tmp3.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002629 Tmp1 = LegalizeOp(Tmp3);
2630 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2631 }
2632 break;
2633 case TargetLowering::Expand:
2634 // Expand to CopyFromReg if the target set
2635 // StackPointerRegisterToSaveRestore.
2636 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2637 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
2638 Node->getValueType(0));
2639 Tmp2 = Tmp1.getValue(1);
2640 } else {
2641 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2642 Tmp2 = Node->getOperand(0);
2643 }
2644 break;
2645 }
2646
2647 // Since stacksave produce two values, make sure to remember that we
2648 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002649 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2650 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002651 return Op.getResNo() ? Tmp2 : Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002652
2653 case ISD::STACKRESTORE:
2654 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2655 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2656 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2657
2658 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2659 default: assert(0 && "This action is not supported yet!");
2660 case TargetLowering::Legal: break;
2661 case TargetLowering::Custom:
2662 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002663 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002664 break;
2665 case TargetLowering::Expand:
2666 // Expand to CopyToReg if the target set
2667 // StackPointerRegisterToSaveRestore.
2668 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2669 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2670 } else {
2671 Result = Tmp1;
2672 }
2673 break;
2674 }
2675 break;
2676
2677 case ISD::READCYCLECOUNTER:
2678 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
2679 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2680 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2681 Node->getValueType(0))) {
2682 default: assert(0 && "This action is not supported yet!");
2683 case TargetLowering::Legal:
2684 Tmp1 = Result.getValue(0);
2685 Tmp2 = Result.getValue(1);
2686 break;
2687 case TargetLowering::Custom:
2688 Result = TLI.LowerOperation(Result, DAG);
2689 Tmp1 = LegalizeOp(Result.getValue(0));
2690 Tmp2 = LegalizeOp(Result.getValue(1));
2691 break;
2692 }
2693
2694 // Since rdcc produce two values, make sure to remember that we legalized
2695 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00002696 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2697 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002698 return Result;
2699
2700 case ISD::SELECT:
2701 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2702 case Expand: assert(0 && "It's impossible to expand bools");
2703 case Legal:
2704 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2705 break;
Dan Gohman07961cd2008-02-25 21:11:39 +00002706 case Promote: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002707 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
2708 // Make sure the condition is either zero or one.
Dan Gohman07961cd2008-02-25 21:11:39 +00002709 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002710 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman07961cd2008-02-25 21:11:39 +00002711 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002712 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
2713 break;
2714 }
Dan Gohman07961cd2008-02-25 21:11:39 +00002715 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002716 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
2717 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
2718
2719 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2720
2721 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
2722 default: assert(0 && "This action is not supported yet!");
2723 case TargetLowering::Legal: break;
2724 case TargetLowering::Custom: {
2725 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002726 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002727 break;
2728 }
2729 case TargetLowering::Expand:
2730 if (Tmp1.getOpcode() == ISD::SETCC) {
2731 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2732 Tmp2, Tmp3,
2733 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2734 } else {
2735 Result = DAG.getSelectCC(Tmp1,
2736 DAG.getConstant(0, Tmp1.getValueType()),
2737 Tmp2, Tmp3, ISD::SETNE);
2738 }
2739 break;
2740 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00002741 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002742 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2743 unsigned ExtOp, TruncOp;
Duncan Sands92c43912008-06-06 12:08:01 +00002744 if (Tmp2.getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002745 ExtOp = ISD::BIT_CONVERT;
2746 TruncOp = ISD::BIT_CONVERT;
Duncan Sands92c43912008-06-06 12:08:01 +00002747 } else if (Tmp2.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002748 ExtOp = ISD::ANY_EXTEND;
2749 TruncOp = ISD::TRUNCATE;
2750 } else {
2751 ExtOp = ISD::FP_EXTEND;
2752 TruncOp = ISD::FP_ROUND;
2753 }
2754 // Promote each of the values to the new type.
2755 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2756 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2757 // Perform the larger operation, then round down.
2758 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner5872a362008-01-17 07:00:52 +00002759 if (TruncOp != ISD::FP_ROUND)
2760 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2761 else
2762 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2763 DAG.getIntPtrConstant(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002764 break;
2765 }
2766 }
2767 break;
2768 case ISD::SELECT_CC: {
2769 Tmp1 = Node->getOperand(0); // LHS
2770 Tmp2 = Node->getOperand(1); // RHS
2771 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2772 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman8181bd12008-07-27 21:46:04 +00002773 SDValue CC = Node->getOperand(4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002774
2775 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2776
2777 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2778 // the LHS is a legal SETCC itself. In this case, we need to compare
2779 // the result against zero to select between true and false values.
Gabor Greif1c80d112008-08-28 21:40:38 +00002780 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002781 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2782 CC = DAG.getCondCode(ISD::SETNE);
2783 }
2784 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2785
2786 // Everything is legal, see if we should expand this op or something.
2787 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2788 default: assert(0 && "This action is not supported yet!");
2789 case TargetLowering::Legal: break;
2790 case TargetLowering::Custom:
2791 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002792 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002793 break;
2794 }
2795 break;
2796 }
2797 case ISD::SETCC:
2798 Tmp1 = Node->getOperand(0);
2799 Tmp2 = Node->getOperand(1);
2800 Tmp3 = Node->getOperand(2);
2801 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2802
2803 // If we had to Expand the SetCC operands into a SELECT node, then it may
2804 // not always be possible to return a true LHS & RHS. In this case, just
2805 // return the value we legalized, returned in the LHS
Gabor Greif1c80d112008-08-28 21:40:38 +00002806 if (Tmp2.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002807 Result = Tmp1;
2808 break;
2809 }
2810
2811 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
2812 default: assert(0 && "Cannot handle this action for SETCC yet!");
2813 case TargetLowering::Custom:
2814 isCustom = true;
2815 // FALLTHROUGH.
2816 case TargetLowering::Legal:
2817 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2818 if (isCustom) {
2819 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002820 if (Tmp4.getNode()) Result = Tmp4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002821 }
2822 break;
2823 case TargetLowering::Promote: {
2824 // First step, figure out the appropriate operation to use.
2825 // Allow SETCC to not be supported for all legal data types
2826 // Mostly this targets FP
Duncan Sands92c43912008-06-06 12:08:01 +00002827 MVT NewInTy = Node->getOperand(0).getValueType();
2828 MVT OldVT = NewInTy; OldVT = OldVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002829
2830 // Scan for the appropriate larger type to use.
2831 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00002832 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002833
Duncan Sands92c43912008-06-06 12:08:01 +00002834 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002835 "Fell off of the edge of the integer world");
Duncan Sands92c43912008-06-06 12:08:01 +00002836 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002837 "Fell off of the edge of the floating point world");
2838
2839 // If the target supports SETCC of this type, use it.
2840 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
2841 break;
2842 }
Duncan Sands92c43912008-06-06 12:08:01 +00002843 if (NewInTy.isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002844 assert(0 && "Cannot promote Legal Integer SETCC yet");
2845 else {
2846 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2847 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2848 }
2849 Tmp1 = LegalizeOp(Tmp1);
2850 Tmp2 = LegalizeOp(Tmp2);
2851 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2852 Result = LegalizeOp(Result);
2853 break;
2854 }
2855 case TargetLowering::Expand:
2856 // Expand a setcc node into a select_cc of the same condition, lhs, and
2857 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands92c43912008-06-06 12:08:01 +00002858 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002859 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2860 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2861 Tmp3);
2862 break;
2863 }
2864 break;
Nate Begeman9a1ce152008-05-12 19:40:03 +00002865 case ISD::VSETCC: {
2866 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2867 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman8181bd12008-07-27 21:46:04 +00002868 SDValue CC = Node->getOperand(2);
Nate Begeman9a1ce152008-05-12 19:40:03 +00002869
2870 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2871
2872 // Everything is legal, see if we should expand this op or something.
2873 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2874 default: assert(0 && "This action is not supported yet!");
2875 case TargetLowering::Legal: break;
2876 case TargetLowering::Custom:
2877 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002878 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9a1ce152008-05-12 19:40:03 +00002879 break;
2880 }
2881 break;
2882 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002883
2884 case ISD::SHL_PARTS:
2885 case ISD::SRA_PARTS:
2886 case ISD::SRL_PARTS: {
Dan Gohman8181bd12008-07-27 21:46:04 +00002887 SmallVector<SDValue, 8> Ops;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002888 bool Changed = false;
2889 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2890 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2891 Changed |= Ops.back() != Node->getOperand(i);
2892 }
2893 if (Changed)
2894 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
2895
2896 switch (TLI.getOperationAction(Node->getOpcode(),
2897 Node->getValueType(0))) {
2898 default: assert(0 && "This action is not supported yet!");
2899 case TargetLowering::Legal: break;
2900 case TargetLowering::Custom:
2901 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002902 if (Tmp1.getNode()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00002903 SDValue Tmp2, RetVal(0, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002904 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
2905 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman8181bd12008-07-27 21:46:04 +00002906 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif46bf5472008-08-26 22:36:50 +00002907 if (i == Op.getResNo())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002908 RetVal = Tmp2;
2909 }
Gabor Greif1c80d112008-08-28 21:40:38 +00002910 assert(RetVal.getNode() && "Illegal result number");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002911 return RetVal;
2912 }
2913 break;
2914 }
2915
2916 // Since these produce multiple values, make sure to remember that we
2917 // legalized all of them.
2918 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman8181bd12008-07-27 21:46:04 +00002919 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif46bf5472008-08-26 22:36:50 +00002920 return Result.getValue(Op.getResNo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002921 }
2922
2923 // Binary operators
2924 case ISD::ADD:
2925 case ISD::SUB:
2926 case ISD::MUL:
2927 case ISD::MULHS:
2928 case ISD::MULHU:
2929 case ISD::UDIV:
2930 case ISD::SDIV:
2931 case ISD::AND:
2932 case ISD::OR:
2933 case ISD::XOR:
2934 case ISD::SHL:
2935 case ISD::SRL:
2936 case ISD::SRA:
2937 case ISD::FADD:
2938 case ISD::FSUB:
2939 case ISD::FMUL:
2940 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00002941 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002942 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2943 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2944 case Expand: assert(0 && "Not possible");
2945 case Legal:
2946 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2947 break;
2948 case Promote:
2949 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2950 break;
2951 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00002952
2953 if ((Node->getOpcode() == ISD::SHL ||
2954 Node->getOpcode() == ISD::SRL ||
2955 Node->getOpcode() == ISD::SRA) &&
2956 !Node->getValueType(0).isVector()) {
2957 if (TLI.getShiftAmountTy().bitsLT(Tmp2.getValueType()))
2958 Tmp2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Tmp2);
2959 else if (TLI.getShiftAmountTy().bitsGT(Tmp2.getValueType()))
2960 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Tmp2);
2961 }
2962
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002963 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2964
2965 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2966 default: assert(0 && "BinOp legalize operation not supported");
2967 case TargetLowering::Legal: break;
2968 case TargetLowering::Custom:
2969 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00002970 if (Tmp1.getNode()) {
Nate Begemanbb1ce942008-07-29 15:49:41 +00002971 Result = Tmp1;
2972 break;
Nate Begeman7569e762008-07-29 19:07:27 +00002973 }
Nate Begemanbb1ce942008-07-29 15:49:41 +00002974 // Fall through if the custom lower can't deal with the operation
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002975 case TargetLowering::Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00002976 MVT VT = Op.getValueType();
Dan Gohman5a199552007-10-08 18:33:35 +00002977
2978 // See if multiply or divide can be lowered using two-result operations.
2979 SDVTList VTs = DAG.getVTList(VT, VT);
2980 if (Node->getOpcode() == ISD::MUL) {
2981 // We just need the low half of the multiply; try both the signed
2982 // and unsigned forms. If the target supports both SMUL_LOHI and
2983 // UMUL_LOHI, form a preference by checking which forms of plain
2984 // MULH it supports.
2985 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2986 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2987 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2988 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2989 unsigned OpToUse = 0;
2990 if (HasSMUL_LOHI && !HasMULHS) {
2991 OpToUse = ISD::SMUL_LOHI;
2992 } else if (HasUMUL_LOHI && !HasMULHU) {
2993 OpToUse = ISD::UMUL_LOHI;
2994 } else if (HasSMUL_LOHI) {
2995 OpToUse = ISD::SMUL_LOHI;
2996 } else if (HasUMUL_LOHI) {
2997 OpToUse = ISD::UMUL_LOHI;
2998 }
2999 if (OpToUse) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003000 Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003001 break;
3002 }
3003 }
3004 if (Node->getOpcode() == ISD::MULHS &&
3005 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
Chris Lattner48188652008-10-04 21:27:46 +00003006 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).getNode(),
3007 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003008 break;
3009 }
3010 if (Node->getOpcode() == ISD::MULHU &&
3011 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
Chris Lattner48188652008-10-04 21:27:46 +00003012 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).getNode(),
3013 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003014 break;
3015 }
3016 if (Node->getOpcode() == ISD::SDIV &&
3017 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Chris Lattner48188652008-10-04 21:27:46 +00003018 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(),
3019 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003020 break;
3021 }
3022 if (Node->getOpcode() == ISD::UDIV &&
3023 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Chris Lattner48188652008-10-04 21:27:46 +00003024 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(),
3025 0);
Dan Gohman5a199552007-10-08 18:33:35 +00003026 break;
3027 }
3028
Dan Gohman6d05cac2007-10-11 23:57:53 +00003029 // Check to see if we have a libcall for this operator.
3030 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3031 bool isSigned = false;
3032 switch (Node->getOpcode()) {
3033 case ISD::UDIV:
3034 case ISD::SDIV:
3035 if (VT == MVT::i32) {
3036 LC = Node->getOpcode() == ISD::UDIV
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003037 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003038 isSigned = Node->getOpcode() == ISD::SDIV;
3039 }
3040 break;
Chris Lattner48188652008-10-04 21:27:46 +00003041 case ISD::MUL:
3042 if (VT == MVT::i32)
3043 LC = RTLIB::MUL_I32;
3044 break;
Dan Gohman6d05cac2007-10-11 23:57:53 +00003045 case ISD::FPOW:
Duncan Sands37a3f472008-01-10 10:28:30 +00003046 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3047 RTLIB::POW_PPCF128);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003048 break;
3049 default: break;
3050 }
3051 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003052 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003053 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003054 break;
3055 }
3056
Duncan Sands92c43912008-06-06 12:08:01 +00003057 assert(Node->getValueType(0).isVector() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003058 "Cannot expand this binary operator!");
3059 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman6d05cac2007-10-11 23:57:53 +00003060 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003061 break;
3062 }
3063 case TargetLowering::Promote: {
3064 switch (Node->getOpcode()) {
3065 default: assert(0 && "Do not know how to promote this BinOp!");
3066 case ISD::AND:
3067 case ISD::OR:
3068 case ISD::XOR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003069 MVT OVT = Node->getValueType(0);
3070 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3071 assert(OVT.isVector() && "Cannot promote this BinOp!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003072 // Bit convert each of the values to the new type.
3073 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3074 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3075 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3076 // Bit convert the result back the original type.
3077 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3078 break;
3079 }
3080 }
3081 }
3082 }
3083 break;
3084
Dan Gohman475cd732007-10-05 14:17:22 +00003085 case ISD::SMUL_LOHI:
3086 case ISD::UMUL_LOHI:
3087 case ISD::SDIVREM:
3088 case ISD::UDIVREM:
3089 // These nodes will only be produced by target-specific lowering, so
3090 // they shouldn't be here if they aren't legal.
Duncan Sandsb42a44e2007-10-16 09:07:20 +00003091 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohman475cd732007-10-05 14:17:22 +00003092 "This must be legal!");
Dan Gohman5a199552007-10-08 18:33:35 +00003093
3094 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3095 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3096 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman475cd732007-10-05 14:17:22 +00003097 break;
3098
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003099 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3100 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3101 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3102 case Expand: assert(0 && "Not possible");
3103 case Legal:
3104 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3105 break;
3106 case Promote:
3107 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3108 break;
3109 }
3110
3111 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3112
3113 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3114 default: assert(0 && "Operation not supported");
3115 case TargetLowering::Custom:
3116 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003117 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003118 break;
3119 case TargetLowering::Legal: break;
3120 case TargetLowering::Expand: {
3121 // If this target supports fabs/fneg natively and select is cheap,
3122 // do this efficiently.
3123 if (!TLI.isSelectExpensive() &&
3124 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3125 TargetLowering::Legal &&
3126 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
3127 TargetLowering::Legal) {
3128 // Get the sign bit of the RHS.
Duncan Sands92c43912008-06-06 12:08:01 +00003129 MVT IVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003130 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman8181bd12008-07-27 21:46:04 +00003131 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel502151f2008-03-10 15:42:14 +00003132 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003133 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3134 // Get the absolute value of the result.
Dan Gohman8181bd12008-07-27 21:46:04 +00003135 SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003136 // Select between the nabs and abs value based on the sign bit of
3137 // the input.
3138 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3139 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3140 AbsVal),
3141 AbsVal);
3142 Result = LegalizeOp(Result);
3143 break;
3144 }
3145
3146 // Otherwise, do bitwise ops!
Duncan Sands92c43912008-06-06 12:08:01 +00003147 MVT NVT =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003148 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3149 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3150 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3151 Result = LegalizeOp(Result);
3152 break;
3153 }
3154 }
3155 break;
3156
3157 case ISD::ADDC:
3158 case ISD::SUBC:
3159 Tmp1 = LegalizeOp(Node->getOperand(0));
3160 Tmp2 = LegalizeOp(Node->getOperand(1));
3161 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3162 // Since this produces two values, make sure to remember that we legalized
3163 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003164 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3165 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003166 return Result;
3167
3168 case ISD::ADDE:
3169 case ISD::SUBE:
3170 Tmp1 = LegalizeOp(Node->getOperand(0));
3171 Tmp2 = LegalizeOp(Node->getOperand(1));
3172 Tmp3 = LegalizeOp(Node->getOperand(2));
3173 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3174 // Since this produces two values, make sure to remember that we legalized
3175 // both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003176 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3177 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003178 return Result;
3179
3180 case ISD::BUILD_PAIR: {
Duncan Sands92c43912008-06-06 12:08:01 +00003181 MVT PairTy = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003182 // TODO: handle the case where the Lo and Hi operands are not of legal type
3183 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3184 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3185 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
3186 case TargetLowering::Promote:
3187 case TargetLowering::Custom:
3188 assert(0 && "Cannot promote/custom this yet!");
3189 case TargetLowering::Legal:
3190 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3191 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3192 break;
3193 case TargetLowering::Expand:
3194 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3195 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3196 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003197 DAG.getConstant(PairTy.getSizeInBits()/2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003198 TLI.getShiftAmountTy()));
3199 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
3200 break;
3201 }
3202 break;
3203 }
3204
3205 case ISD::UREM:
3206 case ISD::SREM:
3207 case ISD::FREM:
3208 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3209 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3210
3211 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3212 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3213 case TargetLowering::Custom:
3214 isCustom = true;
3215 // FALLTHROUGH
3216 case TargetLowering::Legal:
3217 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3218 if (isCustom) {
3219 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003220 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003221 }
3222 break;
Dan Gohman5a199552007-10-08 18:33:35 +00003223 case TargetLowering::Expand: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003224 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
3225 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands92c43912008-06-06 12:08:01 +00003226 MVT VT = Node->getValueType(0);
Dan Gohman5a199552007-10-08 18:33:35 +00003227
3228 // See if remainder can be lowered using two-result operations.
3229 SDVTList VTs = DAG.getVTList(VT, VT);
3230 if (Node->getOpcode() == ISD::SREM &&
3231 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003232 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003233 break;
3234 }
3235 if (Node->getOpcode() == ISD::UREM &&
3236 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Gabor Greif1c80d112008-08-28 21:40:38 +00003237 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00003238 break;
3239 }
3240
Duncan Sands92c43912008-06-06 12:08:01 +00003241 if (VT.isInteger()) {
Dan Gohman5a199552007-10-08 18:33:35 +00003242 if (TLI.getOperationAction(DivOpc, VT) ==
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003243 TargetLowering::Legal) {
3244 // X % Y -> X-X/Y*Y
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003245 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
3246 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3247 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands92c43912008-06-06 12:08:01 +00003248 } else if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003249 Result = LegalizeOp(UnrollVectorOp(Op));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003250 } else {
Dan Gohman5a199552007-10-08 18:33:35 +00003251 assert(VT == MVT::i32 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003252 "Cannot expand this binary operator!");
3253 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3254 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman8181bd12008-07-27 21:46:04 +00003255 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003256 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003257 }
Dan Gohman59b4b102007-11-06 22:11:54 +00003258 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00003259 assert(VT.isFloatingPoint() &&
Dan Gohman59b4b102007-11-06 22:11:54 +00003260 "remainder op must have integer or floating-point type");
Duncan Sands92c43912008-06-06 12:08:01 +00003261 if (VT.isVector()) {
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003262 Result = LegalizeOp(UnrollVectorOp(Op));
3263 } else {
3264 // Floating point mod -> fmod libcall.
Duncan Sands37a3f472008-01-10 10:28:30 +00003265 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3266 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003267 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003268 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman3e3fd8c2007-11-05 23:35:22 +00003269 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003270 }
3271 break;
3272 }
Dan Gohman5a199552007-10-08 18:33:35 +00003273 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003274 break;
3275 case ISD::VAARG: {
3276 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3277 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3278
Duncan Sands92c43912008-06-06 12:08:01 +00003279 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003280 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3281 default: assert(0 && "This action is not supported yet!");
3282 case TargetLowering::Custom:
3283 isCustom = true;
3284 // FALLTHROUGH
3285 case TargetLowering::Legal:
3286 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3287 Result = Result.getValue(0);
3288 Tmp1 = Result.getValue(1);
3289
3290 if (isCustom) {
3291 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003292 if (Tmp2.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003293 Result = LegalizeOp(Tmp2);
3294 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3295 }
3296 }
3297 break;
3298 case TargetLowering::Expand: {
Dan Gohman12a9c082008-02-06 22:27:42 +00003299 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00003300 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003301 // Increment the pointer, VAList, to the next vaarg
3302 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00003303 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003304 TLI.getPointerTy()));
3305 // Store the incremented VAList to the legalized pointer
Dan Gohman12a9c082008-02-06 22:27:42 +00003306 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003307 // Load the actual argument out of the pointer VAList
3308 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
3309 Tmp1 = LegalizeOp(Result.getValue(1));
3310 Result = LegalizeOp(Result);
3311 break;
3312 }
3313 }
3314 // Since VAARG produces two values, make sure to remember that we
3315 // legalized both of them.
Dan Gohman8181bd12008-07-27 21:46:04 +00003316 AddLegalizedOperand(SDValue(Node, 0), Result);
3317 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003318 return Op.getResNo() ? Tmp1 : Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003319 }
3320
3321 case ISD::VACOPY:
3322 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3323 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3324 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3325
3326 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3327 default: assert(0 && "This action is not supported yet!");
3328 case TargetLowering::Custom:
3329 isCustom = true;
3330 // FALLTHROUGH
3331 case TargetLowering::Legal:
3332 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3333 Node->getOperand(3), Node->getOperand(4));
3334 if (isCustom) {
3335 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003336 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003337 }
3338 break;
3339 case TargetLowering::Expand:
3340 // This defaults to loading a pointer from the input and storing it to the
3341 // output, returning the chain.
Dan Gohman12a9c082008-02-06 22:27:42 +00003342 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3343 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman6b9a08e2008-04-17 02:09:26 +00003344 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3345 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003346 break;
3347 }
3348 break;
3349
3350 case ISD::VAEND:
3351 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3352 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3353
3354 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3355 default: assert(0 && "This action is not supported yet!");
3356 case TargetLowering::Custom:
3357 isCustom = true;
3358 // FALLTHROUGH
3359 case TargetLowering::Legal:
3360 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3361 if (isCustom) {
3362 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003363 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003364 }
3365 break;
3366 case TargetLowering::Expand:
3367 Result = Tmp1; // Default to a no-op, return the chain
3368 break;
3369 }
3370 break;
3371
3372 case ISD::VASTART:
3373 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3374 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3375
3376 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3377
3378 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3379 default: assert(0 && "This action is not supported yet!");
3380 case TargetLowering::Legal: break;
3381 case TargetLowering::Custom:
3382 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003383 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003384 break;
3385 }
3386 break;
3387
3388 case ISD::ROTL:
3389 case ISD::ROTR:
3390 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3391 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3392 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3393 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3394 default:
3395 assert(0 && "ROTL/ROTR legalize operation not supported");
3396 break;
3397 case TargetLowering::Legal:
3398 break;
3399 case TargetLowering::Custom:
3400 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003401 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003402 break;
3403 case TargetLowering::Promote:
3404 assert(0 && "Do not know how to promote ROTL/ROTR");
3405 break;
3406 case TargetLowering::Expand:
3407 assert(0 && "Do not know how to expand ROTL/ROTR");
3408 break;
3409 }
3410 break;
3411
3412 case ISD::BSWAP:
3413 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3414 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3415 case TargetLowering::Custom:
3416 assert(0 && "Cannot custom legalize this yet!");
3417 case TargetLowering::Legal:
3418 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3419 break;
3420 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003421 MVT OVT = Tmp1.getValueType();
3422 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3423 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003424
3425 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3426 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3427 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3428 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3429 break;
3430 }
3431 case TargetLowering::Expand:
3432 Result = ExpandBSWAP(Tmp1);
3433 break;
3434 }
3435 break;
3436
3437 case ISD::CTPOP:
3438 case ISD::CTTZ:
3439 case ISD::CTLZ:
3440 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3441 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel48b63e62007-07-30 21:00:31 +00003442 case TargetLowering::Custom:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003443 case TargetLowering::Legal:
3444 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel48b63e62007-07-30 21:00:31 +00003445 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michelbc62b412007-08-02 02:22:46 +00003446 TargetLowering::Custom) {
3447 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003448 if (Tmp1.getNode()) {
Scott Michelbc62b412007-08-02 02:22:46 +00003449 Result = Tmp1;
3450 }
Scott Michel48b63e62007-07-30 21:00:31 +00003451 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003452 break;
3453 case TargetLowering::Promote: {
Duncan Sands92c43912008-06-06 12:08:01 +00003454 MVT OVT = Tmp1.getValueType();
3455 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003456
3457 // Zero extend the argument.
3458 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3459 // Perform the larger operation, then subtract if needed.
3460 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
3461 switch (Node->getOpcode()) {
3462 case ISD::CTPOP:
3463 Result = Tmp1;
3464 break;
3465 case ISD::CTTZ:
3466 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel502151f2008-03-10 15:42:14 +00003467 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003468 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003469 ISD::SETEQ);
3470 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00003471 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003472 break;
3473 case ISD::CTLZ:
3474 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
3475 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00003476 DAG.getConstant(NVT.getSizeInBits() -
3477 OVT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003478 break;
3479 }
3480 break;
3481 }
3482 case TargetLowering::Expand:
3483 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
3484 break;
3485 }
3486 break;
3487
3488 // Unary operators
3489 case ISD::FABS:
3490 case ISD::FNEG:
3491 case ISD::FSQRT:
3492 case ISD::FSIN:
3493 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003494 case ISD::FLOG:
3495 case ISD::FLOG2:
3496 case ISD::FLOG10:
3497 case ISD::FEXP:
3498 case ISD::FEXP2:
Dan Gohmanc8b20e22008-08-21 17:55:02 +00003499 case ISD::FTRUNC:
3500 case ISD::FFLOOR:
3501 case ISD::FCEIL:
3502 case ISD::FRINT:
3503 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003504 Tmp1 = LegalizeOp(Node->getOperand(0));
3505 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3506 case TargetLowering::Promote:
3507 case TargetLowering::Custom:
3508 isCustom = true;
3509 // FALLTHROUGH
3510 case TargetLowering::Legal:
3511 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3512 if (isCustom) {
3513 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003514 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003515 }
3516 break;
3517 case TargetLowering::Expand:
3518 switch (Node->getOpcode()) {
3519 default: assert(0 && "Unreachable!");
3520 case ISD::FNEG:
3521 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3522 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3523 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
3524 break;
3525 case ISD::FABS: {
3526 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands92c43912008-06-06 12:08:01 +00003527 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003528 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel502151f2008-03-10 15:42:14 +00003529 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00003530 ISD::SETUGT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003531 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3532 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
3533 break;
3534 }
Evan Cheng1fac6952008-09-09 23:35:53 +00003535 case ISD::FSQRT:
3536 case ISD::FSIN:
3537 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00003538 case ISD::FLOG:
3539 case ISD::FLOG2:
3540 case ISD::FLOG10:
3541 case ISD::FEXP:
3542 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00003543 case ISD::FTRUNC:
3544 case ISD::FFLOOR:
3545 case ISD::FCEIL:
3546 case ISD::FRINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00003547 case ISD::FNEARBYINT: {
Duncan Sands92c43912008-06-06 12:08:01 +00003548 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003549
3550 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003551 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003552 Result = LegalizeOp(UnrollVectorOp(Op));
3553 break;
3554 }
3555
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003556 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3557 switch(Node->getOpcode()) {
3558 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00003559 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3560 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003561 break;
3562 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00003563 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3564 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003565 break;
3566 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00003567 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3568 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003569 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00003570 case ISD::FLOG:
3571 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3572 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3573 break;
3574 case ISD::FLOG2:
3575 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3576 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3577 break;
3578 case ISD::FLOG10:
3579 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3580 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3581 break;
3582 case ISD::FEXP:
3583 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3584 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3585 break;
3586 case ISD::FEXP2:
3587 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3588 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3589 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00003590 case ISD::FTRUNC:
3591 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3592 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3593 break;
3594 case ISD::FFLOOR:
3595 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3596 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3597 break;
3598 case ISD::FCEIL:
3599 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3600 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3601 break;
3602 case ISD::FRINT:
3603 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3604 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3605 break;
3606 case ISD::FNEARBYINT:
3607 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3608 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3609 break;
Evan Cheng1fac6952008-09-09 23:35:53 +00003610 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003611 default: assert(0 && "Unreachable!");
3612 }
Dan Gohman8181bd12008-07-27 21:46:04 +00003613 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003614 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003615 break;
3616 }
3617 }
3618 break;
3619 }
3620 break;
3621 case ISD::FPOWI: {
Duncan Sands92c43912008-06-06 12:08:01 +00003622 MVT VT = Node->getValueType(0);
Dan Gohman6d05cac2007-10-11 23:57:53 +00003623
3624 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands92c43912008-06-06 12:08:01 +00003625 if (VT.isVector()) {
Dan Gohman6d05cac2007-10-11 23:57:53 +00003626 Result = LegalizeOp(UnrollVectorOp(Op));
3627 break;
3628 }
3629
3630 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands37a3f472008-01-10 10:28:30 +00003631 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3632 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman8181bd12008-07-27 21:46:04 +00003633 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003634 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003635 break;
3636 }
3637 case ISD::BIT_CONVERT:
3638 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003639 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3640 Node->getValueType(0));
Duncan Sands92c43912008-06-06 12:08:01 +00003641 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003642 // The input has to be a vector type, we have to either scalarize it, pack
3643 // it, or convert it based on whether the input vector type is legal.
Gabor Greif1c80d112008-08-28 21:40:38 +00003644 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif46bf5472008-08-26 22:36:50 +00003645 int InIx = Node->getOperand(0).getResNo();
Duncan Sands92c43912008-06-06 12:08:01 +00003646 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3647 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003648
3649 // Figure out if there is a simple type corresponding to this Vector
3650 // type. If so, convert to the vector type.
Duncan Sands92c43912008-06-06 12:08:01 +00003651 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003652 if (TLI.isTypeLegal(TVT)) {
3653 // Turn this into a bit convert of the vector input.
3654 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3655 LegalizeOp(Node->getOperand(0)));
3656 break;
3657 } else if (NumElems == 1) {
3658 // Turn this into a bit convert of the scalar input.
3659 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3660 ScalarizeVectorOp(Node->getOperand(0)));
3661 break;
3662 } else {
3663 // FIXME: UNIMP! Store then reload
3664 assert(0 && "Cast from unsupported vector type not implemented yet!");
3665 }
3666 } else {
3667 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3668 Node->getOperand(0).getValueType())) {
3669 default: assert(0 && "Unknown operation action!");
3670 case TargetLowering::Expand:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00003671 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3672 Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003673 break;
3674 case TargetLowering::Legal:
3675 Tmp1 = LegalizeOp(Node->getOperand(0));
3676 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3677 break;
3678 }
3679 }
3680 break;
3681
3682 // Conversion operators. The source and destination have different types.
3683 case ISD::SINT_TO_FP:
3684 case ISD::UINT_TO_FP: {
3685 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman29c3cef2008-08-14 20:04:46 +00003686 Result = LegalizeINT_TO_FP(Result, isSigned,
3687 Node->getValueType(0), Node->getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003688 break;
3689 }
3690 case ISD::TRUNCATE:
3691 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3692 case Legal:
3693 Tmp1 = LegalizeOp(Node->getOperand(0));
3694 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3695 break;
3696 case Expand:
3697 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3698
3699 // Since the result is legal, we should just be able to truncate the low
3700 // part of the source.
3701 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3702 break;
3703 case Promote:
3704 Result = PromoteOp(Node->getOperand(0));
3705 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3706 break;
3707 }
3708 break;
3709
3710 case ISD::FP_TO_SINT:
3711 case ISD::FP_TO_UINT:
3712 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3713 case Legal:
3714 Tmp1 = LegalizeOp(Node->getOperand(0));
3715
3716 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3717 default: assert(0 && "Unknown operation action!");
3718 case TargetLowering::Custom:
3719 isCustom = true;
3720 // FALLTHROUGH
3721 case TargetLowering::Legal:
3722 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3723 if (isCustom) {
3724 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003725 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003726 }
3727 break;
3728 case TargetLowering::Promote:
3729 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3730 Node->getOpcode() == ISD::FP_TO_SINT);
3731 break;
3732 case TargetLowering::Expand:
3733 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003734 SDValue True, False;
Duncan Sands92c43912008-06-06 12:08:01 +00003735 MVT VT = Node->getOperand(0).getValueType();
3736 MVT NVT = Node->getValueType(0);
Dale Johannesen958b08b2007-09-19 23:55:34 +00003737 const uint64_t zero[] = {0, 0};
Duncan Sands92c43912008-06-06 12:08:01 +00003738 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3739 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohman88ae8c52008-02-29 01:44:25 +00003740 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen958b08b2007-09-19 23:55:34 +00003741 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel502151f2008-03-10 15:42:14 +00003742 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003743 Node->getOperand(0), Tmp2, ISD::SETLT);
3744 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3745 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
3746 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
3747 Tmp2));
3748 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohman88ae8c52008-02-29 01:44:25 +00003749 DAG.getConstant(x, NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003750 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3751 break;
3752 } else {
3753 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3754 }
3755 break;
3756 }
3757 break;
3758 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00003759 MVT VT = Op.getValueType();
3760 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesend3b6af32007-10-11 23:32:15 +00003761 // Convert ppcf128 to i32
Dale Johannesen3d8578b2007-10-10 01:01:31 +00003762 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner5872a362008-01-17 07:00:52 +00003763 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3764 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3765 Node->getOperand(0), DAG.getValueType(MVT::f64));
3766 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3767 DAG.getIntPtrConstant(1));
3768 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3769 } else {
Dale Johannesend3b6af32007-10-11 23:32:15 +00003770 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3771 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3772 Tmp2 = DAG.getConstantFP(apf, OVT);
3773 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3774 // FIXME: generated code sucks.
3775 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3776 DAG.getNode(ISD::ADD, MVT::i32,
3777 DAG.getNode(ISD::FP_TO_SINT, VT,
3778 DAG.getNode(ISD::FSUB, OVT,
3779 Node->getOperand(0), Tmp2)),
3780 DAG.getConstant(0x80000000, MVT::i32)),
3781 DAG.getNode(ISD::FP_TO_SINT, VT,
3782 Node->getOperand(0)),
3783 DAG.getCondCode(ISD::SETGE));
3784 }
Dale Johannesen3d8578b2007-10-10 01:01:31 +00003785 break;
3786 }
Dan Gohmanec51f642008-03-10 23:03:31 +00003787 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsf68dffb2008-07-17 02:36:29 +00003788 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
3789 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
3790 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman8181bd12008-07-27 21:46:04 +00003791 SDValue Dummy;
Duncan Sandsf1db7c82008-04-12 17:14:18 +00003792 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003793 break;
3794 }
3795 case Promote:
3796 Tmp1 = PromoteOp(Node->getOperand(0));
3797 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3798 Result = LegalizeOp(Result);
3799 break;
3800 }
3801 break;
3802
Chris Lattner56ecde32008-01-16 06:57:07 +00003803 case ISD::FP_EXTEND: {
Duncan Sands92c43912008-06-06 12:08:01 +00003804 MVT DstVT = Op.getValueType();
3805 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00003806 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3807 // The only other way we can lower this is to turn it into a STORE,
3808 // LOAD pair, targetting a temporary location (a stack slot).
3809 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3810 break;
Chris Lattner56ecde32008-01-16 06:57:07 +00003811 }
3812 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3813 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3814 case Legal:
3815 Tmp1 = LegalizeOp(Node->getOperand(0));
3816 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3817 break;
3818 case Promote:
3819 Tmp1 = PromoteOp(Node->getOperand(0));
3820 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3821 break;
3822 }
3823 break;
Chris Lattner5872a362008-01-17 07:00:52 +00003824 }
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00003825 case ISD::FP_ROUND: {
Duncan Sands92c43912008-06-06 12:08:01 +00003826 MVT DstVT = Op.getValueType();
3827 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner5872a362008-01-17 07:00:52 +00003828 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3829 if (SrcVT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00003830 SDValue Lo;
Dale Johannesena0d36082008-01-20 01:18:38 +00003831 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner5872a362008-01-17 07:00:52 +00003832 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesena0d36082008-01-20 01:18:38 +00003833 if (DstVT!=MVT::f64)
3834 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner5872a362008-01-17 07:00:52 +00003835 break;
Dale Johannesen8f83a6b2007-08-09 01:04:01 +00003836 }
Chris Lattner5872a362008-01-17 07:00:52 +00003837 // The only other way we can lower this is to turn it into a STORE,
3838 // LOAD pair, targetting a temporary location (a stack slot).
3839 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3840 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003841 }
Chris Lattner56ecde32008-01-16 06:57:07 +00003842 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3843 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3844 case Legal:
3845 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00003846 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00003847 break;
3848 case Promote:
3849 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner5872a362008-01-17 07:00:52 +00003850 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3851 Node->getOperand(1));
Chris Lattner56ecde32008-01-16 06:57:07 +00003852 break;
3853 }
3854 break;
Chris Lattner5872a362008-01-17 07:00:52 +00003855 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003856 case ISD::ANY_EXTEND:
3857 case ISD::ZERO_EXTEND:
3858 case ISD::SIGN_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003859 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3860 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3861 case Legal:
3862 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelac54d002008-04-30 00:26:38 +00003863 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michelac7091c2008-02-15 23:05:48 +00003864 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3865 TargetLowering::Custom) {
Scott Michelac54d002008-04-30 00:26:38 +00003866 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003867 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelac7091c2008-02-15 23:05:48 +00003868 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003869 break;
3870 case Promote:
3871 switch (Node->getOpcode()) {
3872 case ISD::ANY_EXTEND:
3873 Tmp1 = PromoteOp(Node->getOperand(0));
3874 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
3875 break;
3876 case ISD::ZERO_EXTEND:
3877 Result = PromoteOp(Node->getOperand(0));
3878 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
3879 Result = DAG.getZeroExtendInReg(Result,
3880 Node->getOperand(0).getValueType());
3881 break;
3882 case ISD::SIGN_EXTEND:
3883 Result = PromoteOp(Node->getOperand(0));
3884 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
3885 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
3886 Result,
3887 DAG.getValueType(Node->getOperand(0).getValueType()));
3888 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003889 }
3890 }
3891 break;
3892 case ISD::FP_ROUND_INREG:
3893 case ISD::SIGN_EXTEND_INREG: {
3894 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00003895 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003896
3897 // If this operation is not supported, convert it to a shl/shr or load/store
3898 // pair.
3899 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3900 default: assert(0 && "This action not supported for this op yet!");
3901 case TargetLowering::Legal:
3902 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
3903 break;
3904 case TargetLowering::Expand:
3905 // If this is an integer extend and shifts are supported, do that.
3906 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
3907 // NOTE: we could fall back on load/store here too for targets without
3908 // SAR. However, it is doubtful that any exist.
Duncan Sands92c43912008-06-06 12:08:01 +00003909 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3910 ExtraVT.getSizeInBits();
Dan Gohman8181bd12008-07-27 21:46:04 +00003911 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003912 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3913 Node->getOperand(0), ShiftCst);
3914 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3915 Result, ShiftCst);
3916 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
3917 // The only way we can lower this is to turn it into a TRUNCSTORE,
3918 // EXTLOAD pair, targetting a temporary location (a stack slot).
3919
3920 // NOTE: there is a choice here between constantly creating new stack
3921 // slots and always reusing the same one. We currently always create
3922 // new ones, as reuse may inhibit scheduling.
Chris Lattner59370bd2008-01-16 07:51:34 +00003923 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3924 Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003925 } else {
3926 assert(0 && "Unknown op");
3927 }
3928 break;
3929 }
3930 break;
3931 }
Duncan Sands38947cd2007-07-27 12:58:54 +00003932 case ISD::TRAMPOLINE: {
Dan Gohman8181bd12008-07-27 21:46:04 +00003933 SDValue Ops[6];
Duncan Sands38947cd2007-07-27 12:58:54 +00003934 for (unsigned i = 0; i != 6; ++i)
3935 Ops[i] = LegalizeOp(Node->getOperand(i));
3936 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3937 // The only option for this node is to custom lower it.
3938 Result = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003939 assert(Result.getNode() && "Should always custom lower!");
Duncan Sands7407a9f2007-09-11 14:10:23 +00003940
3941 // Since trampoline produces two values, make sure to remember that we
3942 // legalized both of them.
3943 Tmp1 = LegalizeOp(Result.getValue(1));
3944 Result = LegalizeOp(Result);
Dan Gohman8181bd12008-07-27 21:46:04 +00003945 AddLegalizedOperand(SDValue(Node, 0), Result);
3946 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif46bf5472008-08-26 22:36:50 +00003947 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands38947cd2007-07-27 12:58:54 +00003948 }
Dan Gohmane8e4a412008-05-14 00:43:10 +00003949 case ISD::FLT_ROUNDS_: {
Duncan Sands92c43912008-06-06 12:08:01 +00003950 MVT VT = Node->getValueType(0);
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003951 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3952 default: assert(0 && "This action not supported for this op yet!");
3953 case TargetLowering::Custom:
3954 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003955 if (Result.getNode()) break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003956 // Fall Thru
3957 case TargetLowering::Legal:
3958 // If this operation is not supported, lower it to constant 1
3959 Result = DAG.getConstant(1, VT);
3960 break;
3961 }
Dan Gohmane09dc8c2008-05-12 16:07:15 +00003962 break;
Anton Korobeynikovc915e272007-11-15 23:25:33 +00003963 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00003964 case ISD::TRAP: {
Duncan Sands92c43912008-06-06 12:08:01 +00003965 MVT VT = Node->getValueType(0);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003966 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3967 default: assert(0 && "This action not supported for this op yet!");
Chris Lattnere99bbb72008-01-15 21:58:08 +00003968 case TargetLowering::Legal:
3969 Tmp1 = LegalizeOp(Node->getOperand(0));
3970 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3971 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003972 case TargetLowering::Custom:
3973 Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00003974 if (Result.getNode()) break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003975 // Fall Thru
Chris Lattnere99bbb72008-01-15 21:58:08 +00003976 case TargetLowering::Expand:
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003977 // If this operation is not supported, lower it to 'abort()' call
Chris Lattnere99bbb72008-01-15 21:58:08 +00003978 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003979 TargetLowering::ArgListTy Args;
Dan Gohman8181bd12008-07-27 21:46:04 +00003980 std::pair<SDValue,SDValue> CallResult =
Duncan Sandsead972e2008-02-14 17:28:50 +00003981 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen67cc9b62008-09-26 19:31:26 +00003982 false, false, false, false, CallingConv::C, false,
Bill Wendlingfef06052008-09-16 21:48:12 +00003983 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Chris Lattner88e03932008-01-15 22:09:33 +00003984 Args, DAG);
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003985 Result = CallResult.second;
3986 break;
3987 }
Chris Lattnere99bbb72008-01-15 21:58:08 +00003988 break;
Anton Korobeynikov39d40ba2008-01-15 07:02:33 +00003989 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003990 }
3991
3992 assert(Result.getValueType() == Op.getValueType() &&
3993 "Bad legalization!");
3994
3995 // Make sure that the generated code is itself legal.
3996 if (Result != Op)
3997 Result = LegalizeOp(Result);
3998
3999 // Note that LegalizeOp may be reentered even from single-use nodes, which
4000 // means that we always must cache transformed nodes.
4001 AddLegalizedOperand(Op, Result);
4002 return Result;
4003}
4004
4005/// PromoteOp - Given an operation that produces a value in an invalid type,
4006/// promote it to compute the value into a larger type. The produced value will
4007/// have the correct bits for the low portion of the register, but no guarantee
4008/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman8181bd12008-07-27 21:46:04 +00004009SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00004010 MVT VT = Op.getValueType();
4011 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004012 assert(getTypeAction(VT) == Promote &&
4013 "Caller should expand or legalize operands that are not promotable!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004014 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004015 "Cannot promote to smaller type!");
4016
Dan Gohman8181bd12008-07-27 21:46:04 +00004017 SDValue Tmp1, Tmp2, Tmp3;
4018 SDValue Result;
Gabor Greif1c80d112008-08-28 21:40:38 +00004019 SDNode *Node = Op.getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004020
Dan Gohman8181bd12008-07-27 21:46:04 +00004021 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004022 if (I != PromotedNodes.end()) return I->second;
4023
4024 switch (Node->getOpcode()) {
4025 case ISD::CopyFromReg:
4026 assert(0 && "CopyFromReg must be legal!");
4027 default:
4028#ifndef NDEBUG
4029 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
4030#endif
4031 assert(0 && "Do not know how to promote this operator!");
4032 abort();
4033 case ISD::UNDEF:
4034 Result = DAG.getNode(ISD::UNDEF, NVT);
4035 break;
4036 case ISD::Constant:
4037 if (VT != MVT::i1)
4038 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4039 else
4040 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
4041 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4042 break;
4043 case ISD::ConstantFP:
4044 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4045 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4046 break;
4047
4048 case ISD::SETCC:
Scott Michel502151f2008-03-10 15:42:14 +00004049 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004050 && "SetCC type is not legal??");
Scott Michel502151f2008-03-10 15:42:14 +00004051 Result = DAG.getNode(ISD::SETCC,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004052 TLI.getSetCCResultType(Node->getOperand(0)),
4053 Node->getOperand(0), Node->getOperand(1),
4054 Node->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004055 break;
4056
4057 case ISD::TRUNCATE:
4058 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4059 case Legal:
4060 Result = LegalizeOp(Node->getOperand(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00004061 assert(Result.getValueType().bitsGE(NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004062 "This truncation doesn't make sense!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00004063 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004064 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4065 break;
4066 case Promote:
4067 // The truncation is not required, because we don't guarantee anything
4068 // about high bits anyway.
4069 Result = PromoteOp(Node->getOperand(0));
4070 break;
4071 case Expand:
4072 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4073 // Truncate the low part of the expanded value to the result type
4074 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
4075 }
4076 break;
4077 case ISD::SIGN_EXTEND:
4078 case ISD::ZERO_EXTEND:
4079 case ISD::ANY_EXTEND:
4080 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4081 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4082 case Legal:
4083 // Input is legal? Just do extend all the way to the larger type.
4084 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
4085 break;
4086 case Promote:
4087 // Promote the reg if it's smaller.
4088 Result = PromoteOp(Node->getOperand(0));
4089 // The high bits are not guaranteed to be anything. Insert an extend.
4090 if (Node->getOpcode() == ISD::SIGN_EXTEND)
4091 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4092 DAG.getValueType(Node->getOperand(0).getValueType()));
4093 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
4094 Result = DAG.getZeroExtendInReg(Result,
4095 Node->getOperand(0).getValueType());
4096 break;
4097 }
4098 break;
4099 case ISD::BIT_CONVERT:
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004100 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4101 Node->getValueType(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004102 Result = PromoteOp(Result);
4103 break;
4104
4105 case ISD::FP_EXTEND:
4106 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4107 case ISD::FP_ROUND:
4108 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4109 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4110 case Promote: assert(0 && "Unreachable with 2 FP types!");
4111 case Legal:
Chris Lattner5872a362008-01-17 07:00:52 +00004112 if (Node->getConstantOperandVal(1) == 0) {
4113 // Input is legal? Do an FP_ROUND_INREG.
4114 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4115 DAG.getValueType(VT));
4116 } else {
4117 // Just remove the truncate, it isn't affecting the value.
4118 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4119 Node->getOperand(1));
4120 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004121 break;
4122 }
4123 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004124 case ISD::SINT_TO_FP:
4125 case ISD::UINT_TO_FP:
4126 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4127 case Legal:
4128 // No extra round required here.
4129 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
4130 break;
4131
4132 case Promote:
4133 Result = PromoteOp(Node->getOperand(0));
4134 if (Node->getOpcode() == ISD::SINT_TO_FP)
4135 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
4136 Result,
4137 DAG.getValueType(Node->getOperand(0).getValueType()));
4138 else
4139 Result = DAG.getZeroExtendInReg(Result,
4140 Node->getOperand(0).getValueType());
4141 // No extra round required here.
4142 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
4143 break;
4144 case Expand:
4145 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4146 Node->getOperand(0));
4147 // Round if we cannot tolerate excess precision.
4148 if (NoExcessFPPrecision)
4149 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4150 DAG.getValueType(VT));
4151 break;
4152 }
4153 break;
4154
4155 case ISD::SIGN_EXTEND_INREG:
4156 Result = PromoteOp(Node->getOperand(0));
4157 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4158 Node->getOperand(1));
4159 break;
4160 case ISD::FP_TO_SINT:
4161 case ISD::FP_TO_UINT:
4162 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4163 case Legal:
4164 case Expand:
4165 Tmp1 = Node->getOperand(0);
4166 break;
4167 case Promote:
4168 // The input result is prerounded, so we don't have to do anything
4169 // special.
4170 Tmp1 = PromoteOp(Node->getOperand(0));
4171 break;
4172 }
4173 // If we're promoting a UINT to a larger size, check to see if the new node
4174 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4175 // we can use that instead. This allows us to generate better code for
4176 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4177 // legal, such as PowerPC.
4178 if (Node->getOpcode() == ISD::FP_TO_UINT &&
4179 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
4180 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4181 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
4182 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4183 } else {
4184 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4185 }
4186 break;
4187
4188 case ISD::FABS:
4189 case ISD::FNEG:
4190 Tmp1 = PromoteOp(Node->getOperand(0));
4191 assert(Tmp1.getValueType() == NVT);
4192 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4193 // NOTE: we do not have to do any extra rounding here for
4194 // NoExcessFPPrecision, because we know the input will have the appropriate
4195 // precision, and these operations don't modify precision at all.
4196 break;
4197
Dale Johannesen92b33082008-09-04 00:47:13 +00004198 case ISD::FLOG:
4199 case ISD::FLOG2:
4200 case ISD::FLOG10:
4201 case ISD::FEXP:
4202 case ISD::FEXP2:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004203 case ISD::FSQRT:
4204 case ISD::FSIN:
4205 case ISD::FCOS:
Dan Gohmanb2158232008-08-21 18:38:14 +00004206 case ISD::FTRUNC:
4207 case ISD::FFLOOR:
4208 case ISD::FCEIL:
4209 case ISD::FRINT:
4210 case ISD::FNEARBYINT:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004211 Tmp1 = PromoteOp(Node->getOperand(0));
4212 assert(Tmp1.getValueType() == NVT);
4213 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4214 if (NoExcessFPPrecision)
4215 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4216 DAG.getValueType(VT));
4217 break;
4218
Evan Cheng1fac6952008-09-09 23:35:53 +00004219 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004220 case ISD::FPOWI: {
Evan Cheng1fac6952008-09-09 23:35:53 +00004221 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004222 // directly as well, which may be better.
4223 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng1fac6952008-09-09 23:35:53 +00004224 Tmp2 = Node->getOperand(1);
4225 if (Node->getOpcode() == ISD::FPOW)
4226 Tmp2 = PromoteOp(Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004227 assert(Tmp1.getValueType() == NVT);
Evan Cheng1fac6952008-09-09 23:35:53 +00004228 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004229 if (NoExcessFPPrecision)
4230 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4231 DAG.getValueType(VT));
4232 break;
4233 }
4234
Dale Johannesenbc187662008-08-28 02:44:49 +00004235 case ISD::ATOMIC_CMP_SWAP_8:
4236 case ISD::ATOMIC_CMP_SWAP_16:
4237 case ISD::ATOMIC_CMP_SWAP_32:
4238 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004239 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004240 Tmp2 = PromoteOp(Node->getOperand(2));
4241 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004242 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4243 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004244 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004245 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004246 // Remember that we legalized the chain.
4247 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4248 break;
4249 }
Dale Johannesenbc187662008-08-28 02:44:49 +00004250 case ISD::ATOMIC_LOAD_ADD_8:
4251 case ISD::ATOMIC_LOAD_SUB_8:
4252 case ISD::ATOMIC_LOAD_AND_8:
4253 case ISD::ATOMIC_LOAD_OR_8:
4254 case ISD::ATOMIC_LOAD_XOR_8:
4255 case ISD::ATOMIC_LOAD_NAND_8:
4256 case ISD::ATOMIC_LOAD_MIN_8:
4257 case ISD::ATOMIC_LOAD_MAX_8:
4258 case ISD::ATOMIC_LOAD_UMIN_8:
4259 case ISD::ATOMIC_LOAD_UMAX_8:
4260 case ISD::ATOMIC_SWAP_8:
4261 case ISD::ATOMIC_LOAD_ADD_16:
4262 case ISD::ATOMIC_LOAD_SUB_16:
4263 case ISD::ATOMIC_LOAD_AND_16:
4264 case ISD::ATOMIC_LOAD_OR_16:
4265 case ISD::ATOMIC_LOAD_XOR_16:
4266 case ISD::ATOMIC_LOAD_NAND_16:
4267 case ISD::ATOMIC_LOAD_MIN_16:
4268 case ISD::ATOMIC_LOAD_MAX_16:
4269 case ISD::ATOMIC_LOAD_UMIN_16:
4270 case ISD::ATOMIC_LOAD_UMAX_16:
4271 case ISD::ATOMIC_SWAP_16:
4272 case ISD::ATOMIC_LOAD_ADD_32:
4273 case ISD::ATOMIC_LOAD_SUB_32:
4274 case ISD::ATOMIC_LOAD_AND_32:
4275 case ISD::ATOMIC_LOAD_OR_32:
4276 case ISD::ATOMIC_LOAD_XOR_32:
4277 case ISD::ATOMIC_LOAD_NAND_32:
4278 case ISD::ATOMIC_LOAD_MIN_32:
4279 case ISD::ATOMIC_LOAD_MAX_32:
4280 case ISD::ATOMIC_LOAD_UMIN_32:
4281 case ISD::ATOMIC_LOAD_UMAX_32:
4282 case ISD::ATOMIC_SWAP_32:
4283 case ISD::ATOMIC_LOAD_ADD_64:
4284 case ISD::ATOMIC_LOAD_SUB_64:
4285 case ISD::ATOMIC_LOAD_AND_64:
4286 case ISD::ATOMIC_LOAD_OR_64:
4287 case ISD::ATOMIC_LOAD_XOR_64:
4288 case ISD::ATOMIC_LOAD_NAND_64:
4289 case ISD::ATOMIC_LOAD_MIN_64:
4290 case ISD::ATOMIC_LOAD_MAX_64:
4291 case ISD::ATOMIC_LOAD_UMIN_64:
4292 case ISD::ATOMIC_LOAD_UMAX_64:
4293 case ISD::ATOMIC_SWAP_64: {
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004294 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004295 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004296 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4297 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanc70fa752008-06-25 16:07:49 +00004298 AtomNode->getSrcValue(),
Mon P Wang6bde9ec2008-06-25 08:15:39 +00004299 AtomNode->getAlignment());
Andrew Lenharthe44f3902008-02-21 06:45:13 +00004300 // Remember that we legalized the chain.
4301 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4302 break;
4303 }
4304
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004305 case ISD::AND:
4306 case ISD::OR:
4307 case ISD::XOR:
4308 case ISD::ADD:
4309 case ISD::SUB:
4310 case ISD::MUL:
4311 // The input may have strange things in the top bits of the registers, but
4312 // these operations don't care. They may have weird bits going out, but
4313 // that too is okay if they are integer operations.
4314 Tmp1 = PromoteOp(Node->getOperand(0));
4315 Tmp2 = PromoteOp(Node->getOperand(1));
4316 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4317 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4318 break;
4319 case ISD::FADD:
4320 case ISD::FSUB:
4321 case ISD::FMUL:
4322 Tmp1 = PromoteOp(Node->getOperand(0));
4323 Tmp2 = PromoteOp(Node->getOperand(1));
4324 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4325 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4326
4327 // Floating point operations will give excess precision that we may not be
4328 // able to tolerate. If we DO allow excess precision, just leave it,
4329 // otherwise excise it.
4330 // FIXME: Why would we need to round FP ops more than integer ones?
4331 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
4332 if (NoExcessFPPrecision)
4333 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4334 DAG.getValueType(VT));
4335 break;
4336
4337 case ISD::SDIV:
4338 case ISD::SREM:
4339 // These operators require that their input be sign extended.
4340 Tmp1 = PromoteOp(Node->getOperand(0));
4341 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004342 if (NVT.isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004343 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4344 DAG.getValueType(VT));
4345 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4346 DAG.getValueType(VT));
4347 }
4348 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4349
4350 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands92c43912008-06-06 12:08:01 +00004351 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004352 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4353 DAG.getValueType(VT));
4354 break;
4355 case ISD::FDIV:
4356 case ISD::FREM:
4357 case ISD::FCOPYSIGN:
4358 // These operators require that their input be fp extended.
4359 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004360 case Expand: assert(0 && "not implemented");
4361 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4362 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004363 }
4364 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner5872a362008-01-17 07:00:52 +00004365 case Expand: assert(0 && "not implemented");
4366 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4367 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004368 }
4369 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4370
4371 // Perform FP_ROUND: this is probably overly pessimistic.
4372 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
4373 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4374 DAG.getValueType(VT));
4375 break;
4376
4377 case ISD::UDIV:
4378 case ISD::UREM:
4379 // These operators require that their input be zero extended.
4380 Tmp1 = PromoteOp(Node->getOperand(0));
4381 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands92c43912008-06-06 12:08:01 +00004382 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004383 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4384 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4385 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4386 break;
4387
4388 case ISD::SHL:
4389 Tmp1 = PromoteOp(Node->getOperand(0));
4390 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
4391 break;
4392 case ISD::SRA:
4393 // The input value must be properly sign extended.
4394 Tmp1 = PromoteOp(Node->getOperand(0));
4395 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4396 DAG.getValueType(VT));
4397 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
4398 break;
4399 case ISD::SRL:
4400 // The input value must be properly zero extended.
4401 Tmp1 = PromoteOp(Node->getOperand(0));
4402 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4403 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
4404 break;
4405
4406 case ISD::VAARG:
4407 Tmp1 = Node->getOperand(0); // Get the chain.
4408 Tmp2 = Node->getOperand(1); // Get the pointer.
4409 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4410 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sandsac496a12008-07-04 11:47:58 +00004411 Result = TLI.LowerOperation(Tmp3, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004412 } else {
Dan Gohman12a9c082008-02-06 22:27:42 +00004413 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00004414 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004415 // Increment the pointer, VAList, to the next vaarg
4416 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands92c43912008-06-06 12:08:01 +00004417 DAG.getConstant(VT.getSizeInBits()/8,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004418 TLI.getPointerTy()));
4419 // Store the incremented VAList to the legalized pointer
Dan Gohman12a9c082008-02-06 22:27:42 +00004420 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004421 // Load the actual argument out of the pointer VAList
4422 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
4423 }
4424 // Remember that we legalized the chain.
4425 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4426 break;
4427
4428 case ISD::LOAD: {
4429 LoadSDNode *LD = cast<LoadSDNode>(Node);
4430 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4431 ? ISD::EXTLOAD : LD->getExtensionType();
4432 Result = DAG.getExtLoad(ExtType, NVT,
4433 LD->getChain(), LD->getBasePtr(),
4434 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohman9a4c92c2008-01-30 00:15:11 +00004435 LD->getMemoryVT(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004436 LD->isVolatile(),
4437 LD->getAlignment());
4438 // Remember that we legalized the chain.
4439 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4440 break;
4441 }
Scott Michel67224b22008-06-02 22:18:03 +00004442 case ISD::SELECT: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004443 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4444 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel67224b22008-06-02 22:18:03 +00004445
Duncan Sands92c43912008-06-06 12:08:01 +00004446 MVT VT2 = Tmp2.getValueType();
Scott Michel67224b22008-06-02 22:18:03 +00004447 assert(VT2 == Tmp3.getValueType()
Scott Michel7b54de02008-06-03 19:13:20 +00004448 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4449 // Ensure that the resulting node is at least the same size as the operands'
4450 // value types, because we cannot assume that TLI.getSetCCValueType() is
4451 // constant.
4452 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004453 break;
Scott Michel67224b22008-06-02 22:18:03 +00004454 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004455 case ISD::SELECT_CC:
4456 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4457 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4458 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4459 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
4460 break;
4461 case ISD::BSWAP:
4462 Tmp1 = Node->getOperand(0);
4463 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4464 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4465 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004466 DAG.getConstant(NVT.getSizeInBits() -
4467 VT.getSizeInBits(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004468 TLI.getShiftAmountTy()));
4469 break;
4470 case ISD::CTPOP:
4471 case ISD::CTTZ:
4472 case ISD::CTLZ:
4473 // Zero extend the argument
4474 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
4475 // Perform the larger operation, then subtract if needed.
4476 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4477 switch(Node->getOpcode()) {
4478 case ISD::CTPOP:
4479 Result = Tmp1;
4480 break;
4481 case ISD::CTTZ:
4482 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel502151f2008-03-10 15:42:14 +00004483 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004484 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004485 ISD::SETEQ);
4486 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands92c43912008-06-06 12:08:01 +00004487 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004488 break;
4489 case ISD::CTLZ:
4490 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
4491 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands92c43912008-06-06 12:08:01 +00004492 DAG.getConstant(NVT.getSizeInBits() -
4493 VT.getSizeInBits(), NVT));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004494 break;
4495 }
4496 break;
4497 case ISD::EXTRACT_SUBVECTOR:
4498 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
4499 break;
4500 case ISD::EXTRACT_VECTOR_ELT:
4501 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4502 break;
4503 }
4504
Gabor Greif1c80d112008-08-28 21:40:38 +00004505 assert(Result.getNode() && "Didn't set a result!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004506
4507 // Make sure the result is itself legal.
4508 Result = LegalizeOp(Result);
4509
4510 // Remember that we promoted this!
4511 AddPromotedOperand(Op, Result);
4512 return Result;
4513}
4514
4515/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4516/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4517/// based on the vector type. The return type of this matches the element type
4518/// of the vector, which may not be legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00004519SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004520 // We know that operand #0 is the Vec vector. If the index is a constant
4521 // or if the invec is a supported hardware type, we can use it. Otherwise,
4522 // lower to a store then an indexed load.
Dan Gohman8181bd12008-07-27 21:46:04 +00004523 SDValue Vec = Op.getOperand(0);
4524 SDValue Idx = Op.getOperand(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004525
Duncan Sands92c43912008-06-06 12:08:01 +00004526 MVT TVT = Vec.getValueType();
4527 unsigned NumElems = TVT.getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004528
4529 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4530 default: assert(0 && "This action is not supported yet!");
4531 case TargetLowering::Custom: {
4532 Vec = LegalizeOp(Vec);
4533 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00004534 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00004535 if (Tmp3.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004536 return Tmp3;
4537 break;
4538 }
4539 case TargetLowering::Legal:
4540 if (isTypeLegal(TVT)) {
4541 Vec = LegalizeOp(Vec);
4542 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lambcc021a02007-07-26 03:33:13 +00004543 return Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004544 }
4545 break;
4546 case TargetLowering::Expand:
4547 break;
4548 }
4549
4550 if (NumElems == 1) {
4551 // This must be an access of the only element. Return it.
4552 Op = ScalarizeVectorOp(Vec);
4553 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman2b10fde2008-01-29 02:24:00 +00004554 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004555 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00004556 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004557 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004558 if (CIdx->getZExtValue() < NumLoElts) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004559 Vec = Lo;
4560 } else {
4561 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004562 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004563 Idx.getValueType());
4564 }
4565
4566 // It's now an extract from the appropriate high or low part. Recurse.
4567 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4568 Op = ExpandEXTRACT_VECTOR_ELT(Op);
4569 } else {
4570 // Store the value to a temporary stack slot, then LOAD the scalar
4571 // element back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00004572 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
4573 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004574
4575 // Add the offset to the index.
Duncan Sands92c43912008-06-06 12:08:01 +00004576 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004577 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4578 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling60f7b4d2007-10-18 08:32:37 +00004579
Duncan Sandsec142ee2008-06-08 20:54:56 +00004580 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattner9f9b8802007-10-19 16:47:35 +00004581 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00004582 else
Chris Lattner9f9b8802007-10-19 16:47:35 +00004583 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling60f7b4d2007-10-18 08:32:37 +00004584
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004585 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4586
4587 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
4588 }
4589 return Op;
4590}
4591
4592/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
4593/// we assume the operation can be split if it is not already legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00004594SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004595 // We know that operand #0 is the Vec vector. For now we assume the index
4596 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman8181bd12008-07-27 21:46:04 +00004597 SDValue Vec = Op.getOperand(0);
4598 SDValue Idx = LegalizeOp(Op.getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004599
Duncan Sands92c43912008-06-06 12:08:01 +00004600 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004601
Duncan Sands92c43912008-06-06 12:08:01 +00004602 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004603 // This must be an access of the desired vector length. Return it.
4604 return Vec;
4605 }
4606
4607 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman8181bd12008-07-27 21:46:04 +00004608 SDValue Lo, Hi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004609 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004610 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004611 Vec = Lo;
4612 } else {
4613 Vec = Hi;
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00004614 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
4615 Idx.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004616 }
4617
4618 // It's now an extract from the appropriate high or low part. Recurse.
4619 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4620 return ExpandEXTRACT_SUBVECTOR(Op);
4621}
4622
4623/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4624/// with condition CC on the current target. This usually involves legalizing
4625/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4626/// there may be no choice but to create a new SetCC node to represent the
4627/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman8181bd12008-07-27 21:46:04 +00004628/// LHS, and the SDValue returned in RHS has a nil SDNode value.
4629void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
4630 SDValue &RHS,
4631 SDValue &CC) {
4632 SDValue Tmp1, Tmp2, Tmp3, Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004633
4634 switch (getTypeAction(LHS.getValueType())) {
4635 case Legal:
4636 Tmp1 = LegalizeOp(LHS); // LHS
4637 Tmp2 = LegalizeOp(RHS); // RHS
4638 break;
4639 case Promote:
4640 Tmp1 = PromoteOp(LHS); // LHS
4641 Tmp2 = PromoteOp(RHS); // RHS
4642
4643 // If this is an FP compare, the operands have already been extended.
Duncan Sands92c43912008-06-06 12:08:01 +00004644 if (LHS.getValueType().isInteger()) {
4645 MVT VT = LHS.getValueType();
4646 MVT NVT = TLI.getTypeToTransformTo(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004647
4648 // Otherwise, we have to insert explicit sign or zero extends. Note
4649 // that we could insert sign extends for ALL conditions, but zero extend
4650 // is cheaper on many machines (an AND instead of two shifts), so prefer
4651 // it.
4652 switch (cast<CondCodeSDNode>(CC)->get()) {
4653 default: assert(0 && "Unknown integer comparison!");
4654 case ISD::SETEQ:
4655 case ISD::SETNE:
4656 case ISD::SETUGE:
4657 case ISD::SETUGT:
4658 case ISD::SETULE:
4659 case ISD::SETULT:
4660 // ALL of these operations will work if we either sign or zero extend
4661 // the operands (including the unsigned comparisons!). Zero extend is
4662 // usually a simpler/cheaper operation, so prefer it.
4663 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4664 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4665 break;
4666 case ISD::SETGE:
4667 case ISD::SETGT:
4668 case ISD::SETLT:
4669 case ISD::SETLE:
4670 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4671 DAG.getValueType(VT));
4672 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4673 DAG.getValueType(VT));
Evan Chengd901b662008-10-13 18:46:18 +00004674 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
4675 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004676 break;
4677 }
4678 }
4679 break;
4680 case Expand: {
Duncan Sands92c43912008-06-06 12:08:01 +00004681 MVT VT = LHS.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004682 if (VT == MVT::f32 || VT == MVT::f64) {
4683 // Expand into one or more soft-fp libcall(s).
Evan Cheng24108632008-07-01 21:35:46 +00004684 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004685 switch (cast<CondCodeSDNode>(CC)->get()) {
4686 case ISD::SETEQ:
4687 case ISD::SETOEQ:
4688 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
4689 break;
4690 case ISD::SETNE:
4691 case ISD::SETUNE:
4692 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
4693 break;
4694 case ISD::SETGE:
4695 case ISD::SETOGE:
4696 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
4697 break;
4698 case ISD::SETLT:
4699 case ISD::SETOLT:
4700 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4701 break;
4702 case ISD::SETLE:
4703 case ISD::SETOLE:
4704 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
4705 break;
4706 case ISD::SETGT:
4707 case ISD::SETOGT:
4708 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
4709 break;
4710 case ISD::SETUO:
4711 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4712 break;
4713 case ISD::SETO:
4714 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
4715 break;
4716 default:
4717 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4718 switch (cast<CondCodeSDNode>(CC)->get()) {
4719 case ISD::SETONE:
4720 // SETONE = SETOLT | SETOGT
4721 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4722 // Fallthrough
4723 case ISD::SETUGT:
4724 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
4725 break;
4726 case ISD::SETUGE:
4727 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
4728 break;
4729 case ISD::SETULT:
4730 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
4731 break;
4732 case ISD::SETULE:
4733 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
4734 break;
4735 case ISD::SETUEQ:
4736 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
4737 break;
4738 default: assert(0 && "Unsupported FP setcc!");
4739 }
4740 }
Duncan Sandsf19591c2008-06-30 10:19:09 +00004741
Dan Gohman8181bd12008-07-27 21:46:04 +00004742 SDValue Dummy;
4743 SDValue Ops[2] = { LHS, RHS };
Gabor Greif1c80d112008-08-28 21:40:38 +00004744 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004745 false /*sign irrelevant*/, Dummy);
4746 Tmp2 = DAG.getConstant(0, MVT::i32);
4747 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
4748 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel502151f2008-03-10 15:42:14 +00004749 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004750 CC);
Gabor Greif1c80d112008-08-28 21:40:38 +00004751 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).getNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004752 false /*sign irrelevant*/, Dummy);
Scott Michel502151f2008-03-10 15:42:14 +00004753 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004754 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
4755 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman8181bd12008-07-27 21:46:04 +00004756 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004757 }
Evan Cheng18a1ab12008-07-07 07:18:09 +00004758 LHS = LegalizeOp(Tmp1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004759 RHS = Tmp2;
4760 return;
4761 }
4762
Dan Gohman8181bd12008-07-27 21:46:04 +00004763 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004764 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen472d15d2007-10-06 01:24:11 +00004765 ExpandOp(RHS, RHSLo, RHSHi);
4766 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4767
4768 if (VT==MVT::ppcf128) {
4769 // FIXME: This generated code sucks. We want to generate
Dale Johannesen26317b62008-09-12 00:30:56 +00004770 // FCMPU crN, hi1, hi2
Dale Johannesen472d15d2007-10-06 01:24:11 +00004771 // BNE crN, L:
Dale Johannesen26317b62008-09-12 00:30:56 +00004772 // FCMPU crN, lo1, lo2
Dale Johannesen472d15d2007-10-06 01:24:11 +00004773 // The following can be improved, but not that much.
Dale Johannesen26317b62008-09-12 00:30:56 +00004774 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4775 ISD::SETOEQ);
Scott Michel502151f2008-03-10 15:42:14 +00004776 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen472d15d2007-10-06 01:24:11 +00004777 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Dale Johannesen26317b62008-09-12 00:30:56 +00004778 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4779 ISD::SETUNE);
Scott Michel502151f2008-03-10 15:42:14 +00004780 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen472d15d2007-10-06 01:24:11 +00004781 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4782 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman8181bd12008-07-27 21:46:04 +00004783 Tmp2 = SDValue();
Dale Johannesen472d15d2007-10-06 01:24:11 +00004784 break;
4785 }
4786
4787 switch (CCCode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004788 case ISD::SETEQ:
4789 case ISD::SETNE:
4790 if (RHSLo == RHSHi)
4791 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4792 if (RHSCST->isAllOnesValue()) {
4793 // Comparison to -1.
4794 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4795 Tmp2 = RHSLo;
4796 break;
4797 }
4798
4799 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4800 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4801 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4802 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4803 break;
4804 default:
4805 // If this is a comparison of the sign bit, just look at the top part.
4806 // X > -1, x < 0
4807 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4808 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00004809 CST->isNullValue()) || // X < 0
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004810 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4811 CST->isAllOnesValue())) { // X > -1
4812 Tmp1 = LHSHi;
4813 Tmp2 = RHSHi;
4814 break;
4815 }
4816
4817 // FIXME: This generated code sucks.
4818 ISD::CondCode LowCC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004819 switch (CCCode) {
4820 default: assert(0 && "Unknown integer setcc!");
4821 case ISD::SETLT:
4822 case ISD::SETULT: LowCC = ISD::SETULT; break;
4823 case ISD::SETGT:
4824 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4825 case ISD::SETLE:
4826 case ISD::SETULE: LowCC = ISD::SETULE; break;
4827 case ISD::SETGE:
4828 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4829 }
4830
4831 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4832 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4833 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4834
4835 // NOTE: on targets without efficient SELECT of bools, we can always use
4836 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
4837 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel502151f2008-03-10 15:42:14 +00004838 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004839 LowCC, false, DagCombineInfo);
Gabor Greif1c80d112008-08-28 21:40:38 +00004840 if (!Tmp1.getNode())
Scott Michel502151f2008-03-10 15:42:14 +00004841 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4842 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004843 CCCode, false, DagCombineInfo);
Gabor Greif1c80d112008-08-28 21:40:38 +00004844 if (!Tmp2.getNode())
Scott Michel502151f2008-03-10 15:42:14 +00004845 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004846 RHSHi,CC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004847
Gabor Greif1c80d112008-08-28 21:40:38 +00004848 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
4849 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman9d24dc72008-03-13 22:13:53 +00004850 if ((Tmp1C && Tmp1C->isNullValue()) ||
4851 (Tmp2C && Tmp2C->isNullValue() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004852 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4853 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman9d24dc72008-03-13 22:13:53 +00004854 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004855 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4856 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4857 // low part is known false, returns high part.
4858 // For LE / GE, if high part is known false, ignore the low part.
4859 // For LT / GT, if high part is known true, ignore the low part.
4860 Tmp1 = Tmp2;
Dan Gohman8181bd12008-07-27 21:46:04 +00004861 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004862 } else {
Scott Michel502151f2008-03-10 15:42:14 +00004863 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004864 ISD::SETEQ, false, DagCombineInfo);
Gabor Greif1c80d112008-08-28 21:40:38 +00004865 if (!Result.getNode())
Scott Michel502151f2008-03-10 15:42:14 +00004866 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman8bb3cb32008-03-14 00:53:31 +00004867 ISD::SETEQ);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004868 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4869 Result, Tmp1, Tmp2));
4870 Tmp1 = Result;
Dan Gohman8181bd12008-07-27 21:46:04 +00004871 Tmp2 = SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004872 }
4873 }
4874 }
4875 }
4876 LHS = Tmp1;
4877 RHS = Tmp2;
4878}
4879
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004880/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4881/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4882/// a load from the stack slot to DestVT, extending it if needed.
4883/// The resultant code need not be legal.
Dan Gohman8181bd12008-07-27 21:46:04 +00004884SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
4885 MVT SlotVT,
4886 MVT DestVT) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004887 // Create the stack frame object.
Mon P Wang55854cc2008-07-05 20:40:31 +00004888 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4889 SrcOp.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00004890 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Mon P Wang55854cc2008-07-05 20:40:31 +00004891
Dan Gohman20e37962008-02-11 18:58:42 +00004892 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00004893 int SPFI = StackPtrFI->getIndex();
Mon P Wang55854cc2008-07-05 20:40:31 +00004894
Duncan Sands92c43912008-06-06 12:08:01 +00004895 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4896 unsigned SlotSize = SlotVT.getSizeInBits();
4897 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang55854cc2008-07-05 20:40:31 +00004898 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4899 DestVT.getTypeForMVT());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004900
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004901 // Emit a store to the stack slot. Use a truncstore if the input value is
4902 // later than DestVT.
Dan Gohman8181bd12008-07-27 21:46:04 +00004903 SDValue Store;
Mon P Wang55854cc2008-07-05 20:40:31 +00004904
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004905 if (SrcSize > SlotSize)
Dan Gohman12a9c082008-02-06 22:27:42 +00004906 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004907 PseudoSourceValue::getFixedStack(SPFI), 0,
4908 SlotVT, false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004909 else {
4910 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman12a9c082008-02-06 22:27:42 +00004911 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004912 PseudoSourceValue::getFixedStack(SPFI), 0,
Mon P Wang55854cc2008-07-05 20:40:31 +00004913 false, SrcAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004914 }
4915
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004916 // Result is a load from the stack slot.
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004917 if (SlotSize == DestSize)
Mon P Wang55854cc2008-07-05 20:40:31 +00004918 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00004919
4920 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang55854cc2008-07-05 20:40:31 +00004921 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4922 false, DestAlign);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004923}
4924
Dan Gohman8181bd12008-07-27 21:46:04 +00004925SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004926 // Create a vector sized/aligned stack slot, store the value to element #0,
4927 // then load the whole vector back out.
Dan Gohman8181bd12008-07-27 21:46:04 +00004928 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman12a9c082008-02-06 22:27:42 +00004929
Dan Gohman20e37962008-02-11 18:58:42 +00004930 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman12a9c082008-02-06 22:27:42 +00004931 int SPFI = StackPtrFI->getIndex();
4932
Dan Gohman8181bd12008-07-27 21:46:04 +00004933 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004934 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman12a9c082008-02-06 22:27:42 +00004935 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00004936 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004937}
4938
4939
4940/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
4941/// support the operation, but do support the resultant vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00004942SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004943
4944 // If the only non-undef value is the low element, turn this into a
4945 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
4946 unsigned NumElems = Node->getNumOperands();
4947 bool isOnlyLowElement = true;
Dan Gohman8181bd12008-07-27 21:46:04 +00004948 SDValue SplatValue = Node->getOperand(0);
Chris Lattnerd8cee732008-03-09 00:29:42 +00004949
Dan Gohman8181bd12008-07-27 21:46:04 +00004950 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerd8cee732008-03-09 00:29:42 +00004951 // and use a bitmask instead of a list of elements.
Dan Gohman8181bd12008-07-27 21:46:04 +00004952 std::map<SDValue, std::vector<unsigned> > Values;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004953 Values[SplatValue].push_back(0);
4954 bool isConstant = true;
4955 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4956 SplatValue.getOpcode() != ISD::UNDEF)
4957 isConstant = false;
4958
4959 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00004960 SDValue V = Node->getOperand(i);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004961 Values[V].push_back(i);
4962 if (V.getOpcode() != ISD::UNDEF)
4963 isOnlyLowElement = false;
4964 if (SplatValue != V)
Dan Gohman8181bd12008-07-27 21:46:04 +00004965 SplatValue = SDValue(0,0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004966
4967 // If this isn't a constant element or an undef, we can't use a constant
4968 // pool load.
4969 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4970 V.getOpcode() != ISD::UNDEF)
4971 isConstant = false;
4972 }
4973
4974 if (isOnlyLowElement) {
4975 // If the low element is an undef too, then this whole things is an undef.
4976 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4977 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4978 // Otherwise, turn this into a scalar_to_vector node.
4979 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4980 Node->getOperand(0));
4981 }
4982
4983 // If all elements are constants, create a load from the constant pool.
4984 if (isConstant) {
Duncan Sands92c43912008-06-06 12:08:01 +00004985 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004986 std::vector<Constant*> CV;
4987 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4988 if (ConstantFPSDNode *V =
4989 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00004990 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004991 } else if (ConstantSDNode *V =
Chris Lattner5e0610f2008-04-20 00:41:09 +00004992 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohmanc1f3a072008-09-12 18:08:03 +00004993 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004994 } else {
4995 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner5e0610f2008-04-20 00:41:09 +00004996 const Type *OpNTy =
Duncan Sands92c43912008-06-06 12:08:01 +00004997 Node->getOperand(0).getValueType().getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004998 CV.push_back(UndefValue::get(OpNTy));
4999 }
5000 }
5001 Constant *CP = ConstantVector::get(CV);
Dan Gohman8181bd12008-07-27 21:46:04 +00005002 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +00005003 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman12a9c082008-02-06 22:27:42 +00005004 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005005 PseudoSourceValue::getConstantPool(), 0,
5006 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005007 }
5008
Gabor Greif1c80d112008-08-28 21:40:38 +00005009 if (SplatValue.getNode()) { // Splat of one value?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005010 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands92c43912008-06-06 12:08:01 +00005011 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman8181bd12008-07-27 21:46:04 +00005012 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5013 std::vector<SDValue> ZeroVec(NumElems, Zero);
5014 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005015 &ZeroVec[0], ZeroVec.size());
5016
5017 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
5018 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
5019 // Get the splatted value into the low element of a vector register.
Dan Gohman8181bd12008-07-27 21:46:04 +00005020 SDValue LowValVec =
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005021 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5022
5023 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5024 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5025 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5026 SplatMask);
5027 }
5028 }
5029
5030 // If there are only two unique elements, we may be able to turn this into a
5031 // vector shuffle.
5032 if (Values.size() == 2) {
Chris Lattnerd8cee732008-03-09 00:29:42 +00005033 // Get the two values in deterministic order.
Dan Gohman8181bd12008-07-27 21:46:04 +00005034 SDValue Val1 = Node->getOperand(1);
5035 SDValue Val2;
5036 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerd8cee732008-03-09 00:29:42 +00005037 if (MI->first != Val1)
5038 Val2 = MI->first;
5039 else
5040 Val2 = (++MI)->first;
5041
5042 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5043 // vector shuffle has the undef vector on the RHS.
5044 if (Val1.getOpcode() == ISD::UNDEF)
5045 std::swap(Val1, Val2);
5046
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005047 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands92c43912008-06-06 12:08:01 +00005048 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5049 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005050 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerd8cee732008-03-09 00:29:42 +00005051
5052 // Set elements of the shuffle mask for Val1.
5053 std::vector<unsigned> &Val1Elts = Values[Val1];
5054 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5055 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5056
5057 // Set elements of the shuffle mask for Val2.
5058 std::vector<unsigned> &Val2Elts = Values[Val2];
5059 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5060 if (Val2.getOpcode() != ISD::UNDEF)
5061 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5062 else
5063 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5064
Dan Gohman8181bd12008-07-27 21:46:04 +00005065 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005066 &MaskVec[0], MaskVec.size());
5067
Chris Lattnerd8cee732008-03-09 00:29:42 +00005068 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005069 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5070 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerd8cee732008-03-09 00:29:42 +00005071 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5072 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
Dan Gohman8181bd12008-07-27 21:46:04 +00005073 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005074
5075 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerd8cee732008-03-09 00:29:42 +00005076 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005077 }
5078 }
5079
5080 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5081 // aligned object on the stack, store each element into it, then load
5082 // the result as a vector.
Duncan Sands92c43912008-06-06 12:08:01 +00005083 MVT VT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005084 // Create the stack frame object.
Dan Gohman8181bd12008-07-27 21:46:04 +00005085 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005086
5087 // Emit a store of each element to the stack slot.
Dan Gohman8181bd12008-07-27 21:46:04 +00005088 SmallVector<SDValue, 8> Stores;
Duncan Sands92c43912008-06-06 12:08:01 +00005089 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005090 // Store (in the right endianness) the elements to memory.
5091 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5092 // Ignore undef elements.
5093 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5094
5095 unsigned Offset = TypeByteSize*i;
5096
Dan Gohman8181bd12008-07-27 21:46:04 +00005097 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005098 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5099
5100 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
5101 NULL, 0));
5102 }
5103
Dan Gohman8181bd12008-07-27 21:46:04 +00005104 SDValue StoreChain;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005105 if (!Stores.empty()) // Not all undef elements?
5106 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5107 &Stores[0], Stores.size());
5108 else
5109 StoreChain = DAG.getEntryNode();
5110
5111 // Result is a load from the stack slot.
5112 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
5113}
5114
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005115void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman8181bd12008-07-27 21:46:04 +00005116 SDValue Op, SDValue Amt,
5117 SDValue &Lo, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005118 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00005119 SDValue LHSL, LHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005120 ExpandOp(Op, LHSL, LHSH);
5121
Dan Gohman8181bd12008-07-27 21:46:04 +00005122 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands92c43912008-06-06 12:08:01 +00005123 MVT VT = LHSL.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005124 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
5125 Hi = Lo.getValue(1);
5126}
5127
5128
5129/// ExpandShift - Try to find a clever way to expand this shift operation out to
5130/// smaller elements. If we can't find a way that is more efficient than a
5131/// libcall on this target, return false. Otherwise, return true with the
5132/// low-parts expanded into Lo and Hi.
Dan Gohman8181bd12008-07-27 21:46:04 +00005133bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
5134 SDValue &Lo, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005135 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5136 "This is not a shift!");
5137
Duncan Sands92c43912008-06-06 12:08:01 +00005138 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman8181bd12008-07-27 21:46:04 +00005139 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands92c43912008-06-06 12:08:01 +00005140 MVT ShTy = ShAmt.getValueType();
5141 unsigned ShBits = ShTy.getSizeInBits();
5142 unsigned VTBits = Op.getValueType().getSizeInBits();
5143 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005144
Chris Lattner8c931452007-10-14 20:35:12 +00005145 // Handle the case when Amt is an immediate.
Gabor Greif1c80d112008-08-28 21:40:38 +00005146 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005147 unsigned Cst = CN->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005148 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005149 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005150 ExpandOp(Op, InL, InH);
5151 switch(Opc) {
5152 case ISD::SHL:
5153 if (Cst > VTBits) {
5154 Lo = DAG.getConstant(0, NVT);
5155 Hi = DAG.getConstant(0, NVT);
5156 } else if (Cst > NVTBits) {
5157 Lo = DAG.getConstant(0, NVT);
5158 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
5159 } else if (Cst == NVTBits) {
5160 Lo = DAG.getConstant(0, NVT);
5161 Hi = InL;
5162 } else {
5163 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5164 Hi = DAG.getNode(ISD::OR, NVT,
5165 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5166 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5167 }
5168 return true;
5169 case ISD::SRL:
5170 if (Cst > VTBits) {
5171 Lo = DAG.getConstant(0, NVT);
5172 Hi = DAG.getConstant(0, NVT);
5173 } else if (Cst > NVTBits) {
5174 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5175 Hi = DAG.getConstant(0, NVT);
5176 } else if (Cst == NVTBits) {
5177 Lo = InH;
5178 Hi = DAG.getConstant(0, NVT);
5179 } else {
5180 Lo = DAG.getNode(ISD::OR, NVT,
5181 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5182 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5183 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5184 }
5185 return true;
5186 case ISD::SRA:
5187 if (Cst > VTBits) {
5188 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
5189 DAG.getConstant(NVTBits-1, ShTy));
5190 } else if (Cst > NVTBits) {
5191 Lo = DAG.getNode(ISD::SRA, NVT, InH,
5192 DAG.getConstant(Cst-NVTBits, ShTy));
5193 Hi = DAG.getNode(ISD::SRA, NVT, InH,
5194 DAG.getConstant(NVTBits-1, ShTy));
5195 } else if (Cst == NVTBits) {
5196 Lo = InH;
5197 Hi = DAG.getNode(ISD::SRA, NVT, InH,
5198 DAG.getConstant(NVTBits-1, ShTy));
5199 } else {
5200 Lo = DAG.getNode(ISD::OR, NVT,
5201 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5202 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5203 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5204 }
5205 return true;
5206 }
5207 }
5208
5209 // Okay, the shift amount isn't constant. However, if we can tell that it is
5210 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohmanece0a882008-02-20 16:57:27 +00005211 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5212 APInt KnownZero, KnownOne;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005213 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
5214
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005215 // If we know that if any of the high bits of the shift amount are one, then
5216 // we can do this as a couple of simple shifts.
Dan Gohmanece0a882008-02-20 16:57:27 +00005217 if (KnownOne.intersects(Mask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005218 // Mask out the high bit, which we know is set.
5219 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohmanece0a882008-02-20 16:57:27 +00005220 DAG.getConstant(~Mask, Amt.getValueType()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005221
5222 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005223 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005224 ExpandOp(Op, InL, InH);
5225 switch(Opc) {
5226 case ISD::SHL:
5227 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5228 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5229 return true;
5230 case ISD::SRL:
5231 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5232 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5233 return true;
5234 case ISD::SRA:
5235 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5236 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5237 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5238 return true;
5239 }
5240 }
5241
Dan Gohmaneb3f1172008-02-22 01:12:31 +00005242 // If we know that the high bits of the shift amount are all zero, then we can
5243 // do this as a couple of simple shifts.
5244 if ((KnownZero & Mask) == Mask) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005245 // Compute 32-amt.
Dan Gohman8181bd12008-07-27 21:46:04 +00005246 SDValue Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005247 DAG.getConstant(NVTBits, Amt.getValueType()),
5248 Amt);
5249
5250 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman8181bd12008-07-27 21:46:04 +00005251 SDValue InL, InH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005252 ExpandOp(Op, InL, InH);
5253 switch(Opc) {
5254 case ISD::SHL:
5255 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5256 Hi = DAG.getNode(ISD::OR, NVT,
5257 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5258 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5259 return true;
5260 case ISD::SRL:
5261 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5262 Lo = DAG.getNode(ISD::OR, NVT,
5263 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5264 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5265 return true;
5266 case ISD::SRA:
5267 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5268 Lo = DAG.getNode(ISD::OR, NVT,
5269 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5270 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5271 return true;
5272 }
5273 }
5274
5275 return false;
5276}
5277
5278
5279// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5280// does not fit into a register, return the lo part and set the hi part to the
5281// by-reg argument. If it does fit into a single register, return the result
5282// and leave the Hi part unset.
Dan Gohman8181bd12008-07-27 21:46:04 +00005283SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5284 bool isSigned, SDValue &Hi) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005285 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5286 // The input chain to this libcall is the entry node of the function.
5287 // Legalizing the call will automatically add the previous call to the
5288 // dependence.
Dan Gohman8181bd12008-07-27 21:46:04 +00005289 SDValue InChain = DAG.getEntryNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005290
5291 TargetLowering::ArgListTy Args;
5292 TargetLowering::ArgListEntry Entry;
5293 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands92c43912008-06-06 12:08:01 +00005294 MVT ArgVT = Node->getOperand(i).getValueType();
5295 const Type *ArgTy = ArgVT.getTypeForMVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005296 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
5297 Entry.isSExt = isSigned;
Duncan Sandsead972e2008-02-14 17:28:50 +00005298 Entry.isZExt = !isSigned;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005299 Args.push_back(Entry);
5300 }
Bill Wendlingfef06052008-09-16 21:48:12 +00005301 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5302 TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005303
5304 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands92c43912008-06-06 12:08:01 +00005305 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman8181bd12008-07-27 21:46:04 +00005306 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen67cc9b62008-09-26 19:31:26 +00005307 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
5308 CallingConv::C, false, Callee, Args, DAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005309
5310 // Legalize the call sequence, starting with the chain. This will advance
5311 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5312 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5313 LegalizeOp(CallInfo.second);
Dan Gohman8181bd12008-07-27 21:46:04 +00005314 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005315 switch (getTypeAction(CallInfo.first.getValueType())) {
5316 default: assert(0 && "Unknown thing");
5317 case Legal:
5318 Result = CallInfo.first;
5319 break;
5320 case Expand:
5321 ExpandOp(CallInfo.first, Result, Hi);
5322 break;
5323 }
5324 return Result;
5325}
5326
Dan Gohman29c3cef2008-08-14 20:04:46 +00005327/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5328///
5329SDValue SelectionDAGLegalize::
5330LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op) {
5331 bool isCustom = false;
5332 SDValue Tmp1;
5333 switch (getTypeAction(Op.getValueType())) {
5334 case Legal:
5335 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5336 Op.getValueType())) {
5337 default: assert(0 && "Unknown operation action!");
5338 case TargetLowering::Custom:
5339 isCustom = true;
5340 // FALLTHROUGH
5341 case TargetLowering::Legal:
5342 Tmp1 = LegalizeOp(Op);
Gabor Greif1c80d112008-08-28 21:40:38 +00005343 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005344 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5345 else
5346 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5347 DestTy, Tmp1);
5348 if (isCustom) {
5349 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005350 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman29c3cef2008-08-14 20:04:46 +00005351 }
5352 break;
5353 case TargetLowering::Expand:
5354 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy);
5355 break;
5356 case TargetLowering::Promote:
5357 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned);
5358 break;
5359 }
5360 break;
5361 case Expand:
5362 Result = ExpandIntToFP(isSigned, DestTy, Op);
5363 break;
5364 case Promote:
5365 Tmp1 = PromoteOp(Op);
5366 if (isSigned) {
5367 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
5368 Tmp1, DAG.getValueType(Op.getValueType()));
5369 } else {
5370 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
5371 Op.getValueType());
5372 }
Gabor Greif1c80d112008-08-28 21:40:38 +00005373 if (Result.getNode())
Dan Gohman29c3cef2008-08-14 20:04:46 +00005374 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5375 else
5376 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5377 DestTy, Tmp1);
5378 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5379 break;
5380 }
5381 return Result;
5382}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005383
5384/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5385///
Dan Gohman8181bd12008-07-27 21:46:04 +00005386SDValue SelectionDAGLegalize::
5387ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source) {
Duncan Sands92c43912008-06-06 12:08:01 +00005388 MVT SourceVT = Source.getValueType();
Dan Gohman8b232ff2008-03-11 01:59:03 +00005389 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005390
Dan Gohman29c3cef2008-08-14 20:04:46 +00005391 // Expand unsupported int-to-fp vector casts by unrolling them.
5392 if (DestTy.isVector()) {
5393 if (!ExpandSource)
5394 return LegalizeOp(UnrollVectorOp(Source));
5395 MVT DestEltTy = DestTy.getVectorElementType();
5396 if (DestTy.getVectorNumElements() == 1) {
5397 SDValue Scalar = ScalarizeVectorOp(Source);
5398 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
5399 DestEltTy, Scalar);
5400 return DAG.getNode(ISD::BUILD_VECTOR, DestTy, Result);
5401 }
5402 SDValue Lo, Hi;
5403 SplitVectorOp(Source, Lo, Hi);
5404 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5405 DestTy.getVectorNumElements() / 2);
5406 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Lo);
5407 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Hi);
Evan Chengd901b662008-10-13 18:46:18 +00005408 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, DestTy, LoResult,
5409 HiResult));
Dan Gohman29c3cef2008-08-14 20:04:46 +00005410 }
5411
Evan Chengf99a7752008-04-01 02:18:22 +00005412 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5413 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohmana193dba2008-03-05 02:07:31 +00005414 // The integer value loaded will be incorrectly if the 'sign bit' of the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005415 // incoming integer is set. To handle this, we dynamically test to see if
5416 // it is set, and, if so, add a fudge factor.
Dan Gohman8181bd12008-07-27 21:46:04 +00005417 SDValue Hi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005418 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005419 SDValue Lo;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005420 ExpandOp(Source, Lo, Hi);
5421 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5422 } else {
5423 // The comparison for the sign bit will use the entire operand.
5424 Hi = Source;
5425 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005426
5427 // If this is unsigned, and not supported, first perform the conversion to
5428 // signed, then adjust the result if the sign bit is set.
Dan Gohman8181bd12008-07-27 21:46:04 +00005429 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005430
Dan Gohman8181bd12008-07-27 21:46:04 +00005431 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005432 DAG.getConstant(0, Hi.getValueType()),
5433 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005434 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5435 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005436 SignSet, Four, Zero);
5437 uint64_t FF = 0x5f800000ULL;
5438 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohmana193dba2008-03-05 02:07:31 +00005439 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005440
Dan Gohman8181bd12008-07-27 21:46:04 +00005441 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +00005442 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005443 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00005444 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00005445 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005446 if (DestTy == MVT::f32)
Dan Gohman12a9c082008-02-06 22:27:42 +00005447 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005448 PseudoSourceValue::getConstantPool(), 0,
5449 false, Alignment);
Duncan Sandsec142ee2008-06-08 20:54:56 +00005450 else if (DestTy.bitsGT(MVT::f32))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005451 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenb17a7a22007-09-16 16:51:49 +00005452 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00005453 CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005454 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00005455 MVT::f32, false, Alignment);
Dale Johannesen2fc20782007-09-14 22:26:36 +00005456 else
5457 assert(0 && "Unexpected conversion");
5458
Duncan Sands92c43912008-06-06 12:08:01 +00005459 MVT SCVT = SignedConv.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005460 if (SCVT != DestTy) {
5461 // Destination type needs to be expanded as well. The FADD now we are
5462 // constructing will be expanded into a libcall.
Duncan Sands92c43912008-06-06 12:08:01 +00005463 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5464 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmanc98645c2008-03-05 01:08:17 +00005465 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005466 SignedConv, SignedConv.getValue(1));
5467 }
5468 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5469 }
5470 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
5471 }
5472
5473 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmanc98645c2008-03-05 01:08:17 +00005474 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005475 default: assert(0 && "This action not implemented for this operation!");
5476 case TargetLowering::Legal:
5477 case TargetLowering::Expand:
5478 break; // This case is handled below.
5479 case TargetLowering::Custom: {
Dan Gohman8181bd12008-07-27 21:46:04 +00005480 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005481 Source), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005482 if (NV.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005483 return LegalizeOp(NV);
5484 break; // The target decided this was legal after all
5485 }
5486 }
5487
5488 // Expand the source, then glue it back together for the call. We must expand
5489 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman8b232ff2008-03-11 01:59:03 +00005490 if (ExpandSource) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005491 SDValue SrcLo, SrcHi;
Dan Gohman8b232ff2008-03-11 01:59:03 +00005492 ExpandOp(Source, SrcLo, SrcHi);
5493 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5494 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005495
Duncan Sandsf68dffb2008-07-17 02:36:29 +00005496 RTLIB::Libcall LC = isSigned ?
5497 RTLIB::getSINTTOFP(SourceVT, DestTy) :
5498 RTLIB::getUINTTOFP(SourceVT, DestTy);
5499 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
5500
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005501 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohman8181bd12008-07-27 21:46:04 +00005502 SDValue HiPart;
Gabor Greif1c80d112008-08-28 21:40:38 +00005503 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
5504 if (Result.getValueType() != DestTy && HiPart.getNode())
Dan Gohmanec51f642008-03-10 23:03:31 +00005505 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5506 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005507}
5508
5509/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5510/// INT_TO_FP operation of the specified operand when the target requests that
5511/// we expand it. At this point, we know that the result and operand types are
5512/// legal for the target.
Dan Gohman8181bd12008-07-27 21:46:04 +00005513SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5514 SDValue Op0,
5515 MVT DestVT) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005516 if (Op0.getValueType() == MVT::i32) {
5517 // simple 32-bit [signed|unsigned] integer to float/double expansion
5518
Chris Lattner0aeb1d02008-01-16 07:03:22 +00005519 // Get the stack frame index of a 8 byte buffer.
Dan Gohman8181bd12008-07-27 21:46:04 +00005520 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Chris Lattner0aeb1d02008-01-16 07:03:22 +00005521
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005522 // word offset constant for Hi/Lo address computation
Dan Gohman8181bd12008-07-27 21:46:04 +00005523 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005524 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman8181bd12008-07-27 21:46:04 +00005525 SDValue Hi = StackSlot;
5526 SDValue Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005527 if (TLI.isLittleEndian())
5528 std::swap(Hi, Lo);
5529
5530 // if signed map to unsigned space
Dan Gohman8181bd12008-07-27 21:46:04 +00005531 SDValue Op0Mapped;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005532 if (isSigned) {
5533 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman8181bd12008-07-27 21:46:04 +00005534 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005535 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5536 } else {
5537 Op0Mapped = Op0;
5538 }
5539 // store the lo of the constructed double - based on integer input
Dan Gohman8181bd12008-07-27 21:46:04 +00005540 SDValue Store1 = DAG.getStore(DAG.getEntryNode(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005541 Op0Mapped, Lo, NULL, 0);
5542 // initial hi portion of constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00005543 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005544 // store the hi of the constructed double - biased exponent
Dan Gohman8181bd12008-07-27 21:46:04 +00005545 SDValue Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005546 // load the constructed double
Dan Gohman8181bd12008-07-27 21:46:04 +00005547 SDValue Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005548 // FP constant to bias correct the final result
Dan Gohman8181bd12008-07-27 21:46:04 +00005549 SDValue Bias = DAG.getConstantFP(isSigned ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005550 BitsToDouble(0x4330000080000000ULL)
5551 : BitsToDouble(0x4330000000000000ULL),
5552 MVT::f64);
5553 // subtract the bias
Dan Gohman8181bd12008-07-27 21:46:04 +00005554 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005555 // final result
Dan Gohman8181bd12008-07-27 21:46:04 +00005556 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005557 // handle final rounding
5558 if (DestVT == MVT::f64) {
5559 // do nothing
5560 Result = Sub;
Duncan Sandsec142ee2008-06-08 20:54:56 +00005561 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner5872a362008-01-17 07:00:52 +00005562 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5563 DAG.getIntPtrConstant(0));
Duncan Sandsec142ee2008-06-08 20:54:56 +00005564 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenb17a7a22007-09-16 16:51:49 +00005565 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005566 }
5567 return Result;
5568 }
5569 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dan Gohman8181bd12008-07-27 21:46:04 +00005570 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005571
Dan Gohman8181bd12008-07-27 21:46:04 +00005572 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005573 DAG.getConstant(0, Op0.getValueType()),
5574 ISD::SETLT);
Dan Gohman8181bd12008-07-27 21:46:04 +00005575 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5576 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005577 SignSet, Four, Zero);
5578
5579 // If the sign bit of the integer is set, the large number will be treated
5580 // as a negative number. To counteract this, the dynamic code adds an
5581 // offset depending on the data type.
5582 uint64_t FF;
Duncan Sands92c43912008-06-06 12:08:01 +00005583 switch (Op0.getValueType().getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005584 default: assert(0 && "Unsupported integer type!");
5585 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5586 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5587 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5588 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5589 }
5590 if (TLI.isLittleEndian()) FF <<= 32;
5591 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
5592
Dan Gohman8181bd12008-07-27 21:46:04 +00005593 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman04637d12008-09-16 22:05:41 +00005594 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005595 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohmandc5901a2008-09-22 22:40:08 +00005596 Alignment = std::min(Alignment, 4u);
Dan Gohman8181bd12008-07-27 21:46:04 +00005597 SDValue FudgeInReg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005598 if (DestVT == MVT::f32)
Dan Gohman12a9c082008-02-06 22:27:42 +00005599 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman04637d12008-09-16 22:05:41 +00005600 PseudoSourceValue::getConstantPool(), 0,
5601 false, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005602 else {
Dan Gohman12a9c082008-02-06 22:27:42 +00005603 FudgeInReg =
5604 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5605 DAG.getEntryNode(), CPIdx,
Dan Gohmanfb020b62008-02-07 18:41:25 +00005606 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman04637d12008-09-16 22:05:41 +00005607 MVT::f32, false, Alignment));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005608 }
5609
5610 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5611}
5612
5613/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5614/// *INT_TO_FP operation of the specified operand when the target requests that
5615/// we promote it. At this point, we know that the result and operand types are
5616/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5617/// operation that takes a larger input.
Dan Gohman8181bd12008-07-27 21:46:04 +00005618SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
5619 MVT DestVT,
5620 bool isSigned) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005621 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00005622 MVT NewInTy = LegalOp.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005623
5624 unsigned OpToUse = 0;
5625
5626 // Scan for the appropriate larger type to use.
5627 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00005628 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5629 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005630
5631 // If the target supports SINT_TO_FP of this type, use it.
5632 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5633 default: break;
5634 case TargetLowering::Legal:
5635 if (!TLI.isTypeLegal(NewInTy))
5636 break; // Can't use this datatype.
5637 // FALL THROUGH.
5638 case TargetLowering::Custom:
5639 OpToUse = ISD::SINT_TO_FP;
5640 break;
5641 }
5642 if (OpToUse) break;
5643 if (isSigned) continue;
5644
5645 // If the target supports UINT_TO_FP of this type, use it.
5646 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5647 default: break;
5648 case TargetLowering::Legal:
5649 if (!TLI.isTypeLegal(NewInTy))
5650 break; // Can't use this datatype.
5651 // FALL THROUGH.
5652 case TargetLowering::Custom:
5653 OpToUse = ISD::UINT_TO_FP;
5654 break;
5655 }
5656 if (OpToUse) break;
5657
5658 // Otherwise, try a larger type.
5659 }
5660
5661 // Okay, we found the operation and type to use. Zero extend our input to the
5662 // desired type then run the operation on it.
5663 return DAG.getNode(OpToUse, DestVT,
5664 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5665 NewInTy, LegalOp));
5666}
5667
5668/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5669/// FP_TO_*INT operation of the specified operand when the target requests that
5670/// we promote it. At this point, we know that the result and operand types are
5671/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5672/// operation that returns a larger result.
Dan Gohman8181bd12008-07-27 21:46:04 +00005673SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
5674 MVT DestVT,
5675 bool isSigned) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005676 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands92c43912008-06-06 12:08:01 +00005677 MVT NewOutTy = DestVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005678
5679 unsigned OpToUse = 0;
5680
5681 // Scan for the appropriate larger type to use.
5682 while (1) {
Duncan Sands92c43912008-06-06 12:08:01 +00005683 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5684 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005685
5686 // If the target supports FP_TO_SINT returning this type, use it.
5687 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5688 default: break;
5689 case TargetLowering::Legal:
5690 if (!TLI.isTypeLegal(NewOutTy))
5691 break; // Can't use this datatype.
5692 // FALL THROUGH.
5693 case TargetLowering::Custom:
5694 OpToUse = ISD::FP_TO_SINT;
5695 break;
5696 }
5697 if (OpToUse) break;
5698
5699 // If the target supports FP_TO_UINT of this type, use it.
5700 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5701 default: break;
5702 case TargetLowering::Legal:
5703 if (!TLI.isTypeLegal(NewOutTy))
5704 break; // Can't use this datatype.
5705 // FALL THROUGH.
5706 case TargetLowering::Custom:
5707 OpToUse = ISD::FP_TO_UINT;
5708 break;
5709 }
5710 if (OpToUse) break;
5711
5712 // Otherwise, try a larger type.
5713 }
5714
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005715
5716 // Okay, we found the operation and type to use.
Dan Gohman8181bd12008-07-27 21:46:04 +00005717 SDValue Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sandsac496a12008-07-04 11:47:58 +00005718
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005719 // If the operation produces an invalid type, it must be custom lowered. Use
5720 // the target lowering hooks to expand it. Just keep the low part of the
5721 // expanded operation, we know that we're truncating anyway.
5722 if (getTypeAction(NewOutTy) == Expand) {
Gabor Greif1c80d112008-08-28 21:40:38 +00005723 Operation = SDValue(TLI.ReplaceNodeResults(Operation.getNode(), DAG), 0);
5724 assert(Operation.getNode() && "Didn't return anything");
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005725 }
Duncan Sandsac496a12008-07-04 11:47:58 +00005726
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005727 // Truncate the result of the extended FP_TO_*INT operation to the desired
5728 // size.
5729 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005730}
5731
5732/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5733///
Dan Gohman8181bd12008-07-27 21:46:04 +00005734SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00005735 MVT VT = Op.getValueType();
5736 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman8181bd12008-07-27 21:46:04 +00005737 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands92c43912008-06-06 12:08:01 +00005738 switch (VT.getSimpleVT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005739 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5740 case MVT::i16:
5741 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5742 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5743 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5744 case MVT::i32:
5745 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5746 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5747 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5748 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5749 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5750 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5751 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5752 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5753 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5754 case MVT::i64:
5755 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5756 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5757 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5758 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5759 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5760 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5761 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5762 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5763 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5764 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5765 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5766 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5767 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5768 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5769 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5770 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5771 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5772 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5773 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5774 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5775 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5776 }
5777}
5778
5779/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5780///
Dan Gohman8181bd12008-07-27 21:46:04 +00005781SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005782 switch (Opc) {
5783 default: assert(0 && "Cannot expand this yet!");
5784 case ISD::CTPOP: {
5785 static const uint64_t mask[6] = {
5786 0x5555555555555555ULL, 0x3333333333333333ULL,
5787 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5788 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5789 };
Duncan Sands92c43912008-06-06 12:08:01 +00005790 MVT VT = Op.getValueType();
5791 MVT ShVT = TLI.getShiftAmountTy();
5792 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005793 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5794 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Dan Gohman8181bd12008-07-27 21:46:04 +00005795 SDValue Tmp2 = DAG.getConstant(mask[i], VT);
5796 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005797 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5798 DAG.getNode(ISD::AND, VT,
5799 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5800 }
5801 return Op;
5802 }
5803 case ISD::CTLZ: {
5804 // for now, we do this:
5805 // x = x | (x >> 1);
5806 // x = x | (x >> 2);
5807 // ...
5808 // x = x | (x >>16);
5809 // x = x | (x >>32); // for 64-bit input
5810 // return popcount(~x);
5811 //
5812 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00005813 MVT VT = Op.getValueType();
5814 MVT ShVT = TLI.getShiftAmountTy();
5815 unsigned len = VT.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005816 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005817 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005818 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5819 }
5820 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5821 return DAG.getNode(ISD::CTPOP, VT, Op);
5822 }
5823 case ISD::CTTZ: {
5824 // for now, we use: { return popcount(~x & (x - 1)); }
5825 // unless the target has ctlz but not ctpop, in which case we use:
5826 // { return 32 - nlz(~x & (x-1)); }
5827 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands92c43912008-06-06 12:08:01 +00005828 MVT VT = Op.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +00005829 SDValue Tmp2 = DAG.getConstant(~0ULL, VT);
5830 SDValue Tmp3 = DAG.getNode(ISD::AND, VT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005831 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5832 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5833 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5834 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5835 TLI.isOperationLegal(ISD::CTLZ, VT))
5836 return DAG.getNode(ISD::SUB, VT,
Duncan Sands92c43912008-06-06 12:08:01 +00005837 DAG.getConstant(VT.getSizeInBits(), VT),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005838 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5839 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5840 }
5841 }
5842}
5843
Dan Gohman8181bd12008-07-27 21:46:04 +00005844/// ExpandOp - Expand the specified SDValue into its two component pieces
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005845/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman4fc03742008-10-01 15:07:49 +00005846/// LegalizedNodes map is filled in for any results that are not expanded, the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005847/// ExpandedNodes map is filled in for any results that are expanded, and the
5848/// Lo/Hi values are returned.
Dan Gohman8181bd12008-07-27 21:46:04 +00005849void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands92c43912008-06-06 12:08:01 +00005850 MVT VT = Op.getValueType();
5851 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greif1c80d112008-08-28 21:40:38 +00005852 SDNode *Node = Op.getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005853 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sandsec142ee2008-06-08 20:54:56 +00005854 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands92c43912008-06-06 12:08:01 +00005855 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005856
5857 // See if we already expanded it.
Dan Gohman8181bd12008-07-27 21:46:04 +00005858 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005859 = ExpandedNodes.find(Op);
5860 if (I != ExpandedNodes.end()) {
5861 Lo = I->second.first;
5862 Hi = I->second.second;
5863 return;
5864 }
5865
5866 switch (Node->getOpcode()) {
5867 case ISD::CopyFromReg:
5868 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen3d8578b2007-10-10 01:01:31 +00005869 case ISD::FP_ROUND_INREG:
5870 if (VT == MVT::ppcf128 &&
5871 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5872 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00005873 SDValue SrcLo, SrcHi, Src;
Dale Johannesend3b6af32007-10-11 23:32:15 +00005874 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5875 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005876 SDValue Result = TLI.LowerOperation(
Dale Johannesend3b6af32007-10-11 23:32:15 +00005877 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00005878 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
5879 Lo = Result.getNode()->getOperand(0);
5880 Hi = Result.getNode()->getOperand(1);
Dale Johannesen3d8578b2007-10-10 01:01:31 +00005881 break;
5882 }
5883 // fall through
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005884 default:
5885#ifndef NDEBUG
5886 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
5887#endif
5888 assert(0 && "Do not know how to expand this operator!");
5889 abort();
Dan Gohman550c8462008-02-27 01:52:30 +00005890 case ISD::EXTRACT_ELEMENT:
5891 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00005892 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman550c8462008-02-27 01:52:30 +00005893 return ExpandOp(Hi, Lo, Hi);
Dan Gohman7e7aa2c2008-02-27 19:44:57 +00005894 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen2ff963d2007-10-31 00:32:36 +00005895 case ISD::EXTRACT_VECTOR_ELT:
5896 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5897 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5898 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5899 return ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005900 case ISD::UNDEF:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005901 Lo = DAG.getNode(ISD::UNDEF, NVT);
5902 Hi = DAG.getNode(ISD::UNDEF, NVT);
5903 break;
5904 case ISD::Constant: {
Duncan Sands92c43912008-06-06 12:08:01 +00005905 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman97f1f8e2008-03-03 22:20:46 +00005906 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5907 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5908 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005909 break;
5910 }
5911 case ISD::ConstantFP: {
5912 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesen2aef5692007-10-11 18:07:22 +00005913 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen49cc7ce2008-10-09 18:53:47 +00005914 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesen2aef5692007-10-11 18:07:22 +00005915 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5916 MVT::f64);
5917 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5918 MVT::f64);
5919 break;
5920 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005921 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
5922 if (getTypeAction(Lo.getValueType()) == Expand)
5923 ExpandOp(Lo, Lo, Hi);
5924 break;
5925 }
5926 case ISD::BUILD_PAIR:
5927 // Return the operands.
5928 Lo = Node->getOperand(0);
5929 Hi = Node->getOperand(1);
5930 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005931
5932 case ISD::MERGE_VALUES:
Chris Lattner1b66f822007-11-24 19:12:15 +00005933 if (Node->getNumValues() == 1) {
5934 ExpandOp(Op.getOperand(0), Lo, Hi);
5935 break;
5936 }
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005937 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif46bf5472008-08-26 22:36:50 +00005938 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattnerdfb947d2007-11-24 07:07:01 +00005939 Op.getValue(1).getValueType() == MVT::Other &&
5940 "unhandled MERGE_VALUES");
5941 ExpandOp(Op.getOperand(0), Lo, Hi);
5942 // Remember that we legalized the chain.
5943 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5944 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005945
5946 case ISD::SIGN_EXTEND_INREG:
5947 ExpandOp(Node->getOperand(0), Lo, Hi);
5948 // sext_inreg the low part if needed.
5949 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5950
5951 // The high part gets the sign extension from the lo-part. This handles
5952 // things like sextinreg V:i64 from i8.
5953 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands92c43912008-06-06 12:08:01 +00005954 DAG.getConstant(NVT.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005955 TLI.getShiftAmountTy()));
5956 break;
5957
5958 case ISD::BSWAP: {
5959 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005960 SDValue TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005961 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5962 Lo = TempLo;
5963 break;
5964 }
5965
5966 case ISD::CTPOP:
5967 ExpandOp(Node->getOperand(0), Lo, Hi);
5968 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5969 DAG.getNode(ISD::CTPOP, NVT, Lo),
5970 DAG.getNode(ISD::CTPOP, NVT, Hi));
5971 Hi = DAG.getConstant(0, NVT);
5972 break;
5973
5974 case ISD::CTLZ: {
5975 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
5976 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005977 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5978 SDValue HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
5979 SDValue TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005980 ISD::SETNE);
Dan Gohman8181bd12008-07-27 21:46:04 +00005981 SDValue LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005982 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5983
5984 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5985 Hi = DAG.getConstant(0, NVT);
5986 break;
5987 }
5988
5989 case ISD::CTTZ: {
5990 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
5991 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00005992 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5993 SDValue LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
5994 SDValue BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005995 ISD::SETNE);
Dan Gohman8181bd12008-07-27 21:46:04 +00005996 SDValue HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005997 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5998
5999 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
6000 Hi = DAG.getConstant(0, NVT);
6001 break;
6002 }
6003
6004 case ISD::VAARG: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006005 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6006 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006007 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
6008 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
6009
6010 // Remember that we legalized the chain.
6011 Hi = LegalizeOp(Hi);
6012 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006013 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006014 std::swap(Lo, Hi);
6015 break;
6016 }
6017
6018 case ISD::LOAD: {
6019 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00006020 SDValue Ch = LD->getChain(); // Legalize the chain.
6021 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006022 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman29c3cef2008-08-14 20:04:46 +00006023 const Value *SV = LD->getSrcValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006024 int SVOffset = LD->getSrcValueOffset();
6025 unsigned Alignment = LD->getAlignment();
6026 bool isVolatile = LD->isVolatile();
6027
6028 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman29c3cef2008-08-14 20:04:46 +00006029 Lo = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006030 isVolatile, Alignment);
6031 if (VT == MVT::f32 || VT == MVT::f64) {
6032 // f32->i32 or f64->i64 one to one expansion.
6033 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006034 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006035 // Recursively expand the new load.
6036 if (getTypeAction(NVT) == Expand)
6037 ExpandOp(Lo, Lo, Hi);
6038 break;
6039 }
6040
6041 // Increment the pointer to the other half.
Duncan Sands92c43912008-06-06 12:08:01 +00006042 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006043 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00006044 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006045 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00006046 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman29c3cef2008-08-14 20:04:46 +00006047 Hi = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006048 isVolatile, Alignment);
6049
6050 // Build a factor node to remember that this load is independent of the
6051 // other one.
Dan Gohman8181bd12008-07-27 21:46:04 +00006052 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006053 Hi.getValue(1));
6054
6055 // Remember that we legalized the chain.
6056 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands9ff8fbf2008-02-11 10:37:04 +00006057 if (TLI.isBigEndian())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006058 std::swap(Lo, Hi);
6059 } else {
Duncan Sands92c43912008-06-06 12:08:01 +00006060 MVT EVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006061
Dale Johannesen2550e3a2007-10-19 20:29:00 +00006062 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6063 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006064 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dan Gohman29c3cef2008-08-14 20:04:46 +00006065 SDValue Load = DAG.getLoad(EVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006066 SVOffset, isVolatile, Alignment);
6067 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006068 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006069 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6070 break;
6071 }
6072
6073 if (EVT == NVT)
Dan Gohman29c3cef2008-08-14 20:04:46 +00006074 Lo = DAG.getLoad(NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006075 SVOffset, isVolatile, Alignment);
6076 else
Dan Gohman29c3cef2008-08-14 20:04:46 +00006077 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, SV,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006078 SVOffset, EVT, isVolatile,
6079 Alignment);
6080
6081 // Remember that we legalized the chain.
Dan Gohman8181bd12008-07-27 21:46:04 +00006082 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006083
6084 if (ExtType == ISD::SEXTLOAD) {
6085 // The high part is obtained by SRA'ing all but one of the bits of the
6086 // lo part.
Duncan Sands92c43912008-06-06 12:08:01 +00006087 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006088 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6089 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6090 } else if (ExtType == ISD::ZEXTLOAD) {
6091 // The high part is just a zero.
6092 Hi = DAG.getConstant(0, NVT);
6093 } else /* if (ExtType == ISD::EXTLOAD) */ {
6094 // The high part is undefined.
6095 Hi = DAG.getNode(ISD::UNDEF, NVT);
6096 }
6097 }
6098 break;
6099 }
6100 case ISD::AND:
6101 case ISD::OR:
6102 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman8181bd12008-07-27 21:46:04 +00006103 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006104 ExpandOp(Node->getOperand(0), LL, LH);
6105 ExpandOp(Node->getOperand(1), RL, RH);
6106 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6107 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6108 break;
6109 }
6110 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006111 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006112 ExpandOp(Node->getOperand(1), LL, LH);
6113 ExpandOp(Node->getOperand(2), RL, RH);
6114 if (getTypeAction(NVT) == Expand)
6115 NVT = TLI.getTypeToExpandTo(NVT);
6116 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
6117 if (VT != MVT::f32)
6118 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
6119 break;
6120 }
6121 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006122 SDValue TL, TH, FL, FH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006123 ExpandOp(Node->getOperand(2), TL, TH);
6124 ExpandOp(Node->getOperand(3), FL, FH);
6125 if (getTypeAction(NVT) == Expand)
6126 NVT = TLI.getTypeToExpandTo(NVT);
6127 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6128 Node->getOperand(1), TL, FL, Node->getOperand(4));
6129 if (VT != MVT::f32)
6130 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6131 Node->getOperand(1), TH, FH, Node->getOperand(4));
6132 break;
6133 }
6134 case ISD::ANY_EXTEND:
6135 // The low part is any extension of the input (which degenerates to a copy).
6136 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6137 // The high part is undefined.
6138 Hi = DAG.getNode(ISD::UNDEF, NVT);
6139 break;
6140 case ISD::SIGN_EXTEND: {
6141 // The low part is just a sign extension of the input (which degenerates to
6142 // a copy).
6143 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
6144
6145 // The high part is obtained by SRA'ing all but one of the bits of the lo
6146 // part.
Duncan Sands92c43912008-06-06 12:08:01 +00006147 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006148 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6149 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6150 break;
6151 }
6152 case ISD::ZERO_EXTEND:
6153 // The low part is just a zero extension of the input (which degenerates to
6154 // a copy).
6155 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
6156
6157 // The high part is just a zero.
6158 Hi = DAG.getConstant(0, NVT);
6159 break;
6160
6161 case ISD::TRUNCATE: {
6162 // The input value must be larger than this value. Expand *it*.
Dan Gohman8181bd12008-07-27 21:46:04 +00006163 SDValue NewLo;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006164 ExpandOp(Node->getOperand(0), NewLo, Hi);
6165
6166 // The low part is now either the right size, or it is closer. If not the
6167 // right size, make an illegal truncate so we recursively expand it.
6168 if (NewLo.getValueType() != Node->getValueType(0))
6169 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6170 ExpandOp(NewLo, Lo, Hi);
6171 break;
6172 }
6173
6174 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006175 SDValue Tmp;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006176 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6177 // If the target wants to, allow it to lower this itself.
6178 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6179 case Expand: assert(0 && "cannot expand FP!");
6180 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6181 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6182 }
6183 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6184 }
6185
6186 // f32 / f64 must be expanded to i32 / i64.
6187 if (VT == MVT::f32 || VT == MVT::f64) {
6188 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6189 if (getTypeAction(NVT) == Expand)
6190 ExpandOp(Lo, Lo, Hi);
6191 break;
6192 }
6193
6194 // If source operand will be expanded to the same type as VT, i.e.
6195 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands92c43912008-06-06 12:08:01 +00006196 MVT VT0 = Node->getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006197 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6198 ExpandOp(Node->getOperand(0), Lo, Hi);
6199 break;
6200 }
6201
6202 // Turn this into a load/store pair by default.
Gabor Greif1c80d112008-08-28 21:40:38 +00006203 if (Tmp.getNode() == 0)
Chris Lattnerb7d0aaa2008-01-16 07:45:30 +00006204 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006205
6206 ExpandOp(Tmp, Lo, Hi);
6207 break;
6208 }
6209
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006210 case ISD::READCYCLECOUNTER: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006211 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6212 TargetLowering::Custom &&
6213 "Must custom expand ReadCycleCounter");
Dan Gohman8181bd12008-07-27 21:46:04 +00006214 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006215 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006216 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman8181bd12008-07-27 21:46:04 +00006217 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006218 LegalizeOp(Tmp.getValue(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006219 break;
Chris Lattnerdfb947d2007-11-24 07:07:01 +00006220 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006221
Dale Johannesen44eb5372008-10-03 19:41:08 +00006222 case ISD::ATOMIC_CMP_SWAP_64: {
6223 // This operation does not need a loop.
6224 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6225 assert(Tmp.getNode() && "Node must be custom expanded!");
6226 ExpandOp(Tmp.getValue(0), Lo, Hi);
6227 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6228 LegalizeOp(Tmp.getValue(1)));
6229 break;
6230 }
6231
Dale Johannesenf160d802008-10-02 18:53:47 +00006232 case ISD::ATOMIC_LOAD_ADD_64:
6233 case ISD::ATOMIC_LOAD_SUB_64:
6234 case ISD::ATOMIC_LOAD_AND_64:
6235 case ISD::ATOMIC_LOAD_OR_64:
6236 case ISD::ATOMIC_LOAD_XOR_64:
6237 case ISD::ATOMIC_LOAD_NAND_64:
Dale Johannesen44eb5372008-10-03 19:41:08 +00006238 case ISD::ATOMIC_SWAP_64: {
6239 // These operations require a loop to be generated. We can't do that yet,
6240 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesenf160d802008-10-02 18:53:47 +00006241 SDValue In2Lo, In2Hi, In2;
6242 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
6243 In2 = DAG.getNode(ISD::BUILD_PAIR, VT, In2Lo, In2Hi);
Dale Johannesen44eb5372008-10-03 19:41:08 +00006244 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
6245 SDValue Replace =
6246 DAG.getAtomic(Op.getOpcode(), Op.getOperand(0), Op.getOperand(1), In2,
6247 Anode->getSrcValue(), Anode->getAlignment());
6248 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesenf160d802008-10-02 18:53:47 +00006249 ExpandOp(Result.getValue(0), Lo, Hi);
6250 // Remember that we legalized the chain.
6251 AddLegalizedOperand(SDValue(Node,1), LegalizeOp(Result.getValue(1)));
Andrew Lenharth81580822008-03-05 01:15:49 +00006252 break;
6253 }
6254
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006255 // These operators cannot be expanded directly, emit them as calls to
6256 // library functions.
6257 case ISD::FP_TO_SINT: {
6258 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006259 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006260 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6261 case Expand: assert(0 && "cannot expand FP!");
6262 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6263 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6264 }
6265
6266 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6267
6268 // Now that the custom expander is done, expand the result, which is still
6269 // VT.
Gabor Greif1c80d112008-08-28 21:40:38 +00006270 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006271 ExpandOp(Op, Lo, Hi);
6272 break;
6273 }
6274 }
6275
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006276 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6277 VT);
6278 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6279 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006280 break;
6281 }
6282
6283 case ISD::FP_TO_UINT: {
6284 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006285 SDValue Op;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006286 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6287 case Expand: assert(0 && "cannot expand FP!");
6288 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6289 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6290 }
6291
6292 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6293
6294 // Now that the custom expander is done, expand the result.
Gabor Greif1c80d112008-08-28 21:40:38 +00006295 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006296 ExpandOp(Op, Lo, Hi);
6297 break;
6298 }
6299 }
6300
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006301 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6302 VT);
6303 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6304 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006305 break;
6306 }
6307
6308 case ISD::SHL: {
6309 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006310 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006311 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006312 SDValue Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006313 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006314 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006315 // Now that the custom expander is done, expand the result, which is
6316 // still VT.
6317 ExpandOp(Op, Lo, Hi);
6318 break;
6319 }
6320 }
6321
6322 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6323 // this X << 1 as X+X.
6324 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman9d24dc72008-03-13 22:13:53 +00006325 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006326 TLI.isOperationLegal(ISD::ADDE, NVT)) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006327 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006328 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6329 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6330 LoOps[1] = LoOps[0];
6331 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6332
6333 HiOps[1] = HiOps[0];
6334 HiOps[2] = Lo.getValue(1);
6335 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6336 break;
6337 }
6338 }
6339
6340 // If we can emit an efficient shift operation, do so now.
6341 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
6342 break;
6343
6344 // If this target supports SHL_PARTS, use it.
6345 TargetLowering::LegalizeAction Action =
6346 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6347 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6348 Action == TargetLowering::Custom) {
6349 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6350 break;
6351 }
6352
6353 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006354 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006355 break;
6356 }
6357
6358 case ISD::SRA: {
6359 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006360 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006361 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006362 SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006363 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006364 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006365 // Now that the custom expander is done, expand the result, which is
6366 // still VT.
6367 ExpandOp(Op, Lo, Hi);
6368 break;
6369 }
6370 }
6371
6372 // If we can emit an efficient shift operation, do so now.
6373 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
6374 break;
6375
6376 // If this target supports SRA_PARTS, use it.
6377 TargetLowering::LegalizeAction Action =
6378 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6379 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6380 Action == TargetLowering::Custom) {
6381 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6382 break;
6383 }
6384
6385 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006386 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006387 break;
6388 }
6389
6390 case ISD::SRL: {
6391 // If the target wants custom lowering, do so.
Dan Gohman8181bd12008-07-27 21:46:04 +00006392 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006393 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006394 SDValue Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006395 Op = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006396 if (Op.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006397 // Now that the custom expander is done, expand the result, which is
6398 // still VT.
6399 ExpandOp(Op, Lo, Hi);
6400 break;
6401 }
6402 }
6403
6404 // If we can emit an efficient shift operation, do so now.
6405 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
6406 break;
6407
6408 // If this target supports SRL_PARTS, use it.
6409 TargetLowering::LegalizeAction Action =
6410 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6411 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6412 Action == TargetLowering::Custom) {
6413 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
6414 break;
6415 }
6416
6417 // Otherwise, emit a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006418 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006419 break;
6420 }
6421
6422 case ISD::ADD:
6423 case ISD::SUB: {
6424 // If the target wants to custom expand this, let them.
6425 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6426 TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006427 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006428 if (Result.getNode()) {
Duncan Sands4c3885b2008-06-22 09:42:16 +00006429 ExpandOp(Result, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006430 break;
6431 }
6432 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006433 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00006434 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006435 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6436 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6437 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006438 SDValue LoOps[2], HiOps[3];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006439 LoOps[0] = LHSL;
6440 LoOps[1] = RHSL;
6441 HiOps[0] = LHSH;
6442 HiOps[1] = RHSH;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00006443
Andrew Lenhartha23d6992008-10-07 17:03:15 +00006444 //cascaded check to see if any smaller size has a a carry flag.
6445 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
6446 bool hasCarry = false;
Andrew Lenharth97c315a2008-10-07 18:27:23 +00006447 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
6448 MVT AVT = MVT::getIntegerVT(BitSize);
6449 if (TLI.isOperationLegal(OpV, AVT)) {
6450 hasCarry = true;
6451 break;
6452 }
6453 }
6454
Andrew Lenhartha23d6992008-10-07 17:03:15 +00006455 if(hasCarry) {
Andrew Lenharth5e814462008-10-07 14:15:42 +00006456 if (Node->getOpcode() == ISD::ADD) {
6457 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6458 HiOps[2] = Lo.getValue(1);
6459 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6460 } else {
6461 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6462 HiOps[2] = Lo.getValue(1);
6463 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6464 }
6465 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006466 } else {
Andrew Lenharth5e814462008-10-07 14:15:42 +00006467 if (Node->getOpcode() == ISD::ADD) {
6468 Lo = DAG.getNode(ISD::ADD, VTList, LoOps, 2);
6469 Hi = DAG.getNode(ISD::ADD, VTList, HiOps, 2);
Andrew Lenhartha23d6992008-10-07 17:03:15 +00006470 SDValue Cmp1 = DAG.getSetCC(TLI.getSetCCResultType(Lo),
6471 Lo, LoOps[0], ISD::SETULT);
Andrew Lenharth5e814462008-10-07 14:15:42 +00006472 SDValue Carry1 = DAG.getNode(ISD::SELECT, NVT, Cmp1,
6473 DAG.getConstant(1, NVT),
6474 DAG.getConstant(0, NVT));
Andrew Lenhartha23d6992008-10-07 17:03:15 +00006475 SDValue Cmp2 = DAG.getSetCC(TLI.getSetCCResultType(Lo),
6476 Lo, LoOps[1], ISD::SETULT);
Andrew Lenharth5e814462008-10-07 14:15:42 +00006477 SDValue Carry2 = DAG.getNode(ISD::SELECT, NVT, Cmp2,
6478 DAG.getConstant(1, NVT),
6479 Carry1);
6480 Hi = DAG.getNode(ISD::ADD, NVT, Hi, Carry2);
6481 } else {
6482 Lo = DAG.getNode(ISD::SUB, VTList, LoOps, 2);
6483 Hi = DAG.getNode(ISD::SUB, VTList, HiOps, 2);
6484 SDValue Cmp = DAG.getSetCC(NVT, LoOps[0], LoOps[1], ISD::SETULT);
6485 SDValue Borrow = DAG.getNode(ISD::SELECT, NVT, Cmp,
6486 DAG.getConstant(1, NVT),
6487 DAG.getConstant(0, NVT));
6488 Hi = DAG.getNode(ISD::SUB, NVT, Hi, Borrow);
6489 }
6490 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006491 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006492 }
6493
6494 case ISD::ADDC:
6495 case ISD::SUBC: {
6496 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00006497 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006498 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6499 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6500 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006501 SDValue LoOps[2] = { LHSL, RHSL };
6502 SDValue HiOps[3] = { LHSH, RHSH };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006503
6504 if (Node->getOpcode() == ISD::ADDC) {
6505 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6506 HiOps[2] = Lo.getValue(1);
6507 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6508 } else {
6509 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6510 HiOps[2] = Lo.getValue(1);
6511 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6512 }
6513 // Remember that we legalized the flag.
6514 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6515 break;
6516 }
6517 case ISD::ADDE:
6518 case ISD::SUBE: {
6519 // Expand the subcomponents.
Dan Gohman8181bd12008-07-27 21:46:04 +00006520 SDValue LHSL, LHSH, RHSL, RHSH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006521 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6522 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6523 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman8181bd12008-07-27 21:46:04 +00006524 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6525 SDValue HiOps[3] = { LHSH, RHSH };
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006526
6527 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6528 HiOps[2] = Lo.getValue(1);
6529 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6530
6531 // Remember that we legalized the flag.
6532 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6533 break;
6534 }
6535 case ISD::MUL: {
6536 // If the target wants to custom expand this, let them.
6537 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006538 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greif1c80d112008-08-28 21:40:38 +00006539 if (New.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006540 ExpandOp(New, Lo, Hi);
6541 break;
6542 }
6543 }
6544
6545 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6546 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman5a199552007-10-08 18:33:35 +00006547 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6548 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6549 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006550 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006551 ExpandOp(Node->getOperand(0), LL, LH);
6552 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman07961cd2008-02-25 21:11:39 +00006553 unsigned OuterBitSize = Op.getValueSizeInBits();
6554 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman5a199552007-10-08 18:33:35 +00006555 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6556 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman2594d942008-03-10 20:42:19 +00006557 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6558 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6559 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman5a199552007-10-08 18:33:35 +00006560 // The inputs are both zero-extended.
6561 if (HasUMUL_LOHI) {
6562 // We can emit a umul_lohi.
6563 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00006564 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00006565 break;
6566 }
6567 if (HasMULHU) {
6568 // We can emit a mulhu+mul.
6569 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6570 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6571 break;
6572 }
Dan Gohman5a199552007-10-08 18:33:35 +00006573 }
Dan Gohman07961cd2008-02-25 21:11:39 +00006574 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman5a199552007-10-08 18:33:35 +00006575 // The input values are both sign-extended.
6576 if (HasSMUL_LOHI) {
6577 // We can emit a smul_lohi.
6578 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greif1c80d112008-08-28 21:40:38 +00006579 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00006580 break;
6581 }
6582 if (HasMULHS) {
6583 // We can emit a mulhs+mul.
6584 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6585 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6586 break;
6587 }
6588 }
6589 if (HasUMUL_LOHI) {
6590 // Lo,Hi = umul LHS, RHS.
Dan Gohman8181bd12008-07-27 21:46:04 +00006591 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
Dan Gohman5a199552007-10-08 18:33:35 +00006592 DAG.getVTList(NVT, NVT), LL, RL);
6593 Lo = UMulLOHI;
6594 Hi = UMulLOHI.getValue(1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006595 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6596 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6597 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6598 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6599 break;
6600 }
Dale Johannesen612c88b2007-10-24 22:26:08 +00006601 if (HasMULHU) {
6602 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6603 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6604 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6605 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6606 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6607 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6608 break;
6609 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006610 }
6611
Dan Gohman5a199552007-10-08 18:33:35 +00006612 // If nothing else, we can make a libcall.
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006613 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006614 break;
6615 }
6616 case ISD::SDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006617 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006618 break;
6619 case ISD::UDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006620 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006621 break;
6622 case ISD::SREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006623 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006624 break;
6625 case ISD::UREM:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006626 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006627 break;
6628
6629 case ISD::FADD:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006630 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6631 RTLIB::ADD_F64,
6632 RTLIB::ADD_F80,
6633 RTLIB::ADD_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006634 Node, false, Hi);
6635 break;
6636 case ISD::FSUB:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006637 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6638 RTLIB::SUB_F64,
6639 RTLIB::SUB_F80,
6640 RTLIB::SUB_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006641 Node, false, Hi);
6642 break;
6643 case ISD::FMUL:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006644 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6645 RTLIB::MUL_F64,
6646 RTLIB::MUL_F80,
6647 RTLIB::MUL_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006648 Node, false, Hi);
6649 break;
6650 case ISD::FDIV:
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006651 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6652 RTLIB::DIV_F64,
6653 RTLIB::DIV_F80,
6654 RTLIB::DIV_PPCF128),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006655 Node, false, Hi);
6656 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006657 case ISD::FP_EXTEND: {
Dale Johannesen4c14d512007-10-12 01:37:08 +00006658 if (VT == MVT::ppcf128) {
6659 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6660 Node->getOperand(0).getValueType()==MVT::f64);
6661 const uint64_t zero = 0;
6662 if (Node->getOperand(0).getValueType()==MVT::f32)
6663 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6664 else
6665 Hi = Node->getOperand(0);
6666 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6667 break;
6668 }
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006669 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
6670 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
6671 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006672 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006673 }
6674 case ISD::FP_ROUND: {
6675 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
6676 VT);
6677 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
6678 Lo = ExpandLibCall(LC, Node, true, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006679 break;
Duncan Sandsf68dffb2008-07-17 02:36:29 +00006680 }
Evan Cheng5316b392008-09-09 23:02:14 +00006681 case ISD::FSQRT:
6682 case ISD::FSIN:
6683 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00006684 case ISD::FLOG:
6685 case ISD::FLOG2:
6686 case ISD::FLOG10:
6687 case ISD::FEXP:
6688 case ISD::FEXP2:
Dan Gohmanb2158232008-08-21 18:38:14 +00006689 case ISD::FTRUNC:
6690 case ISD::FFLOOR:
6691 case ISD::FCEIL:
6692 case ISD::FRINT:
6693 case ISD::FNEARBYINT:
Evan Cheng1fac6952008-09-09 23:35:53 +00006694 case ISD::FPOW:
6695 case ISD::FPOWI: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006696 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
6697 switch(Node->getOpcode()) {
6698 case ISD::FSQRT:
Duncan Sands37a3f472008-01-10 10:28:30 +00006699 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6700 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006701 break;
6702 case ISD::FSIN:
Duncan Sands37a3f472008-01-10 10:28:30 +00006703 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6704 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006705 break;
6706 case ISD::FCOS:
Duncan Sands37a3f472008-01-10 10:28:30 +00006707 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6708 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006709 break;
Dale Johannesen92b33082008-09-04 00:47:13 +00006710 case ISD::FLOG:
6711 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
6712 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
6713 break;
6714 case ISD::FLOG2:
6715 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
6716 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
6717 break;
6718 case ISD::FLOG10:
6719 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
6720 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
6721 break;
6722 case ISD::FEXP:
6723 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
6724 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
6725 break;
6726 case ISD::FEXP2:
6727 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
6728 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
6729 break;
Dan Gohmanb2158232008-08-21 18:38:14 +00006730 case ISD::FTRUNC:
6731 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
6732 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
6733 break;
6734 case ISD::FFLOOR:
6735 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
6736 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
6737 break;
6738 case ISD::FCEIL:
6739 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
6740 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
6741 break;
6742 case ISD::FRINT:
6743 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
6744 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
6745 break;
6746 case ISD::FNEARBYINT:
6747 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
6748 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
6749 break;
Evan Cheng5316b392008-09-09 23:02:14 +00006750 case ISD::FPOW:
6751 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
6752 RTLIB::POW_PPCF128);
6753 break;
6754 case ISD::FPOWI:
6755 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
6756 RTLIB::POWI_PPCF128);
6757 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006758 default: assert(0 && "Unreachable!");
6759 }
Duncan Sandsf1db7c82008-04-12 17:14:18 +00006760 Lo = ExpandLibCall(LC, Node, false, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006761 break;
6762 }
6763 case ISD::FABS: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00006764 if (VT == MVT::ppcf128) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006765 SDValue Tmp;
Dale Johannesen5707ef82007-10-12 19:02:17 +00006766 ExpandOp(Node->getOperand(0), Lo, Tmp);
6767 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6768 // lo = hi==fabs(hi) ? lo : -lo;
6769 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6770 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6771 DAG.getCondCode(ISD::SETEQ));
6772 break;
6773 }
Dan Gohman8181bd12008-07-27 21:46:04 +00006774 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006775 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6776 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6777 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6778 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6779 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6780 if (getTypeAction(NVT) == Expand)
6781 ExpandOp(Lo, Lo, Hi);
6782 break;
6783 }
6784 case ISD::FNEG: {
Dale Johannesen5707ef82007-10-12 19:02:17 +00006785 if (VT == MVT::ppcf128) {
6786 ExpandOp(Node->getOperand(0), Lo, Hi);
6787 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6788 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6789 break;
6790 }
Dan Gohman8181bd12008-07-27 21:46:04 +00006791 SDValue Mask = (VT == MVT::f64)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006792 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6793 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6794 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6795 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6796 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6797 if (getTypeAction(NVT) == Expand)
6798 ExpandOp(Lo, Lo, Hi);
6799 break;
6800 }
6801 case ISD::FCOPYSIGN: {
6802 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6803 if (getTypeAction(NVT) == Expand)
6804 ExpandOp(Lo, Lo, Hi);
6805 break;
6806 }
6807 case ISD::SINT_TO_FP:
6808 case ISD::UINT_TO_FP: {
6809 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands92c43912008-06-06 12:08:01 +00006810 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6a779c82008-03-18 17:28:38 +00006811
6812 // Promote the operand if needed. Do this before checking for
6813 // ppcf128 so conversions of i16 and i8 work.
6814 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006815 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesen6a779c82008-03-18 17:28:38 +00006816 Tmp = isSigned
6817 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6818 DAG.getValueType(SrcVT))
6819 : DAG.getZeroExtendInReg(Tmp, SrcVT);
Gabor Greif1c80d112008-08-28 21:40:38 +00006820 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesen6a779c82008-03-18 17:28:38 +00006821 SrcVT = Node->getOperand(0).getValueType();
6822 }
6823
Dan Gohmanec51f642008-03-10 23:03:31 +00006824 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohman84d00962008-02-25 21:39:34 +00006825 static const uint64_t zero = 0;
Dale Johannesen4c14d512007-10-12 01:37:08 +00006826 if (isSigned) {
6827 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6828 Node->getOperand(0)));
6829 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6830 } else {
Dan Gohman84d00962008-02-25 21:39:34 +00006831 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesen4c14d512007-10-12 01:37:08 +00006832 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6833 Node->getOperand(0)));
6834 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6835 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen9aec5b22007-10-12 17:52:03 +00006836 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen4c14d512007-10-12 01:37:08 +00006837 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6838 DAG.getConstant(0, MVT::i32),
6839 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6840 DAG.getConstantFP(
6841 APFloat(APInt(128, 2, TwoE32)),
6842 MVT::ppcf128)),
6843 Hi,
6844 DAG.getCondCode(ISD::SETLT)),
6845 Lo, Hi);
6846 }
6847 break;
6848 }
Dale Johannesen9aec5b22007-10-12 17:52:03 +00006849 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6850 // si64->ppcf128 done by libcall, below
Dan Gohman84d00962008-02-25 21:39:34 +00006851 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen9aec5b22007-10-12 17:52:03 +00006852 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6853 Lo, Hi);
6854 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6855 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6856 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6857 DAG.getConstant(0, MVT::i64),
6858 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6859 DAG.getConstantFP(
6860 APFloat(APInt(128, 2, TwoE64)),
6861 MVT::ppcf128)),
6862 Hi,
6863 DAG.getCondCode(ISD::SETLT)),
6864 Lo, Hi);
6865 break;
6866 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006867
Dan Gohmanec51f642008-03-10 23:03:31 +00006868 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6869 Node->getOperand(0));
Evan Chenga8740032008-04-01 01:50:16 +00006870 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng4a2f6df2008-04-01 01:51:26 +00006871 // float to i32 etc. can be 'expanded' to a single node.
Evan Chenga8740032008-04-01 01:50:16 +00006872 ExpandOp(Lo, Lo, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006873 break;
6874 }
6875 }
6876
6877 // Make sure the resultant values have been legalized themselves, unless this
6878 // is a type that requires multi-step expansion.
6879 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6880 Lo = LegalizeOp(Lo);
Gabor Greif1c80d112008-08-28 21:40:38 +00006881 if (Hi.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006882 // Don't legalize the high part if it is expanded to a single node.
6883 Hi = LegalizeOp(Hi);
6884 }
6885
6886 // Remember in a map if the values will be reused later.
Dan Gohman55d19662008-07-07 17:46:23 +00006887 bool isNew =
6888 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006889 assert(isNew && "Value already expanded?!?");
6890}
6891
6892/// SplitVectorOp - Given an operand of vector type, break it down into
6893/// two smaller values, still of vector type.
Dan Gohman8181bd12008-07-27 21:46:04 +00006894void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
6895 SDValue &Hi) {
Duncan Sands92c43912008-06-06 12:08:01 +00006896 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greif1c80d112008-08-28 21:40:38 +00006897 SDNode *Node = Op.getNode();
Duncan Sands92c43912008-06-06 12:08:01 +00006898 unsigned NumElements = Op.getValueType().getVectorNumElements();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006899 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman4a365ad2007-11-15 21:15:26 +00006900
Duncan Sands92c43912008-06-06 12:08:01 +00006901 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman4a365ad2007-11-15 21:15:26 +00006902
6903 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6904 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6905
Duncan Sands92c43912008-06-06 12:08:01 +00006906 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6907 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00006908
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006909 // See if we already split it.
Dan Gohman8181bd12008-07-27 21:46:04 +00006910 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006911 = SplitNodes.find(Op);
6912 if (I != SplitNodes.end()) {
6913 Lo = I->second.first;
6914 Hi = I->second.second;
6915 return;
6916 }
6917
6918 switch (Node->getOpcode()) {
6919 default:
6920#ifndef NDEBUG
6921 Node->dump(&DAG);
6922#endif
6923 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattner3dec33a2007-11-19 20:21:32 +00006924 case ISD::UNDEF:
6925 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6926 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6927 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006928 case ISD::BUILD_PAIR:
6929 Lo = Node->getOperand(0);
6930 Hi = Node->getOperand(1);
6931 break;
Dan Gohmanb3228dc2007-09-28 23:53:40 +00006932 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman7c9e4b72008-04-25 18:07:40 +00006933 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6934 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006935 unsigned Index = Idx->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00006936 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman7c9e4b72008-04-25 18:07:40 +00006937 if (Index < NewNumElts_Lo)
6938 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6939 DAG.getIntPtrConstant(Index));
6940 else
6941 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6942 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6943 break;
6944 }
Dan Gohman8181bd12008-07-27 21:46:04 +00006945 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman7c9e4b72008-04-25 18:07:40 +00006946 Node->getOperand(1),
6947 Node->getOperand(2));
6948 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohmanb3228dc2007-09-28 23:53:40 +00006949 break;
6950 }
Chris Lattner587c46d2007-11-19 21:16:54 +00006951 case ISD::VECTOR_SHUFFLE: {
6952 // Build the low part.
Dan Gohman8181bd12008-07-27 21:46:04 +00006953 SDValue Mask = Node->getOperand(2);
6954 SmallVector<SDValue, 8> Ops;
Duncan Sands92c43912008-06-06 12:08:01 +00006955 MVT PtrVT = TLI.getPointerTy();
Chris Lattner587c46d2007-11-19 21:16:54 +00006956
6957 // Insert all of the elements from the input that are needed. We use
6958 // buildvector of extractelement here because the input vectors will have
6959 // to be legalized, so this makes the code simpler.
6960 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006961 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00006962 if (IdxNode.getOpcode() == ISD::UNDEF) {
6963 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6964 continue;
6965 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006966 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00006967 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00006968 if (Idx >= NumElements) {
6969 InVec = Node->getOperand(1);
6970 Idx -= NumElements;
6971 }
6972 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6973 DAG.getConstant(Idx, PtrVT)));
6974 }
6975 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6976 Ops.clear();
6977
6978 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman8181bd12008-07-27 21:46:04 +00006979 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman8bb3cb32008-03-14 00:53:31 +00006980 if (IdxNode.getOpcode() == ISD::UNDEF) {
6981 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6982 continue;
6983 }
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00006984 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman8181bd12008-07-27 21:46:04 +00006985 SDValue InVec = Node->getOperand(0);
Chris Lattner587c46d2007-11-19 21:16:54 +00006986 if (Idx >= NumElements) {
6987 InVec = Node->getOperand(1);
6988 Idx -= NumElements;
6989 }
6990 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6991 DAG.getConstant(Idx, PtrVT)));
6992 }
Mon P Wang2e89b112008-07-25 01:30:26 +00006993 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner587c46d2007-11-19 21:16:54 +00006994 break;
6995 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006996 case ISD::BUILD_VECTOR: {
Dan Gohman8181bd12008-07-27 21:46:04 +00006997 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman4a365ad2007-11-15 21:15:26 +00006998 Node->op_begin()+NewNumElts_Lo);
6999 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007000
Dan Gohman8181bd12008-07-27 21:46:04 +00007001 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007002 Node->op_end());
Nate Begeman4a365ad2007-11-15 21:15:26 +00007003 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007004 break;
7005 }
7006 case ISD::CONCAT_VECTORS: {
Nate Begeman4a365ad2007-11-15 21:15:26 +00007007 // FIXME: Handle non-power-of-two vectors?
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007008 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7009 if (NewNumSubvectors == 1) {
7010 Lo = Node->getOperand(0);
7011 Hi = Node->getOperand(1);
7012 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00007013 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007014 Node->op_begin()+NewNumSubvectors);
Nate Begeman4a365ad2007-11-15 21:15:26 +00007015 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007016
Dan Gohman8181bd12008-07-27 21:46:04 +00007017 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007018 Node->op_end());
Nate Begeman4a365ad2007-11-15 21:15:26 +00007019 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007020 }
7021 break;
7022 }
Dan Gohmand5d4c872007-10-17 14:48:28 +00007023 case ISD::SELECT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007024 SDValue Cond = Node->getOperand(0);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007025
Dan Gohman8181bd12008-07-27 21:46:04 +00007026 SDValue LL, LH, RL, RH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007027 SplitVectorOp(Node->getOperand(1), LL, LH);
7028 SplitVectorOp(Node->getOperand(2), RL, RH);
7029
Duncan Sands92c43912008-06-06 12:08:01 +00007030 if (Cond.getValueType().isVector()) {
Dan Gohmand5d4c872007-10-17 14:48:28 +00007031 // Handle a vector merge.
Dan Gohman8181bd12008-07-27 21:46:04 +00007032 SDValue CL, CH;
Dan Gohmand5d4c872007-10-17 14:48:28 +00007033 SplitVectorOp(Cond, CL, CH);
Nate Begeman4a365ad2007-11-15 21:15:26 +00007034 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
7035 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007036 } else {
7037 // Handle a simple select with vector operands.
Nate Begeman4a365ad2007-11-15 21:15:26 +00007038 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
7039 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmand5d4c872007-10-17 14:48:28 +00007040 }
7041 break;
7042 }
Chris Lattnerc7471452008-06-30 02:43:01 +00007043 case ISD::SELECT_CC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007044 SDValue CondLHS = Node->getOperand(0);
7045 SDValue CondRHS = Node->getOperand(1);
7046 SDValue CondCode = Node->getOperand(4);
Chris Lattnerc7471452008-06-30 02:43:01 +00007047
Dan Gohman8181bd12008-07-27 21:46:04 +00007048 SDValue LL, LH, RL, RH;
Chris Lattnerc7471452008-06-30 02:43:01 +00007049 SplitVectorOp(Node->getOperand(2), LL, LH);
7050 SplitVectorOp(Node->getOperand(3), RL, RH);
7051
7052 // Handle a simple select with vector operands.
7053 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
7054 LL, RL, CondCode);
7055 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
7056 LH, RH, CondCode);
7057 break;
7058 }
Nate Begeman9a1ce152008-05-12 19:40:03 +00007059 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007060 SDValue LL, LH, RL, RH;
Nate Begeman9a1ce152008-05-12 19:40:03 +00007061 SplitVectorOp(Node->getOperand(0), LL, LH);
7062 SplitVectorOp(Node->getOperand(1), RL, RH);
7063 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
7064 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
7065 break;
7066 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007067 case ISD::ADD:
7068 case ISD::SUB:
7069 case ISD::MUL:
7070 case ISD::FADD:
7071 case ISD::FSUB:
7072 case ISD::FMUL:
7073 case ISD::SDIV:
7074 case ISD::UDIV:
7075 case ISD::FDIV:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007076 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007077 case ISD::AND:
7078 case ISD::OR:
Dan Gohman9e1b7ee2007-11-19 15:15:03 +00007079 case ISD::XOR:
7080 case ISD::UREM:
7081 case ISD::SREM:
7082 case ISD::FREM: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007083 SDValue LL, LH, RL, RH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007084 SplitVectorOp(Node->getOperand(0), LL, LH);
7085 SplitVectorOp(Node->getOperand(1), RL, RH);
7086
Nate Begeman4a365ad2007-11-15 21:15:26 +00007087 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
7088 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007089 break;
7090 }
Dan Gohman29c3cef2008-08-14 20:04:46 +00007091 case ISD::FP_ROUND:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007092 case ISD::FPOWI: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007093 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007094 SplitVectorOp(Node->getOperand(0), L, H);
7095
Nate Begeman4a365ad2007-11-15 21:15:26 +00007096 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
7097 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman6d05cac2007-10-11 23:57:53 +00007098 break;
7099 }
7100 case ISD::CTTZ:
7101 case ISD::CTLZ:
7102 case ISD::CTPOP:
7103 case ISD::FNEG:
7104 case ISD::FABS:
7105 case ISD::FSQRT:
7106 case ISD::FSIN:
Nate Begeman78246ca2007-11-17 03:58:34 +00007107 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007108 case ISD::FLOG:
7109 case ISD::FLOG2:
7110 case ISD::FLOG10:
7111 case ISD::FEXP:
7112 case ISD::FEXP2:
Nate Begeman78246ca2007-11-17 03:58:34 +00007113 case ISD::FP_TO_SINT:
7114 case ISD::FP_TO_UINT:
7115 case ISD::SINT_TO_FP:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007116 case ISD::UINT_TO_FP:
7117 case ISD::TRUNCATE:
7118 case ISD::ANY_EXTEND:
7119 case ISD::SIGN_EXTEND:
7120 case ISD::ZERO_EXTEND:
7121 case ISD::FP_EXTEND: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007122 SDValue L, H;
Dan Gohman6d05cac2007-10-11 23:57:53 +00007123 SplitVectorOp(Node->getOperand(0), L, H);
7124
Nate Begeman4a365ad2007-11-15 21:15:26 +00007125 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
7126 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman6d05cac2007-10-11 23:57:53 +00007127 break;
7128 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007129 case ISD::LOAD: {
7130 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007131 SDValue Ch = LD->getChain();
7132 SDValue Ptr = LD->getBasePtr();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007133 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007134 const Value *SV = LD->getSrcValue();
7135 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007136 MVT MemoryVT = LD->getMemoryVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007137 unsigned Alignment = LD->getAlignment();
7138 bool isVolatile = LD->isVolatile();
7139
Dan Gohman29c3cef2008-08-14 20:04:46 +00007140 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7141 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7142
7143 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7144 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7145 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7146
7147 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType,
7148 NewVT_Lo, Ch, Ptr, Offset,
7149 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7150 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007151 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner5872a362008-01-17 07:00:52 +00007152 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007153 SVOffset += IncrementSize;
Duncan Sandsa3691432007-10-28 12:59:45 +00007154 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman29c3cef2008-08-14 20:04:46 +00007155 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType,
7156 NewVT_Hi, Ch, Ptr, Offset,
7157 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007158
7159 // Build a factor node to remember that this load is independent of the
7160 // other one.
Dan Gohman8181bd12008-07-27 21:46:04 +00007161 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007162 Hi.getValue(1));
7163
7164 // Remember that we legalized the chain.
7165 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
7166 break;
7167 }
7168 case ISD::BIT_CONVERT: {
7169 // We know the result is a vector. The input may be either a vector or a
7170 // scalar value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007171 SDValue InOp = Node->getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007172 if (!InOp.getValueType().isVector() ||
7173 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007174 // The input is a scalar or single-element vector.
7175 // Lower to a store/load so that it can be split.
7176 // FIXME: this could be improved probably.
Mon P Wang36b59ac2008-07-15 05:28:34 +00007177 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7178 Op.getValueType().getTypeForMVT());
Dan Gohman8181bd12008-07-27 21:46:04 +00007179 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greif1c80d112008-08-28 21:40:38 +00007180 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007181
Dan Gohman8181bd12008-07-27 21:46:04 +00007182 SDValue St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman12a9c082008-02-06 22:27:42 +00007183 InOp, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007184 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman12a9c082008-02-06 22:27:42 +00007185 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman1fc34bc2008-07-11 22:44:52 +00007186 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007187 }
7188 // Split the vector and convert each of the pieces now.
7189 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman4a365ad2007-11-15 21:15:26 +00007190 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7191 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007192 break;
7193 }
7194 }
7195
7196 // Remember in a map if the values will be reused later.
7197 bool isNew =
7198 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
7199 assert(isNew && "Value already split?!?");
7200}
7201
7202
7203/// ScalarizeVectorOp - Given an operand of single-element vector type
7204/// (e.g. v1f32), convert it into the equivalent operation that returns a
7205/// scalar (e.g. f32) value.
Dan Gohman8181bd12008-07-27 21:46:04 +00007206SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands92c43912008-06-06 12:08:01 +00007207 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greif1c80d112008-08-28 21:40:38 +00007208 SDNode *Node = Op.getNode();
Duncan Sands92c43912008-06-06 12:08:01 +00007209 MVT NewVT = Op.getValueType().getVectorElementType();
7210 assert(Op.getValueType().getVectorNumElements() == 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007211
7212 // See if we already scalarized it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007213 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007214 if (I != ScalarizedNodes.end()) return I->second;
7215
Dan Gohman8181bd12008-07-27 21:46:04 +00007216 SDValue Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007217 switch (Node->getOpcode()) {
7218 default:
7219#ifndef NDEBUG
7220 Node->dump(&DAG); cerr << "\n";
7221#endif
7222 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7223 case ISD::ADD:
7224 case ISD::FADD:
7225 case ISD::SUB:
7226 case ISD::FSUB:
7227 case ISD::MUL:
7228 case ISD::FMUL:
7229 case ISD::SDIV:
7230 case ISD::UDIV:
7231 case ISD::FDIV:
7232 case ISD::SREM:
7233 case ISD::UREM:
7234 case ISD::FREM:
Dan Gohman6d05cac2007-10-11 23:57:53 +00007235 case ISD::FPOW:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007236 case ISD::AND:
7237 case ISD::OR:
7238 case ISD::XOR:
7239 Result = DAG.getNode(Node->getOpcode(),
7240 NewVT,
7241 ScalarizeVectorOp(Node->getOperand(0)),
7242 ScalarizeVectorOp(Node->getOperand(1)));
7243 break;
7244 case ISD::FNEG:
7245 case ISD::FABS:
7246 case ISD::FSQRT:
7247 case ISD::FSIN:
7248 case ISD::FCOS:
Dale Johannesen92b33082008-09-04 00:47:13 +00007249 case ISD::FLOG:
7250 case ISD::FLOG2:
7251 case ISD::FLOG10:
7252 case ISD::FEXP:
7253 case ISD::FEXP2:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007254 case ISD::FP_TO_SINT:
7255 case ISD::FP_TO_UINT:
7256 case ISD::SINT_TO_FP:
7257 case ISD::UINT_TO_FP:
7258 case ISD::SIGN_EXTEND:
7259 case ISD::ZERO_EXTEND:
7260 case ISD::ANY_EXTEND:
7261 case ISD::TRUNCATE:
7262 case ISD::FP_EXTEND:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007263 Result = DAG.getNode(Node->getOpcode(),
7264 NewVT,
7265 ScalarizeVectorOp(Node->getOperand(0)));
7266 break;
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007267 case ISD::FPOWI:
Dan Gohman29c3cef2008-08-14 20:04:46 +00007268 case ISD::FP_ROUND:
Dan Gohmanae4c2f82007-10-12 14:13:46 +00007269 Result = DAG.getNode(Node->getOpcode(),
7270 NewVT,
7271 ScalarizeVectorOp(Node->getOperand(0)),
7272 Node->getOperand(1));
7273 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007274 case ISD::LOAD: {
7275 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman8181bd12008-07-27 21:46:04 +00007276 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7277 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman29c3cef2008-08-14 20:04:46 +00007278 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007279 const Value *SV = LD->getSrcValue();
7280 int SVOffset = LD->getSrcValueOffset();
Dan Gohman29c3cef2008-08-14 20:04:46 +00007281 MVT MemoryVT = LD->getMemoryVT();
7282 unsigned Alignment = LD->getAlignment();
7283 bool isVolatile = LD->isVolatile();
7284
7285 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7286 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7287
7288 Result = DAG.getLoad(ISD::UNINDEXED, ExtType,
7289 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7290 MemoryVT.getVectorElementType(),
7291 isVolatile, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007292
7293 // Remember that we legalized the chain.
7294 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7295 break;
7296 }
7297 case ISD::BUILD_VECTOR:
7298 Result = Node->getOperand(0);
7299 break;
7300 case ISD::INSERT_VECTOR_ELT:
7301 // Returning the inserted scalar element.
7302 Result = Node->getOperand(1);
7303 break;
7304 case ISD::CONCAT_VECTORS:
7305 assert(Node->getOperand(0).getValueType() == NewVT &&
7306 "Concat of non-legal vectors not yet supported!");
7307 Result = Node->getOperand(0);
7308 break;
7309 case ISD::VECTOR_SHUFFLE: {
7310 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman8181bd12008-07-27 21:46:04 +00007311 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00007312 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007313 Result = ScalarizeVectorOp(Node->getOperand(1));
7314 else
7315 Result = ScalarizeVectorOp(Node->getOperand(0));
7316 break;
7317 }
7318 case ISD::EXTRACT_SUBVECTOR:
7319 Result = Node->getOperand(0);
7320 assert(Result.getValueType() == NewVT);
7321 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007322 case ISD::BIT_CONVERT: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007323 SDValue Op0 = Op.getOperand(0);
Duncan Sands92c43912008-06-06 12:08:01 +00007324 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng2cc16e72008-05-16 17:19:05 +00007325 Op0 = ScalarizeVectorOp(Op0);
7326 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007327 break;
Evan Cheng2cc16e72008-05-16 17:19:05 +00007328 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007329 case ISD::SELECT:
7330 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
7331 ScalarizeVectorOp(Op.getOperand(1)),
7332 ScalarizeVectorOp(Op.getOperand(2)));
7333 break;
Chris Lattnerc7471452008-06-30 02:43:01 +00007334 case ISD::SELECT_CC:
7335 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7336 Node->getOperand(1),
7337 ScalarizeVectorOp(Op.getOperand(2)),
7338 ScalarizeVectorOp(Op.getOperand(3)),
7339 Node->getOperand(4));
7340 break;
Nate Begeman78ca4f92008-05-12 23:09:43 +00007341 case ISD::VSETCC: {
Dan Gohman8181bd12008-07-27 21:46:04 +00007342 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7343 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Nate Begeman78ca4f92008-05-12 23:09:43 +00007344 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7345 Op.getOperand(2));
7346 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7347 DAG.getConstant(-1ULL, NewVT),
7348 DAG.getConstant(0ULL, NewVT));
7349 break;
7350 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007351 }
7352
7353 if (TLI.isTypeLegal(NewVT))
7354 Result = LegalizeOp(Result);
7355 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7356 assert(isNew && "Value already scalarized?");
7357 return Result;
7358}
7359
7360
7361// SelectionDAG::Legalize - This is the entry point for the file.
7362//
7363void SelectionDAG::Legalize() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007364 /// run - This is the main entry point to this class.
7365 ///
7366 SelectionDAGLegalize(*this).LegalizeDAG();
7367}
7368